body {
  font-size: 14px;
}

button:focus {
  outline: none !important;
}

body,
html,
h1,
h2,
h3,
h4,
h5,
h6,
p,
div,
button,
input {
  font-family: "Open Sans", sans-serif;
  transition: all linear 300ms;
}

body,
html,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0 !important;
}

.btn:focus {
  box-shadow: none !important;
}

.btn-link:hover {
  text-decoration: none !important;
}

.profile-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 10px;
  color: #333333 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

body.modal-open {
  overflow: hidden !important;
  padding: 0 !important;
}

a {
  color: #1e5698;
  text-decoration: none !important;
}

a:hover {
  text-decoration: none !important;
}

.theme-btn {
  border: 1px solid #eee;
  padding: 10px 20px;
  margin: 20px auto;
  border-radius: 5px;
  color: #fff !important;
  transition: all linear 300ms;
  text-align: center;
  background: #004588;
  font-size: 14px;
  outline: none;
  font-weight: 600;
  display: inline-block;
}

.theme-bg {
  background: #143f72;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

header {
  box-shadow: 0 0 15px #0000003d;
}

.ms-border {
  border-bottom: 1px solid #ccc;
  display: flex;
  padding: 0px 15px 5px;
  justify-content: space-between;
  align-items: center;
  margin: 0px -15px;
}

.top-header-wrapper {
  padding: 5px 0;
  background: #fff;
  position: relative;
  z-index: 9;
}

.profile-wrapper {
  height: 100%;
  display: flex;
}

.profile {
  margin: auto 0 auto auto;
  position: relative;
  z-index: 99;
}

.profile a {
  color: #333333;
  text-decoration: none;
  font-weight: 600;
}

.navigation-wrapper {
  background: #f3f5f7;
  min-height: 44px;
}

ul.navigation-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

ul.navigation-menu>li {
  width: 100%;
  border-left: 1px solid #eaeaea;
}

ul.navigation-menu>li:last-child {
  border-right: 1px solid #eaeaea;
}

ul.navigation-menu>li>a {
  padding: 10px;
  display: block;
  color: #707070;
  text-decoration: none;
  position: relative;
  z-index: 8;
  background: #f3f5f7;
  text-align: center;
}

ul.navigation-menu>li>a>i {
  transition: all linear 400ms;
}

ul.navigation-menu>li:hover>a {
  background: #dfe1e2;
}

ul.navigation-menu>li:hover a i {
  transform: rotate(-180deg);
}

ul.navigation-menu ul.submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  position: absolute;
  transition: all ease-out 500ms;
  width: 175px;
  border: 1px solid #ccc;
  top: -220px;
  z-index: 1;
}

ul.navigation-menu li:hover ul.submenu {
  box-shadow: 2px 7px 7px #00000038;
  top: 43px;
  z-index: 2;
}

ul.submenu li a {
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 600;
  display: block;
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: all linear 300ms;
}

ul.submenu li a:hover {
  background: #004588;
  color: #fff;
}

/*.search-wrapper-bg {
    background-image: url(../images/search-bg.png);
    background-size:100em 100%;
    padding-top: 60px;
    padding-bottom: 125px;
    position: relative;
}*/
.search-wrapper-bg {
  background-image: url(../images/hearder-bg.jpg);
  background-size: 100%;
  padding-top: 60px;
  padding-bottom: 125px;
  position: relative;
  box-sizing: border-box;
  animation: slide 80s linear infinite;
  -webkit-animation: slide 80s linear infinite;
}

@keyframes slide {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -1366px 0;
  }
}

@-webkit-keyframes slide {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -1366px 0;
  }
}

.search-wrapper-bg h1 {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  position: relative;
  text-align: center;
  padding-bottom: 15px;
}

.search-wrapper-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #1e5698;
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 0;
}

.home-search-wrapper {
  background: #fff;
  border-radius: 7px;
  display: flex;
  box-shadow: 0px 5px 10px #00000047;
}

.tooltipCustome {
  position: relative;
  /* display: inline-block; */
  /* border-bottom: 1px dotted black; */
}

.tooltipCustome .tooltiptext {
  /* visibility: hidden; */
  width: 220px;
  background-color: #f7f7f7;
  color: #ff4343;
  text-align: center;
  border-radius: 6px;
  padding: 5px 5px;
  position: absolute;
  z-index: 1;
  top: calc(100% + 5px);
  left: 0;
  margin-left: 0;
  font-size: 12px;
  font-weight: bold;
}

.tooltipCustome .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #f7f7f7 transparent;
}

.search-button {
  width: 18%;
  margin-left: auto;
}

.search-button {
  /* width: 100%; */
  background: orange;
  border: none;
  outline: none;
  color: #fff;
  padding: 20px;
  border-radius: 0 3px 3px 0;
  transition: all linear 400ms;
}

.search-button:hover {
  background-color: #2a2a72;
  background-image: linear-gradient(315deg, #1e5698 0%, #009ffd 74%);
}

.search-input {
  width: 100%;
}

.search-calendar {
  width: 22%;
}

.search-input input,
.search-location input,
.search-calendar input,
.search-room-pepole input {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  padding: 15px;
  border-radius: 3px;
}

.search-calendar input {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}

.search-location.d-flex {
  margin-right: 10px;
}

.search-location input {
  height: 30px;
  margin: auto;
  display: block;
  font-size: 12px;
  line-height: 14px;
  padding: 5px 10px;
  border-radius: 100px;
  padding-left: 20px;
  background-image: url(../images/location.png);
  background-repeat: no-repeat;
  background-position: 8px 10px;
  background-color: #e7eef6;
}

.zIndex {
  z-index: 2;
}

.offer-slider-wrapper {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 10px #00000069;
  margin-top: -40px;
  padding-bottom: 10px;
}

.offer-slider-wrapper h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #444444;
  border-bottom: 1px solid #ccc;
  padding: 16px 0 14px;
}

.offer-slider-wrapper h2 p {
  font-size: 14px;
  font-weight: 400;
  padding: 5px;
  color: #707070;
  margin: 0;
}

.offer-slider-wrapper-inner {
  padding: 40px 30px 35px;
}

#offer-slider .slick-list {
  padding: 40px 30px 35px;
}

.slick-slide {
  outline: none !important;
}

#offer-slider .slick-arrow {
  position: absolute;
  color: transparent;
  border: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  top: 40%;
  background-image: url(../images/slider-arrow.png);
  background-size: 100%;
  background-color: #fff;
  outline: none;
  z-index: 99;
}

#offer-slider .slick-prev {
  left: 10px;
}

#offer-slider .slick-next {
  right: 10px;
  transform: rotate(180deg);
}

.offer-slides {
  border: 1px solid #ccc;
  border-radius: 10px;
  min-height: 168px;
  max-width: 290px;
  margin: 0 7px;
}

