:root {
  --utt-red: #861b09;
  --utt-gold: #928564;
  --utt-orange: #c15d1a;
  --utt-text-grey: #4d5c64;
  --utt-bg-grey: #fafafa;
  --utt-bg-grey-semi-trans: #fafafa80;

  /* Calendar */
  /* --utt-off-season-semi-trans: #b2f1c080; */
  --utt-off-season-semi-trans: #fafafa80;
  /* --utt-off-season: #B2F1C0; */
  --utt-off-season: #fafafa;
  --utt-booked: #ffbaba;
  --utt-booked-semi-trans: #ffbaba80;
  --utt-old-gold: #ffa705;
  --utt-old-gold-semi-trans: #ffa70580;
}
body {
  background: var(--utt-bg-grey);
  font-family: futura-pt, sans-serif;
  z-index: -1;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

.body {
  margin-left: 60px;
}

@media (min-width: 0px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1600px;
  }
}

.uttGold {
  background: var(--utt-gold);
}
.uttTextGreyBG {
  background: var(--utt-text-grey);
}
.uttGrey {
  background: #e3e3e3;
}

.uttOrange {
  background: var(--utt-orange);
}

.uttWhite {
  background: #fff;
}
.rounded-lg {
  border-radius: 0.7rem !important;
}
.squareIcon {
  border-radius: 10px;
  overflow: hidden;
  padding-top: 100%;
  position: relative;
  width: 100%;
}
.squareIcon img {
  bottom: 0;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.homeHero,
.subHero {
  width: 100%;
  height: 500px;
  position: relative;
}

.insideHero {
  width: 100%;
  height: 300px;
  position: relative;
}

.aboutHero {
  width: 100%;
  height: 600px;
  position: relative;
}

.heroImage {
  top: -4px;
  bottom: 0;
}

.footerHero {
  width: 100%;
  height: auto;
  position: relative;
}

.heroImage {
  object-fit: cover;
}

.landCutoutHero {
  left: 0;
  right: 0;
  bottom: -2px;
  width: 100%;
}

.cottageSilhouette1,
.cottageSilhouette2 {
  bottom: 0;
  right: 10%;
  width: 10%;
  z-index: 1;
}

/** MAIN NAV **/
.navbar {
  border-bottom: 4px solid #fff;
  z-index: 1000;
}

.logo {
  width: 270px;
}

.img-fluid-2 {
  max-width: 100%;
  height: auto;
}

.navbar .nav-link {
  padding: 0.2rem 1rem;
  color: rgba(255, 255, 255, 1) !important;
}

.menu-large-cont .nav-link {
  font-weight: 500;
  font-style: normal;
}

.menu-small-cont .nav-link {
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
}

.checkboxcontainer {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkboxcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: 2px solid #9e9e9e;
}
.checkmark.check {
  border-radius: 5px;
}
.checkmark.radio {
  border-radius: 50%;
}
.checkboxcontainer:hover input ~ .checkmark {
  background-color: #ccc;
}
.checkboxcontainer input:checked ~ .checkmark.check {
  background-color: var(--utt-orange);
  border: 2px solid var(--utt-orange);
}
.checkboxcontainer input:checked ~ .checkmark.radio {
  background-color: #fff;
  border: 2px solid var(--utt-orange);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkboxcontainer input:checked ~ .checkmark:after {
  display: block;
}
.checkboxcontainer .checkmark.check:after {
  left: 7px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  box-sizing: initial;
}
.checkboxcontainer .checkmark.radio:after {
  top: 3px;
  left: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--utt-orange);
}

.form-control {
  -webkit-appearance: none;
}
.calendarSelect {
  border-radius: 500px;
  border: 1px solid #000;
}
.calendarSelect .form-control {
  border: none !important;
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;
  font-size: 1.2rem;
  font-weight: 500;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .calendarSelect .form-control {
    font-size: 1rem;
  }
}

.select-down {
  position: absolute;
  top: 14px;
  right: 0px;
  z-index: -1;
}
@media (min-width: 370px) and (max-width: 991px) {
  .select-down {
    right: 5px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .select-down {
    top: 12px;
    right: -3px;
  }
}

@media screen and (max-width: 768px) {
  .menu-large-cont .nav-link {
    font-size: 26px;
  }

  .nav ul li a {
    font-size: 30px;
  }

  .increase-font {
    font-size: 15px !important;
  }

  .custom-navigation-style a {
    width: 250px !important;
    margin-left: -49px;
  }
}

.image-gallery .aspectRatio {
  width: 100%;
  padding-top: 66.66%;
  position: relative;
}
.image-gallery .aspectRatio2 {
  padding-top: 67.06%;
}
.image-gallery .aspectRatio img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cottageThumb {
  overflow: hidden;
  padding-top: 70%;
  position: relative;
  width: 100%;
}
.cottageThumb img {
  bottom: 0;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.my-booking-cottage-thumb {
  width: 500px;
  max-width: 100%;
}
/** HOME ICONS **/
.introLogo {
  width: 470px;
}
.homeIcon {
  overflow: hidden;
  padding-top: 100%;
  position: relative;
  width: 100%;
}
.homeIcon img.homeIconBg {
  bottom: 0;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.homeIcon::after {
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.3533788515406162) 0%,
    rgba(0, 0, 0, 0.35057773109243695) 65%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.3533788515406162) 0%,
    rgba(0, 0, 0, 0.35057773109243695) 65%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.3533788515406162) 0%,
    rgba(0, 0, 0, 0.35057773109243695) 65%,
    rgba(0, 0, 0, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  bottom: 0;
  content: "";
  height: 100px;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 100;
}
.homeIcon:hover:after {
  height: 100%;
}
.homeIcon img.handText {
  left: 0;
  right: 0;
  bottom: 0;
}

.uttBlanket {
  width: 50%;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(/user-layout/img/tapestry.svg);
  background-size: 200px 200px;
  overflow: hidden;
}
.uttBlanketBG {
  background: url(/user-layout/img/tapestry.svg);
  background-size: 200px 200px;
}

/** RESULTS **/
.searchResult {
}

.searchResultInner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #c6cacc;
  margin-right: 15px;
  margin-left: 15px;
}
.searchResultInner:nth-last-of-type(1)::after {
  display: none;
}
ul.searchResultFeatures,
ul.propertyTopFeatures,
ul.propertyTopRight {
  list-style: none;
  padding: 0;
}

ul.searchResultFeatures li,
ul.propertyTopFeatures li {
  display: inline;
  margin-right: 5px;
}

ul.searchResultFeatures li {
  color: var(--utt-gold);
}

ul.propertyTopFeatures li {
  color: var(--utt-orange);
}

ul.propertyTopRight li,
ul.propertyTopRight li a {
  display: inline;
  margin-left: 5px;
  color: var(--utt-text-grey);
}

.resultPriceCol {
  border-left: 1px solid #ebecec;
}

.searchResultLocation {
  font-size: 18px;
  font-weight: 400;
}

.searchResultLike {
  color: #4d5c64;
  font-size: 20px;
}

p span.resultPrice {
  font-size: 20px;
}

/** propertyTabs **/
.propertyTabs .nav-tabs .nav-link {
  border: 1px solid #d6d6d6;
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
  font-size: 20px;
  color: #707070;
}

.propertyTabs .nav-tabs {
  border-bottom: none;
}

.propertyTabs .nav-tabs .nav-link.active {
  background-color: #fff;
  color: var(--utt-gold);
}

.propertyTabs .nav-tabs .nav-link {
  background-color: #eeeeee;
  cursor: pointer;
}

.propertyTabs .tab-pane {
  background-color: #fff;
  border: 1px solid #d6d6d6;
}

ul.facilities {
  list-style: none;
  padding: 0;
}

ul.facilities .fas,
ul.facilities .far {
  color: var(--utt-red);
  width: 20px;
}

/** nearbyProperties **/
.nearbyImage {
  overflow: hidden;
  padding-top: 70%;
  position: relative;
  width: 100%;
}

.nearbyImage img.nearbyImageBg {
  bottom: 0;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
#mobPropertyBar li,
#mobPropertyBar li a {
  color: #fff;
  text-decoration: none;
}
/** FOOTER **/
#footer {
  font-weight: 300;
  font-style: normal;
  font-size: 17px;
  color: #fff;
}

.footerHero span,
.footerHero a {
  font-weight: 300;
  font-style: normal;
  font-size: 17px;
  color: #fff;
}

ul.footerMenu,
ul.footerMenuSub {
  list-style: none;
  padding: 0;
}

