.modal-dialog {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: none;
}

@media (max-width: 768px) {
  .modal-dialog {
    min-height: calc(100vh - 20px);
  }
}

.modal-backdrop {
  display: none;
}

.modal.fade {
  z-index: 999 !important;
}

.fade {
  background: rgba(0, 0, 0, 0.5);
}

html, body {
  overflow-x: hidden;
  font-family: "Open Sans", serif;
}

.container {
  width: 1080px;
}

.container.extended {
  width: 1220px;
}

.pagination {
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
  background: #22b573;
}

.pagination .page-item .page-link {
  border: none;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #4f4f4f;
  background: none;
}

.pagination .page-item .page-link:focus {
  box-shadow: none;
}

.pagination .page-item .page-link.active {
  color: #22b573;
  font-weight: 700;
}

form label {
  font-size: 16px;
  color: #212121;
}

form .form-control, form .form-select {
  border: 1px solid #d2d2d2;
  color: #000;
  border-radius: 8px;
  height: 40px;
}

form .form-control::placeholder, form .form-select::placeholder {
  color: rgba(48, 48, 48, 0.5);
}

form .form-control:focus, form .form-select:focus {
  box-shadow: none;
  border-color: #22b573;
  color: #000;
}

form .form-select {
  background-image: url("../images/arrow-down-green.svg");
}

.btn-main {
  background: #22b573;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  height: 40px;
}

.btn-main:hover {
  border-color: #22b573;
  color: #22b573;
}

.btn-main.btn-transparent {
  background-color: transparent;
  border-color: #22b573;
  color: #22b573;
}

.offer-holder .content {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

.offer-holder .content .title {
  font-weight: 600;
  color: #000;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  margin-bottom: .3rem;
  text-decoration: none;
}

.offer-holder .content .title img {
  margin-right: 5px;
}

.offer-holder .content .price {
  font-size: 20px;
  color: #29abe2;
  font-weight: 700;
  display: block;
  margin-bottom: .3rem;
}

.offer-holder .content .type {
  font-weight: 500;
  color: #000;
  display: block;
  margin-bottom: .3rem;
}

.offer-holder .content .notes {
  color: #808080;
  display: block;
  margin-bottom: .3rem;
}

.offer-holder .content .bottom-section {
  background: #f4fbf8;
  border-radius: 8px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 1rem;
  margin-top: 1rem;
}

.offer-holder .content .bottom-section .amenity {
  color: #808080;
  text-align: center;
}

.offer-holder .content .bottom-section .amenity span {
  color: #22b573;
  display: block;
}

.offer-holder .image-holder {
  display: block;
  position: relative;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.offer-holder .image-holder a:first-child img {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.offer-holder .image-holder .add-to-favorite, .offer-holder .image-holder .message {
  position: absolute;
  z-index: 1;
  left: 10px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  font-size: 24px;
  width: 38px;
  height: 38px;
}

.offer-holder .image-holder .add-to-favorite {
  top: 25%;
}

.offer-holder .image-holder .message {
  top: calc(25% + 50px);
}

header {
  height: 90px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .nav-pills .nav-link {
  font-size: 18px;
  font-weight: 600;
  color: #212121;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .nav-pills .nav-link.active {
  background: none;
  color: #22b573;
}

#home-main {
  padding: 3rem;
  position: relative;
}

#home-main:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .35;
  content: '';
  z-index: -1;
}

#home-main .main-img {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#home-main .middle-section {
  margin-bottom: 8rem;
  margin-top: 11rem;
  text-align: center;
}

#home-main .middle-section h1 {
  font-size: 56px;
  color: #fff;
  font-weight: 600;
  height: 68px;
}

#home-main .middle-section h2 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

#home-main .search-section {
  background: #FEFEFF;
  border-radius: 8px;
  padding: 1.25rem;
}

#home-main .search-section .tabs-section {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-content: center;
  transition: none;
  margin-bottom: 1rem;
}

#home-main .search-section .tabs-section .btn-check + .btn {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #707070;
  width: 33%;
  transition: none;
  color: #2D2D2D;
}

#home-main .search-section .tabs-section .btn-check:checked + .btn {
  border-bottom: 5px solid #22b573;
  font-weight: 700;
}

#home-main .search-section .forms-section {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

#home-main .search-section .forms-section .form-control, #home-main .search-section .forms-section .form-select {
  width: 240px;
}

#home-main .search-section .forms-section .btn {
  width: 180px;
  height: 40px;
}

#home-main .search-section .forms-section .btn img {
  margin-right: 5px;
  position: relative;
  top: -1px;
}

#home-main .search-section .forms-section .btn:hover:not(.btn-transparent) {
  color: #fff;
  background: #22b573;
}

#home-top-offers .container {
  padding: 0;
}

#home-top-offers .swiper {
  padding: 0.75rem;
}