.offer-name {
  color: #fff;
  padding: 15px;
  border-radius: 10px 10px 0 0;
  padding-left: 25%;
  text-align: left;
  position: relative;
}

.offer-name img.toptage {
  position: absolute;
  top: 0px;
  left: 10%;
}

.offer-name h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 5px 0;
}

.offer-name h4 {
  font-size: 16px;
  font-weight: 800;
  margin: 5px 0;
}

.slide1 .offer-name {
  background: linear-gradient(45deg, #ff1a00, #ffbb00);
}

.slide2 .offer-name {
  background: linear-gradient(45deg, #245efc, #24bafc);
}

.slide3 .offer-name {
  background: linear-gradient(45deg, #005dff, #ff00f7);
}

.slide4 .offer-name {
  background: linear-gradient(45deg, #002e5b, #0aef47);
}

.slide5 .offer-name {
  background: linear-gradient(45deg, #ff1a00, #ffbb00);
}

.slide6 .offer-name {
  background: linear-gradient(45deg, #245efc, #24bafc);
}

.slide7 .offer-name {
  background: linear-gradient(45deg, #005dff, #ff00f7);
}

.slide8 .offer-name {
  background: linear-gradient(45deg, #002e5b, #0aef47);
}

.slide9 .offer-name {
  background: linear-gradient(45deg, #ff1a00, #ffbb00);
}

.offer-details {
  padding: 10px;
  font-size: 12px;
}

.offer-details p {
  margin: 0;
}

.offer-details p:first-child {
  margin-bottom: 5px;
}

.property-browse-wrapper {
  padding: 55px 0 0px;
}

h1.title1 {
  font-size: 28px;
  color: #000;
  font-weight: 600;
}

.property-browse-img {
  border-radius: 5px;
  width: 100%;
}

.property-browse-slides {
  padding-right: 15px;
}

.property-browse-slides h2 {
  font-size: 16px;
  font-weight: 600;
}

.property-browse-slides h2 span {
  font-size: 14px;
  font-weight: 400;
  display: block;
  padding-top: 5px;
  color: #555;
}

.property-browse-imgbox,
.property-browse-imgbox img {
  /* min-height: 225px; */
  position: relative;
  cursor: pointer;
}

.property-browse-imgbox:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  border-radius: 5px;
  opacity: 0.2;
  transition: all linear 300ms;
}

.property-browse-imgbox:hover:after {
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  opacity: 0;
}

.property-browse-wrapper-inner {
  padding-top: 20px;
}

.offer-explore {
  text-decoration: none !important;
  background: #004588;
  text-align: center;
  width: 100%;
  max-width: 170px;
  display: block;
  padding: 5px;
  border-radius: 100px;
  color: #fff !important;
  margin: 0 auto 15px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all linear 300ms;
}

.offer-explore:hover {
  background: #1576e8;
}

footer {
  background: #1e334d;
  color: #fff;
}

.footer-section1 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  padding: 15px 0 20px;
  border-bottom: 1px solid #8b96a4;
}

.footer-section1 a {
  color: #fff;
  background: #1e5698;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 7px 15px;
  text-decoration: none;
  display: inline-block;
  transition: all linear 500ms;
}

.footer-section1>a:hover {
  background: #1576e8;
}

.footer-section3 h1 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  padding: 26px 0 22px;
  margin: 0;
}

.footer-section2 {
  border-bottom: 1px solid #8b96a4;
  padding: 15px 0;
}

.footer-logo img {
  width: 100%;
  max-width: 108px;
}

.footer-app-wrapper {
  max-width: 100%;
}

.footer-app-wrapper img {
  max-width: 100%;
}

.footer-app-wrapper h2 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 20px;
}

ul.main-page-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}

ul.main-page-menu-list li {
  width: 50%;
  float: left;
  border-left: 1px solid #8b96a4;
  text-align: center;
}

ul.main-page-menu-list li a {
  display: block;
  color: #dadada;
  text-decoration: none;
  line-height: 38px;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  transition: all linear 300ms;
}

ul.main-page-menu-list li a:hover {
  color: #fff;
}

ul.footer-city-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  width: 100%;
  border-right: 1px solid #8b96a4;
}

ul.footer-city-list li a {
  display: block;
  color: #dadada;
  text-decoration: none;
  line-height: 38px;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  transition: all linear 300ms;
  border-bottom: 1px solid #233954;
}

ul.footer-city-list li:last-child a {
  border: none;
}

ul.footer-city-list li a:hover {
  color: #fff;
  padding-left: 15px;
}

ul.footer-city-list li a i {
  top: 11px;
  position: absolute;
  left: -20px;
  transition: all linear 300ms;
}

ul.footer-city-list li a:hover i {
  left: 0px;
}

.row.footer-section4 {
  padding: 10px 0 0px;
  position: relative;
  margin-top: 15px;
}

.row.footer-section4:before {
  content: "";
  position: absolute;
  width: auto;
  height: 1px;
  border-top: 1px solid #8b96a4;
  left: 15px;
  right: 15px;
}

ul.footer-socialmedia-icons {
  display: flex;
  list-style: none;
  margin: auto 0;
  padding: 0;
}

.footer-socialmedia-icons li a {
  display: block;
  padding: 0 4px;
}

ul.footer-payment-icons {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-socialmedia-icons .socialImage {
  width: 35px;
  height: 35px;
}

ul.footer-payment-icons li a {
  margin: 0 5px;
  display: block;
}

ul.footer-payment-icons li img {
  max-width: 100%;
  padding: 5px 5px;
  display: block;
}

.footer-section4 p {
  margin: auto 0;
  text-align: right;
  display: block;
  width: 100%;
  font-size: 14px;
}

#nav-button {
  border: none;
  outline: none;
  font-size: 28px;
  background: transparent;
  color: #1e5698;
  display: none;
}

/*Login Signup*/
.modal-wrapper .modal-dialog {
  width: 720px;
  max-width: 100% !important;
}

.modal-tabs {
  background: #1e5698;
}

.modal-tabs li.nav-item {
  width: 50%;
  text-align: center;
}

.modal-tabs li.nav-item a.nav-link {
  background: transparent;
  border: 0px;
  outline: 0px;
  padding: 12px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  border-bottom: 1px solid #1e5698;
}

.modal-tabs li.nav-item a.nav-link.active {
  background: #ff9f0e;
}

.modal-wrapper .close {
  border: none;
  outline: none;
  color: white;
  position: absolute;
  top: -25px;
  right: -25px;
  font-size: 41px;
  font-weight: 400;
  background: red;
  width: 45px;
  height: 45px;
  line-height: 23px;
  border-radius: 100px;
  opacity: 1;
  text-shadow: none;
}

.login-form {
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}

.form label {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: #333333;
}

.form input.form-control {
  height: 44px;
  border-color: #ccc;
}

.submit-btn input {
  background: #ff9f0e;
  color: #fff;
  border: none;
  outline: none;
  padding: 10px;
  margin: 0 auto;
  display: block;
  font-weight: 600;
  padding: 0.5em 3em;
  border-radius: 5px;
}

.submit-btn input:hover {
  background: #1e5698;
}

.submit-theme-btn:disabled,
.submit-theme-btn[disabled] {
  background-color: #ff9f0ea8;
}

.submit-theme-btn {
  background: #ff9f0e !important;
  color: #fff !important;
  border: none !important;
  outline: none !important;
  padding: 10px !important;
  margin: 0 auto !important;
  display: block !important;
  font-weight: 600 !important;
  padding: 0.5em 3em !important;
  border-radius: 5px !important;
}

.submit-theme-btn:hover {
  background: #1e5698 !important;
}

.account-link {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  display: flex;
}

.account-link span:last-child {
  margin-left: auto;
}

.form-group.login-with {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
  position: relative;
}

.form-group.login-with span {
  background: #fff;
  display: block;
  position: relative;
  z-index: 6;
  max-width: 110px;
  margin: 0 auto;
}

.form-group.login-with:before {
  content: "";
  width: 100%;
  background: #707070;
  height: 1px;
  position: absolute;
  left: 0px;
  top: 15px;
  z-index: 0;
}

.login-accounts img {
  width: 45px;
  padding: 0 5px;
  text-align: center;
  cursor: pointer;
}

.account-modalfooter {
  max-width: 360px;
  margin: 0 auto;
}

.account-modalfooter .submit-btn input {
  margin-top: 10px;
}

.modal-wrapper h1.modaltitle {
  background: #1e5698;
  text-align: center;
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  padding: 12px;
}

/*End of the Login Signup*/

/*Lodar*/
#loader {
  background: #02232fd9;
  width: 100%;
  height: 100%;
  z-index: 999999;
  position: fixed;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.center {
  border: 6px solid #fff;
  border-radius: 50%;
  border-top: 6px solid #ffc107;
  border-bottom: 6px solid #0062cc;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: 0px 0px 15px #00000091;
}

.loader-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  font-size: 28px;
  width: 30px;
  height: 30px;
}

/*End of the Lodar*/

/*Terms Page*/
h1.page-heading {
  text-align: center;
  padding: 50px 0;
  font-size: 28px;
  font-weight: 800;
  color: #333333;
  text-transform: uppercase;
  text-shadow: 2px 1px 3px #00458842;
}

.terms-singal-wrapper {
  border: 1px solid #ccc;
  margin-bottom: 20px;
  transition: all linear 500ms;
}

.terms-singal-wrapper a {
  padding: 15px;
  display: block;
  text-decoration: none;
  color: #333333;
  font-size: 18px;
  font-weight: 600;
  background: #f9f9f9b8;
  border-radius: 3px;
  transition: all linear 300ms;
  cursor: pointer;
  position: relative;
}

.terms-singal-wrapper:hover a {
  background: #1e334d;
  color: #fff !important;
}

.terms-content-wrapper {
  padding: 0px 15px;
  color: #333333;
  line-height: 28px;
  font-size: 14px;
}

.terms-content-wrapper:before,
.terms-content-wrapper:after {
  content: "";
  display: block;
  height: 10px;
}

.terms-singal-wrapper>a>i {
  transform: rotate(180deg);
  position: absolute;
  right: 15px;
  top: 16px;
  font-size: 28px;
  transition: all ease-out 300ms;
}

.terms-singal-wrapper>a.collapsed>i {
  transform: rotate(0deg);
  transition: all ease-out 300ms;
}

/*End of the Terms Page*/

/*Support Page*/
.enquiry-faq-wrapper {
  margin: 50px 0;
  display: inline-block;
  width: 100%;
}

.enquiry-wrapper,
.faq-wrapper {
  border: 2px solid #fff;
  display: flex;
  border-radius: 5px;
}

.enquiry-wrapper .enquiry-img,
.faq-wrapper .faq-img {
  max-width: 220px;
  margin-left: auto;
}

ul.enquiry-contant-list,
.faq-contant-list {
  margin: auto;
  padding: 0;
  list-style: none;
  text-align: center;
  color: #fff;
  line-height: 40px;
  font-size: 19px;
  font-weight: 600;
}

ul.enquiry-contant-list li i {
  font-size: 32px;
}

.faq-contant-list li i {
  font-size: 50px;
}

.faq-contant-list li a {
  display: block;
  background: #fff;
  border-radius: 100px;
  color: #1e5698;
  padding: 0 20px;
  text-decoration: none;
  line-height: 28px;
  margin-top: 18px;
}

.help-wrapper {
  padding: 15px;
  background: linear-gradient(#143f7278, #143f729c),
    url(../images/support-bg.jpg) no-repeat top center;
}

.help-wrapper-inner {
  max-width: 620px;
  background: #fff;
  border-radius: 10px;
  margin: 75px auto;
}

h1.help-form-heading {
  background: #1e5698;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  padding: 12px 10px;
  border-radius: 10px 10px 0 0;
}

form.help-form {
  padding: 15px;
}

form.help-form .form-control {
  padding: 12px 12px 12px 45px;
  height: auto;
}

.form-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-group span.help-form-icons {
  position: absolute;
  top: 12px;
  left: 12px;
}

.form-group span.help-form-icons i {
  font-size: 24px;
  color: #1e5698;
}

.help-form .submit-btn {
  background: #1e5698;
  text-align: center;
  border-radius: 100px;
  color: #fff;
  margin: 0 auto;
  display: block;
  padding: 10px;
  font-weight: 600;
  width: 100%;
  max-width: 175px;
  border: none;
  outline: none;
  transition: all linear 300ms;
}

.help-form .submit-btn:hover {
  background: #1576e8;
  color: #fff;
}

/*End of the Support Page*/

/*Contact Us*/
.contact-bgimg {
  padding: 15px;
  background: url(../images/contactus.jpg) no-repeat;
  background-size: 100% 100%;
  padding: 75px 0;
}

.contact-wrapper {
  background: #fff;
  border-radius: 10px;
}

h1.contact-heading {
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  padding: 25px 0 10px;
  color: #333333;
}

.contact-wrapper .right-border {
  border-right: 1px solid #ccc;
}

.contact-laft-wrapper {
  padding-left: 15px;
}

.contact-right-wrapper {
  padding-right: 15px;
}

ul.contactus-details {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 26px;
  font-size: 15px;
  color: #333333;
}

ul.contactus-details li {
  display: flex;
  padding: 7px 0;
}

ul.contactus-details li i {
  font-size: 22px;
  color: #1e5698;
  margin: 3px 0 auto 0;
  width: 30px;
  display: block;
}

ul.contactus-details li strong {
  white-space: nowrap;
  padding-right: 5px;
}

.contact-followus {
  display: flex;
  margin: 5px 0 12px;
}

.contact-followus h2 {
  font-weight: 600;
  font-size: 16px;
  margin: auto 0;
}

.contact-followus a {
  margin: 5px;
  display: block;
}

.contact-followus a img {
  width: 30px;
  height: 30px;
  margin: auto;
}

/*End of the Contact Us*/

/*About us*/
.about-vision-wrapper {
  border: 1px solid #eee;
  padding: 15px;
}

.about-text-section {
  font-size: 14px;
  line-height: 28px;
  color: #333333;
}

.about-teme {
  background: #1e5698;
  padding: 10px 0;
  margin: 50px 0;
}

.about-teme h2 {
  text-align: center;
  color: #fff;
  font-size: 22px;
  padding: 15px 0 25px;
  font-weight: 700;
}

.about-teme .slick-arrow {
  display: none !important;
}

.team-user-img {
  max-width: 125px;
  max-height: 125px;
  height: 100%;
  width: 100%;
  display: block;
  margin: 0 auto;
  border: 2px solid #fff;
  border-radius: 200px;
}

.team-user-position {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 5px 0;
}

.team-user-name {
  text-align: center;
  color: #fff;
  padding: 0px 0 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

.team-slide p {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  line-height: 24px;
}

/*End of the About Us*/

/*Profile*/
.profilewrapper {
  margin-bottom: 75px;
}

.profile-view-wrapper {
  /* border: 1px solid #ccc; */
  height: 100%;
}

.profile-with-bg {
  background: linear-gradient(-45deg, black, #1e5698, #3088ef);
  padding: 15px;
  background-size: 200% 200%;
  animation: gradient 4s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 100%;
  }

  100% {
    background-position: 0% 0%;
  }
}

.profile-with-bg h4 {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding: 20px 5px 10px;
}

.profile-pic {
  width: 125px;
  height: 125px;
  border: 3px solid #fff;
  border-radius: 200px;
  display: block;
  margin: 0px auto;
  position: relative;
}

.profile-pic i {
  background: #fff;
  width: 30px;
  height: 30px;
  text-align: center;
  vertical-align: middle;
  line-height: 30px;
  border-radius: 50px;
  color: orange;
  border: 2px solid orange;
  position: absolute;
  right: 0;
  bottom: 10px;
}

.profile-menu {
  background: #1e5698;
  margin: 10px 0;
}

.profile-menu a.nav-link,
.profile-menu a.nav-link:hover {
  color: #fff !important;
  padding: 12px;
}

.profile-menu a.nav-link.active {
  background-color: #143a66 !important;
  border-radius: 0px !important;
}

.profile-details-wrapper {
  border: 1px solid #ccc;
  padding: 15px;
  height: 100%;
}

.tab-pane h2.tabs-heading {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #ccc;
  padding: 0px 15px 15px;
  margin: 0 -15px;
}

ul.dashboard-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}

ul.dashboard-info-list li {
  color: #333;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  font-size: 14px;
}

ul.dashboard-info-list li i {
  color: #1e5698;
  font-size: 20px;
  margin: auto 5px auto 0;
  text-align: center;
  width: 20px;
}

ul.dashboard-info-list li strong {
  padding-right: 5px;
  white-space: nowrap;
}

.profile-emptylink {
  list-style: none;
  margin: 0;
  padding: 15px 0 0;
}

.profile-emptylink li {
  display: flex;
  padding: 10px;
}

.profile-emptylink h6 {
  color: #1e5698;
  font-size: 16px;
}

.profile-emptylink h6 span {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-top: 5px;
}

.profile-emptylink li a img {
  padding: 0 6px 0 0;
  max-width: 28px;
  margin-top: -8px;
}

.header-profile-img {
  width: 35px;
  height: 35px;
  border-radius: 100px;
  border: 2px solid #1e5698;
}

ul.profile-dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #eee;
  position: absolute;
  top: 37px;
  left: 0;
  width: 50%;
  z-index: 99999;
  border: 1px solid #eee;
}

.profile-dropdown li {
  font-size: 14px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.profile-dropdown li a {
  padding: 5px 10px;
  display: block;
  transition: all linear 300ms;
}

.profile-dropdown li a i {
  color: #1e5698;
  font-size: 18px;
  margin-right: 5px;
  width: 16px;
  transition: all linear 300ms;
}

.profile-dropdown li a:hover {
  background: #1e5698;
  color: #fff;
}

.profile-dropdown li a:hover i {
  color: #fff;
}

.header-profile-btn,
.header-profile-btn:focus {
  border: none;
  outline: none;
  background: #fff;
}

.header-profile-btn.active {
  background: #eee;
}

.edit-profile-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}

.edit-profile-info-list li {
  color: #333;
  padding: 10px 0;
  display: flex;
  font-size: 14px;
}

.edit-profile-info-list li i {
  color: #1e5698;
  font-size: 20px;
  margin: auto 5px auto 0;
  text-align: center;
  width: 20px;
}

.edit-profile-info-list li strong {
  padding-right: 5px;
  width: 110px;
  margin: auto;
}

.booking-view-details-wrapper {
  padding-left: 15px;
}

.booking-view-details-wrapper .booking-hotel-name {
  font-size: 22px;
  font-weight: 600;
  padding: 5px 0;
  color: #333;
  margin: 0;
  text-decoration: none;
  display: block;
}

.booking-view-details-wrapper p {
  margin: 0;
  font-size: 14px;
  padding: 2px 0;
  line-height: 18px;
  color: #333;
}

.booking-view-details-wrapper .price {
  color: #1e5698;
  font-weight: 700;
  padding: 10px 0;
  margin: 0;
  font-size: 20px;
}

.booking-view-details-wrapper .price img {
  max-width: 11px;
}

a.booking-status {
  font-weight: 600;
  text-decoration: none;
  color: #1e5698;
}

.booking-location,
.booking-re-view {
  padding: 2px 10px;
  color: #1e5698;
  background: #dedede;
  border-radius: 50px;
  display: inline-block;
  font-size: 14px;
  text-decoration: none;
}

/*End of the Profile*/

/*Search Property */
.search-header-wrapper {
  padding: 10px 15px;
  background: #fff;
  position: relative;
  z-index: 9;
  display: flex;
  border-bottom: 2px solid #ccc;
  justify-content: space-between;
  align-items: center;
}

.search-header-wrapper .logo-wrapper {
  padding-right: 15px;
}

.search-header-wrapper .profile-wrapper {
  margin: auto;
  padding: 5px 15px;
}

.search-header-wrapper .home-search-wrapper {
  box-shadow: 0 0 black;
  width: 100%;
  border: 1px solid #eee;
  margin: auto 15px;
  position: relative;
}

.search-header-wrapper .profile a {
  text-align: center;
}

.search-header-wrapper .profile a img {
  display: block;
  margin: 0 auto;
}

.search-header-wrapper .profile a span {
  font-size: 14px;
  display: block;
  white-space: nowrap;
}

.area-latlong {
  margin-bottom: 10px;
  overflow: hidden;
  max-height: 125px;
  transition: all linear 300ms;
}

.area-latlong.scroll {
  overflow-y: auto;
}

.area-latlong a {
  background: #f1fbff;
  color: #333;
  display: inline-block;
  text-align: center;
  padding: 5px 10px;
  border-radius: 50px;
  margin: 5px 5px 5px 0;
  font-size: 14px;
}

.sidebar-box h1 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  padding: 10px 0;
  color: #333;
}

.sidebar-box h6 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  padding: 10px 0;
  color: #333;
}