ul.footerMenu li {
  display: inline;
  margin: 0 10px;
  font-size: 17px;
}

ul.footerMenuSub li {
  display: inline;
  margin: 0 6px;
  font-size: 14px;
}

ul.footerMenu li,
ul.footerMenu li a,
ul.footerMenuSub li,
ul.footerMenuSub li a {
  color: #707070;
}

/** TYPOGRAPHY **/
p,
li,
a,
h1,
h2,
h3,
h4,
h5,
h6,
.listDate,
.listTitle,
.sideMenu {
  font-family: futura-pt, sans-serif;
}

p,
li,
a {
  font-weight: 400;
  font-style: normal;
  color: var(--utt-text-grey);
}

h1 {
  font-weight: 500;
  font-style: normal;
  font-size: 40px;
  line-height: 50px;
  color: var(--utt-gold);
}

h1.introH1 {
  font-weight: 500;
  font-style: normal;
  font-size: 50px;
  line-height: 60px;
  color: var(--utt-red);
  margin-bottom: 52px;
}

h2 {
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 46px;
  line-height: 56px;
  color: var(--utt-gold);
}

a:hover {
  text-decoration: inherit;
}

h2.h1 {
  font-weight: 700 !important;
  font-size: 40px !important;
  line-height: 50px !important;
}

h3 {
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 26px;
  line-height: 34px;
  color: #928564;
}

h4 {
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  line-height: 28px;
  color: var(--utt-gold);
}

h5 {
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  line-height: 28px;
  color: var(--utt-text-grey);
}

#subscribe h2,
#subscribe p {
  color: var(--utt-red);
}

.footerSocial .fab,
.footerSocial a {
  color: #fff;
  font-size: 20px;
}

p,
p a {
  font-size: 16px;
}

strong {
  font-weight: 500;
}

ul.detailsList {
  list-style: none;
  padding: 0;
}
ul.detailsList:last-child {
  margin-bottom: 0;
}

.lighter,
ul.lighter li {
  color: #8a9499 !important;
}

.uttGold p,
.uttGold li,
.uttGold h2 {
  color: #fff;
}

#about p,
ul.heartBullets li {
  font-size: 24px;
  line-height: 30px;
}

span.bigNum {
  font-weight: 500;
  font-size: 26px;
  line-height: 34px;
  color: var(--utt-gold);
}
hr {
  border-top: 1px solid #c6cacc;
}
p a:hover {
}
.custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--utt-orange);
  background-color: var(--utt-orange);
}
.labelAll {
  color: #000 !important;
}
.custom-control-label {
  white-space: nowrap;
}
ul.heartBullets {
  list-style: none;
  margin-left: 20px;
  padding-left: 40px;
}
ul.heartBullets li {
  padding: 20px 0;
  list-style: none;
}
ul.heartBullets li::before {
  content: "";
  display: inline-block;
  height: 40px;
  width: 50px;
  margin-left: -50px;
  background-image: url(/user-layout/img/bulletIcon.svg);
  background-repeat: no-repeat;
  background-size: 40px 40px;
  vertical-align: middle;
  position: absolute;
}

span.quote {
  font-family: "Cormorant", serif;
  font-weight: 700;
  font-style: italic;
  font-size: 40px;
  line-height: 47px;
  color: var(--utt-gold);
  float: left;
  clear: both;
}

span.quoteAuthor {
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 26px;
  color: var(--utt-gold);
  float: left;
  clear: both;
}

.btn {
  border-radius: 500px;
  font-size: 16px;
  /* padding: .375rem 1.5rem; */
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.btn-primary {
  color: #fff;
  background: var(--utt-red);
  border: var(--utt-red);
}

.btn-xlarge {
  padding: 12px 28px;
  font-size: 24px; /* you can use em instead of px */
  line-height: normal;
}

.btn-primary:focus {
  /*     border: none;
    color: transparent; */
}

.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff !important;
  background-color: #505c63 !important;
  border-color: #505c63;
}

.btn-outline-primary {
  color: #505c63;
  border-color: #505c63;
}

.btn-outline-primary:hover,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #212529 !important;
  background-color: #f8f9fa !important;
  border-color: #505c63;
}
.btn-secondary {
  color: #fff;
  background: #a3881a;
  border: #a3881a;
}
.form-filters .btn-link {
  color: var(--utt-text-grey);
}
.navbar-light .navbar-toggler {
  border: none !important;
}

.navbar-light .navbar-toggler:focus {
  outline: none !important;
}

.cottage-link {
  display: none;
}

.cottage-names-input {
  display: flex;
  column-gap: 7em;
  flex-wrap: wrap;
  row-gap: 2em;
}

.mobile-social-links {
  display: flex;
}

.filterbtn {
  display: flex;
  align-items: center;
  color: var(--utt-text-grey) !important;
  border-color: #e2e2dc;
}

.main-heading {
  margin-left: 35px;
  margin-bottom: 30px;
  font-size: 50px;
}

.desktop-search {
  display: block;
}

.mobile-search {
  display: none;
}

.not-found {
  font-size: 25px;
  text-align: center;
  color: var(--utt-red);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1800px) {
  .introLogo {
    width: 420px;
  }

  /** TYPOGRAPHY **/
  h1.introH1 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 52px;
  }

  h2 {
    font-size: 36px;
    line-height: 46px;
  }

  #about p,
  ul.heartBullets li {
    font-size: 20px;
    line-height: 26px;
  }

  span.quote {
    font-size: 40px;
    line-height: 47px;
  }

  span.quoteAuthor {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 1200px) {
  .homeHero {
    height: 400px;
  }
}

@media (max-width: 992px) {
  .navbar {
    border-bottom: 2px solid #fff;
  }

  .navbar-nav {
    flex-direction: column;
  }

  .logo {
    width: 220px;
  }

  .introLogo {
    width: 50%;
  }

  .homeHero {
    height: 300px;
  }
  .aboutHero {
    height: 400px;
  }
  .subHero {
    height: 400px;
  }

  /** TYPOGRAPHY **/
  h1.introH1 {
    font-size: 30px;
    line-height: 40px;
  }

  h2 {
    font-size: 26px;
    line-height: 36px;
  }

  #about p,
  ul.heartBullets li {
    font-size: 18px;
    line-height: 24px;
  }

  ul.heartBullets li::before {
    height: 30px;
    background-size: 30px 30px;
  }

  span.quote {
    font-size: 30px;
    line-height: 37px;
  }

  span.quoteAuthor {
    font-size: 18px;
    line-height: 24px;
  }

  .nav ul li a {
    font-weight: 500 !important;
  }

  .nav .desktop-cottage {
    display: none !important;
  }

  .cottage-link {
    display: block;
  }

  .menu-small-cont {
    display: flex;
    align-items: flex-start;
    flex-direction: column !important;
  }

  .mobile-social-links {
    flex-direction: column-reverse !important;
    row-gap: 1em;
  }

  .desktop-search {
    display: none;
  }

  .mobile-search {
    display: block;
  }
}

@media (max-width: 768px) {
  .navbar {
    border-bottom: 1px solid #fff;
  }

  .logo {
    width: 170px;
  }

  .introLogo {
    margin-top: 15px;
  }

  .homeHero {
    height: 200px;
  }

  .subHero {
    height: 300px;
  }

  .slidingRowWrap {
    overflow: auto;
    flex-direction: column;
    align-items: center;
  }

  .slidingRow6 {
    width: 2000px;
  }

  .slidingRow3 {
    width: 1000px;
  }

  .aboutText:not(.why-advertise) {
    margin-top: 160px !important;
  }

  .uttBlanket {
    width: 100%;
    height: 200px !important;
    background-size: 138px 138px;
  }

  .resultPriceCol {
    border-left: none;
  }

  h1.introH1 {
    font-size: 20px;
    line-height: 30px;
    color: #656464;
  }
}

@media screen and (max-width: 576px) {
  .modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
    background: white;
  }
  .modal-fullscreen .modal-content {
    border: none;
    border-radius: 0;
  }
  .modal-fullscreen .modal-content .mobSearchFixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: white;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  }
  h1.introH1 {
    font-size: 16px;
    line-height: 24px;
  }

  #about p,
  ul.heartBullets li {
    font-size: 16px;
    line-height: 22px;
  }

  .introLogo {
    width: 70%;
  }

  .aboutText:not(.why-advertise) {
    margin-top: 120px !important;
  }
  .aboutHero {
    height: 300px;
  }
  .uttBlanket {
    height: 160px !important;
    background-size: 133px 133px;
  }

  .footerLogo {
    width: 120px;
  }

  .footerChair {
    width: 100px;
  }

  .nav-tabs {
    font-size: 11px;
  }

  .navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
  }

  .card .card-head {
    translate: 0 -120% !important;
  }
}

