@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/ptsans-400.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/ptsans-700.woff2") format("woff2");
  font-display: swap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  border: none;
  padding: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.button-header {
  padding: 8px 34px;
  flex-shrink: 0;
  margin-top: 14px;
  margin-left: 20px;
  align-self: flex-start;
}

.button-large {
  background-color: #82b3d3;
  font-size: 20px;
  line-height: 36px;
  padding: 8px 50px;
  border-radius: 0 4px 4px 0;
}

.button-large:hover,
.button-large:focus {
  background-color: #68a2ca;
  outline: none;
}

.button-large:active {
  background-color: #68a2ca;
  opacity: 30%;
}

.button-primary{
  background-color: #756157;
}

.button-primary:hover {
  background-color: #615048;
}

.button-primary:focus {
  background-color: #615048;
  outline: none;
}

.button-primary:active {
  background-color: #756157;
}

.button-primary:disabled {
  background-color: #E5E5E5;
}

.button-secondary {
  background-color: #82b3d3;
}

.button-secondary:hover {
  background-color: #68a2ca;
}

.button-secondary:focus {
  background-color: #68a2ca;
  outline: none;
}

.button-secondary:active {
  background-color: #82b3d3;
  color: #ffffff;
  opacity: 0.3;
}

.button-secondary:disabled {
  background-color: #e5e5e5;
}

.button-active {
  background-color: #7db54f;
}

.button-active:hover {
  background-color: #6c9e42;
}

.button-active:focus {
  background-color: #6c9e42;
  outline: none;
}

.button-active:active {
  background-color: #7db54f;
  color: rgba(255, 255, 255, 0.3);
}

.button-transparent {
  background-color: transparent;
}

.button-transparent:hover {
  opacity: 0.6;
}

.button-transparent:focus {
  outline: 3px solid #83b3d3;
}

.button-transparent:active {
  opacity: 0.3;
}

.button-transparent:disabled {
  opacity: 0.1;
}

.list-none {
  margin: 0;
  padding: 0;
  list-style: none;
}

html {
  background-color: #f2f2f2;
  height: 100%;
}

body {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #333333;
  margin: 0 auto;
  width: 1200px;
  background-color: #ffffff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.page-header {
  padding: 0 70px;
  height: 100%;
}

.navigation {
  display: flex;
}

.navigation-logo{
  flex-shrink: 0;
  margin-bottom: -11px;
}

.navigation-list{
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  max-width: 540px;
  margin-left: 30px;
  margin-right: 20px;
}

.navigation-link {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  text-decoration: none;
  padding: 20px 16px;
  display: flex;
  align-items: center;
}

.navigation-link:not(.current-link):hover {
  color: #756157;
}

.navigation-link:not(.current-link):focus {
  color: #756157;
}

.navigation-link:not(.current-link):active {
  color: #756157;
  opacity: 0.3;
}

.current-link {
  cursor: default;
}

.active {
  text-decoration-line: underline;
  text-decoration-color: #756157;
  text-decoration-style: solid;
  text-decoration-thickness: 2px;
  text-underline-offset: 20px;
  text-underline-position: under;
}

.navigation-user-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 135px;
  margin-left: auto;
  align-items: baseline;
}

.navigation-user-link {
  display: inline-flex;
  padding: 21px 13px;
  align-items: center;
}

.navigation-user-link:hover {
  fill: #756157;
}

.navigation-user-link:focus {
  fill: #756157;
}

.navigation-user-link:active {
  fill: #756157;
  opacity: 0.3;
}

.favorite {
  position: relative;
}

.user-counter {
  position: absolute;
  bottom: 30px;
  left: 20px;
  width: 20px;
  height: 20px;
  font-weight: 400;
  font-size: 10px;
  line-height: 10px;
  color: #ffffff;
  background-color: #7db54f;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero{
  width: 100%;
  min-height: 485px;
  background-image: url(../images/svg/divider.svg), url(../images/hero-background.jpg);
  background-size: 100% auto, cover;
  background-repeat: no-repeat;
  background-position: left bottom, left top;
  background-color: #82b3d3;
  padding-top: 51px;
  box-sizing: border-box;
}