.left-filter-sidebar {
  padding: 25px 15px 0 0;
  border-right: 1px solid #ccc;
  height: 100%;
}

.sidebar-box {
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

.sidebar-filter-section input {
  width: 100%;
  height: 42px;
  border: 1px solid #ccc;
  outline: none;
  padding: 10px;
  margin: 5px 0 10px;
}

.filter-view-more,
.filter-view-more:focus {
  outline: none;
  border: 1px solid #1e5698;
  background: #f3f3f3;
  color: #1e5698;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 17px;
  font-weight: 700;
  transition: all linear 300ms;
}

.filter-view-more:hover {
  background: #1e5698;
  color: #fff;
}

.sidebar-box label {
  margin: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  display: flex;
}

.sidebar-box label span {
  margin: -2px 0 0;
  padding-left: 5px;
}

.sidebar-box .checkbox {
  width: 20px;
  height: 20px;
}

.sidebar-star-rating-section label {
  display: block;
}

.sidebar-star-rating-section label i {
  color: orange;
  font-size: 20px;
  top: -4px;
  position: relative;
  margin-left: 3px;
}

.short-filter-wrapper {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  margin: 0;
  display: flex;
}

.short-filter-wrapper h1 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: auto 0;
  text-transform: uppercase;
}

.search-header {
  box-shadow: 0 0 10px #00000024;
}