.email-div {
  display: flex;
  gap: 2em;
  align-items: center;
}

.email-div input {
  width: 100%;
  translate: 0 13%;
}

.signup-btn {
  width: 50%;
  padding: 10px;
  border-radius: 30px;
  border: none;
  background: #861b09;
  color: white;
  margin-top: 1em;
}

@media screen and (max-width: 454px) {
  .card .card-head {
    /* translate: 0 -2em !important; */
  }

  .nav-link {
    padding: 0em !important;
    padding-inline: 0.982em !important;
  }
}

@media screen and (max-width: 768px) {
  .email-div {
    flex-direction: column;
    gap: 0em !important;
  }

  .signup-btn {
    width: 100% !important;
  }
  .card .card-head {
    translate: 0 7em !important;
  }
}

@media screen and (max-width: 460px) {
  .card .card-head {
    translate: 0 6.1em !important;
  }
}

/*Cottage Page Style*/
.to-right-block {
  margin-left: auto;
  display: block;
  width: 100%;
}

/*.main-container {
    padding: 25px 0;
}*/

.inputs input {
  font-family: "Nunito";
  font-size: 90%;
  /* margin-left: 27px; */
  /* display: block; */
  /* text-align: center; */
  margin-left: 26px;
}

@media (min-width: 1200px) {
  .full-text-container {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    padding: 0 50px;
    position: static;
  }

  .full-text-container {
    top: 30%;
    z-index: 995;
  }
}

@media (min-width: 1200px) {
  .full-text-container * {
    max-width: 700px;
  }
}

.separator {
  width: 100%;
  margin: 20px auto 15px;
  position: relative;
  height: 1px;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
}

.form-group {
  margin-bottom: 15px;
}

.sidebar form {
  margin: 5px 0 20px 0;
}

.btn-default {
  color: #fff;
  background-color: #992020;
  border-color: #681313;
}

/*navbar on hover dropdown class*/
.nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 1000;
}

.nav {
  /*background: #555;*/
  text-align: center;
}

.nav ul {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
}

.nav ul li {
  position: relative;
  float: left;
}

.nav ul li + li {
  margin-left: 1px;
}

.nav ul li a {
  /*background: #555;*/
  display: inline-block;
  color: white;
  text-decoration: none;
  padding: 2px 28px;
  /*-webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;*/
  transition: all 0.1s ease-in;
  text-align: center;
}

.nav ul li a:hover {
  background: #928564;
}

.nav ul li > ul {
  display: none;
  position: absolute;
  width: 150px;
  top: 100%;
  left: -1px;
  z-index: 1;
  text-align: left;
}

.nav ul li > ul li {
  float: none;
  margin: 0;
}

.nav ul li > ul li a {
  display: block;
  z-index: 1000;
  /*border-top: 1px solid #555;*/
}

.nav ul li > ul li a:hover {
  border-top: 1px solid var(--utt-gold);
  /*background: #555;*/
}

.nav ul li:hover a,
.nav ul li.active a {
  background: var(--utt-gold);
}

.nav ul li.active {
  pointer-events: none;
}

.sidebar form {
  margin: 5px 0 20px 0;
  background: #681313;
  color: black;
  max-width: 270px;
}

/*.search-filters .radio label, .search-filters .checkbox label, .quick-search-form .radio label {
    background: white none repeat scroll 0 0;
    padding: 5px 15px 5px 30px;
    width: 100%;
    border: solid 1px white;
}*/
.quick-search-form .radio label {
  color: black !important;
}

.search-filters .radio label,
.search-filters .checkbox label,
.quick-search-form .radio label {
  background: white none repeat scroll 0 0;
  padding: 5px 15px 5px 18px;
  width: 100%;
  border: solid 1px white;
}

.quick-search-form .form-control {
  background-color: white !important;
  color: black !important;
}

.default-bg .form-control {
  background-color: rgba(255, 255, 255, 0.33);
}

.default-bg .form-control {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: #681313;
  -webkit-box-shadow: inset 0 2px 3px rgb(0 0 0 / 35%);
  box-shadow: inset 0 2px 3px rgb(0 0 0 / 35%);
  color: #fff;
}

.form-group {
  margin-bottom: 15px;
}

.default-bg .btn-default,
.default-bg .btn-default-transparent,
.default-translucent-bg .btn-default,
.default-translucent-bg .btn-default-transparent {
  color: #992020;
  background-color: #fff;
  border-color: #fff;
}

.light-gray-bg {
  background-color: #f2f2f2;
}

.separator-2,
.separator-3 {
  width: 100%;
  margin-bottom: 15px;
  position: relative;
  height: 1px;
}

.tab-pane-inner {
  display: flex;
  flex-direction: column;
  position: relative;
}

.tab-pane-in {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.guest-dropdown {
  display: none;
  z-index: 5;
  background-color: white;
}

.preference-dropdown {
  display: none;
  z-index: 58;
  background-color: white;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.view-all-dropdown {
  display: none;
  z-index: 59;
  background-color: white;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.location-dropdown {
  display: none;
  z-index: 5;
  background-color: white;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.dates-dropdown {
  display: none;
  z-index: 5;
  background-color: white;
}

.dropdown-display {
  display: block;
  transform: translateY(-20px);
}

.guest-display {
  display: block;
  transform: translateY(-2px);
}

.location-display {
  display: flex;
  transform: translateY(-9px);
}

.preference-display {
  display: flex;
  transform: translateY(-7px);
}

.dates-display {
  display: block;
  transform: translateY(-5px);
}

.view-all-display {
  display: block;
  transform: translateY(-5px);
}

.card {
  background: none;
  border: none;
}

.card .card-head {
  background: none;
  /*translate: 0 -100%;*/
}

.card .card-body {
  background: white;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  margin-top: 10px;
}
.card.cottageCalendar .card-body {
  background: transparent; /*So diagonal isn't hidden behind background*/
}

.nav-tabs {
  background: none;
  font-weight: bold !important;
}

.nav-link {
  cursor: pointer;
}

#homeSearch .nav-tabs .active {
  background-color: transparent !important;
  border-bottom: 1px solid #3d3d3d !important;
}
#homeSearch .nav-tabs .nav-link,
#homeSearch .nav-tabs .nav-link:focus,
#homeSearch .nav-tabs .nav-link:hover {
  border: none;
  font-size: 1.2rem;
}

@media (max-width: 460px) {
  #homeSearch .nav-tabs .nav-link {
    font-size: 1rem;
  }
}

#homeSearch .nav-link:hover {
  background: none !important;
  color: #3d3d3d !important;
  border-bottom: 1px solid #000 !important;
}
.homeFilterLabel {
  font-size: 1rem;
  color: #717d83;
}
.homeFilterMain {
  font-size: 1.2rem;
  color: var(--utt-text-grey);
}
.mb-filter .homeFilterLabel {
  font-size: 0.8rem;
}
.mb-filter .homeFilterMain {
  font-size: 1rem;
}
.tab-pane-inner #homeSearch {
  bottom: 10px;
}

.counter {
  display: flex;
  align-items: center;
  gap: 30px;
}

.counter2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.counter2 #increment1 {
  font-size: 25px;
  cursor: pointer;
}

.counter #increment {
  font-size: 40px;
}

.counter2 #decrement1 {
  font-size: 25px;
  cursor: pointer;
}

.counter #decrement {
  translate: 0 -5%;
  font-size: 40px;
}

.counter span {
  cursor: pointer;
  font-size: 30px;
}

.carousel-control-next-icon .carousel-control-prev-icon {
  width: 40px;
  height: 40px;
}

.mb-filter {
  display: none;
}

@media screen and (max-width: 768px) {
  /* Home search page filter section, desktop */
  .filter {
    display: none !important;
  }

  .mb-filter {
    display: flex;
    justify-content: center;
  }
}

.searchbtn {
  width: 100%;
}

.form-filters {
  display: flex;
  gap: 20px;
}

.form-filters-desktop {
  display: flex;
  gap: 20px;
}

.form-filters-mobile {
  display: none;
}

.dashboard-hover:hover {
  color: black !important;
  border: none !important;
}

@media screen and (max-width: 1400px) {
}

.dropdown-toggle {
  cursor: pointer;
}
@media (max-width: 386px) {
  .dropdown-toggle {
    font-size: 0.9rem;
  }
}