.hero-image{
  display: block;
  margin: 0 auto;
}

.advantages {
  padding-top: 69px;
}

.advantages-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  text-transform: uppercase;
  text-align: center;
  color: #000000;
  margin: 0;
  margin-bottom: 25px;
}

.advantages-text{
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  margin: 0;
  margin-bottom: 90px;
}

.advantages-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.advantages-wrapper {
  padding: 102px 85px;
}

.advantages-item {
  width: calc(100% / 3);
  min-height: 385px;
  box-sizing: border-box;
  padding: 114px 85px;
  background-color: #83B3D31F;
}

.advantages-item:nth-child(odd):not(.advantages-item-image) {
  background-color: #83b3d333;
}

.advantages-item img {
  display: block;
  object-fit: cover;
}

.advantages-item h3{
  position: relative;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.advantages-item h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #000000;
  margin: 29px auto 30px;
  opacity: 0.3;
}

.advantages-item-image h3::after {
  background-color: #ffffff;
}

.advantages-item p {
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  margin: 0;
}

.advantages-item-image{
  width: 100%;
  display: flex;
  background-color: #82b3d3;
  padding: 0;
}

.advantages-item-image h3 {
  color: #ffffff;
}

.advantages-item-image p {
  color: #ffffff;
}

.advantages-item-reverse {
  flex-direction: row-reverse;
}

.advertising {
  padding-top: 62px;
}

.advertising-title{
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  margin-bottom: 20px;
}

.advertising-text {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  margin: 0;
  margin-bottom: 64px;
}

.advertising-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.advertising-item {
  width: calc(100% / 3);
  min-height: 385px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 81px 85px;
  background-color: #83B3D31F;
  background-repeat: no-repeat;
  background-position: 50% 80px;
}

.advertising-item-first {
  background-image: url(../images/svg/icon-home.svg);
}

.advertising-item-second {
  background-image: url(../images/svg/icon-food.svg);
}

.advertising-item-third {
  background-image: url(../images/svg/icon-gift.svg);
}

.advertising-item:nth-child(even) {
  background-color: #ffffff;
}

.advertising-item object {
  display: block;
  margin: 0 auto;
}

.advertising-item h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  text-align: center;
  color: #000000;
  margin: 0;
  margin-top: 102px;
  margin-bottom: 30px;
}

.advertising-item p {
  text-align: center;
  margin: 0;
  flex-grow: 1;
}

.search {
  padding: 96px;
  text-align: center;
}

.search h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  margin-bottom: 20px;
}

.search p {
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  margin: 0;
  margin-bottom: 54px;
}

.search-link {
  background-color: #756157;
  border-radius: 4px;
}

.search-link:hover {
  background-color: #615048;
}

.search-link:focus {
  background-color: #615048;
  outline: none;

}

.search-link:active {
  background-color: #756157;
}

.search-link:disabled {
  background-color: #E5E5E5;
}

.subscription {
  background-image: url("../images/subscribe-background.jpg");
  background-color: #82b3d3;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 96px 258px 104px;
}

.subscription h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  margin: 0;
  margin-bottom: 20px;
}

.subscription p {
  font-size: 22px;
  line-height: 26px;
  color: #ffffff;
  text-align: center;
  margin: 0;
  margin-bottom: 54px;
}

.newsletter-form {
  margin: 0;
  display: flex;
  justify-content: center;

}

.field {
  font-family: "PT Sans", sans-serif;
  color: #000000;
  width: 452px;
  padding: 15px 20px;
  font-size: 18px;
  line-height: 24px;
  background-color: #f2f2f2;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;

}

.field::placeholder {
  font-family: "PT Sans", sans-serif;
  font-size: 18px;
}

.page-footer {
  display: flex;
  justify-content: space-between;
  padding: 45px 70px 30px 70px;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  max-width: 184px;
}

.social-link {
  display: inline-flex;
  width: 47px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  fill: #83b3d3;
}

.social-link:hover svg {
  fill: #68a2ca;
}

.social-link:focus svg {
  fill: #68a2ca;
}