.short-filter-wrapper-inner {
  margin: auto 0 auto auto;
  text-align: right;
  display: flex;
  white-space: nowrap;
}

.short-filter-wrapper-inner span {
  margin: auto;
  padding-right: 5px;
  font-size: 14px;
  font-weight: 600;
}

.short-filter-wrapper-inner select,
.short-filter-wrapper-inner select:focus {
  border: 1px solid #ccc;
  border-radius: 0px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 0 black;
}

.height-auto {
  height: auto;
  overflow: visible;
}

.all-property-listing {
  border-bottom: 1px solid #ccc;
  padding: 30px 0;
}

.slider-for .slick-arrow {
  position: absolute;
  z-index: 9;
  top: 50%;
  border: none;
  outline: none;
  background: #00000094;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  color: transparent;
}

.slider-for .slick-arrow:after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 12px;
  left: 10px;
}

.slider-for .slick-prev.slick-arrow:after {
  transform: rotate(-135deg);
  left: 14px;
}

.slider-for .slick-prev {
  left: 5%;
}

.slider-for .slick-next {
  right: 5%;
}

.search-slides img.img-fluid,
.slider-nav .search-slides img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
}

.slider-nav .search-slides img {
  height: 50px;
  width: 100%;
}

.slider-nav .search-slides {
  border: 1px solid #ffffff;
}