.hover-category-name:hover {
  color: black;
  border: none !important;
}

@media screen and (max-width: 1000px) {
  .form-filters-desktop {
    display: none;
  }

  .form-filters-mobile {
    display: flex;
  }

  .filterbtn {
    border: none;
  }

  .filterbtn:hover {
    background-color: transparent;
    color: #3d3d3d;
  }

  .filterbtn:focus {
    background-color: transparent;
    outline-color: transparent;
  }

  .form-filters {
    justify-content: center;
  }
}

.sort-menu {
  padding: 20px;
  width: 350px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.selected-date {
}
@media (max-width: 1280px) {
  .selected-date {
    font-size: 1.1rem;
  }
}

.sort-select {
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
}

.calendarBtns {
  display: flex;
  gap: 10px;
}

.gap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 1em;
}

.star-rating-li {
  display: flex;
  align-items: flex-start;
  margin-left: 1em;
}

.star-rating-img {
  height: 25px;
  width: 25px;
  object-fit: contain;
}

.luxury {
  margin-left: 27px;
}

.heritage {
  margin-left: 14px;
}

.unique {
  margin-left: 24px;
}

.green {
  margin-left: 31px;
}

.price {
  margin-left: 37px;
}

.booking-title {
  font-weight: bold;
  color: #992020;
}

.booking-text {
  font-size: 15px;
  color: #777;
}

.booking-container-inner {
  display: flex;
  margin-top: 3em;
}

.booking-container-left {
  flex: 0.3;
}

.booking-container-right {
  flex: 0.7;
  margin-left: 20px;
}

.booking-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  column-gap: 0.5em;
  font-weight: bold;
}

.booking-price span:first-child {
  color: #871b09;
}

.booking-price span:nth-child(2) {
  color: #777;
}

.booking-fee {
  margin-inline: 3em;
}

.booking-fee-inner {
  color: #777;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.booking-right-first-div {
  display: flex;
  gap: 3em;
  margin-top: 16px;
}

.booking-right-first-div-inner {
  display: flex;
  flex-direction: column;
}

.first-div-details {
  display: flex;
  flex-direction: column;
  margin-top: 1em;
}

.booking-right-second-div {
  display: flex;
  gap: 5em;
}

.booking-left-form {
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
  background-color: #f2f2f2;
  padding: 20px;
  margin-top: 1em;
}

.booking-left-form input {
  border: 1px solid lightgray;
  border-radius: 5px;
  height: 40px;
  width: 100%;
  padding-inline: 1em;
}

.booking-left-form select {
  background-color: white;
  padding-inline: 1em;
  border: 1px solid lightgray;
  border-radius: 5px;
  height: 40px;
  width: 100%;
}

.booking-right-form {
  display: flex;
  flex-direction: column;
  background-color: #f2f2f2;
  padding: 20px;
  margin-top: 1em;
}

.booking-right-form .form {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3em;
  row-gap: 1em;
}

.booking-right-form .form input {
  border: 1px solid lightgray;
  border-radius: 5px;
  height: 40px;
  width: 300px;
  padding-inline: 1em;
}

.booking-right-form .form select {
  background-color: white;
  padding-inline: 1em;
  border: 1px solid lightgray;
  border-radius: 5px;
  height: 40px;
  width: 300px;
}
.stripe-form form input {
  border: 1px solid lightgray;
  border-radius: 5px;
  height: 50px;
  padding-inline: 1em;
  width: 50%;
  color: gray;
}

.stripe-form form select {
  background-color: white;
  padding-inline: 1em;
  border: 1px solid lightgray;
  border-radius: 5px;
  height: 50px;
  width: 50%;
  color: gray;
}
.stripe-form .holiday-btn {
  width: 50%;
}

.label-text {
  color: #871b09;
}

.booking-notes {
  margin-top: 1em;
  margin-left: 1em;
}

.no-notes {
  background-color: #dff0d8;
  font-style: italic;
}

.warning {
  margin-top: 3em;
  background-color: #f7f0ce;
  text-align: center;
}

.primary {
  margin-top: 1em;
  background-color: #c6e8fa;
  text-align: center;
}

.terms-and-condition {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1em;
}

.holiday-btn {
  padding: 10px 25px;
  border: none;
  background-color: #992020;
  color: white;
}
.holiday-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.discount-btn {
  border: none;
  background-color: #992020;
  color: white;
  text-transform: capitalize;
}

.booking-left-first-div {
  margin: 20px;
  padding: 10px;
  background-color: #f7f0ce;
  border-radius: 5px;
  text-align: center;
  color: #72582b;
}

.booking-price-end {
  margin-top: 2em;
}

.mb-booking-price {
  display: none;
}

.booking-img {
  width: 300px;
  object-fit: contain;
}

.booked-price {
  font-size: 30px;
}
.exp-cvv {
  display: flex;
  width: 50%;
}
.checkout-dates {
  margin-left: 1.5em;
}

@media screen and (max-width: 768px) {
  .booking-right-second-div {
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }

  .booking-right-form .form {
    flex-wrap: nowrap;
    flex-direction: column;
    row-gap: 1em;
  }

  .booking-right-form .form input {
    width: 100%;
  }

  .booking-right-form .form select {
    width: 100%;
  }

  .gap {
    flex-direction: column;
    align-items: center;
  }

  .width-col-6 {
    width: 50%;
  }

  /* Calendar */
  .date_container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 450px;
    min-height: 300px;
  }

  .calender_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 18px 18px 0px 0px;
    padding: 15px;
    height: 50px;
    width: 100%;
    color: #262626;
  }

  .month {
    font-size: 0.7em;
  }

  .calender_icon {
    padding: 10px;
    font-size: 1em;
    margin: 0 0 0 5px;
    background: #ffffff;
    color: #455af7;
    border: none;
    cursor: pointer;
    outline: 0;
  }

  .weekends th {
    font-size: 1em;
    color: gray;
    font-weight: 400;
    width: 40px;
    margin: 10px 0;
  }

  #calendar tr {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin: 3px;
  }

  #calendar td {
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 99;
  }

  #calendar {
    width: 100%;
  }

  .calender_icon:hover {
    cursor: pointer;
  }

  .btn-day {
    font-family: "Open Sans";
    font-size: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: rgba(0, 0, 0, 0);
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 99;
    outline: 0;
    border-radius: 10px;
    transition: 0.4s all;
  }

  .btn-day.active {
    color: #fff;
    font-weight: 600;
    z-index: 99;
  }

  .btn-day.active::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    background: #455af7;
    border-radius: 10px;
    z-index: -1;
  }

  .start-date {
    background-color: #fff;
    border-radius: 10px;
    height: 4rem;
    align-self: center;
    padding: 7px;
    width: 200px !important;
    margin: 4px;
  }

  .date-background {
    background-color: #dedede;
    border-radius: 10px;
  }

  .end-date {
    border-radius: 10px;
    height: 4rem;
    align-self: center;
    padding: 7px;
    width: 200px !important;
  }

  .img-fluid {
    width: 100%;
  }

  .about-img-width {
    width: 100%;
  }

  .fa,
  .far,
  .fas {
    cursor: pointer;
  }

  .fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .star-rating-img {
    width: 19px;
    height: 22px;
  }

  .star-rating-li {
    margin-left: 60px;
  }

  .line-break {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #c6cacc;
    margin-right: 15px;
    margin-left: 15px;
  }

  .p-md-5 {
    padding: 1rem !important;
  }
}

.silver-color {
  color: silver;
}

.search-close-multiple-custom {
  display: none;
}

.red-color {
  color: #992020;
}

@media (min-width: 769px) {
  .gradient-custom-2 {
    border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
  }
}

input[type="radio"] {
  accent-color: #c15d1b !important;
}

input[type="checkbox"] {
  accent-color: #c15d1b !important;
}

.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff !important;
  background-color: #861b09 !important;
  border-color: #861b09;
}

.btn-info:hover {
  color: #fff;
  background-color: #a3881a;
  border-color: #a3881a;
}

.card .card-body {
  background: white;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
  margin-top: -1rem;
  /* margin-bottom: 20px; */
}
.mb-filter .card .card-body {
  border-radius: 200px;
}
.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler-icon {
  background-image: url(/user-layout/img/menu-icon.svg) !important;
  color: white;
  height: 1em !important;
  width: 1em !important;
}

.slider-text {
  font-family: "Dynalight";
  position: absolute;
  bottom: 0;
  color: white;
  left: 25%;
  font-size: 32px;
  font-style: oblique;
}