.social-link:active svg {
  fill: rgba(104, 162, 202, 0.3);
}

.contact-link {
  font-size: 40px;
  line-height: 36px;
  color: #000000;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.contact-link:hover {
  color: #756157;
}

.contact-link:focus {
  outline: none;
  color: #756157;
}

.contact-link:active {
  color: rgba(117, 97, 87, 0.3);
}

.contact-number {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-logo svg:hover {
  fill: #756157;
}

.footer-logo svg:focus {
  outline: none;
  fill: #756157;
}

.footer-logo svg:active {
  fill: rgba(117, 97, 87, 0.3);
}

.catalog-filter-wrapper {
  background-image: url("../images/catalog-background.jpg");
  background-repeat: no-repeat;
  background-color: #82b3d3;
  background-size: cover;
  padding: 35px 70px 70px;
  box-sizing: border-box;
}

.catalog-filter form {
  display: flex;
}

.header-inner h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 78px;
  color: #ffffff;
  margin: 0;
  margin-bottom: 6px;
}

.breadcrumbs-list {
  margin: 0;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1060px;
}

.link-home:hover {
  opacity: 0.6;
}

.link-home:focus {
  opacity: 1;
  outline: none;
}

.link-home:active {
  opacity: 0.3;
}

.link-hotel {
  font-size: 16px;
  line-height: 21px;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  margin-left: 28px;
  cursor: default;
}

.link-hotel::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 20px;
  background-image: url("../images/svg/breadcrumbs.svg");
  background-repeat: no-repeat;
  left: -18px;
  top: 6px;
}

.filter-group {
  border: none;
  margin: 0;
  padding: 0;
}

.infrastrukture {
  margin-right: 71px;
}

.type-housing {
  margin-right: 151px;
}

.price {
  margin-right: 70px;
}

.group-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  padding: 0;
  margin-bottom: 32px;
}

.group-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.group-item:not(:last-child) {
  margin-bottom: 16px;
}

.input-text{
  line-height: 23px;
  color: #ffffff;
  padding-left: 16px;
}

.group-item:hover {
  opacity: 0.6;
}

.group-item:active {
  opacity: 0.3;
}

input[type= "checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 4px;
  cursor: pointer;
  margin: 0;
}

input[type= "checkbox"]:checked {
  background-image: url("../images/svg/checkbox.svg");
  background-repeat: no-repeat;
  background-position: center;
}

input[type= "radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ffffff;
  margin: 0;
}

input[type= "radio"]:checked {
  background-color: #3F5E72;
  box-shadow: inset 0 0 0 5px #ffffff;
}

.price-inputs {
  width: 288px;
  display: flex;
  gap: 2px;
  margin-bottom: 31px;
}

.price-input {
  width: 100%;
  position: relative;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type='number'] {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  height: 48px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  padding-left: 20px;
  padding-right: 42px;
  box-sizing: border-box;
  appearance: textfield;
  -moz-appearance: textfield;
}

.input {
  font-family: inherit;
}

.input-from {
  border-radius: 4px 0 0 4px;
}

.input-to {
  border-radius: 0 4px 4px 0;
}

.label-input {
  position: absolute;
  top: 50%;
  transform: translateY(-10px);
  left: 73%;
  opacity: 0.3;
}

.range-scale {
  position: relative;
}

.input-range[type='range'] {
  width: 100%;
  height: 4px;
  overflow: hidden;
  outline: none;
  opacity: 0.3;
}

.input-range[type='range'],
.input-range[type='range']::-webkit-slider-runnable-track,
.input-range[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
}

.range-progress {
  width: calc(100% / 2 + 25%);
  height: 4px;
  background-color: #ffffff;
  position: absolute;
  top: 13px;
}