#home-top-offers h2 {
  font-size: 32px;
  font-weight: 500;
  color: #303030;
  margin: 4rem 0;
  margin-bottom: 2rem;
  text-align: center;
}

#home-advantages {
  padding: 5rem 0;
}

#home-advantages h3 {
  font-size: 28px;
  font-weight: 600;
  color: #303030;
}

#home-advantages span {
  font-size: 24px;
  color: #303030;
}

#home-advantages .col-xl-6 {
  margin-bottom: 5rem;
}

#home-instruments h4 {
  font-size: 32px;
  font-weight: 500;
  color: #303030;
  text-align: center;
  margin-bottom: 2rem;
}

#home-instruments .holder {
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.12);
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  font-size: 17px;
  font-weight: 500;
  color: #212121;
  text-align: center;
}

#home-instruments .holder img {
  display: block;
  text-align: center;
  margin: auto;
  margin-bottom: 1.75rem;
  width: 60px;
  height: 90px;
}

#faq-include {
  margin-top: 5rem;
  margin-bottom: 3rem;
}

#faq-include h5 {
  color: #303030;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}

#faq-include .accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
}

#faq-include .accordion .accordion-item .accordion-header, #faq-include .accordion .accordion-item .accordion-body {
  border: none;
}

#faq-include .accordion .accordion-item .accordion-button {
  box-shadow: none;
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

#faq-include .accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}

#faq-include .accordion .accordion-item .accordion-button:after {
  background-image: url("../images/plus.svg");
}

#faq-include .accordion .accordion-item .accordion-button:not(.collapsed) {
  border: 1px solid #22b573;
  border-bottom: none;
  border-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: none;
  color: #29abe2;
}

#faq-include .accordion .accordion-item .accordion-button:not(.collapsed):after {
  background-image: url("../images/dash.svg");
}

#faq-include .accordion .accordion-item .accordion-collapse {
  border: 1px solid transparent;
  border-top: none;
  border-radius: 8px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

#faq-include .accordion .accordion-item .accordion-collapse.show, #faq-include .accordion .accordion-item .accordion-collapse.collapsing {
  border-color: #22b573;
}

#faq-include .accordion .accordion-item .accordion-body {
  padding-right: 10%;
}

#contacts {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

#contacts h1 {
  font-size: 24px;
  font-weight: 700;
  color: #323232;
  margin-bottom: 2rem;
}

#contacts form label {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  color: #606060;
}

#contacts form input.form-control {
  height: 48px;
  margin-bottom: 1rem;
  display: block;
  border-color: #d2d2d2;
  border-radius: 8px;
  color: #000;
}

#contacts form textarea {
  margin-bottom: 1rem;
  display: block;
  border-color: #d2d2d2;
  border-radius: 8px;
  height: 180px;
  color: #000;
}

#contacts form .btn-main {
  width: 100%;
  height: 45px;
  font-size: 18px;
  font-weight: 600;
  margin-top: .5rem;
}

#contacts .contacts-right {
  padding-top: calc(2rem + 30px);
  padding-left: 3rem;
}

#contacts .contacts-right #map {
  margin-bottom: 3rem;
}

#contacts .contacts-right #map img {
  width: 100%;
  border-radius: 8px;
}

#contacts .contacts-right .contact-box {
  display: block;
  text-decoration: none;
  margin-bottom: 2rem;
  color: #2d2d2d;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  font-size: 20px;
}

#contacts .contacts-right .contact-box:hover {
  color: #22b573;
}

#contacts .contacts-right .contact-box img {
  margin-right: 1rem;
}

#results {
  padding-top: 2.5rem;
}

#results.filters-shown .results-internal {
  width: 65%;
  margin-left: auto;
}

#results.filters-shown .results-internal .offers-holder .offer-holder {
  width: 50%;
}

#results.filters-shown .results-internal .offers-row.sort-2 .offer-holder .image-holder {
  width: 50%;
}

#results.filters-shown .results-internal .offers-row.sort-2 .offer-holder .content {
  width: 50%;
}

#results.filters-shown .results-internal .offers-row.sort-2 .offer-holder .content .price, #results.filters-shown .results-internal .offers-row.sort-2 .offer-holder .content .type, #results.filters-shown .results-internal .offers-row.sort-2 .offer-holder .content .notes {
  margin: .5rem 0;
}

#results .offer-holder {
  margin-bottom: 2rem;
}

#results .heading {
  margin-bottom: .75rem;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#results .heading h1 {
  font-size: 26px;
  color: #323232;
  font-weight: 600;
  margin-bottom: 0;
}

#results .heading h1 span {
  font-size: 14px;
  color: #606060;
  margin-left: 3px;
}

#results .heading .sort-control a:first-child {
  margin-right: 10px;
}

#results .heading .sort-control a.active img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(66%) saturate(487%) hue-rotate(101deg) brightness(97%) contrast(90%);
}

#results .selected-filters {
  margin-bottom: 3rem;
}

#results .selected-filters .btn-filters {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
}