.see-more-gallery {
  display: flex;
}

@media screen and (max-width: 768px) {
  .search-close-multiple-custom {
    display: block;
  }

  .search-filter-multiple-custom {
    display: none;
  }

  .btn-color {
    background: #a3881a !important;
  }
}

/*display none of desktop image*/

/*display none of desktop filter images*/
@media screen and (max-width: 768px) {
  .desktop-category-images {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .slider-for-mobile-view {
    display: block !important;
  }

  .slider-img {
    width: 100vw;
  }

  .slider-text {
    bottom: 1px !important;
    left: 65%;
    font-weight: bold;
    font-size: 50px;
  }
}

@media screen and (max-width: 420px) {
  .slider-img {
    width: 95vw;
  }

  .slider-text {
    left: 40%;
  }

  .filter-text {
    font-weight: normal;
  }

  .uttBlanket {
    right: 0px;
  }

  .navbar .nav-link {
    padding-left: 0em !important;
  }

  .nav ul li a {
    padding: 2px 6px;
  }

  .menu-small-cont {
    margin-top: 0.5em;
    margin-left: 0.5em;
    margin-bottom: 0.5em;
  }

  .main-heading {
    margin-left: 12px;
    margin-bottom: 12px;
    font-size: 30px;
  }

  .home-tabs .nav-item .nav-link {
    font-size: 10px;
  }

  .not-found {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .navbar .nav-link {
    padding-left: 0em !important;
  }

  .nav ul li a {
    padding: 2px 6px;
  }

  .menu-small-cont {
    margin-top: 0.5em;
    margin-left: 0.5em;
    margin-bottom: 0.5em;
  }
}

@media screen and (max-width: 768px) {
  .image-gallery {
    display: none;
  }

  .view-all-button {
    display: block !important;
  }
}

.view-all-button {
  display: none;
}

@media screen and (max-width: 1200px) {
  .image-text-centered {
    font-size: 40px;
  }
}

@media screen and (min-width: 1280px) {
  .slider-for-mobile-view {
    display: none;
  }
}

@media screen and (max-width: 820px) {
  .image-text-centered {
    z-index: 50;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 30px;
    height: 25%;
    width: 101%;
    text-align: center;
    font-style: oblique;
  }
}

.btn-color {
  color: #fff;
  background: #861b09;
  border: #861b09;
  font-size: 15px;
  height: 40px;
  width: 100px;
  margin-top: 27px;
}

.btn-reset-filter {
  font-size: 20px;
  padding-left: 0px;
  padding-right: 0px;
}

.filter-close {
  left: 20px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.btn-outline-primary:hover,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #505c63 !important;
  background-color: #fff !important;
  cursor: pointer;
}

.btn-search-filter {
  color: #fff;
  background: #a3881a;
  border: #861b09;
}

/*Style For Category mobile*/

@import url("https://fonts.googleapis.com/css?family=Libre+Franklin:300,400,600,700,800,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:300&display=swap");

.no-record-found {
  font-size: 30px;
  text-align: center;
  color: #861b09 !important;
}

.social-icons {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  color: white;
  cursor: pointer;
}

@media screen and (max-width: 780px) {
  .filter-calendar-custom {
    width: auto;
  }

  .horizontal-line {
    border: 1px solid white !important;
    width: 100%;
    text-align: left;
    margin-left: 0;
    opacity: 0.8;
  }
}

.category-name-for-mobile {
  position: absolute;
  top: 50%;
  color: white;
  right: 25%;
  font-size: 32px;
  margin: 3px;
  font-style: oblique;
  font-family: Trattatello;
}

.nav ul li a {
  /* background: #555; */
  display: inline-block;
  color: white;
  text-decoration: none;
  padding: 2px 28px;
  transition: all 0.1s ease-in;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  text-align: center !important;
}

@media screen and (max-width: 532px) {
  .dashboard-custom-class {
    flex-direction: column !important;
  }

  .dashboard-custom-class .nav-item .nav-link {
    padding: 10px !important;
  }
}

.default-hover-cursor:hover {
  cursor: default !important;
  color: white !important;
}

/*property search style*/
ul.property-append-for-desktop {
  margin: 20px 0 0 0;
  padding: 0;
}
ul.property-append-for-mobile {
  position: absolute;
  margin: 20px 0 0 0;
  padding: 0;
  z-index: 999;
}
li.property-search {
  margin-top: 16px;
  font-size: 18px;
}
ul.property-append-for-mobile,
li.property-search {
  margin: 20px;
  padding: 0;
  background: white;
}

dl,
ol,
ul {
  /* list-style-type: none; */
  margin-top: 0;
  margin-bottom: 1rem;
}

.fa-heart:before {
  cursor: pointer;
}

@media screen and (max-width: 992px) {
  .nav ul li > ul {
    position: revert;
  }

  .booking-right-first-div {
    flex-direction: column;
    gap: 1em;
  }

  .booking-container-inner {
    flex-direction: column;
  }

  .booking-right-first-div {
    margin-top: 1em;
  }

  .booking-price-end {
    display: none;
  }

  .mb-booking-price {
    display: flex;
  }
  .stripe-form form input {
    width: 100%;
  }
  .stripe-form form select {
    width: 100%;
  }
  .stripe-form .holiday-btn {
    width: 100%;
  }
  .exp-cvv {
    width: 100%;
  }
  .checkout-dates {
    margin-left: 0em;
  }
}

.hidden {
  display: none;
}
.readmore {
  margin: 0 5px;
  cursor: pointer;
  font-size: 25px;
}

.checkout-failed-error {
  margin-top: 25px;
  margin-bottom: -32px;
  text-align: center;
}
.mybooking {
  display: flex;
  justify-content: space-around;
  align-items: center;
  column-gap: 2em;
}
@media screen and (max-width: 992px) {
  .mybooking {
    flex-wrap: wrap;
    justify-content: unset;
  }
}
@media screen and (max-width: 420px) {
  .mb-booking-price {
    margin-top: 20px;
  }
}

select.booking-dropdown-style {
  border: 0px;
  outline: 0px;
  background: none;
  line-height: 40px;
}

/*.btn:not(:disabled):not(.disabled) {
    width: 100%;
}*/

.mbsc-ios.mbsc-datepicker-inline {
  border-color: white;
}

.slick-prev slick-arrow {
  display: none;
}

#see-more-page-calendar-container .daterangepicker {
  position: static;
  width: 100%;
  background-color: transparent;
  border: 0;
}

#see-more-page-calendar-container .daterangepicker .calendar-table {
  background-color: transparent;
  border: none;
}

#see-more-page-calendar-container .daterangepicker .calendar-table table {
  border: 0;
}

#see-more-page-calendar-container .daterangepicker td.today {
  /* color: black !important; */
}

#see-more-page-calendar-container .daterangepicker .drp-calendar.left,
#see-more-page-calendar-container .daterangepicker .drp-calendar {
  border: 0;
}

@media (min-width: 564px) {
  #see-more-page-calendar-container
    .daterangepicker
    .drp-calendar.left
    .calendar-table {
    padding-right: 0;
  }
}

#see-more-page-calendar-container .daterangepicker .drp-calendar.left,
#see-more-page-calendar-container .daterangepicker .drp-calendar.right {
  padding: 0;
}

#see-more-page-calendar-container .daterangepicker .drp-calendar {
  float: none;
  width: 100%;
  max-width: 100%;
}

#see-more-page-calendar-container .daterangepicker .calendar-table th,
#see-more-page-calendar-container .daterangepicker .calendar-table td {
  width: 14.28% !important;
  height: 40px !important;
  line-height: normal;
  font-size: 1rem;
  /* padding: 0.7rem 0.6rem; */
  border: 0;
  padding: 14px 0;

  font-family: futura-pt, sans-serif;
}

#see-more-page-calendar-container .daterangepicker .calendar-table tr {
  margin: 10px 0;
}

#see-more-page-calendar-container .daterangepicker td.off,
#see-more-page-calendar-container .daterangepicker td.off.in-range,
#see-more-page-calendar-container .daterangepicker td.off.start-date,
#see-more-page-calendar-container .daterangepicker td.off.end-date {
  background-color: transparent;
}

#see-more-page-calendar-container .daterangepicker select.monthselect,
#see-more-page-calendar-container .daterangepicker select.yearselect {
  font-size: 16px;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}

#see-more-page-calendar-container .calendar-price-preview {
  background: #f8f9fa;
  border: 1px solid #e2e6ea;
  border-radius: 12px;
  padding: 1rem;
  font-size: 0.95rem;
  min-height: 90px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