.range-thumb {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.range-thumb:hover {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}

.range-thumb:focus {
  border: 3px solid #83b3d3;
  outline: none;
}

.range-thumb:active {
  border: 2px solid #83b3d3;
  outline: none;
}

.thumb-min {
  top: -8px;
}

.thumb-max {
  top: -8px;
  left: 207px;
}

.filter-button {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 191px;
  margin-top: 56px;
}

.cards {
  padding: 50px 70px 60px;
}

.cards-sorting {
  margin: 0 auto;
  width: 1060px;
  display: flex;
  margin-bottom: 40px;
}

.sorting-result {
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
  margin-top: 7px;
  margin-right: auto;
  flex-shrink: 0;
}

.sorting {
  font-family: inherit;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  width: 292px;
  height: 49px;
  border: 2px solid #e5e5e5;
  border-radius: 4px;
  padding-left: 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/svg/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: 258px 50%;
  flex-shrink: 0;
  margin-left: 70px;
  cursor: pointer;
}

.sorting:hover {
  border: 2px solid #68a2ca;
}

.sorting:focus {
  outline: none;
  border: 2px solid #68a2ca;
}

.sorting:active {
  border: 2px solid #000000;
  opacity: 0.3;
}

.cards-view-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: 70px;
}

.cards-view-link {
  border: 2px solid #e5e5e5;
  border-radius: 4px;
  background-color: #ffffff;
  width: 48px;
  height: 48px;
  padding: 14px 12px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.active-card{
  border: 2px solid #000000;
}

.cards-view-link:hover {
  border: 2px solid #000000;
  border-radius: 4px;
}

.cards-view-link:focus {
  outline: none;
  border: 2px solid #68a2ca;
  border-radius: 4px;
}

.cards-view-link:active {
  border: 2px solid #000000;
  border-radius: 4px;
}

.cards-view-item img {
  display: block;
}

.cards-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.cards-item {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 20px 19px 18px 18px;
}

.cards-item-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  text-align: left;
  color: #000000;
  align-items: center;
 }

.cards-price-wrapper {
  display: flex;
  justify-content: space-between;
}

.cards-button-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.button-cards {
  flex-grow: 1;
  justify-content: center;
  width: 40%;
}

.cards-rating-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.cards-item-rating {
  display: inline-flex;
  justify-content: center;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  margin: 0;
  padding: 9px;
  width: 122px;
  border-radius: 4px;
  background-color: #f2f2f2;
}

.stars {
  background-image: url("../images/svg/star.svg");
  background-repeat: repeat;
  background-size: 23px 17px;
  display: inline-flex;
  align-self: center;
  width: 90px;
  height: 17px;
}

.stars-three {
  width: 65px;
}

.stars-two {
  width: 45px;
}

.pagination-list {
  display: flex;
  border-top: 1px solid #e6e6e6;
  padding-top: 38px;
}

.pagination-link {
  font-weight: 700;
  font-size: 20px;
  line-height: 36px;
  color: #ffffff;
  min-width: 60px;
  height: 60px;
  background-color: #82b3d3;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  box-sizing: border-box;
  padding: 10px;
}

.pagination-link:not(.pagination-link-current):hover {
  background-color: #68a2ca;
}

.pagination-link:not(.pagination-link-current):focus {
  background-color: #68a2ca;
  outline: none;
}

.pagination-link:not(.pagination-link-current):active {
  background-color: #82b3d3;
  color: rgba(255, 255, 255, 0.3);
}


.pagination-link-current {
  color: #000000;
  background-color: #f2f2f2;
}

.link-more{
  color: #000000;
  background-color: transparent;
}

.subscription-inner {
  background-image: none;
  background-color: #ffffff;
}

.subscription-inner h2 {
  color: #000000;
}

.subscription-inner p {
  color: #333333;
}

/*popup*/

.modal-container{
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(242, 242, 242, 0.8);
}

.modal-container-opened {
  display: flex;
}

.modal{
  position: relative;
  margin: auto;
  padding: 64px 70px;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.15);
  width: 577px;
}

.title-wrapper {
  display: flex;
}

.modal-close-button {
  padding: 0;
  width: 52px;
  height: 52px;
  background-color: #f2f2f2;
  border: none;
  border-radius: 50%;
  background-image: url("../images/svg/modal-close.svg");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  left: 18px;
}

.modal-close-button:hover {
  background-color: #E5E5E5;
}

