/* Colors & fonts */
:root {
    --purple1: #a685e2;
    --purple2: #6155a6;
    --logo:#955ba5;
    --grey: #C3C3D8;

    --font:'Quicksand', sans-serif;
    --fontheading:'Lobster', sans-serif;
}
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");
body {
  font-family:var(--font);
}
/* scrollbar */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #8080808a;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background:  linear-gradient(45deg, var(--logo), var(--purple1));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background:  var(--logo);
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem transparent;
}
/*===================== navbar =======================================*/

.navbar {
    /* transition: all 0.4s; */
    background: #fff;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    text-decoration: none;
}

.navbar .navbar-brand {
    color: #fff;
    font-size: 23px;
}
.nav-logo{
  width: 35px
}

.dropdown-toggle::after {
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    display: none;
}
.nav-dropdown-img{
  width: 35px;
}
.notification-img{
  width: 35px;
}
.notification-dropdown-menu{
  left: -155px;
}
.profile-dropdown-menu {
    left: -110px;
}
.navbar {
    background: #fff;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand {
    color: var(--purple1);
}

.details-container{
  margin-top: 8rem!important;
}


/*========================== edit form modal  ===============================*/
@media (min-width: 576px){
.modal-dialog {
    max-width: 750px !important;
    margin: 1.75rem auto;
}
}

.btn-save{
    background: linear-gradient(45deg, var(--logo), var(--purple1));
    color: white;
}
.btn-save:hover{
  background-color:var(--logo);
    color: white;
}

/*==================== posts image section ================================*/
.carousel-item img{
  height: 450px;
}
.carousel-indicators {
    position: relative;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
    width: 100% !important;
    margin-top: 15px;
    margin-bottom: 10rem;
}
.carousel-indicators li {
    width: 100%;
}
.carousel-indicators li img{
  height: 140px;
}
.carousel-indicators .active img{
  border: 2px solid var(--purple1);
}

@media (max-width: 767.98px){
  .carousel-item img{
    height: 390px;
  }
  .carousel-indicators li img{
    height: 100px;
  }
}

/*========================= details =======================================*/
.edit-post-menu{
  left:-7rem !important;
}
.dropdown-dots{
  color: var(--purple1);
  font-size: 20px;
}
.dropdown-item.active, .dropdown-item:active {
    background-color: #a685e2;
}
@media (max-width: 767.98px){
  .edit-post-menu{
    left:-4rem !important;
  }
}

.details-tittle{
  font-family:var(--fontheading);
  color: var(--purple1);
}
.details-tittle:after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 75px;
  height: 3px;
  background: var(--purple1);
  left: 15px;
  top: 40px;
}

.price{
    font-weight: 600;
    color: #444;
    margin-top: 25px;
    margin-bottom: 10px;
}
.post-review span{
  font-size: 14px;
}
.checked {
  color: orange;
}
.avaibility i{
   color: var(--purple1);
    font-size: 12px;
}

.filter-list{
  list-style: none;
}
.filter-list li {
    font-size: 15px;
    font-weight: normal;
    color: #777777;
    text-decoration: none;
    margin-bottom: 5px;
}
.filter-list li .filter-item {
    width: 90px;
    display: inline-block;
    color: #555555;
}


/* more filters section */

.more-filters-list .list-group-item {
    padding: .75rem 1.25rem !important;
    border: 0 !important;
}
.text-end{
  text-align: end;
}
.notavailable{
  text-decoration: line-through;
}
.notavailable img{
  opacity: 50%;
}
.filter-img{
  width: 25px;
  margin-right: 5px;
}




.rent-btn {
    background: linear-gradient(45deg, var(--logo), var(--purple1));
    color: #fff;
    padding: 7px;
    border-radius: 25px;
    width: 150px;
}
.rent-btn:hover{
    border-color: var(--purple1);
    color: var(--purple1);
    background: transparent;
}


/* contact agent */
.contact-agent{
  font-family:var(--fontheading);
  color: var(--purple1);
}

.agent-img{
  width: 100px;
  border-radius: 50%;
}
.agent-name{
  font-size: 20px;
    font-weight: 600;
    color: #555;
}
.agent-link:hover{
  text-decoration: none;
}
.agent-link:hover span{
    color: var(--purple1);
}