#see-more-page-calendar-container .calendar-price-preview__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #6c757d;
}

#see-more-page-calendar-container .calendar-price-preview__value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #212529;
  margin-top: 0.4rem;
}

#see-more-page-calendar-container .calendar-price-preview__range {
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

#see-more-page-calendar-container .calendar-price-preview.is-loading .calendar-price-preview__value {
  color: #495057;
  opacity: 0.75;
}

#see-more-page-calendar-container .calendar-price-preview.is-error {
  border-color: #f5c2c7;
  background: #fff5f5;
}

#see-more-page-calendar-container .calendar-price-preview.is-error .calendar-price-preview__value {
  color: #b02a37;
}


#see-more-page-dates {
  display: none;
}

/* #see-more-page-calendar-container .daterangepicker td:not(.in-range):not(.start-date):not(.end-date):not(.off):hover {
    background: linear-gradient(to top right, transparent 0%, transparent 50%, var(--utt-gold) 50%, var(--utt-gold) 100%);
    border-color: transparent;
    color: black !important;   
}

#see-more-page-calendar-container .daterangepicker td:not(.in-range):not(.start-date):not(.end-date):not(.off):hover ~ td.available:not(:has(+ .off)) {
    background-color: var(--utt-gold);
} */

/* #see-more-page-calendar-container .daterangepicker td.start-date:not(.end-date) {
    background: linear-gradient(to top right, transparent 0%, transparent 50%, var(--utt-gold) 50%, var(--utt-gold) 100%);
    border-color: transparent;
    color: black !important;
}

#see-more-page-calendar-container .daterangepicker td.start-date ~ td.available:not(:has(+ .disabled)) {
    background-color: var(--utt-gold);
}

#see-more-page-calendar-container .daterangepicker td.start-date ~ td.available:has(+ .disabled) {
    background: linear-gradient(to bottom left, transparent 0%, transparent 50%, var(--utt-gold) 50%, var(--utt-gold) 100%);
    border-color: transparent;
    color: black !important;
} */

/* Hightlight late availability dates */
#see-more-page-calendar-container .daterangepicker td.special {
  background-color: var(--utt-orange);
}

#see-more-page-calendar-container .daterangepicker td.off,
#see-more-page-calendar-container .daterangepicker td.off.in-range,
#see-more-page-calendar-container .daterangepicker td.off.start-date,
#see-more-page-calendar-container .daterangepicker td.off.end-date {
  color: inherit;
}

#see-more-page-calendar-container .daterangepicker .calendar-table th,
#see-more-page-calendar-container .daterangepicker .calendar-table td {
  border-radius: 0;
}

/* Note: ".ends" class is added when the day belongs to the other month */
#see-more-page-calendar-container
  .daterangepicker
  td.start-date:not(.end-date):not(.ends) {
  background: linear-gradient(
    to bottom right,
    transparent 0%,
    transparent 50%,
    var(--utt-gold) 50%,
    var(--utt-gold) 100%
  );
  border-color: transparent;
  color: black !important;
}
#see-more-page-calendar-container
  .daterangepicker
  td.in-range:not(.start-date):not(:has(> .in-range-min-span)):not(.ends) {
  background-color: var(--utt-gold);
}

#see-more-page-calendar-container
  .daterangepicker
  td.in-range:not(.start-date):not(:has(~ .in-range)):not(
    :has(~ .end-date)
  ):not(.off):not(.ends),
#see-more-page-calendar-container
  .daterangepicker
  td.active.end-date:not(.start-date):not(.ends),
#see-more-page-calendar-container
  .daterangepicker
  td.active.end-date:not(.ends):hover {
  background: linear-gradient(
    to top left,
    transparent 0%,
    transparent 50%,
    var(--utt-gold) 50%,
    var(--utt-gold) 100%
  );
  border-color: transparent;
  color: black !important;
}

#see-more-page-calendar-container
  .daterangepicker
  td.active.start-date.end-date {
  background-color: inherit;
}

#see-more-page-calendar-container .daterangepicker td.active.today {
  background-color: inherit;
}

#see-more-page-calendar-container
  .daterangepicker
  td.disabled.in-range-min-span,
#see-more-page-calendar-container
  .daterangepicker
  option.disabled.in-range-min-span {
  text-decoration: none;
}

#see-more-page-calendar-container .daterangepicker td.alreadybooked {
  color: white;
  background-color: var(--utt-red);
}

#see-more-page-calendar-container td.end-date {
  color: black !important;
}

#calendar-loading-indicator,
.utt-loading-indicator {
  position: absolute;
  top: 25%;
  left: calc(50% - 1rem);
  z-index: 99999;
}
#calendar-loading-indicator-bg,
.utt-loading-indicator-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 99998;
}

#search-page-loading-indicator-bg,
#search-page-loading-indicator-bg.utt-loading-indicator-bg {
  position: fixed;
  width: 100vw;
  height: 100vh;
}

#search-page-loading-indicator,
#search-page-loading-indicator.utt-loading-indicator {
  position: fixed;
  top: 50%;
  left: calc(50% - 1rem);
}

#calendar-loading-indicator.spinner-border.text-primary,
.utt-loading-indicator.spinner-border.text-primary {
  color: var(--utt-old-gold) !important;
}

.main-search {
  position: relative;
}

.card-body.home-desktop-search {
  padding: 0.85rem 0.45rem 0.85rem 1rem;
}

#home-desktop-calendar-container .daterangepicker,
#home-mobile-calendar-container .daterangepicker,
#search-page-mobile-modal-calendar-container .daterangepicker {
  position: static;
}

#search-page-mobile-modal-calendar-container
  .daterangepicker
  .drp-calendar.left {
  padding: 0;
}

.dropdown-menu {
  z-index: 1060;
}

#home-mobile-calendar-container .drp-calendar.right {
  display: none;
}
.modal {
  z-index: 99999; /* Don't ask */
}

/* NEW FRONTEND BOOKING CALENDAR */

.utt-calendar {
  width: 500px;
  margin: 0 auto;
  max-width: 100%;
}

.mbsc-ios.mbsc-datepicker-inline {
  background: var(--utt-bg-grey);

  border-top: none;
  border-bottom: none;
}

#see-more-calendar [role="button"] {
  cursor: inherit !important;
}

.mbsc-datepicker .vacation-check-out,
.mbsc-datepicker .vacation-check-in {
  color: initial;
}

.mbsc-datepicker .vacation-check-in.mbsc-calendar-cell.mbsc-calendar-day-empty,
.mbsc-datepicker .vacation-check-out.mbsc-calendar-cell.mbsc-calendar-day-empty,
#see-more-calendar.mbsc-datepicker
  .vacation-check-in.mbsc-calendar-cell.mbsc-calendar-day-empty,
#see-more-calendar.mbsc-datepicker
  .vacation-check-out.mbsc-calendar-cell.mbsc-calendar-day-empty {
  background: transparent;
}

.mbsc-ios.mbsc-calendar-header,
.mbsc-ios.mbsc-calendar-wrapper {
  background: var(--utt-bg-grey);
  margin-bottom: 1rem;
}

.mbsc-ios.mbsc-calendar-wrapper {
  margin-bottom: 0;
}

.mbsc-ios.mbsc-datepicker .mbsc-calendar,
.mbsc-ios.mbsc-datepicker .mbsc-calendar-cell,
.mbsc-ios.mbsc-datepicker .mbsc-calendar-slide {
  background: var(--utt-bg-grey);
}

.mbsc-calendar-grid .mbsc-calendar-table {
  width: auto;
  margin: 0;
}

.mbsc-calendar-grid {
  padding: 0;
}

.mbsc-ios.mbsc-calendar-month-title {
  color: inherit;
}

.mbsc-ios.mbsc-calendar-button.mbsc-button {
  color: inherit;
}

.mbsc-calendar-month-title {
  margin: 0;
  text-align: center;
}

.mbsc-calendar-grid-item {
  margin: 0;
  padding: 0;
}
.mbsc-datepicker .mbsc-calendar {
  padding-bottom: 0;
}

/* Half background colour for check-in and check-out days, and late availability "check-in" and "check-out" */
/* Notes: vacation-booked, vacation-check-in, vacation-check-out, late-availability-day, late-availability-check-in, late-availability-check-out, mbsc-calendar-day-outer
and also mbsc-calendar-day-empty I think */