.modal-close-button:focus {
  border: 3px solid #83B3D3;
}

.modal-close-button:active {
  opacity: 0.3;
  border: none;
}

.modal-title {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #000000;
  margin: 0;
  margin-bottom: 64px;
  text-transform: uppercase;
  margin-right: auto;
}

.field-date {
  margin-bottom: 23px;
}

.input-label {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000000;
  flex-shrink: 0;
  min-width: 137px;
}

.input-label-children {
  min-width: 50px;
  margin-right: 10px;
}

.tooltip-wrapper {
  margin-right: 82px;
}

.search-form-field {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  color: #000000;
  padding: 12px 40px 12px 20px;
  font-size: 18px;
  line-height: 24px;
  background-color: #f2f2f2;
  border: none;
  border-radius: 4px;
  outline: none;
  margin: 0;
  box-sizing: border-box;
  flex-grow: 1;
  flex-shrink: 0;
  background-image: url("../images/svg/date-icon.svg");
  background-repeat: no-repeat;
  background-position: 95% 50%;
}

.search-form-field:hover {
  background: #e6e6e6;
  outline: 2px solid #000000;
  opacity: 1;
  background-image: url("../images/svg/date-icon.svg");
  background-repeat: no-repeat;
  background-position: 95% 50%;
}

.search-form-field:focus {
  outline: 3px solid #82b3d3;
  background-image: url("../images/svg/date-icon.svg");
  background-repeat: no-repeat;
  background-position: 95% 50%;
}

.search-form-field:active {
  outline: 2px solid #000000;
  opacity: 1;
  background-image: url("../images/svg/date-icon.svg");
  background-repeat: no-repeat;
  background-position: 95% 50%;
}

.label-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.field-message{
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #333333;
  margin: 0;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 137px;
  margin-top: 4px;
}

.warning-message {
  color: #FF5757;
}

.field-age-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.adults-wrapper,
.children-wrapper {
  display: flex;
  align-items: center;
}

.button-wrapper {
  display: flex;
}

.button-wrapper:hover {
  outline: 3px solid #82b3d3;
  border-radius: 4px;
}

.number-form-field[type='number'] {
  position: relative;
  font-family: inherit;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  width: 31px;
  color: #000000;
  background-color: #f2f2f2;
  padding: 0;
  border: none;
  outline:none
}

.number-form-field[type='number']:hover {
  color: red;
}

.number-form-field[type='number']:focus {
  color: red;
}

.number-form-field[type='number']:active {
  color: #756157;
}

.button-field{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 48px;
  box-sizing: border-box;
  border-radius: 4px 0 0 4px ;
  border: none;
  background-color: #f2f2f2;
  appearance: none;
  cursor: pointer;
  fill: #756157;
  fill-opacity: 0.3;
}

.button-field:hover svg {
  fill: #000000;
  fill-opacity: 1;
}

.button-field:focus svg {
  border: 3px solid #82B3D3;
  border-radius: 4px;
  fill: #000000;
  fill-opacity: 1;
}

.button-minus {
  border-radius: 4px 0 0 4px ;
}

.button-plus {
  border-radius: 0 4px 4px 0;
}

.button-modal {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  padding: 18px;
  border-radius: 10px;
}

.tooltip {
  position: relative;
  width: 26px;
  height: 26px;
  margin-right: 46px;
}

.tooltip-toggle {
  position: absolute;
  background-image: url("../images/svg/tooltip.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #83B3D3;
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  margin-right: 46px;
}

.tooltip-text {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 256px;
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
  line-height: 20px;
  text-align: start;
  color: #ffffff;
  background-color: #333333;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.3);
  padding: 20px 18px 21px 22px;
  box-sizing: border-box;
  border-radius: 10px;
  display: none;
}

.tooltip-text::after {
  position: absolute;
  content: "";
  width: 19px;
  height: 19px;
  background-color: #333333;
  top: 0;
  left: 49%;
  transform: rotate(45deg) translateX(-50%);
}

.tooltip-toggle:hover + .tooltip-text,
.tooltip-toggle:focus + .tooltip-text {
  display: block;
}