/* user rating */
/* .rate {
    float: left;
    height: 46px;
    padding: 0 10px;
} */
.enter-rating:not(:checked) > input {
    position:absolute;
    top:-9999px;
}
.enter-rating:not(:checked) > label {
    float:right;
    width:1em;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    font-size:30px;
    color:#ccc;
}
.enter-rating:not(:checked) > label:before {
    content: '★ ';
    /* font-family: FontAwesome;
    content: "\f005"; */
}
.enter-rating > input:checked ~ label {
    color: #ffa500;
}
.enter-rating:not(:checked) > label:hover,
.enter-rating:not(:checked) > label:hover ~ label {
    color: #deb217;
}
.enter-rating > input:checked + label:hover,
.enter-rating > input:checked + label:hover ~ label,
.enter-rating > input:checked ~ label:hover,
.enter-rating > input:checked ~ label:hover ~ label,
.enter-rating > label:hover ~ input:checked ~ label {
    color: #c59b08;
}



/*=========================== comments ======================================*/
.media img{
  width: 70px;
  border-radius: 50%;
}
.fontheading{
  font-family:var(--fontheading);
  color: var(--purple1);
}


.your-rating{
  display: inline-block;
}
.your-rating{
  display: inline-block;
}
.enter-rating{
  display: inline-block;
}
.form-control:focus{
  box-shadow: none !important;
    border-color: var(--purple1);
}








/* datepicker */
.datepicker {
    background-color: #fff;
    border: none;
    border-radius: 0 !important
}

.datepicker-dropdown {
    top: 0;
    left: 0
}

.datepicker table tr td.today,
span.focused {
    border-radius: 50% !important;
    background-image: linear-gradient(45deg, #bd71d2b8, #9363ea70);
}

.datepicker table tr td.today.range {
    background-image: linear-gradient(#eeeeee, #eeeeee) !important;
    border-radius: 0 !important
}
thead tr:nth-child(3) th {
    font-weight: bold !important;
    padding-top: 10px;
    padding-bottom: 10px;
    color: var(--purple1);
}

.dow,
.old-day,
.day,
.new-day {
    width: 40px !important;
    height: 40px !important;
    border-radius: 0px !important;
}

.old-day:hover,
.day:hover,
.new-day:hover,
.month:hover,
.year:hover,
.decade:hover,
.century:hover {
    border-radius: 50% !important;
    background-color: #eee;
}
.active {
    border-radius: 50% !important;
    background-image: linear-gradient(45deg, var(--logo), var(--purple1)) !important;
    color: #fff !important
}

.range-start,
.range-end {
    border-radius: 50% !important;
    background-image: linear-gradient(45deg, var(--logo), var(--purple1)) !important;
}

.prev,
.next,
.datepicker-switch {
    border-radius: 0 !important;
    padding: 10px 10px 10px 10px !important;
    text-transform: uppercase;
    font-size: 14px;
    opacity: 0.8
}
.prev:hover,
.next:hover,
.datepicker-switch:hover {
    background-color: inherit !important;
    opacity: 1
}

.btn-black {
    background-color: #37474F !important;
    color: #fff !important;
    width: 100%
}

.btn-black:hover {
    color: #fff !important;
    background-color: #000 !important
}
.datepicker-dropdown{
  box-shadow: 0 2px 20px -2px rgba(0, 0, 0, 0.1);
    border-radius: 5px !important;
}
.datepicker {
    padding: 25px;
}

.datepicker table tr td.today, .datepicker table tr td.today:hover, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover {
  background-image: linear-gradient(45deg, #955ba5b3, #a685e2b3);
  }
  .today:hover{
    background-color: var(--purple1) !important;
  }
  .form-control[readonly] {
      background-color: transparent !important;
  }

  @media (max-width:768px) {
    .datepicker-dropdown{
      top:744px !important;
    }
  }


/*========================== footer =========================================*/
.footer-area {
    padding: 120px 0px 60px;
    background: linear-gradient(45deg, var(--logo), var(--purple1));
}
.footer-heading{
  color: #fff;
}
.footer-contect-wrapper p{
  color: #d0d0d0;
    width: 85%;
}
.footer-list li{
margin: 7px;
}
.footer-list li a{
  color: #d0d0d0;
}
.footer-list li a:hover{
  color: #fff;
  text-decoration: none;
}
.contact-list li{
  margin: 7px;
  color: #fff;
}
.footer-contect-wrapper span i{
  color: #d0d0d0;
}
.footer-contect-wrapper span i:hover{
  color: #fff;
}
.copyright{
  justify-content: center;
  margin-top: 55px;
  color: #fff;
}