#results .selected-filters .btn-filters img {
  margin-right: 10px;
}

#results .selected-filters .btn-filters:not(.active) {
  background: none;
  color: #22b573;
  border: 1px solid #22b573;
}

#results .selected-filters .btn-filters:not(.active) img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(99%) saturate(366%) hue-rotate(101deg) brightness(93%) contrast(84%);
}

#results .sub-heading {
  margin-bottom: 2rem;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#results .sub-heading h2 {
  font-size: 20px;
  font-weight: 600;
  color: #323232;
  margin-bottom: 0;
}

#results .sub-heading .view-all {
  color: #22b573;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

#results .offers-holder {
  transition: all .3s linear;
}

#results .offers-holder .offers-row {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

#results .offers-holder .offers-row .offer-holder {
  width: 33.333%;
  padding: 0 15px;
}

#results .offers-holder .offers-row.sort-2 .offer-holder {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
}

#results .offers-holder .offers-row.sort-2 .offer-holder .image-holder {
  width: 35%;
}

#results .offers-holder .offers-row.sort-2 .offer-holder .content {
  width: 65%;
  height: 100%;
  padding: 1rem 2rem;
}

#results .offers-holder .offers-row.sort-2 .offer-holder .content .notes, #results .offers-holder .offers-row.sort-2 .offer-holder .content .price, #results .offers-holder .offers-row.sort-2 .offer-holder .content .type {
  margin: 1rem 0;
}

#results #filters {
  background: #fff;
  box-shadow: 2px 0px 8px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 8px;
  position: fixed;
  left: -100%;
  height: 100%;
  width: 38%;
  z-index: 5;
  top: 90px;
  transition: left .3s linear;
}

#results #filters.active {
  left: 0;
}

#results #filters .heading {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

#results #filters .heading h2 {
  margin-left: auto;
  margin-bottom: 0;
}

#results #filters .heading h2 img {
  filter: brightness(0) saturate(100%) invert(62%) sepia(9%) saturate(7003%) hue-rotate(108deg) brightness(92%) contrast(73%);
  width: 20px;
  margin-right: 5px;
}

#results #filters .heading .close-filters {
  margin-left: auto;
}

#results #filters form .form-control, #results #filters form .form-select {
  margin-bottom: 1rem;
  display: block;
}

#results #filters form label {
  font-size: 16px;
  margin-bottom: .5rem;
  font-weight: 600;
}

#results #filters form .tabs-section {
  border: 1px solid #D2D2D2;
  border-radius: 8px;
  padding: 3px 10px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

#results #filters form .tabs-section label {
  font-size: 15px;
  color: #323232;
  width: 49%;
  height: 40px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

#results #filters form .tabs-section input:checked + label {
  background: #22b573;
  color: #fff;
  border: none;
}

#results #filters .wrapper {
  width: 100%;
}

#results #filters .price-input {
  width: 100%;
  display: flex;
  margin: 30px 0 35px;
}

#results #filters .price-input .field {
  display: flex;
  width: 100%;
  height: 45px;
  align-items: center;
}

#results #filters .field input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 19px;
  margin-left: 12px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #999;
  -moz-appearance: textfield;
}

#results #filters input[type="number"]::-webkit-outer-spin-button,
#results #filters input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

#results #filters .price-input .separator {
  width: 130px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}

#results #filters .slider {
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}

#results #filters .slider .progress {
  height: 100%;
  left: 0;
  right: 0;
  position: absolute;
  border-radius: 5px;
  background: #22b573;
}

#results #filters .range-input {
  position: relative;
}

#results #filters .range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

#results #filters input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #22b573;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

#results #filters input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #22b573;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

footer > .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

footer .top-line {
  background: linear-gradient(90deg, #22B573 10%, #29ABE2 99.99%);
  height: 11px;
}

footer .footer-disclaimer {
  height: 34px;
  text-align: center;
  background: linear-gradient(90deg, #22B573 10%, #29ABE2 99.99%);
  font-size: 16px;
  color: #fff;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer img.logo {
  width: 280px;
  margin-right: 3rem;
}

footer .footer-right {
  width: 100%;
}

footer .footer-right .footer-top {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  margin-bottom: 3rem;
}

footer .footer-right .footer-top:after {
  content: '';
  position: absolute;
  left: 0;
  top: calc(100% + 1.5rem);
  height: 1px;
  width: 300%;
  background: #ababab;
}

footer .footer-right .footer-top a {
  text-decoration: none;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #2d2d2d;
}

footer .footer-right .footer-top a img {
  margin-right: 1.25rem;
}

footer .footer-right .footer-bottom .nav {
  justify-content: space-around;
}

footer .footer-right .footer-bottom .nav li:first-child a {
  margin-left: 0;
}

footer .footer-right .footer-bottom .nav a {
  font-size: 18px;
  color: #2d2d2d;
  font-weight: 600;
  text-decoration: none;
}