.slider-nav .slick-current.slick-active.slick-center {
  background: #041e38;
}

.slider-nav .slick-current.slick-active.slick-center img {
  opacity: 0.4;
}

.hotel-detalis-wrapper {
  padding: 0 15px;
}

h1.hotelvilahouse-name {
  font-size: 20px;
  font-weight: 600;
  padding: 0px 0 0px;
  margin: 0;
  color: #333;
  text-transform: uppercase;
}

h4.hotelvilahouse-address {
  font-size: 15px;
  padding: 5px 0;
  margin: 0;
  color: #333;
}

h4.hotelvilahouse-address a {
  color: #004588;
  text-decoration: none;
}

.room-rating {
  padding: 10px 0 5px;
  font-size: 14px;
  clear: both;
}

.room-rating span {
  background: #004588;
  padding: 4px 10px;
  color: #fff;
  border-radius: 5px;
  font-size: 12px;
}

.facility {
  display: block;
  padding: 10px 0;
}

.facility a {
  background: #fff;
  border: 1px solid #cecece;
  padding: 5px 10px;
  font-size: 14px;
  cursor: pointer;
  transition: all linear 300ms;
}

.facility a:hover {
  background: #004588;
  color: #fff !important;
}

.view-booking-btn-section a {
  border: 2px solid #ccc;
  display: inline-block;
  padding: 5px 15px;
  min-width: 125px;
  margin: 0;
  border-radius: 50px;
  color: #333;
  text-decoration: none;
  transition: all linear 300ms;
  text-align: center;
}

.view-booking-btn-section a:hover {
  background: #004588;
  color: #fff;
}

.view-booking-btn-section a:last-child {
  background: orange;
  color: #000;
  border-color: #ffc107;
}

.hotelvilahouse-price {
  padding: 5px 0 10px;
}

span.main-price {
  color: #1e5698;
  font-size: 26px;
  font-weight: 700;
}

span.main-price i {
  font-size: 24px;
}

span.off-price {
  font-size: 16px;
  color: #615f5f;
  text-decoration: line-through;
  padding: 0 10px;
}

span.discount-price {
  color: #f3a413;
  font-weight: 700;
  font-size: 18px;
}

/*End of the Search hotel */

/*Hotel view*/
.hotel-views-slide img.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 400px;
}

.hotel-views-slider .slick-arrow {
  position: absolute;
  z-index: 8;
  top: 50%;
  border: none;
  outline: none;
  background: #00000094 !important;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  color: transparent;
}

.hotel-views-slider .slick-arrow:after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 12px;
  left: 10px;
}

.hotel-views-slider .slick-prev:before,
.slick-next:before {
  color: transparent !important;
}

.hotel-views-slider .slick-prev.slick-arrow:after {
  transform: rotate(-135deg);
  left: 14px;
}

.hotel-views-slider .slick-prev {
  left: 3%;
}

.hotel-views-slider .slick-next {
  right: 3%;
}

.hotel-details-wrapper-left {}

h1.details-heading {
  font-size: 26px;
  font-weight: bold;
  padding: 15px 0 5px;
  color: #333;
}