.mbsc-ios.mbsc-datepicker
  .vacation-booked.mbsc-ltr:not(.mbsc-calendar-day-outer) {
  background: var(--utt-booked-semi-trans);
}

.mbsc-ios.mbsc-datepicker .vacation-check-in.mbsc-ltr {
  background: linear-gradient(
      to left top,
      var(--utt-booked-semi-trans) 50%,
      var(--utt-off-season-semi-trans) 50%
    )
    no-repeat;
}
.mbsc-ios.mbsc-datepicker .vacation-check-out.mbsc-ltr {
  background: linear-gradient(
      to left top,
      var(--utt-off-season-semi-trans) 50%,
      var(--utt-booked-semi-trans) 50%
    )
    no-repeat;
}

/* .mbsc-datepicker .vacation-check-in.vacation-booked, .mbsc-datepicker .vacation-check-out.vacation-booked, */
.mbsc-ios.mbsc-datepicker .vacation-check-in.vacation-check-out.mbsc-ltr,
.mbsc-ios.mbsc-datepicker
  .vacation-check-in.vacation-check-out.late-availability-day.mbsc-ltr {
  background: var(--utt-booked);
}

.mbsc-ios.mbsc-datepicker
  .late-availability-day.mbsc-ltr:not(.mbsc-calendar-day-outer):not(
    .vacation-check-in
  ):not(.vacation-check-out):not(.vacation-booked) {
  background: var(--utt-old-gold-semi-trans);
}

.mbsc-ios.mbsc-datepicker
  .vacation-check-out.late-availability-check-in.mbsc-ltr:not(
    .vacation-check-in
  ):not(.vacation-booked),
.mbsc-ios.mbsc-datepicker
  .vacation-check-out.late-availability-day.mbsc-ltr:not(
    .vacation-check-in
  ):not(.vacation-booked) {
  background: linear-gradient(
      to left top,
      var(--utt-old-gold-semi-trans) 50%,
      var(--utt-booked-semi-trans) 50%
    )
    no-repeat;
}

.mbsc-ios.mbsc-datepicker
  .vacation-check-in.late-availability-day.mbsc-ltr:not(.vacation-booked):not(
    .vacation-check-out
  ),
.mbsc-ios.mbsc-datepicker
  .vacation-check-in.late-availability-check-out.mbsc-ltr:not(
    .vacation-booked
  ):not(.vacation-check-out) {
  background: linear-gradient(
      to left top,
      var(--utt-booked-semi-trans) 50%,
      var(--utt-old-gold-semi-trans) 50%
    )
    no-repeat;
}

.mbsc-ios.mbsc-datepicker
  .late-availability-check-in.mbsc-ltr:not(.mbsc-calendar-day-outer):not(
    .vacation-booked
  ):not(.vacation-check-out):not(.vacation-check-in) {
  background: linear-gradient(
      to left top,
      var(--utt-old-gold-semi-trans) 50%,
      var(--utt-bg-grey) 50%
    )
    no-repeat;
}
.mbsc-ios.mbsc-datepicker
  .late-availability-check-out.mbsc-ltr:not(.mbsc-calendar-day-outer):not(
    .vacation-booked
  ):not(.vacation-check-in):not(.vacation-check-out) {
  background: linear-gradient(
      to left top,
      var(--utt-bg-grey) 50%,
      var(--utt-old-gold-semi-trans) 50%
    )
    no-repeat;
}

.mbsc-ios.mbsc-datepicker
  .late-availability-check-out.late-availability-check-in:not(
    .mbsc-calendar-day-outer
  ):not(.vacation-booked) {
  background: var(--utt-old-gold-semi-trans);
}

.adminTable {
  margin-bottom: 0;
}
.adminTable.table td,
.adminTable.table th {
  padding: 0.5rem 0;
  border-top: none;
  font-size: 14px;
}
.adminTable.table tr {
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 10px;
}
.adminTable.table tr:nth-last-of-type(1) {
  border-bottom: none !important;
}
.adminTable .form-control {
  height: 35px !important;
}

.dataTables_length,
.dt-buttons,
div.dataTables_wrapper div.dataTables_filter,
div.dataTables_wrapper div.dataTables_info,
div.dataTables_wrapper div.dataTables_paginate {
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
}
table.dataTable thead .sorting:after,
table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before {
  font-size: 12px;
}
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:after {
  color: var(--utt-orange);
}
.table thead th {
  font-size: 12px;
  padding-left: 0.5rem;
}
.table td {
  font-size: 12px;
  font-weight: 400;
  padding: 0.5rem;
}

.table thead th {
  font-weight: 600;
  font-size: 15px;
  border-bottom: 0;
  padding-left: 1rem;
}
.table td,
.table th {
  vertical-align: middle;
}
.table td {
  font-size: 14px;
  font-weight: 500;
  padding: 1rem;
}
.table-striped tbody tr:nth-of-type(odd) {
  background: #eaeef2;
}
table.dataTable.display tbody tr.odd,
table.dataTable.display tbody tr:hover,
table.dataTable.hover tbody tr:hover,
table.dataTable.stripe tbody tr.odd {
  background: #ecf0f3 !important;
}
table.dataTable tbody tr.selected,
table.dataTable.display tbody tr:hover.selected,
table.dataTable.hover tbody tr:hover.selected {
  background-color: #181f48 !important;
  color: #fff;
}
table.dataTable.display tbody tr.odd.selected,
table.dataTable.stripe tbody tr.odd.selected {
  background-color: #1b00ff !important;
}
table.dataTable thead .sorting:after,
table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before {
  font-family: "dropways";
  font-size: 14px;
}
table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc_disabled:before {
  content: "\eabb";
}
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_desc_disabled:after {
  content: "\eaba";
  right: 0.2em;
}
.blog-list ul li:hover .blog-caption h4 a,
.fontawesome-icon-list .fa-hover:hover a,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:after {
  color: #1b00ff;
}
table.dataTable > tbody > tr.child ul.dtr-details {
  white-space: normal;
}
table.dataTable.display tbody tr.odd,
table.dataTable.display tbody tr:hover,
table.dataTable.hover tbody tr:hover,
table.dataTable.stripe tbody tr.odd {
  background: #fafafa !important;
}

/* 
.mbsc-datepicker .md-book-rental-bg-off.vacation-check-in.mbsc-ltr {
    background: linear-gradient( to left top, var(--utt-booked-semi-trans) 50%, var(--utt-off-season-semi-trans) 50%) no-repeat;
}

.mbsc-datepicker .md-book-rental-bg-pre.vacation-check-in.mbsc-ltr {
    background: linear-gradient( to left top, var(--utt-booked-semi-trans) 50%, #a3cdff80 50%) no-repeat;
}

.mbsc-datepicker .md-book-rental-bg-in.vacation-check-in.mbsc-ltr {
    background: linear-gradient( to left top, var(--utt-booked-semi-trans) 50%, #f7f7bb80 50%) no-repeat;
}

.mbsc-datepicker .md-book-rental-bg-off.vacation-check-out.mbsc-ltr {
    background: linear-gradient( to left top, var(--utt-off-season-semi-trans) 50%, var(--utt-booked-semi-trans) 50%) no-repeat;
}

.mbsc-datepicker .md-book-rental-bg-pre.vacation-check-out.mbsc-ltr {
    background: linear-gradient( to left top, #a3cdff80 50%, var(--utt-booked-semi-trans) 50%) no-repeat;
}

.mbsc-datepicker .md-book-rental-bg-in.vacation-check-out.mbsc-ltr {
    background: linear-gradient( to left top, #f7f7bb80 50%, var(--utt-booked-semi-trans) 50%) no-repeat;
}

.mbsc-datepicker .md-book-rental-bg-off.vacation-check-out.vacation-check-in {
    background: var(--utt-booked-semi-trans);
}
 */

/* I don't think we need the rtl stuff */
/* 
.mbsc-datepicker .md-book-rental-bg-off.vacation-check-in.mbsc-rtl {
    background: linear-gradient( to right bottom, var(--utt-booked-semi-trans) 50%, #b2f1c080 50%) no-repeat;
}

.mbsc-datepicker .md-book-rental-bg-pre.vacation-check-in.mbsc-rtl {
    background: linear-gradient( to right bottom, var(--utt-booked-semi-trans) 50%, #a3cdff80 50%) no-repeat;
}

.mbsc-datepicker .md-book-rental-bg-in.vacation-check-in.mbsc-rtl {
    background: linear-gradient( to right bottom, var(--utt-booked-semi-trans) 50%, #f7f7bb80 50%) no-repeat;
}

.mbsc-datepicker .md-book-rental-bg-off.vacation-check-out.mbsc-rtl {
    background: linear-gradient( to right bottom, #b2f1c080 50%, var(--utt-booked-semi-trans) 50%) no-repeat;
}

.mbsc-datepicker .md-book-rental-bg-pre.vacation-check-out.mbsc-rtl {
    background: linear-gradient( to right bottom, #a3cdff80 50%, var(--utt-booked-semi-trans) 50%) no-repeat;
}

.mbsc-datepicker .md-book-rental-bg-in.vacation-check-out.mbsc-rtl {
    background: linear-gradient( to right bottom, #f7f7bb80 50%, var(--utt-booked-semi-trans) 50%) no-repeat;
} */

