/******* BASE *******/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-family: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}

.main-wrapper{
    align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid transparent;
  height: 60px;
  z-index: 1002;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
}
.header .header-left {
    float: left;
    height: 60px;
    position: relative;
    text-align: center;
    width: 20%;
    z-index: 1;
    padding: 0 10px;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-align: left;
}

.header .header-left .logo {
  display: inline-block;
  line-height: 60px;
}

.header .page-title-box {
    float: left;
    height: 60px;
    margin-bottom: 0;
    padding: 0px 20px;
    border-radius: 0;
    width: 40%;
    background-color: #ffffff;
}
.header .top-nav-search {

}

.header .header-right {
    float: left;
    height: 60px;
    position: relative;
    text-align: center;
    width: 40%;
    z-index: 1;
    padding: 0 10px;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header .header-right .faicons_lite{
    font-size: 28px;
    color: #9a9a9a;
}

.header .header-right .faicons_lite:hover{
    font-size: 28px;
    color: #ff0052;
    cursor: pointer;
}

.header .header-right .faicons_lite.selected{
  color: #ff0052;
}

.header .header-right .faicons_lite.disabled{
  cursor: not-allowed;
}

.header .header-right .faicons_lite.disabled:hover{
  color: #9a9a9a;
}
.header .header-right .faicons_dark{
    font-size: 28px;
    color: #ff0052;
}


@media (max-width: 991px) {
  .header .header-left {
    position: absolute;
    width: 100%;
  }
}
@media (min-width: 991px) {
  .header #toggle_btn {
    color: #777;
    float: left;
    font-size: 26px;
    line-height: 70px;
    padding: 0 10px;
  }
  .header #toggle_btn .bar-icon {
    display: inline-block;
    width: 21px;
  }
  .header #toggle_btn .bar-icon span {
    background-color: #333333;
    display: block;
    float: left;
    height: 2px;
    width: 21px;
    margin: 0 0 5px;
    border-radius: 50px;
  }
  .header #toggle_btn .bar-icon span:nth-child(2) {
    width: 15px;
  }
}


@media (max-width: 991px) {
  .header .page-title-box {
    display: none;
  }
}
.header .page-title-box h3 {
  color: #333333;
  font-size: 20px;
  font-weight: normal;
  margin: 0;
}
.header .mobile_btn {
  display: none;
  float: left;
}
@media (max-width: 991px) {
  .header .mobile_btn {
    color: #ffffff;
    font-size: 24px;
    height: 60px;
    line-height: 60px;
    width: 60px;
    z-index: 10;
    padding: 0 20px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
  }
}
.header .responsive-search {
  display: none;
  color: #ffffff;
  font-size: 20px;
  height: 60px;
  line-height: 60px;
  padding: 0 15px;
}
@media (max-width: 991px) {
  .header .responsive-search {
    display: block;
  }
}
.header .top-nav-search form {
  margin-top: 10px;
  position: relative;
  width: 100%;
}
@media (max-width: 991px) {
  .header .top-nav-search form {
    display: none;
  }
}
.header .top-nav-search form .form-control {
  border: 1px solid #bfbfbf;
  height: 40px;
  padding: 10px 50px 10px 15px;
  border-radius: 50px;
  width: 100%;
}
.header .top-nav-search form .btn {
  background-color: transparent;
  border-color: transparent;
  min-height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 15px;
}
@media (max-width: 991px) {
  .header .top-nav-search.active form {
    display: block;
    position: absolute;
    left: 0;
  }
  .header .top-nav-search.active form .form-control {
    background-color: #ffffff;
    border-color: #e3e3e3;
    color: #333333;
  }
  .header .top-nav-search.active form .btn {
    background-color: transparent;
    border-color: transparent;
    color: #999;
    min-height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    padding: 7px 15px;
  }
}


.fav_wrap{
    width: 100%;
    background: #e4e4e4;
    border-bottom: 1px solid transparent;
    height: 65px;
    z-index: 1002;
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    -webkit-box-shadow: 0 1px 1px 0 rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 20%);
}



/* Slick Slider */

