.book-box {
  width: 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.book-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

p.book-title {
  color: var(--black);
  font-family: var(--font-family-main);

  font-weight: 400;
  font-size: 72px;
  line-height: 110%;
}

p.book-text {
  color: var(--black);
  font-family: var(--font-family-mon);
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}

/** **/

.book-form {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
}

/** **/
.book-form-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.book-form-righ-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.book-form-right-top-container {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}

.book-form-right-top-container span {
  color: var(--dark-grey);
  font-family: var(--font-family-mon);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
}

.book-form-right-top-container span span,
.book-form-right-top-container span a {
  color: var(--black);
}

.book-form-right-top-container span a {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.book-form-right-top-container span a::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.book-form-right-top-container span a:hover::before,
.book-form-right-top-container span a:active::before {
  transform: scaleX(1);
}

.book-form-right-top-container span a:not(:hover)::before {
  transform-origin: right;
}

/** **/

.book-form-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.elementor .book-form-right-bottom img {
  height: 272px;
  width: 100%;
}

.book-form-left form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.book-form-left form input {
  width: 584px;
  height: 56px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--dark-grey);
  padding: 17px 16px;
  color: var(--dark-grey);
  font-family: var(--font-family-mon);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  transition: all 0.5s ease;
}

.book-form-left form input::placeholder {
  color: var(--dark-grey);
  font-family: var(--font-family-mon);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}

.book-form-left form input:focus-visible {
  outline: none;
  border: none;
  border-bottom: 1px solid var(--tiffany);
}

.form-btn {
  background-color: var(--yellow);
  border: none;
  color: var(--black);
  font-family: var(--font-family-mon);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  width: 584px;
  height: 56px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  /* pointer-events: none; */
}

/** **/
.form-container-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.input-icon {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.options-block {
  display: none;
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #58585814;
  z-index: 10;
}

.options-block.active {
  display: block;
}

.option {
  cursor: pointer;
  width: 584px;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.option.active {
  background-color: #3e30270a;
  position: relative;
}

.option.active:before {
  content: "";
  position: absolute;
  background-image: url("../icon/paws.png");
  right: 40px;
  width: 24px;
  height: 24px;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
}

.form-container-dropdown p {
  color: #585858;
  font-family: var(--font-family-mon);
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  padding: 8px 16px 0 16px;
}

.form-container-dropdown p span {
  font-weight: 600;
}

.form-container-dropdown input {
  cursor: pointer;
}

/** **/
p.book-calculator-container-title {
  font-family: var(--font-family-main);
  font-weight: 400;
  font-size: 32px;
  line-height: 110%;
  text-align: center;
  text-transform: uppercase;
  color: var(--black);
}

p.book-calculator-container-text {
  font-family: var(--font-family-mon);
  font-weight: 400;
  font-size: 14px;
  line-height: 145%;
  text-align: center;
  color: var(--black);
  padding: 20px 0 40px 0;
}

p.book-calculator-container-price {
  font-family: var(--font-family-main);
  font-weight: 400;
  font-size: 64px;
  line-height: 110%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--black);
}

.book-calculator-box.openBook {
  display: flex;
}

.book-calculator-box {
  padding: 80px 0;
  flex-direction: column;
  gap: 64px;
}

.price-box {
  display: flex;
  gap: 18px;
}

.book-calculator-container {
  display: flex;
  flex-direction: column;
  padding: 48px 24px;
  border: 1px solid #bbbbbb;
  width: 50%;
  cursor: pointer;
  transition: all 0.3 ease-in-out;
}

.book-calculator-container.select {
  background-color: var(--yellow);
  border: 1px solid var(--yellow);
}

p.addons-box-title {
  font-weight: 400;
  font-size: 32px;
  line-height: 110%;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-family-main);
  color: var(--black);
}

p.addons-box-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 145%;
  text-align: center;
  font-family: var(--font-family-mon);
  color: var(--black);
  padding: 20px 0 32px 0;
}

.addons-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

span.addons-list-ul {
  display: flex;
  flex-direction: row;
  padding: 16px 20px;
  align-items: center;
  justify-content: space-between;
  width: clamp(232px, 280px, 100%);
  border: 1px solid #bbbbbb;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3 ease-in-out;
}

span.addons-list-ul.select {
  background-color: var(--yellow);
  border: 1px solid var(--yellow);
}

span.addons-list-ul span {
  font-weight: 500;
  font-size: 14px;
  line-height: 145%;
  font-family: var(--font-family-mon);
  color: var(--black);
}

span.addons-list-ul span.addons-list-ul-price {
  font-family: var(--font-family-main);
  font-size: 20px;
}

button#book-send {
  margin: -8px 0 0 0;
  background-color: var(--yellow);
  border: none;
  font-family: var(--font-family-mon);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--black);
  width: 596px;
  height: 56px;
  align-self: center;
  cursor: pointer;
}

.book-calculator-box {
  display: none;
}

#mob-map-hide {
  display: none;
}

div#breed-box img {
  top: 25px;
}

/** **/

.options-block .tab-content {
  display: none;
}

.tab.active {
  background-color: var(--yellow);
  font-weight: bold;
}

.options-block {
  display: none;
}

.options-block.active {
  display: block;
}

.options-block .tab-content {
  max-height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.tabs {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.tabs .tab {
  width: 90px;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 13px;
  padding: 15px 0;
}

.tabs .tab span {
  width: 40px;
  height: 40px;
}

.tabs .tab p {
  color: var(--black);
  font-family: var(--font-family-mon);
  font-weight: 600;
  font-size: 13px;
  line-height: 100%;
  text-transform: uppercase;
}

.tabs .tab img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/** **/

.book-form-right-bottom img {
  height: 272px;
  width: 100%;
}

@media (max-width: 768px) {
  .price-box {
    flex-direction: column;
  }

  .book-calculator-container {
    width: 100%;
    padding: 40px 16px;
  }

  button#book-send {
    width: 100%;
    height: 46px;
  }

  span.addons-list-ul {
    width: -webkit-fill-available;
  }

  .book-calculator-box {
    padding: 40px 0;
  }

  div#breed-box img {
    top: 25px;
  }
}