.md-book-rental-header {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-left: auto;
  flex: 1 1;
  overflow: hidden;
}

.md-book-rental-zone {
  font-size: 12px;
  padding: 3px 6px;
  margin: 0 5px;
  border-radius: 16px;
  color: #1e1e1ecc;

  text-align: center;
}

.md-book-rental .mbsc-calendar-label-text {
  text-align: center;
  font-weight: bold;
}

.md-book-rental-in {
  background: #f7f7bb80;
}

.md-book-rental-pre {
  background: #a3cdff80;
}

.md-book-rental-off {
  background: #b2f1c080;
}
.md-book-rental-late-availability {
  background: var(--utt-old-gold-semi-trans);
}

.md-book-rental-booked {
  background: var(--utt-booked-semi-trans);
}

.mbsc-calendar-text-more {
  display: none;
}

.mbsc-ios.mbsc-calendar-button.mbsc-button.mbsc-calendar-button-today {
  display: none;
}

@media (min-width: 419px) and (max-width: 991px) {
  .mbsc-ios.mbsc-calendar-button.mbsc-button.mbsc-calendar-button-today {
    display: inline-flex;
  }
}
@media (min-width: 992px) and (max-width: 1405px) {
  .mbsc-ios.mbsc-calendar-button.mbsc-button.mbsc-calendar-button-today {
    display: none;
  }
}

.mbsc-calendar-grid-row.mbsc-flex {
  display: block;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .md-book-rental-zone.md-book-rental-booked {
    display: none;
  }
}

.mbsc-calendar-row {
  padding: 0.4rem 0;
}

.mbsc-calendar-cell {
  padding: 0.6rem 0;
}

.mbsc-ios.mbsc-range-hover:before {
  top: 0.76em;
}

.mbsc-ios.mbsc-range-day:after,
.mbsc-ios.mbsc-range-hover:before {
  top: 0.85em;
}

/* .mbsc-ios.mbsc-calendar-day-text {
    width: 1.925em;
    height: 2.325em;

    line-height: 2.325em;

}
.mbsc-ios.mbsc-datepicker .mbsc-highlighted .mbsc-calendar-day-text, .mbsc-ios.mbsc-datepicker .mbsc-hover .mbsc-calendar-day-text, .mbsc-ios.mbsc-datepicker .mbsc-range-hover-end .mbsc-calendar-day-text, .mbsc-ios.mbsc-datepicker .mbsc-range-hover-start .mbsc-calendar-day-text, .mbsc-ios.mbsc-datepicker .mbsc-selected .mbsc-calendar-day-text {
    width: 1.925em;
    height: 2.325em;

    line-height: 2.325em;

} */
/* .mbsc-ios.mbsc-calendar-day-text {
    width: 1.625em;
    height: 1.625em;
    margin: 0.1875em;
    padding: 0;
    line-height: 1.625em;
    border: 2px solid transparent;
    border-radius: 2em;
} */

/* Invalid holiday start days */
.mbsc-calendar-day-marked.invalid-start-day .mbsc-calendar-day-text,
.mbsc-calendar-day-marked.invalid-selection-start-date .mbsc-calendar-day-text {
  opacity: 0.2;
}

.mbsc-calendar-day-marked.invalid-selection-start-date:hover {
  cursor: not-allowed;
}

.mbsc-calendar-marks {
  display: none;
}

#toast-container > div {
  opacity: 1;
}
.home-hero-link-container {
  z-index: 1;
  width: 100%;
  top: 1rem;
  position: absolute;
}
.home-hero-property-link {
  /*     position: absolute;
    top: 1rem;
    right: 1rem;*/
  display: inline-block;
  padding: 0.2rem 0.4rem;
  background-color: rgba(255, 255, 255, 0.9);
  /* z-index: 1; */
  border-radius: 0.2rem;
  font-weight: 500;
  font-size: 0.9rem;
  margin-right: 0.6rem;
}
.home-hero-property-link i {
  font-size: 0.8rem;
  margin-right: 0.4rem;
}
body.see-more-page {
  position: relative;
  padding-bottom: 80px;
}
#see-more-page-calendar-container {
  margin-bottom: 2rem;
}
#see-more-calendar-cancel-button {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: auto;
}
.border-and-padding-when-invalid.is-invalid {
  border: 1px solid red;
  /*padding: 0.5rem;*/
}

/* #toast-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */
/* 
#toast-container {
    left: 50%;
} */

.toast {
  pointer-events: auto;
}

.clickable {
  cursor: pointer;
}

@media (max-width: 576px) {
  body.see-more-page #chatra,
  body.see-more-page #chatra.chatra--side-bottom {
    bottom: 112px !important;
  }
}

/* TrustPayments Modal Styles */
#trustpaymentsModal .modal-content {
  border: none;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  max-height: 95vh;
  overflow-y: auto;
}

@media (max-width: 768px) {
  #trustpaymentsModal .modal-dialog {
    margin: 10px;
    max-width: calc(100% - 20px);
  }

  #trustpaymentsModal .modal-content {
    max-height: calc(100vh - 20px);
  }
}

.utt-payment-header {
  color: #928564;
  border-bottom: none;
}

.utt-payment-header .close {
  position: relative;
  top: -5px;
  right: 10px;
  font-size: 24px;
  opacity: 0.8;
}

.utt-payment-header .close:hover {
  opacity: 1;
}

.utt-payment-subtitle {
  color: #928564;
}

.utt-payment-timer {
  background-color: #928564;
  color: #fff;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 20px;
  font-family: "Courier New", monospace;
}

.utt-payment-body {
  padding: 30px;
  background-color: #f8f9fa;
}

@media (max-width: 768px) {
  .utt-payment-body {
    padding: 20px 15px;
  }
}

.utt-payment-label {
  color: #861b09;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.utt-payment-form {
  margin-bottom: 25px;
}

.utt-input-group {
  position: relative;
}

.utt-payment-input {
  max-height: 110px;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  background-color: white;
  min-height: 50px;
  transition: border-color 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.utt-payment-input:focus {
  border-color: #928564;
  box-shadow: 0 0 0 3px rgba(146, 133, 100, 0.1);
}

@media (max-width: 575px) {
  .utt-payment-input {
    padding: 12px;
    min-height: 45px;
  }

  .utt-input-group.mb-3 {
    margin-bottom: 15px !important;
  }
}

.utt-payment-summary {
  background: white;
  border: 2px solid #928564;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
}

.utt-payment-summary:hover {
  box-shadow: 0 4px 12px rgba(146, 133, 100, 0.2);
}

.utt-payment-summary-title {
  color: #861b09;
}

.utt-payment-amount {
  color: #928564;
  font-weight: bold;
}

.utt-payment-button {
  background-color: #861b09;
  border: none;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
}

.utt-payment-button:hover {
  background-color: #928564 !important;
  color: #861b09 !important;
  transition: all 0.3s ease;
}

#payment-timer.warning {
  background-color: #dc3545 !important;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.utt-time-notification {
  background-color: #fff3cd;
  border: 1px solid #928564;
  color: #861b09;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
}

.utt-time-error {
  background-color: #f8d7da;
  border: 1px solid #dc3545;
  color: #721c24;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
}

.utt-time-notification.warning {
  background-color: #f8d7da;
  border-color: #dc3545;
  color: #721c24;
  animation: pulse 1s infinite;
}

.border-and-padding-when-invalid.is-invalid {
  border: 2px solid #dc3545;
  padding: 10px;
  margin-bottom: 10px;
}

/* TrustPayments Error Styling */
.utt-payment-error {
  border: 2px solid #dc3545;
  background-color: #f8d7da;
  color: #721c24;
  border-radius: 8px;
  animation: slideInDown 0.3s ease;
  margin-bottom: 20px;
}

.utt-payment-error i {
  color: #dc3545;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