h1.details-heading span {
  font-size: 14px;
  display: block;
  font-weight: 400;
  padding: 5px 0;
}

h2.details-sub-heading {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  clear: both;
  margin-bottom: 15px;
}

.all-amenities {

  flex-wrap: wrap;
}

.all-amenities span {
  min-width: 25%;
  display: inline-block;
  font-size: 16px;
  color: #333;

  padding: 10px 0;
}

.all-amenities span i {
  font-size: 18px;
}

.hotel-details-wrapper-left p {
  font-size: 14px;
  color: #333;
}

.hotel-policies ul {
  margin: 0;
  padding: 0px 0 10px 18px;
}

ul.checkinout-box {
  margin: 0;
  padding: 10px 0;
  list-style: none;
  font-size: 14px;
  display: flex;
}

ul.checkinout-box li span {
  padding: 3px 8px;
  display: block;
  color: #333;
  border: 1px solid #ccc;
  margin: 15px 15px 15px 0;
}

.hotel-policies a {
  text-decoration: none;
  margin-bottom: 25px;
  display: block;
}

.Room-Selected {
  border: 1px solid #ccc;
  border-radius: 5px 5px 0 0;
  margin-bottom: 35px;
}

.Room-Selected h1 {
  background: #004588;
  color: #fff;
  font-size: 14px;
  padding: 10px;
  border-radius: 5px 5px 0 0;
  margin: 0;
}

.selected-room-contant {
  display: flex;
}

.Room-Selected .hotelvilahouse-price {
  padding: 5px 10px;
  border-top: 1px solid #ccc;
}

.selected-room-details {
  padding: 10px;
}

.selected-room-details h2 {
  font-size: 18px;
  font-weight: 600;
}

.selected-room-details h2 span {
  font-size: 14px;
  font-weight: 500;
  display: block;
  padding-top: 5px;
}

.selected-room-img {
  margin-left: auto;
}

.selected-room-img img {
  height: 100%;
  width: 100%;
  max-width: 170px;
}

.hotel-view-login-wrapper {
  border: 1px solid #ccc;
  margin-top: 15px;
  border-radius: 5px;
}

.hotel-view-login-header {
  display: flex;
  background: #004588;
  padding: 8px 10px;
  border-radius: 5px 5px 0 0;
}

.hotel-view-login-header h1 {
  color: #fff;
  font-size: 14px;
  margin: auto 0;
  line-height: 14px;
  font-weight: 500;
}

.hotel-view-login-header a {
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  background: orange;
  padding: 4px 10px;
  border-radius: 50px;
  margin-left: auto;
  text-decoration: none;
}

.hotel-view-login-wrapper .hotelvilahouse-price {
  margin: 5px 10px 0;
}

.room-type {
  margin: auto 10px 15px;
  font-size: 14px;
}

a.Continue-Book-btn {
  background: #0056b3;
  text-decoration: none;
  color: #fff;
  border-radius: 10px;
  padding: 10px;
  display: block;
  margin: auto 10px 15px;
  text-align: center;
}

a.Continue-Book-btn:hover {
  color: #fff !important
}

.coupon-wrapper {
  margin: 0 10px 10px;
  position: relative;
}

.coupon-wrapper input.form-control {
  padding: 8px;
  height: auto;
}

.coupon-wrapper input.apply-btn {
  position: absolute;
  background: orange;
  border: none;
  outline: none;
  right: 0px;
  top: 0px;
  padding: 10px 15px;
  color: #fff;
  font-weight: 600;
  border-radius: 0 5px 5px 0;
}

.price-details ul {
  margin: 10px;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.price-details ul li {
  padding: 10px 0;
  display: flex;
}

.price-details ul li strong {
  margin-left: auto;
}

.price-details ul li span {
  font-size: 10px;
  display: block;
}

.login-policiy {
  margin: 0 10px 10px;
  display: flex;
}

.login-policiy a {
  text-decoration: none;
  font-size: 14px;
}

.login-policiy a:last-child {
  margin-left: auto;
}

/*End of the Hotel view*/

/*Modiay booking*/
.modify-booking-wrapper {
  border: 1px solid #eee;
  padding: 15px;
  margin: 50px 0;
}

.bookingall-details-wrapper {
  border: 1px solid #ccc;
  padding: 10px;
}

.modify-price-details ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.modify-price-details ul li {
  padding: 4px 0;
  display: flex;
}

.modify-price-details ul li strong {
  margin-left: auto;
}

.modify-price-details ul li span {
  font-size: 10px;
  display: block;
}

.modify-room-type {
  margin: 5px 0px 0px;
  font-size: 14px;
}

.modify-login-policiy {
  margin: 0;
  display: flex;
}

.modify-login-policiy a {
  text-decoration: none;
  font-size: 14px;
}

.modify-login-policiy a:last-child {
  margin-left: auto;
}

.modify-date {
  font-size: 14px;
  margin: 2px 0 0;
}

.Modify-booking-btn {
  border: 1px solid #eee;
  display: inline-block;
  padding: 7px 15px;
  min-width: 125px;
  margin: 0;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  transition: all linear 300ms;
  text-align: center;
  background: #ff9f0e;
  font-size: 14px;
}

.Modify-booking-btn:hover {
  background: #1e5698;
  color: #fff;
  text-decoration: none;
}

.bookingall-step1-wrapper,
.bookingall-step2-wrapper {
  border: 1px solid #ccc;
  margin: 15px 0;
}

.bookingall-step1-wrapper h1,
.bookingall-step2-wrapper h1 {
  font-size: 22px;
  padding: 15px;
  border-bottom: 1px solid #ccc;
  background: #ebf3fc;
  margin: 0;
  text-transform: uppercase;
}

form.passcode-form {
  margin: 30px 15px;
  font-size: 14px;
  font-weight: 600;
}

input.passcode-btn {
  border: 1px solid #eee;
  display: block;
  padding: 10px;
  max-width: 160px;
  width: 100%;
  margin: 15px auto;
  border-radius: 5px;
  color: #fff;
  transition: all linear 300ms;
  text-align: center;
  background: #ff9f0e;
  font-size: 14px;
  outline: none;
}

input.passcode-btn:hover {
  background: #1e5698;
  color: #fff;
  text-decoration: none;
}

.pay-hotel h3 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.pay-hotel p {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.bookingall-step2-wrapper ul.nav {
  display: block;
  text-align: center;
}

.bookingall-step2-wrapper ul.nav li a {
  padding: 12px;
  margin: 10px;
  background: #ff9f0e;
  color: #fff !important;
  position: relative;
}

.bookingall-step2-wrapper ul.nav li a.active {
  background: #004588;
  color: #fff !important;
}

.bookingall-step2-wrapper ul.nav li a.active:after {
  content: "";
  width: 20px;
  height: 20px;
  background: #004588;
  position: absolute;
  right: -8px;
  top: 14px;
  transform: rotate(45deg);
}

.booking-confirm {
  border: 1px solid #eee;
  display: block;
  padding: 10px 20px;
  min-width: 160px;
  margin: 30px auto;
  border-radius: 5px;
  color: #fff;
  transition: all linear 300ms;
  text-align: center;
  background: #004588;
  font-size: 14px;
  outline: none;
  font-weight: 600;
}

.booking-confirm:hover {
  background: #ff9f0e;
  color: #fff;
  text-decoration: none;
}

/*End of the Modiay booking*/
/**/
.thankyou .modal-body h1 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #1e5698;
  font-size: 32px;
}

.thankyou .modal-body h1 span {
  display: block;
  font-size: 18px;
  margin: 10px;
  color: #333;
  text-transform: capitalize;
  font-weight: 500;
}

.thankyou .modal-body p {
  font-size: 18px;
  margin: 10px 3em !important;
  color: #222;
  display: block;
  text-align: center;
  padding: 10px 20px;
  border: 2px dashed #222;
  clear: both;
  font-weight: normal;
}

.modal-wrapper .thankyou {
  max-width: 420px;
}

/**/
/*Reng slider*/
#amount {
  margin: 0px 0 15px;
  border: 0;
  color: #555;
  font-weight: bold;
  outline: none;
  width: 100%;
  text-align: center;
}

