.editor:root {
  --theme-main-color: #ab2228;
  --theme-second-color: #464646;
  --theme-third-color: #464646;
  --theme-fourth-color: #000000;
}
.editor .color-picker--theme-main-color {
  background: var(--theme-main-color, #ab2228);
}
.editor .color-picker--theme-second-color {
  background: var(--theme-second-color, #808f98);
}
.editor .color-picker--theme-third-color {
  background: var(--theme-third-color, #808f98);
}
.editor .color-picker--theme-fourth-color {
  background: var(--theme-fourth-color, #000000);
}

.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__inner {
  width: 100%;
  height: 100%;
}
.booklet-page .editor-select {
  cursor: pointer;
  width: fit-content;
}

.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;
  padding: 15px;
  position: relative;
}
.booklet-content.box-lt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 125px;
  height: 125px;
  background: rgba(222, 222, 222, 0.5);
  z-index: 0;
}
.booklet-content.box-rt::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 125px;
  height: 125px;
  background: rgba(222, 222, 222, 0.5);
  z-index: 0;
}
.booklet-content.box-lb::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 125px;
  height: 125px;
  background: rgba(222, 222, 222, 0.5);
  z-index: 0;
}
.booklet-content.box-rb::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 125px;
  height: 125px;
  background: rgba(222, 222, 222, 0.5);
  z-index: 0;
}
.booklet-content.brown::before {
  background: rgba(179, 37, 25, 0.5);
}
.booklet-content.brown::after {
  background: rgba(179, 37, 25, 0.5);
}
.booklet-content.green::before {
  background: rgba(39, 87, 9, 0.5);
}
.booklet-content.green::after {
  background: rgba(39, 87, 9, 0.5);
}
.booklet-content.gray::before {
  background: var(--theme-second-color, #808f98);
}
.booklet-content.gray::after {
  background: var(--theme-second-color, #808f98);
}
.booklet-content__wrap {
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.booklet-content .booklet-title {
  position: relative;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: var(--theme-main-color, #ab2228);
}
.booklet-content .booklet-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100px;
  height: 2px;
  background: #2F4858;
}

.booklet-main__row {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.booklet-main__left {
  flex: 0 0 58.8%;
  width: 58.8%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.booklet-main__left-img {
  position: relative;
  height: 335px;
  flex: 0 0 335px;
}
.booklet-main__left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.booklet-main__content {
  flex: 1 1 auto;
  padding: 30px 15px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.booklet-main__title {
  font-family: inherit;
  font-weight: 700;
  font-size: 22px;
  line-height: 130%;
  color: #2F4858;
  width: 447px;
  height: 90px;
}
.booklet-main__type {
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: var(--theme-main-color, #ab2228);
  margin-bottom: 10px;
  width: 447px;
  height: 24px;
}
.booklet-main__price {
  margin-top: 10px;
  font-family: inherit;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--theme-fourth-color, #000000);
  width: 447px;
  height: 24px;
}
.booklet-main__price .label {
  font-weight: 500;
  color: #2F4858;
  margin-right: 10px;
}
.booklet-main__right {
  flex: 0 0 39.4%;
  width: 39.4%;
}
.booklet-main__right-img {
  position: relative;
  height: 100%;
}
.booklet-main__right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booklet-img {
  width: 100%;
  height: 100%;
}
.booklet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booklet-char__row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.booklet-char__left {
  flex: 1 1 auto;
  padding: 0 15px;
}
.booklet-char__title {
  position: relative;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: var(--theme-main-color, #ab2228);
  margin-bottom: 32px;
  width: 365px;
  height: 29px;
}
.booklet-char__title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100px;
  height: 2px;
  background: #2F4858;
}
.booklet-char__list {
  padding-left: 10px;
}
.booklet-char__item {
  position: relative;
  margin-bottom: 20px;
}
.booklet-char__item:last-child {
  margin-bottom: 0;
}
.booklet-char__item:hover .remove-row {
  opacity: 1;
  visibility: visible;
}
.booklet-char__label {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: var(--theme-third-color, #808f98);
  max-width: 355px;
  max-height: 20px;
}
.booklet-char__value {
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  color: var(--theme-fourth-color, #000000);
  max-width: 355px;
  max-height: 40px;
}
.booklet-char__right {
  flex: 0 1 51.3%;
  width: 51.3%;
  height: 100%;
}
.booklet-char__img {
  position: relative;
  width: 100%;
  height: 100%;
}
.booklet-char__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booklet-char-zd__row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.booklet-char-zd__left {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-right: 10px;
}
.booklet-char-zd__content {
  flex: 1 1 auto;
  padding: 0 15px 15px;
}
.booklet-char-zd__left-img {
  position: relative;
  flex: 0 0 250px;
  height: 250px;
}
.booklet-char-zd__left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.booklet-char-zd__title {
  position: relative;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: var(--theme-main-color, #ab2228);
  margin-bottom: 32px;
  width: 382px;
  height: 29px;
}
.booklet-char-zd__title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100px;
  height: 2px;
  background: #2F4858;
}
.booklet-char-zd__list {
  padding-left: 10px;
}
.booklet-char-zd__item {
  position: relative;
  margin-bottom: 22px;
}
.booklet-char-zd__item:last-child {
  margin-bottom: 0;
}
.booklet-char-zd__item:hover .remove-row {
  opacity: 1;
  visibility: visible;
}
.booklet-char-zd__label {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: var(--theme-third-color, #808f98);
  max-width: 372px;
  max-height: 20px;
}
.booklet-char-zd__value {
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  color: var(--theme-fourth-color, #000000);
  max-width: 372px;
  max-height: 40px;
}
.booklet-char-zd__right {
  flex: 0 1 48%;
  width: 48%;
  height: 100%;
}
.booklet-char-zd__img {
  position: relative;
  width: 100%;
  height: 100%;
}
.booklet-char-zd__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booklet-mansory__row {
  display: grid;
  grid-template-columns: 1.5fr 1.4fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  gap: 10px;
}
.booklet-mansory__item {
  position: relative;
  grid-area: 1/2/2/3;
}
.booklet-mansory__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.booklet-mansory__item:first-child {
  grid-area: 1/1/3/2;
}
.booklet-mansory__item:last-child {
  grid-area: 2/2/3/3;
}

.booklet-grid__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}
.booklet-grid__item {
  position: relative;
}
.booklet-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booklet-desc__img {
  position: relative;
  height: 330px;
}
.booklet-desc__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.booklet-desc__content {
  padding: 10px 15px;
  height: 225px;
  overflow: hidden;
}
.booklet-desc__row {
  display: flex;
  justify-content: space-between;
  margin: 0 -8px;
}
.booklet-desc__col {
  flex: 0 1 50%;
  padding: 0 8px;
}
.booklet-desc__col:last-child {
  padding-top: 16px;
}
.booklet-desc__title {
  position: relative;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: var(--theme-main-color, #ab2228);
  margin-bottom: 15px;
  width: 782px;
  height: 29px;
}
.booklet-desc__title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100px;
  height: 2px;
  background: #2F4858;
}
.booklet-desc__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #2F4858;
  max-width: 782px;
  max-height: 175px;
}
.booklet-desc__text p {
  text-indent: 15px;
}

.booklet-info__wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}
.booklet-info__img {
  position: relative;
  flex: 0 1 71.4%;
  width: 71.4%;
  height: 100%;
}
.booklet-info__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.booklet-info__content {
  width: 100%;
  max-width: 460px;
  position: absolute;
  padding: 25px 30px 26px;
  background: #FFFFFF;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
}
.booklet-info__title {
  position: relative;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: var(--theme-main-color, #ab2228);
  margin-bottom: 26px;
  max-width: 400px;
  max-height: 35px;
}
.booklet-info__title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100px;
  height: 2px;
  background: #2F4858;
}
.booklet-info__text {
  padding: 0 10px;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-align: justify;
  color: #2F4858;
  max-width: 400px;
  max-height: 440px;
}

.booklet-kommun__row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.booklet-kommun__left {
  flex: 0 1 51.3%;
  width: 51.3%;
  height: 100%;
}
.booklet-kommun__title {
  position: relative;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: var(--theme-main-color, #ab2228);
  margin-bottom: 32px;
  max-width: 340px;
  max-height: 35px;
}
.booklet-kommun__title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100px;
  height: 2px;
  background: #2F4858;
}
.booklet-kommun__list {
  padding-left: 10px;
}
.booklet-kommun__item {
  position: relative;
  margin-bottom: 35px;
}
.booklet-kommun__item:last-child {
  margin-bottom: 0;
}
.booklet-kommun__item:hover .remove-row {
  opacity: 1;
  visibility: visible;
}
.booklet-kommun__label {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: var(--theme-third-color, #808f98);
  max-width: 330px;
  max-height: 20px;
}
.booklet-kommun__value {
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  color: var(--theme-fourth-color, #000000);
  max-width: 330px;
  max-height: 40px;
}
.booklet-kommun__right {
  flex: 1 1 auto;
  padding: 0 15px 0 40px;
}
.booklet-kommun__img {
  position: relative;
  width: 100%;
  height: 100%;
}
.booklet-kommun__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booklet-advanture__row {
  display: flex;
  justify-content: space-between;
}
.booklet-advanture__left {
  flex: 0 0 33.9%;
  width: 33.9%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 15px;
}
.booklet-advanture__img {
  position: relative;
  height: 178px;
}
.booklet-advanture__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.booklet-advanture__right {
  flex: 1 1 auto;
  width: 64.1%;
  height: 100%;
  padding: 10px 15px 10px 35px;
}
.booklet-advanture__title {
  margin-bottom: 40px;
  width: fit-content;
}
.booklet-advanture__title [contenteditable] {
  display: inline-block;
  max-width: 470px;
  max-height: 30px;
}
.booklet-advanture__title .add-item {
  left: auto;
  right: -25px;
}
.booklet-advanture__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.booklet-advanture__item {
  position: relative;
  height: 73px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #2F4858;
}
.booklet-advanture__item [contenteditable] {
  max-width: 238px;
  max-height: 60px;
}
.booklet-advanture__item .remove-row {
  top: 8px;
  left: -14px;
  padding-right: 20px;
}
.booklet-advanture__item:hover .remove-row {
  opacity: 1;
  visibility: visible;
}

.booklet-map__row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.booklet-map__content {
  flex: 1 1 auto;
  height: 100%;
  padding: 15px 25px 15px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booklet-map__title {
  margin-bottom: 23px;
  max-width: 302px;
  max-height: 64px;
}
.booklet-map__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #2F4858;
}
.booklet-map__map {
  flex: 0 0 57.8%;
  width: 57.8%;
  height: 100%;
}
.booklet-map__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booklet-contacts__wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.booklet-contacts__img {
  position: relative;
  width: 600px;
  height: 500px;
}
.booklet-contacts__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.booklet-contacts__content {
  position: absolute;
  width: 100%;
  max-width: 384px;
  bottom: 30px;
  right: 30px;
  background: #FFFFFF;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  padding: 20px 27px 40px;
}
.booklet-contacts__title {
  margin-bottom: 36px;
  max-width: 384px;
  max-height: 60px;
}
.booklet-contacts__info {
  display: flex;
}
.booklet-contacts__avatar {
  width: 75px;
  height: 75px;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
}
.booklet-contacts__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.booklet-contacts__avatar .svg-preloader {
  width: 70px;
  height: 70px;
}
.booklet-contacts__desc {
  padding-left: 30px;
  flex: 1 1 auto;
}
.booklet-contacts__desc p {
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #2F4858;
  margin-bottom: 18px;
  max-width: 225px;
  max-height: 20px;
}
.booklet-contacts__desc p.dubble-height {
  max-height: 40px;
}
.booklet-contacts__desc p:last-child {
  margin-bottom: 0;
}
.booklet-contacts__desc a {
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #2F4858;
  margin-bottom: 18px;
}

.address_result {
  position: absolute;
  top: 120%;
  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 */
