<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.editor:root {
  --theme-main-color: #ab2228;
  --theme-second-color: #464646;
  --theme-third-color: #464646;
}
.editor .color-picker--theme-main-color {
  background: var(--theme-main-color, #ab2228);
}
.editor .color-picker--theme-second-color {
  background: var(--theme-second-color, #464646);
}
.editor .color-picker--theme-third-color {
  background: var(--theme-third-color, #111111);
}

.color-picker-panel {
  position: absolute;
  width: 150px;
  top: 85%;
  left: 0;
  border-radius: 8px;
  border: 1px solid #cccccc;
  line-height: normal;
  background: #fff;
  padding: 0px 15px 15px;
}
.color-picker-panel .color-picker-panel_row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 15px;
}
.color-picker-panel .color-picker-panel_row-title {
  font-size: 14px;
  margin-right: 15px;
}
.color-picker-panel .color-picker-panel_row-value {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.svg-preloader {
  position: absolute;
  z-index: 1;
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.booklet-page {
  width: 842px;
  height: 595px;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.3;
  color: #000;
  background-color: #fff;
}
.booklet-page .booklet__template-create button {
  padding: 7px 20px;
  border: 1px solid #ff4a35;
  border-radius: 3px;
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
  text-align: center;
  background-color: #ff4a35;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
  transition: color 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95), border-color 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95), background-color 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95), opacity 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95), box-shadow 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
.booklet-page__inner {
  width: 100%;
  height: 100%;
}
.booklet-page .editor-select {
  cursor: pointer;
  width: fit-content;
  line-height: 1.1;
}

.add-item {
  width: 18px;
  height: 18px;
  font-size: 18px;
  color: #2f4858;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: color 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
  transition: color 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
  position: absolute;
  top: 4px;
  left: 180px;
  cursor: pointer;
}

.add-row {
  width: 22px;
  height: 22px;
  margin: 0 auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer;
  -webkit-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
}
.add-row svg {
  fill: var(--theme-main-color, #9e0309);
}

.remove-row {
  position: absolute;
  width: 15px;
  height: 15px;
  left: 100%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
}
.remove-row svg {
  fill: var(--theme-main-color, #9e0309);
}

.booklet-content {
  width: 100%;
  height: 595px;
  position: relative;
  background-color: #fff;
  z-index: 1;
}
.dot1,
.dot2,
.dot3 {
  position: absolute;
  background-image: url(/assets/img/templates/21/dotted.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.booklet-main .dot1 {
  width: 115px;
  height: 115px;
  top: 25px;
  left: 25px;
  z-index: 1;
}
.booklet-main .dot2 {
  width: 137px;
  height: 137px;
  top: 112px;
  right: 9px;
  z-index: 5;
}
.booklet-main .dot3 {
  width: 126px;
  height: 126px;
  left: 8px;
  bottom: 8px;
  z-index: 5;
}
.booklet-main__wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.booklet-main__top {
  flex: 1 1 auto;
  padding: 39px 26px 35px 39px;
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
}
.booklet-main__title {
  position: relative;
  flex: 0 1 60%;
  font-weight: 700;
  font-size: 25px;
  line-height: 110%;
  color: var(--theme-second-color, #464646);
  z-index: 1;
  max-width: 412px;
  max-height: 90px;
}
.booklet-main__adress {
  flex: 0 1 40%;
  color: var(--theme-third-color, #111111);
  font-weight: 400;
  font-size: 14px;
  text-align: right;
  line-height: 125%;
  max-width: 306px;
  max-height: 90px;
}
.booklet-main__bottom {
  flex: 0 0 426px;
  position: relative;
}
.booklet-main__price-block {
  position: absolute;
  z-index: 5;
  top: 52px;
  left: 0;
  min-width: 320px;
  height: 45px;
  display: flex;
  align-items: center;
  padding: 10px 40px;
  background: var(--theme-main-color, #ab2228);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
}
.booklet-main__type {
  margin-right: 44px;
  max-width: 310px;
  max-height: 18px;
}
.booklet-main__price {
  max-width: 310px;
  max-height: 18px;
}
.booklet-main__img {
  position: relative;
}
.booklet-main__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 10px solid #ffffff;
}

.booklet-char .dot1 {
  width: 115px;
  height: 115px;
  top: 31px;
  right: 25px;
}
.booklet-char .dot2 {
  width: 115px;
  height: 115px;
  bottom: 25px;
  right: 25px;
}
.booklet-char__row {
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.booklet-char__img {
  flex: 0 0 562px;
  position: relative;
}
.booklet-char__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border: 10px solid #ffffff;
}
.booklet-char__content {
  flex: 1 1 auto;
  padding: 17px 25px 25px 28px;
}
.booklet-char__title {
  font-weight: 700;
  font-size: 25px;
  line-height: 108%;
  color: var(--theme-main-color, #ab2228);
  margin-bottom: 20px;
  max-width: 312px;
  max-height: 60px;
}
.booklet-char__item {
  margin-bottom: 25px;
  position: relative;
}
.booklet-char__item:hover .remove-row {
  opacity: 1;
  visibility: visible;
}
.booklet-char__label {
  font-weight: 400;
  font-size: 10px;
  line-height: 125%;
  color: var(--theme-third-color, #111111);
  max-width: 312px;
  max-height: 15px;
}
.booklet-char__text {
  font-weight: 600;
  font-size: 14px;
  line-height: 125%;
  color: var(--theme-third-color, #111111);
  max-width: 312px;
  max-height: 40px;
}
.booklet-char.small-img .booklet-char__img {
  flex: 0 0 510px;
}
.booklet-char .booklet-char__content {
  padding: 6px 10px 25px 10px;
}
.booklet-char .booklet-char__item {
  margin-bottom: 21px;
}

.booklet-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.booklet-img::before {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}
.booklet-img__img {
  position: relative;
}
.booklet-img__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 10px solid #ffffff;
}

.booklet-char-zd .dot1 {
  width: 113px;
  height: 113px;
  top: 22px;
  left: 308px;
}
.booklet-char-zd .dot2 {
  width: 113px;
  height: 113px;
  right: 27px;
  bottom: 27px;
}
.booklet-char-zd__row {
  display: flex;
  justify-content: space-between;
  padding: 25px;
}
.booklet-char-zd__img {
  flex: 0 0 385px;
  position: relative;
}
.booklet-char-zd__img-left {
  width: 300px;
  height: 422px;
  position: relative;
}
.booklet-char-zd__img-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.booklet-char-zd__img-right {
  position: absolute;
  width: 300px;
  height: 422px;
  top: 123px;
  left: 195px;
}
.booklet-char-zd__img-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid #ffffff;
}
.booklet-char-zd__content {
  flex: 1 1 auto;
}
.booklet-char-zd__title {
  position: relative;
  max-width: 407px;
  max-height: 60px;
  font-weight: 700;
  font-size: 25px;
  line-height: 108%;
  color: var(--theme-main-color, #ab2228);
  z-index: 1;
}
.booklet-char-zd__list {
  margin: 40px 0 0 150px;
}
.booklet-char-zd__item {
  margin-bottom: 27px;
  position: relative;
}
.booklet-char-zd__item:hover .remove-row {
  opacity: 1;
  visibility: visible;
}
.booklet-char-zd__item:last-child {
  margin-bottom: 0;
}
.booklet-char-zd__label {
  color: var(--theme-third-color, #111111);
  font-weight: 400;
  font-size: 10px;
  line-height: 125%;
  max-width: 257px;
  max-height: 15px;
}
.booklet-char-zd__value {
  color: var(--theme-third-color, #111111);
  font-weight: 600;
  font-size: 14px;
  line-height: 125%;
  max-width: 257px;
  max-height: 40px;
}

.booklet-info {
  position: relative;
}
.booklet-info .dot1 {
  width: 115px;
  height: 115px;
  top: 25px;
  left: 25px;
}
.booklet-info .dot2 {
  width: 113px;
  height: 113px;
  top: 128px;
  right: -20px;
}
.booklet-info__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.booklet-info__top {
  flex: 0 0 214px;
  padding: 15px 10px 0;
  display: flex;
  justify-content: space-between;
}
.booklet-info__title {
  position: relative;
  flex: 0 0 170px;
  padding: 22px 18px 0 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 108%;
  color: var(--theme-main-color, #ab2228);
  z-index: 1;
  max-width: 170px;
  max-height: 205px;
}
.booklet-info__text {
  flex: 1 1 auto;
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: var(--theme-third-color, #111111);
  max-width: 632px;
  max-height: 210px;
  overflow: hidden;
}
.booklet-info__img {
  flex: 0 0 380px;
  height: 380px;
  position: relative;
}
.booklet-info__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 10px solid #ffffff;
}

.booklet-mancory {
  padding: 5px;
}
.booklet-mancory__wrap {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.booklet-mancory__item {
  position: relative;
  height: 292px;
  grid-area: 2/1/3/2;
}
.booklet-mancory__item:first-child {
  grid-area: 1/1/2/2;
}
.booklet-mancory__item:last-child {
  height: 585px;
  grid-area: 1/2/3/3;
}
.booklet-mancory__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid #ffffff;
}

.booklet-infrac {
  position: relative;
}
.booklet-infrac .dot1 {
  width: 113px;
  height: 113px;
  bottom: 25px;
  left: 25px;
}
.booklet-infrac__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.booklet-infrac__bottom {
  flex: 0 0 145px;
  padding: 5px 10px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.booklet-infrac__title {
  position: relative;
  font-weight: 700;
  font-size: 24px;
  line-height: 108%;
  color: var(--theme-main-color, #ab2228);
  width: 250px;
  max-height: 109px;
  z-index: 1;
}
.booklet-infrac__text {
  font-weight: 400;
  font-size: 13px;
  line-height: 125%;
  color: var(--theme-third-color, #111111);
  margin-left: 30px;
  overflow: hidden;
  width: 542px;
  max-height: 119px;
}
.booklet-infrac__img {
  flex: 0 0 450px;
  height: 380px;
  position: relative;
}
.booklet-infrac__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 10px solid #ffffff;
}

.booklet-grid__wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr, 0, 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.booklet-grid__item {
  position: relative;
}
.booklet-grid__item:nth-child(1) {
  grid-area: 1/1/3/4;
  height: 350px;
  z-index: 2;
  position: relative;
}
.booklet-grid__item:nth-child(2) {
  grid-area: 3/1/4/3;
  height: 245px;
}
.booklet-grid__item:nth-child(2) img {
  border-width: 0 0 10px 10px;
}
.booklet-grid__item:nth-child(3) {
  grid-area: 1/4/2/6;
  height: 245px;
}
.booklet-grid__item:nth-child(3) img {
  border-width: 10px 10px 0 0;
}
.booklet-grid__item:nth-child(4) {
  grid-area: 2/3/4/6;
  height: 350px;
  z-index: 1;
  position: relative;
}
.booklet-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 10px solid #ffffff;
}

.booklet-map {
  position: relative;
  padding: 10px;
}
.booklet-map .dot1 {
  width: 113px;
  height: 113px;
  bottom: 27px;
  right: 27px;
}
.booklet-map__row {
  display: flex;
  justify-content: space-between;
}
.booklet-map__map {
  flex: 0 0 420px;
  width: 420px;
  height: 576px;
  position: relative;
}
.booklet-map__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.booklet-map__content {
  flex: 1 1 auto;
  padding: 63px 25px 45px 33px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.booklet-map__adress .booklet-map__text {
  color: var(--theme-third-color, #111111);
}
.booklet-map__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 108%;
  color: var(--theme-main-color, #ab2228);
  margin-bottom: 28px;
  max-width: 344px;
  max-height: 38px;
}
.booklet-map__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 152%;
  color: #2f4858;
  margin-bottom: 10px;
  max-width: 344px;
  max-height: 24px;
}
.booklet-map__ava {
  width: 73px;
  height: 73px;
  border-radius: 100%;
  overflow: hidden;
  background: #c4c4c4;
  margin-bottom: 26px;
  position: relative;
}
.booklet-map__ava img {
  width: 73px;
  height: 73px;
  border-radius: 100%;
  object-fit: cover;
}
.booklet-map__ava .svg-preloader {
  width: 70px;
  height: 70px;
}
.booklet-map__name {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--theme-second-color, #464646);
  margin-bottom: 14px;
  max-width: 344px;
  max-height: 26px;
}

.booklet-kommunic .dot1 {
  width: 115px;
  height: 115px;
  top: 31px;
  left: 25px;
}
.booklet-kommunic .dot2 {
  width: 115px;
  height: 115px;
  bottom: 25px;
  left: 25px;
}
.booklet-kommunic__row {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.booklet-kommunic__img {
  flex: 0 0 562px;
  position: relative;
}
.booklet-kommunic__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border: 10px solid #ffffff;
}
.booklet-kommunic__content {
  flex: 1 1 auto;
  padding: 7px 25px 25px 28px;
}
.booklet-kommunic__title {
  font-weight: 700;
  font-size: 25px;
  line-height: 108%;
  color: var(--theme-main-color, #ab2228);
  margin-bottom: 31px;
  max-width: 227;
  max-height: 33px;
}
.booklet-kommunic__item {
  margin-bottom: 35px;
  position: relative;
}
.booklet-kommunic__item:hover .remove-row {
  opacity: 1;
  visibility: visible;
}
.booklet-kommunic__label {
  font-weight: 400;
  font-size: 10px;
  line-height: 125%;
  color: var(--theme-third-color, #111111);
  max-width: 227px;
  max-height: 15px;
}
.booklet-kommunic__text {
  font-weight: 600;
  font-size: 14px;
  line-height: 125%;
  color: var(--theme-third-color, #111111);
  max-width: 227px;
  max-height: 40px;
}
.booklet-kommunic.small-img .booklet-char__img {
  flex: 0 0 510px;
}
.booklet-kommunic .booklet-char__content {
  padding: 17px 10px 25px 10px;
}
.booklet-kommunic .booklet-char__item {
  margin-bottom: 34px;
}

.address_result {
  position: absolute;
  top: 110%;
  z-index: 10;
  font-size: 12px;
  width: 100%;
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: scroll;
  left: 0;
}
.address_result li {
  background-color: white;
  padding: 5px 15px;
  border: 1px solid gainsboro;
  cursor: pointer;
}

/*# sourceMappingURL=style.css.map */
</pre></body></html>