.ui-widget-header {
  background: #507786 !important;
}

.ui-slider-handle,
.ui-slider-handle:focus {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50px;
  background: #ffffff !important;
  border: 2px solid #004588 !important;
  color: #fff;
  outline: none;
  margin-top: -3px;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
  height: 10px;
  margin-bottom: 10px;
}

/*End of Reng slider*/
.short-filter-wrapper-inner-mobile {
  display: none;
}

.short-filter-wrapper-inner-mobile #filter-btn {
  background: #1e5698;
  width: 45px;
  text-align: center;
  vertical-align: middle;
  line-height: 35px;
  height: 37px;
  color: #fff;
  margin-right: 15px;
  border-radius: 3px;
}

/*Property list form*/
.list-property-page {
  background-image: url(../images/propery-list-bg.png);
  padding: 100px 0;
  background-size: 100% 100%;
}

.list-property-page h1.text-center {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 25px;
}

.propertylist-form {
  background: hsl(0 0% 0% / 0.58);
  padding: 15px 20px;
  border-radius: 10px;
  max-width: 720px;
  margin: 0 auto;
}

.propertylist-form label {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.propertylist-form input.form-control {
  height: auto;
  padding: 10px;
}

.propertylist-form select.form-control {
  height: auto;
  padding: 10px;
}

.call-request {
  background: #ff9f0e;
  border: none;
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  display: block;
  padding: 10px;
  font-size: 18px;
  text-transform: uppercase;
  color: #ffff;
  font-weight: 600;
  border-radius: 100px;
  outline: none;
  transition: all linear 500ms;
}

.call-request:hover {
  background: #17579a;
}

.propertylist-contact ul {
  margin: 30px 0px 0;
  padding: 0;
  color: #fff;
  list-style: none;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

.propertylist-contact ul li {
  margin: 10px 0;
}

/*End of the Property list form*/
@media (max-width: 991px) {

  .search-header .search-calendar,
  .search-header .search-room-pepole,
  .search-header .search-button {
    display: none;
  }

  .hotel-detalis-wrapper {
    padding: 15px 0;
  }

  .short-filter-wrapper h1 {
    font-size: 16px;
  }

  #nav-button {
    display: block;
  }

  ul.footer-city-list {
    border: none;
  }

  .home-search-wrapper {
    display: block;
  }

  .search-input,
  .search-calendar,
  .search-room-pepole,
  .search-button {
    border-bottom: 1px solid #ccc;
    width: 100%;
  }

  .search-location.d-flex {
    margin-right: 10px;
    position: absolute;
    right: 15px;
    top: 12px;
  }

  ul.navigation-menu {
    display: none;
    position: absolute;
    width: 100%;
    top: 16.7%;
    overflow: hidden;
    overflow-y: scroll;
    max-height: 500px;
    /* z-index: 9; */
    left: 0;
    right: 0;

  }

  @media(max-width:767px) {
    ul.navigation-menu {
      top: 11.5%;
    }
  }

  @media(max-width:533px) {
    ul.navigation-menu {
      top: 13.5%;
    }
  }

  ul.navigation-menu ul.submenu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
  }

  ul.navigation-menu li:hover ul.submenu {
    top: 0;
    display: block;
  }
}

@media (max-width: 767px) {
  .modal-wrapper .close {
    border: none;
    outline: none;
    color: white;
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 28px;
    font-weight: 400;
    background: red;
    width: 30px;
    height: 30px;
    line-height: 23px;
    border-radius: 100px;
    opacity: 1;
  }

  .short-filter-wrapper-inner {
    display: none;
  }

  .short-filter-wrapper-inner-mobile {
    display: flex;
    padding-top: 15px;
  }

  .short-filter-wrapper-inner span {
    display: none;
  }

  .left-filter-sidebar {
    position: absolute;
    z-index: 999999;
    background: #ffffff;
    left: 15px;
    right: 15px;
    height: 360px;
    overflow: hidden;
    overflow-y: scroll;
    display: none;
    border: 1px solid #ccc;
    padding-left: 10px;
  }

  .bookingall-step2-wrapper ul.nav {
    display: flex;
  }

  .bookingall-step2-wrapper ul.nav li {
    width: 50%;
  }

  .bookingall-step2-wrapper ul.nav li a.active:after {
    right: 50%;
    margin-right: -10px;
    top: 36px;
  }

  .bookingall-step2-wrapper .tab-content {
    padding: 15px;
  }

  form.help-form {
    padding: 0;
  }

  .terms-singal-wrapper {
    margin-bottom: 10px;
  }

  .search-wrapper-bg {
    background-size: cover;
    padding-top: 30px;
    padding-bottom: 70px;
  }

  .search-wrapper-bg h1 {
    font-size: 16px;
  }

  h1.title1,
  .offer-slider-wrapper h2,
  h1.contact-heading {
    font-size: 18px;
  }

  .offer-slider-wrapper h2 p {
    font-size: 12px;
  }

  .enquiry-wrapper,
  .faq-wrapper {
    margin: 10px 0;
  }

  .enquiry-wrapper .enquiry-img,
  .faq-wrapper .faq-img {
    max-width: 140px;
  }

  ul.enquiry-contant-list,
  .faq-contant-list {
    line-height: 28px;
    font-size: 14px;
  }

  .terms-singal-wrapper>a>i {
    right: 10px;
    top: 10%;
    font-size: 18px;
  }

  .terms-singal-wrapper a {
    padding: 5px 10px;
    font-size: 14px;
  }

  h1.page-heading {
    padding: 30px 0 20px;
    font-size: 18px;
    font-weight: 700;
  }

  .logo-wrapper img {
    max-width: 45px;
  }

  ul.footer-city-list li a {
    line-height: 28px;
    font-size: 14px;
  }

  .footer-section1 a {
    display: block;
    font-size: 14px;
    margin-top: 15px;
  }

  .footer-section1 {
    font-size: 16px;
    font-weight: 600;
  }

  .profile-menu a.nav-link,
  .profile-menu a.nav-link:hover {
    padding: 8px;
    font-size: 14px;
  }

  .form.help-form {
    padding: 0;
  }

  .contact-right-wrapper,
  .contact-laft-wrapper {
    padding: 0 15px;
  }

  .contact-wrapper .right-border {
    border: none;
  }

  ul.footer-socialmedia-icons {
    margin: 15px auto 0;
  }

  ul.footer-payment-icons {
    margin: 0 auto;
    max-width: 360px;
  }

  .footer-section4 p {
    text-align: center;
    margin-bottom: 15px;
  }

  ul.main-page-menu-list li {
    border: none;
  }

  .footer-logo {
    margin: auto !important;
  }
}