.slick-prev, .slick-next {
  position: absolute;
  top: 135%;
  font-size: 1.8rem;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

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

.slide {
    transition: filter .4s;
    margin: 0px 5px;
    padding: 20px 0;
}

.fas {
    color: #41526c;
}
.slick-prev {
    left: 0;
    z-index: 9999;
}
.slick-prev, .slick-next {
    position: absolute;
    top: 25%;
    font-size: 1.8rem;
    cursor: pointer;
}

.section {
  max-width: 98%;
  margin: 0 auto;
}

.property_item{
    background-color: #d8d8d8;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #cacaca;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    color: #333;
}

.property_item:hover{
    background-color: #fe7d92;
    text-decoration: none;
}
.property_item .fa-close{
  margin-left: 10px;
  color: #333;
  margin-top: 2px;
  cursor: pointer;
}
.body_wrap{
    width: 100%;
    height: 100vh;
    background-color: #e9e9e9;
    padding-top: 127px
}

.body_wrap_left{
    width: 20%;
    height: 100%;
    background-color: #ffffff;
    float: left;
}

.body_wrap_right{
    width: 80%;
    height: 100%;
    background-color: #ffffff;
    float: left;
}

/*Accordian*/

/*--------Accordion-------*/
.acc-kontainer {
  width: 100%;
  margin: auto;
}
.acc-kontainer .acc-body {
  width: 98%;
  width: calc(100% - 20px);
  margin: 0 auto;
  height: 0;
  color: rgba(0, 0, 0, 0);;
  background-color: rgba(255, 255, 255, 0.2);
  line-height: 28px;
  padding: 0 20px;
  box-sizing: border-box;
  transition: 0.5s;
}

.acc-kontainer label {
    cursor: pointer;
    background-color: #e5e5e5;
    border-bottom: 1px solid #c8c9cc;
    display: block;
    padding: 10px 10px 10px 5px;
    width: 100%;
    color: #41526c;
    font-weight: 600;
    font-size: 13px;
    box-sizing: border-box;
    z-index: 100;
}

.acc-kontainer label:hover {
    background-color: #fe7d92;
    color: #ffffff;
}

.acc-kontainer input{
  display: none;
}

.acc-kontainer label:before {
  font-family: 'FontAwesome';
  content: '\f067';
  font-weight: bolder;
  float: right;
  padding-top: 5px;
}

.acc-kontainer input:checked+label {
  background-color: #fe7d92;
    color: #fff;
}

.acc-kontainer input:checked+label:before {
  font-family: 'FontAwesome';
  content: '\f00d';
/*  transition: 0.5s;*/
}

.acc-kontainer input:checked~.acc-body {
  height: auto;
    color: #41526c;
    font-size: 14px;
    padding: 10px 0px;
/*    transition: 0.5s;*/
}

.card-body-inner {
    height: 400px;
    overflow-y: auto;
    padding: 0 !important;
    font-size: 13px;
}


.card-body .data-table tr {border-bottom: 1px solid #cacaca;}
.card-body .data-table tbody {border: 1px solid #cacaca;}

.card-body .data-table tr td:first-child{
    padding: 5px;
    background-color: #dfdfdf;    
    font-size: 10px;
}

.card-body .data-table tr td:last-child{
    padding: 5px;
    background-color: #ffffff;
    font-size: 10px;
}

.card-body summary {
    list-style: none;
}

.card-body summary::-webkit-details-marker {
    display: none;
}

.card-body summary {
    border: 1px solid #bbbbbb;
    background-color: #d2d2d2;
    padding: 5px;
    cursor: pointer;
    position: relative;
    padding-left: calc(1.75rem + 0.75rem + 0.75rem);
    font-size: 12px;
    font-weight: bold;
}

.card-body summary:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: .75rem;
    content: "↓";
    width: 1.75rem;
    height: 1.75rem;
    background-color: #000;
    color: #FFF;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.card-body details[open] summary {
    background-color: #d2d2d2;
}

.card-body details[open] summary:before {
    content: "↑";
}

.card-body summary:hover {
    background-color: #fe7d92;
}

.card-body a {
    color: inherit;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 1px 0 0;
}

.card-body a:hover {
    box-shadow: 0 3px 0 0;
}

.property-img{
    width: 98%;
    padding: 10px;
    border: 1px solid #bababa;
    margin: 1%;
}

.card-body-inner::-webkit-scrollbar {
    width: 5px;
}

.card-body-inner::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px #000000; 
    border-radius: 10px;
}

.card-body-inner::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px #000000; 
}