.ssam-theme-default-booking-container .text-tour-price,
.ssam-theme-default-booking-container .color-accent {
  color: #482913 !important;
}

.ssam-theme-default-booking-container .h-box-features-ico {
  color: #482913 !important;
  opacity: 1;
}

.ssam-theme-default-booking-container .btn-buy-tour {
  background-color: #482913 !important;
}

.ssam-theme-default-booking-container .btn-buy-tour:hover {
  color: #222;
}

.btn-request-tour {
  background-color: #482913;
  padding: 15px 30px;
  display: inline-block;
  color: #fff;
  cursor: pointer;
  border-radius: 28px;
  transition: 0.2s;
  font-size: 16px;
  font-weight: 500;
}

.btn-request-tour:hover {
  background-color: #DF7A14;
}

.form-pop {
  display: none;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  font: 500 14px/1.3 "Manrope", sans-serif;
  color: #482913;
  box-sizing: border-box;
}
.form-pop * {
  box-sizing: border-box;
}
.form-pop.opened {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-pop .form {
  padding: 20px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.0784313725);
  background: #FFF9F1;
  border-radius: 10px;
  width: 500px;
  max-width: 90%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.form-pop .form .form-close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  opacity: 0.3;
  transition: 0.2s;
}
.form-pop .form .form-close:hover {
  opacity: 1;
}
.form-pop .form .form-close svg {
  width: 100%;
  height: 100%;
}
.form-pop .form .form-title {
  font-size: 26px;
  font-weight: 500;
  text-align: center;
  text-wrap: balance;
}
.form-pop .form .form-description {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  text-wrap: balance;
}
.form-pop .form .inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: center;
}
.form-pop .form .inputs input {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  font-size: 18px;
  border: 1px solid #DEDEDE;
  border-radius: 50px;
  outline: none;
}
.form-pop .form .inputs input.invalid {
  border-color: red;
  box-shadow: 0 0 3px red;
}
.form-pop .form .form-btn {
  background-color: #482913;
  color: #fff;
  transition: 0.2s;
  cursor: pointer;
  border-radius: 28px;
  text-align: center;
  font-size: 16px;
  width: 200px;
  height: 40px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-pop .form .form-btn:hover {
  background-color: #DF7A14;
}
.form-pop .form .form-btn:active {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.form-pop .form .form-loader {
  width: 100%;
  height: 344px;
  background: url("../i/loader.svg") no-repeat center/80px;
}