.Single-room-block-details {
  padding: 5px 0;
}

.Single-room-block-details p {
  font-size: 13px;
}

.Single-room-block-details h2 {
  font-size: 15px;
  margin: 5px 0px !important;
  white-space: nowrap;
  /* overflow: hidden; */
  text-overflow: ellipsis;
}

a:hover {
  text-decoration: none !important;
}

.ratingSmallBox {
  display: inline-flex;
  background-color: #1e5698;
  color: white;
  padding: 3px 8px;
  align-items: center;
}

.logoBrandingImage {
  width: 15px;
  margin-right: 5px;
  display: inline-block !important;
  vertical-align: middle;
}

.footer-city-link {
  display: block;
  color: #dadada;
  text-decoration: none;
  line-height: 38px;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  transition: all linear 300ms;
  border-bottom: 1px solid #233954;
}

.footer-city-link i {
  top: 11px;
  position: absolute;
  left: -20px;
  transition: all linear 300ms;
}

.footer-city-link:hover {
  color: #fff;
  padding-left: 15px;
}

.footer-city-link:hover i {
  left: 0px;
}

.AddPropertybtn {
  color: #fff !important;
  background: #1e5698;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600 !important;
  text-transform: uppercase;
  padding: 5px 10px;
  text-decoration: none;
  margin-left: 15px;
  display: inline-block;
  transition: all linear 500ms;
}

@media(max-width:533px) {
  .AddPropertybtn {
    margin-top: 5px;
  }

}

@media(max-width:325px) {
  .AddPropertybtn {
    font-size: 12px;
  }

}

.AddPropertybtn:hover {
  background: #1576e8;
}

ul.navigation-menu>li {
  width: auto !important;
}

.touchable-block {
  cursor: pointer;
}

.page-loading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: #1e5698;
  font-weight: bold !important;
}

.browse-by-cate-heading {
  padding: 10px 6px !important;
  background: whitesmoke;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.otp-input-container {
  justify-content: space-between;
  padding: 2em;
}

.otp-input {
  width: 65px !important;
  margin-right: auto;
  height: 65px !important;
  font-size: 2em;
  border: none;
  font-family: "Montserrat", sans-serif;
  background-color: whitesmoke;
  color: #004588;
}

.otp-input:focus {
  border: none !important;
  outline: none !important;
}

.w-35 {
  width: 35% !important;
}

.DateGuestPickerBlock {
  display: flex;
  justify-content: space-between;
  margin: 20px 10px;
  border-radius: 5px;
  align-items: center;
}

.datePicker {
  flex: 1;
  cursor: pointer;
  position: relative;
}

.GuestRoomPicker {
  flex: 1;
  cursor: pointer;
}

.datePicker:hover {
  background-color: whitesmoke;
}

.GuestRoomPicker:hover {
  background-color: whitesmoke;
}

.DateGuestText {
  padding: 10px;
  font-size: 13px;
  font-weight: bold;
  color: #353535;

}

.borderLeftDate {
  border-left: 1px solid #353535;
}

@media(max-width:991px) {
  .borderLeftDate {
    border-left: 0px solid #353535;
    border-top: 1px solid #e2e2e2;
  }
}

.border-left {
  border-left: 1px solid #353535;
}

.Active-Picker-Dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  display: inherit !important;
}

.submit-btn-save {
  background: #0051aa;
  color: white;
  text-align: center;
  padding: 5px;
  margin: 10px;
  border-radius: 10px;
  cursor: pointer;
}

.DateRangePicker {
  position: absolute;
  right: -100%;
  z-index: 2000;
  width: 550px;

  box-shadow: 2px 4px 6px 2px rgb(0 0 0 / 10%), 0 12px 11px 2px rgb(0 0 0 / 10%);
  border: 1px solid #d6d6d6;
}

.terms-wrapper {
  margin: 2em 0px;
}

.terms-wrapper p {
  font-size: 16px;
}

.no-focus:focus {
  outline: none !important;
}

.react-multiple-carousel__arrow {
  z-index: 0 !important;
}

.Seach-Input-Block {
  display: flex;
  position: relative;
}

.SearchResultDropDown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  border-radius: 4px;
  box-shadow: 2px 4px 6px 2px rgb(0 0 0 / 10%), 0 12px 11px 2px rgb(0 0 0 / 10%);
  border: 1px solid #d6d6d6;
  overflow: hidden;
  z-index: 3000;
  background-color: white;
  padding: 5px;
  width: 300px;
  max-height: 400px;
  overflow: auto;
}

.Search-List {
  margin: 8px 0px !important;
  cursor: pointer;
  padding: 10px;
}

.Search-List:hover {
  background-color: whitesmoke;
}

.Searchdata-text {
  text-align: left !important;
  font-size: 16px !important;
  color: #222 !important;
  vertical-align: middle !important;
  font-weight: 500 !important;

  /* vertical-align: middle; */
  padding-bottom: 0 !important;
}


/* List Your Property */

.call-request:disabled,
.call-request[disabled] {
  background-color: #ff9f0ea8;
}

.agreementLabel {
  color: white !important;
  margin-left: 10px !important;
  font-size: 18px !important;
}

/* List Your Property Modal */

.multiUploadBlock {
  border: 1px solid #e7e7e7;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
}

.imageDropzone {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;

}

.singleImgView {
  width: 45px;
  margin: 10px;
  position: relative;

}

.singleImgView:hover .singleImgRemove {
  display: flex !important;
}

.singleImgRemove {
  display: none !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}