/********** Template CSS **********/

:root {
 /* --primary: #00B98E;  */   
    --primary: #015C9A;
    --secondary: #FF6922;
   /* --light: #EFFDF5; */
    
    --light: #f7fafc;
    --dark: #0E2E50;
}

body {
    overflow-y: scroll !important;
}	

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary{
background-color: #0866C6;
border-color: #0866C6;    
}
.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn.btn-primary:hover{
background-color: #015C9A;
border-color: #015C9A;    
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.nav-bar {
    position: relative;
  /*  margin-top: 45px; 
    padding: 0 3rem; */
    transition: .5s;

}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
   /* z-index: 9999; */
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    margin-right: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}
.navbar-expand-lg {
height: 50px; 
}


.navbar-light .navbar-brand {
  /*  height: 75px; */
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
display: none;
}

/*
.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}
*/
.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
   /* padding: 15px;
    border: 1px dashed var(--primary) !important; 
    background: #FFFFFF !important;
    border-radius: 50px;    
*/
    display: inline-flex;
    align-items: center;
    justify-content: center;

   
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: transparent;
    border: 1px dashed transparent;
    transition: .5s;
}

.cat-item:hover div {
  background-color: #0866C6 !important;
  border: 1px dashed #015C9A;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
  color:#fff !important ;  
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: right;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.right .footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: right;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    margin-left: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}




/* new style */ 




.topcolor-primary{
    padding:5px;
    border-radius: 4px;
    border-top: 4px solid transparent ;
    box-shadow: rgba(0, 0, 0, .1) 0 0 4px, rgba(0, 0, 0, .1) 0 0 1px;    
}

.bdcolor{
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.15, #e83e8c), color-stop(0.85, #0866C6));
background-image: -moz-linear-gradient(center bottom, rgb(14,173,173) 33%, rgb(0,255,255) 67% );
}

.boxcolor{
  border-radius: 50%;
  background-image: linear-gradient(white, white), linear-gradient(to right, red, orange);
  background-origin: border-box;
  background-clip: content-box, border-box;

}

.btn-primary { color:#fff !important; }
.bg-primary:hover {  background-color: #0866C6 !important; }

.bg-primary{  color:white; }
.imguserpost { position: absolute; }

.pos-absolute{ position: absolute; }
/* new */
.tx-primary{ color: #015C9A !important; }

.tx-13{  font-size:13px; }
.tx-26{  font-size:26px; }

.bwhite{ background: white; }


.close {
    font-size: 1.3125rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    border:0px;
}

.wd-5 { width: 5px; }
.wd-10 { width: 10px; }
.wd-15 { width: 15px; }
.wd-20 { width: 20px; }
.wd-25 { width: 25px; }
.wd-30 { width: 30px; }
.wd-35 { width: 35px; }
.wd-40 { width: 40px; }
.wd-45 { width: 45px; }
.wd-50 { width: 50px; }
.wd-55 { width: 55px; }
.wd-60 { width: 60px; }
.wd-65 { width: 65px; }
.wd-70 { width: 70px; }
.wd-75 { width: 75px; }
.wd-80 { width: 80px; }
.wd-85 { width: 85px; }
.wd-90 { width: 90px; }
.wd-95 { width: 95px; }
.wd-100 { width: 100px; }
.wd-105 { width: 105px; }
.wd-110 { width: 110px; }
.wd-115 { width: 115px; }
.wd-120 { width: 120px; }
.wd-125 { width: 125px; }
.wd-130 { width: 130px; }
.wd-135 { width: 135px; }
.wd-140 { width: 140px; }
.wd-145 { width: 145px; }
.wd-150 { width: 150px; }
.wd-155 { width: 155px; }
.wd-160 { width: 160px; }
.wd-165 { width: 165px; }
.wd-170 { width: 170px; }
.wd-175 { width: 175px; }
.wd-180 { width: 180px; }
.wd-185 { width: 185px; }
.wd-190 { width: 190px; }
.wd-195 { width: 195px; }
.wd-200 { width: 200px; }

.ht-5 { height: 5px; }
.ht-10 { height: 10px; }
.ht-15 { height: 15px; }
.ht-20 { height: 20px; }
.ht-25 { height: 25px; }
.ht-30 { height: 30px; }
.ht-35 { height: 35px; }
.ht-40 { height: 40px; }
.ht-45 { height: 45px; }
.ht-50 { height: 50px; }
.ht-55 { height: 55px; }
.ht-60 { height: 60px; }
.ht-65 { height: 65px; }
.ht-70 { height: 70px; }
.ht-75 { height: 75px; }
.ht-80 { height: 80px; }
.ht-85 { height: 85px; }
.ht-90 { height: 90px; }
.ht-95 { height: 95px; }
.ht-100 { height: 100px; }
.ht-105 { height: 105px; }
.ht-110 { height: 110px; }
.ht-115 { height: 115px; }
.ht-120 { height: 120px; }
.ht-125 { height: 125px; }
.ht-130 { height: 130px; }
.ht-135 { height: 135px; }
.ht-140 { height: 140px; }
.ht-145 { height: 145px; }
.ht-150 { height: 150px; }
.ht-155 { height: 155px; }
.ht-160 { height: 160px; }
.ht-165 { height: 165px; }
.ht-170 { height: 170px; }
.ht-175 { height: 175px; }
.ht-180 { height: 180px; }
.ht-185 { height: 185px; }
.ht-190 { height: 190px; }
.ht-195 { height: 195px; }
.ht-200 { height: 200px; }

.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}


.oneline{ overflow: hidden;white-space: nowrap;text-overflow: ellipsis;cursor: }


.twoline{  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;}


.red{
    background-color: red; }

.dropdown-item{
    cursor: pointer ;
}


/* ------------------------------------------ */
/* ############### 7.2 Border ############### */
/* ------------------------------------------ */
.bd-transparent {
  border-color: transparent; }

.bd {
  border: 1px solid #ced4da; }

.bd-t {
  border-top: 1px solid #ced4da; }

.bd-r {
  border-right: 1px solid #ced4da; }

.bd-b {
  border-bottom: 1px solid #ced4da; }

.bd-l {
  border-left: 1px solid #ced4da; }

.bd-y {
  border-top: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da; }

.bd-x {
  border-left: 1px solid #ced4da;
  border-right: 1px solid #ced4da; }

.bd-0 {
  border-width: 0; }

.bd-1 {
  border-width: 1px; }

.bd-2 {
  border-width: 2px; }

.bd-3 {
  border-width: 3px; }

.bd-4 {
  border-width: 4px; }

.bd-5 {
  border-width: 5px; }

.bd-t-0 {
  border-top: 0; }

.bd-r-0 {
  border-right: 0; }

.bd-b-0 {
  border-bottom: 0; }

.bd-l-0 {
  border-left: 0; }

.bd-t-0-force {
  border-top: 0 !important; }

.bd-r-0-force {
  border-right: 0 !important; }

.bd-b-0-force {
  border-bottom: 0 !important; }

.bd-l-0-force {
  border-left: 0 !important; }

.bd-y-0 {
  border-top-width: 0;
  border-bottom-width: 0; }

.bd-y-1 {
  border-top-width: 1px;
  border-bottom-width: 1px; }

.bd-x-0 {
  border-left-width: 0;
  border-right-width: 0; }

.bd-x-1 {
  border-left-width: 1px;
  border-right-width: 1px; }

.bd-primary {
  border-color: #0866C6; }

.bd-success {
  border-color: #23BF08; }

.bd-warning {
  border-color: #F49917; }

.bd-danger {
  border-color: #DC3545; }

.bd-info {
  border-color: #0866C6; }

.bd-white {
  border-color: #fff; }

.bd-br-primary {
  border-color: #1D2939; }

.bd-gray-100 {
  border-color: #f8f9fa; }

.bd-gray-200 {
  border-color: #e9ecef; }

.bd-gray-300 {
  border-color: #dee2e6; }

.bd-gray-400 {
  border-color: #ced4da; }

.bd-gray-500 {
  border-color: #adb5bd; }

.bd-gray-600 {
  border-color: #6c757d; }

.bd-gray-700 {
  border-color: #495057; }

.bd-gray-800 {
  border-color: #343a40; }

.bd-gray-900 {
  border-color: #212529; }

.bd-white-1 {
  border-color: rgba(255, 255, 255, 0.1); }

.bd-white-2 {
  border-color: rgba(255, 255, 255, 0.2); }

.bd-white-3 {
  border-color: rgba(255, 255, 255, 0.3); }

.bd-white-4 {
  border-color: rgba(255, 255, 255, 0.4); }

.bd-white-5 {
  border-color: rgba(255, 255, 255, 0.5); }

.bd-white-6 {
  border-color: rgba(255, 255, 255, 0.6); }

.bd-white-7 {
  border-color: rgba(255, 255, 255, 0.7); }

.bd-white-8 {
  border-color: rgba(255, 255, 255, 0.8); }

.rounded-5 {
  border-radius: 5px; }

.rounded-10 {
  border-radius: 10px; }

.rounded-20 {
  border-radius: 20px; }

.rounded-30 {
  border-radius: 30px; }

.rounded-40 {
  border-radius: 40px; }

.rounded-50 {
  border-radius: 50px; }

.bd-dashed {
  border-style: dashed; }

.bd-dotted {
  border-style: dotted; }










[class*=" icofont-"], [class^=icofont-] {
    font-family: IcoFont!important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;

    line-height: 1;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}










.topcolor-primary{
    padding:5px;
    border-radius: 4px;
    border-top: 4px solid transparent ;
    box-shadow: rgba(0, 0, 0, .1) 0 0 4px, rgba(0, 0, 0, .1) 0 0 1px;    
}

.bdcolor{
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.15, #e83e8c), color-stop(0.85, #0866C6));
background-image: -moz-linear-gradient(center bottom, rgb(14,173,173) 33%, rgb(0,255,255) 67% );
}

.boxcolor{
  border-radius: 50%;
  background-image: linear-gradient(white, white), linear-gradient(to right, red, orange);
  background-origin: border-box;
  background-clip: content-box, border-box;

}


.overlay {
 height: 90%;
  width: 99%;
  position: absolute;
  z-index: 1;
  /*transition: 0.5s;*/
}

.bd-t-success{
    border-radius: 8px;
border-top: 4px solid #23BF08;
box-shadow: rgba(0, 0, 0, .1) 0 0 4px, rgba(0, 0, 0, .1) 0 0 1px;
padding: 10px 10px 0;
}

.bd-t-primary{
    border-radius: 8px;
border-top: 4px solid #0866C6;
box-shadow: rgba(0, 0, 0, .1) 0 0 4px, rgba(0, 0, 0, .1) 0 0 1px;
padding: 10px 10px 0;
}

.bd-t-warning{
    border-radius: 8px;
border-top: 4px solid orange;
box-shadow: rgba(0, 0, 0, .1) 0 0 4px, rgba(0, 0, 0, .1) 0 0 1px;
padding: 10px 10px 0;
}

.bd-t-danger{
    border-radius: 8px;
border-top: 4px solid red;
box-shadow: rgba(0, 0, 0, .1) 0 0 4px, rgba(0, 0, 0, .1) 0 0 1px;
padding: 10px 10px 0;
}


.tx-shadow-white {
text-shadow: 1px 1px 2px #ffff;    
}

.tx-shadow-black {
text-shadow: 1px 1px 2px #0000;    
}



/* admin style */

.right{ float:right; }
.left{ float:left; }
.bd-primary{ border:1px solid  #0866C6;padding:2px }
.bold600{ font-weight: 600; }
.bold500{ font-weight: 500; }
.red{ background:red; }
.bg-blue{ background: #0866C6; }
.pointer{ cursor: pointer; }
.pointerwhite{ cursor: pointer; }
.pointerblue{ cursor: pointer; color:#0866C6; }
.pointerblue:hover{ color : #92DBEC; }
.none{ display:none; }
.bold{ font-weight: 600; }
.imgopacity:hover{ opacity: .90; }
.suggestright{ padding:0px; }
.shadowbox-4-2{ box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.11); }
.shadowbox-4-4{ box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.11); }
@media (max-width: 991.98px) {
.suggestright{ padding-top:30px;
}
}
.imguserpost{ position: absolute; }
.img-bordered { border: 3px solid red; padding: 3px; }

.imgcover{
width:100%;
max-height:300px;
position:absolute;  
}

@media (max-width: 991.98px) {
.content-post{ padding:0px;
}
}

@media (min-width: 991.98px) {
.navicon-left{
display: none;
}     
}

.bg-gradient{ background: linear-gradient(rgba(0,0,0,0) 10%, rgba(8,102,198, .53)); }
.br-profile-page .media-footer a { color: #343a40; /* font-size:14px; */  }
.br-profile-page .media-footer .active { /*color:#075fb7; */ }
.br-profile-page .media-footer a:hover { background: #F2F3F4; }

/*
.loader {
  border: 14px solid #f3f3f3;
  border-radius: 50%;
  border-top: 14px solid #0866C6;
  border-bottom: 14px solid #0866C6;
  width: 20px;
  height: 20px;
  -webkit-animation: spin 1s linear infinite;  Safari 
  animation: spin 1s linear infinite;
} */

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.br-profile-page .media-footer a:not([href]):not([tabindex]) { color: #333; }

.br-profile-page .media-footer a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { color: white; cursor: pointer; }

.br-profile-page .media-footer a:hover { background:#2452AD; color:white; }

.dropbtnshare{
font-size: 16px; font-weight: 600 ;
font-family: Segoe UI Historic, Segoe UI, Helvetica, Arial, sans-serif;
    
}

@media (min-width: 992px) {
.dropbtnshare span{ font-size: 16px; font-weight: 600 ;
    
}
.nshare {
display:inline-block ;
}    
    
}

.dropbtnshare.blike:hover, .dropbtnshare.blike:focus {
background: rgb(249 204 225 / 30%); 
color:#e83e8c;
border-radius: 25px;
transition-duration: .4s;

}


.dropbtnshare.bgift:hover, .dropbtnshare.bdislike:focus {
background: rgb(249 196 154 / 20%); 
color:#f27510;
 border-radius: 25px;
transition-duration: .4s;   
}

.dropbtnshare.bedit:hover, .dropbtnshare.bshare:focus {
background:rgb(165 255 225  / 30%);
color:rgb(0, 186, 124);
 border-radius: 25px;
transition-duration: .4s;
}


.dropbtnshare.bshare:hover, .dropbtnshare.bedit:focus {
background:rgb(194 224 249 / 30%);
color:rgb(8, 102, 189);
 border-radius: 25px;
transition-duration: .4s;
}



.dropdownshare {
position: relative;
display: inline-block;
}

.dropdownshare div{ color:#343a40; }

.dropdownshare-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 100%;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
right:0px;
height:400px;
overflow: scroll;
overflow-x: hidden;
}

.dropdownshare-content  a{
padding: 6px 10px;
text-decoration: none;
padding-left:10px;
font-size:12px;
display: block;
min-width: 100%;
background: white;
}

.dropdownshare-content  a:hover {background-color: #23527c; color:white;}
.show {display:block;}  
  
/* End Dropdown  Button public ---------------------------------------- */    

.dropbtnlink:hover, .dropbtnlink:focus {
background:#ECF0F5;
color:#2452AD;
}
.dropbtnlink{ color:#343a40 ; }

.dropdownlink {
position: relative;
display: inline-block;
}

.dropdownlink div{
color:#343a40;
}

.dropdownlink-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 100%;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
right:0px;
height:400px;
overflow: scroll;
overflow-x: hidden;
}

.dropdownlink-content  a{
padding: 6px 10px;
text-decoration: none;
padding-left:10px;
font-size:12px;
display: block;
min-width: 100%;
background: white;
}

.dropdownlink-content  a:hover {background-color: #23527c; color:white;}

.moretext {display: none;}
.readless {display: none;} 

.popover {
background:linear-gradient(rgba(0,0,0,0) 100%, rgba(255,255,255, .0));
padding:0px;
margin:0px;
border:none;
}



.imagepostwidth{  max-width:150px;max-height:200px; }
.imagepoststyle{ max-width:150px;max-height:150px; }
    
.modalbodyimage{
width:100%;
height:100%;
}
      
.modalbodyimage img{
position: relative;
top: 50%;transform:
translateY(-50%);
max-width:100%;
max-height:100%;
}     

      
.colbodypost{ height:100%; }
   
@media (min-width: 992px) {
.colbodyimage{ height:100%;
}              
}

.oneline{ overflow: hidden;white-space: nowrap;text-overflow: ellipsis;cursor: }


.twoline{  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;}

.video-btn  {
position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 33px;
    height: 33px;
    background-color: #ECE7E3;
    color: #ffffff;
    font-size: 14px;
    line-height: 38px;
    display: block;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto 16px;
    z-index: 50;
    }   


@media (max-width : 990px){
.suggestright{
display : none;
}
}

@media (min-width : 991px){
.suggestright{
display : block;
}
}   

.idfrom a {color:white;} 
.idfrom a:hover {color:#cfe5fc;}

 @keyframes heartFadeInOut {
  0% {transform: scale(1);}
  25% {transform: scale(.97);}
  35% {transform: scale(.9);}
  45% {transform: scale(1.1);}
  55% {transform: scale(.9);}
  65% {transform: scale(1.1);}
  75% {transform: scale(1.03);}
  100% {transform: scale(1);}
}
#heart_logo img.h_bottom { 
  animation-name: heartFadeInOut; 
  animation-iteration-count: infinite;
  animation-duration: 2s;
}    



@media (min-width: 768px) {
    
    .divsideb6{
     height: auto !important; min-height: 0px !important;   
    }   
    
.sidebar6 {

height: 90vh; // experiment with this value, try changing to 110vh
min-height: 200px;
position: -webkit-sticky;
position: sticky;
/* top: 12%; */
top:50px;    
max-height: 650px;
overflow-y: auto;
   
    
}
}


@media (min-width: 768px) {
    
    .divsideb7{
     height: auto !important; min-height: 0px !important;   
    }   
    
.sidebar7 {

height: 80vh; // experiment with this value, try changing to 110vh
position: -webkit-sticky;
position: sticky;   
max-height: 80vh;
overflow-y: none;
   
    
}
}

.bg-gray-100 {
    background-color: #f8f9fa;
}

.bd-gray-200 {
    border-color: #e9ecef;
}

.sidebar {
  --offset: var(--space);
  /* ... */
  position: sticky;
  top: var(--offset);
}    

    
.component {
max-height: calc(100vh - var(--offset) * 2);
}    



.pro-count a{
font-size:14px;
font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 500 ;
text-decoration: none;
}  

.pro-count a:not(:first-child){
padding-left:.5em ;
padding-right:.5em ;

}

.nav-item .nav-link { font-size: 18px;font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif; }

.pro-count a:hover{ opacity:.9; }     
    


.wp-hd{
background-color: rgb(7 91 177 / 5%);border: 1px solid rgb(7 91 177 / 6%);
    border-radius: 25px;    
}


.wp-op span{
padding:0px 10px 0px 10px;  
border:1px solid rgb(7 91 177 / 6%);
border-radius: 25px;        
margin:4px 4px 4px 4px;  
background-color: rgb(7 91 177 / 5%);    
line-height: 34px; 
cursor:pointer;
font-size: 16px;
font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;    
} 
    

    
.wp-op span i{
font-size: 22px;
}
    
.wp-op span:hover{
background-color: rgb(7 91 177 / 2%); 
border:1px solid rgb(7 91 177 / 40%);
color: #064689;    
}



.logomob a {
   /* color: #0866C6; */
    letter-spacing: -0.5px;
    text-decoration: none;
}     
     
.logomob a span {
    font-style: normal;
    font-weight: 500;
    color: #212529;
}


.loader_1 {
    width: 120px;
    height: 120px;
    background-image: url(../dist/loadspinner.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    margin: auto;
}     



.stcover{
float: left; width:100%;
background-position:50% 50%;
background-repeat:no-repeat; 
background-size:cover;    
    
}





.spinnerDOT { margin: 100px auto 0; width: 70px; text-align: center; }
.spinnerDOT > span {
width: 8px; height: 8px; background-color: #555;
border-radius: 100%; display: inline-block;
-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
animation: sk-bouncedelay 1.4s infinite ease-in-out both; }

.spinnerDOT .bounce1 { -webkit-animation-delay: -0.32s; animation-delay: -0.32s; }
.spinnerDOT .bounce2 { -webkit-animation-delay: -0.16s; animation-delay: -0.16s; }

@-webkit-keyframes sk-bouncedelay { 0%, 80%, 100% { -webkit-transform: scale(0) }
 40% { -webkit-transform: scale(1.0) } }

@keyframes sk-bouncedelay {
 0%, 80%, 100% { 
 -webkit-transform: scale(0);
 transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  } } 


 .checkedstar { color: orange; text-shadow: 0 0 5px #f9bf3b; } 





.popreact {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.popreact .popreacttext {
  display: none;
  width: 280px;
  text-align: center;
  border-radius: 50px;
  padding: 4px 0;
  position: absolute;
  z-index: 1;
  bottom: 85%;
  left: 50%;
  margin-left: -116px; }

.popreact .show { visibility: visible; -webkit-animation: fadeIn 1s; animation: fadeIn 1s; }
@-webkit-keyframes fadeIn { from {opacity: 0;}  to {opacity: 1;} }
@keyframes fadeIn {  from {opacity: 0;} to {opacity:1 ;} }



.reacpost {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
    
.reacpost .reacposttext {
  display: none;
  width: 290px;
  text-align: center;
  border-radius: 50px;
  padding: 4px 0;
  position: absolute;
  z-index: 1;
  bottom: 85%;
 }

.reacpost .show { visibility: visible; -webkit-animation: fadeIn 1s; animation: fadeIn 1s; }
@-webkit-keyframes fadeIn { from {opacity: 0;}  to {opacity: 1;} }
@keyframes fadeIn {  from {opacity: 0;} to {opacity:1 ;} }  




::-webkit-scrollbar {
  width: 8px;
  height: 8px;
   
}


::-webkit-scrollbar-track {
  background: #f1f1f1; 
 background-color: transparent; 
}
 
::-webkit-scrollbar-thumb {
  background: darkgrey ; border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #888 ; 
}





.pmset.nav.nav-style-1 a{ font-size:18px; font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif; padding:8px;}



 .medsho{height:450px; width:255px;}    
@media (min-width: 768px) { .medsho{height:561px; width:311px; }  } 

  


.nshare { display:inline-block ; }  
.fa-bolt {top:-5%;left:2%;font-size:70%;} 




#overlaymp {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
/* background-color: rgba(0,0,0,0.5); */
  z-index: 1031;
overflow-x: auto;
}



.footer_login{
position: fixed;
bottom: 0;
left:0;
right:0;
z-index: 10;
background-color: #edf6ff; 
}


.footer_login a{
color: #0866C6;
text-decoration: none;
margin-left:2px;
margin-right:2px;
}  



.likre { animation: wiggle 3s linear infinite; }   
@keyframes wiggle {  0%, 7% {  transform: rotateZ(0);  }
15% { transform: rotateZ(-15deg); } 20% { transform: rotateZ(10deg); }
25% { transform: rotateZ(-10deg); } 30% { transform: rotateZ(6deg); } 
35% { transform: rotateZ(-4deg); } 40%, 100% { transform: rotateZ(0); } }  


.hbx{ background: transparent ; top:0px;position: absolute;width: 100%;height: 100%;  } 


.colorhead { color: #0866C6 !important; } 


















/* --------------------------------------------- */
/* ############### 5.4 Chat Page ############### */
/* --------------------------------------------- */


@media (min-width: 992px) {
  .collapsed-menu .br-chatpanel {
    margin-left: 60px; } }

@media (max-width: 991.98px) {
  .show-left .br-chatpanel {
    transform: translateX(259px); } }


@media (max-width: 991.98px) {
  .rtl .show-left .br-chatpanel {
    transform: translateX(-259px); } }

.br-chatpanel {
  margin-top: 45px;
  height: calc(100vh - 45px);
  display: flex;
  align-items: stretch;
  transition: all 0.2s ease-in-out; }
  @media screen and (prefers-reduced-motion: reduce) {
    .br-chatpanel {
      transition: none; } }

  @media (min-width: 992px) {
    .br-chatpanel {
     /* margin-left: 259px; */ } }

  .br-chatpanel.show-body .br-chatpanel-left {
    display: none; }

  .br-chatpanel.show-body .br-chatpanel-body {
    display: block; }


  @media (min-width: 992px) {
  .br-chatpanel.show-body .br-chatpanel-left {
    display: block; }      
}

@media (max-width: 992px) {
.br-chatpanel-left {
width: 100%;
background-color: #f8f9fa;
    } }
@media (min-width: 992px) {
.br-chatpanel-left {
} }
.br-chatpanel-left .nav {
align-items: center;
padding: 20px 10px 0; }
.br-chatpanel-left .nav .nav-link {
font-weight: 500;
color: #1d2128;
letter-spacing: 1px;
padding: 0;      
cursor: pointer;
border-bottom: 2px solid transparent;
}
.br-chatpanel-left .nav .nav-link.active {
color: #064689;
position: relative;
border-bottom: 2px solid #064689;
}

.br-chatpanel-left .nav .nav-link:hover {
color: #064689;
position: relative;

}

   /*     .br-chatpanel-left .nav .nav-link.active::after {
          content: '';
          position: absolute;
          bottom: -5px;
          left: 0;
          right: 0;
          border-bottom: 2px solid #0866c6; } */


.br-chatpanel-left .nav .nav-link + .nav-link {
margin:auto ; }

.br-active-contacts {
  padding: 20px;
  border-bottom: 1px solid #dee2e6; }

.br-sidebar-label {
  font-size: 10px;
  font-weight: 500;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  color: #adb5bd; }

.br-chat-contacts {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden; }
  .br-chat-contacts .br-img-user {
    margin: auto; }
  .br-chat-contacts > div {
    text-align: center; }
    .br-chat-contacts > div + div {
      margin-left: 10px; }
  .br-chat-contacts .chat-contacts-more {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #dee2e6;
    font-size: 11px;
    font-weight: 500;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif; }

.br-img-user {
  width: 50px;
  height: 50px;
  position: relative; }
  .br-img-user img {
    width: 100%;
    height: 100%;
    border-radius: 100%; }

  /*.br-img-user::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 5px;
    width: 7px;
    height: 7px;
    background-color: #ced4da;
    border-radius: 100%;
    box-shadow: 0 0 0 2px #f8f9fa; }
*/
  .br-img-user.online::after {
    background-color: #23BF08; }

.br-chatlist_groups {
  height: calc(100% - 170px);
  overflow: hidden;
  position: relative; }

  .br-chatlist_groups .br-img-user {
    width: 40px;
    height: 40px;
/* margin-top: 5px; */ }
  .br-chatlist_groups .msg-count {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background-color: #DC3545;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    box-shadow: 0 0 0 2px #f8f9fa;
    display: none; }
  .br-chatlist_groups .media {
    padding: 10px 15px;
/*border-top: 1px solid #dee2e6;*/
    border-bottom: 1px solid #dee2e6; 
    position: relative;
    margin-top: -1px; }
    .br-chatlist_groups .media.new {
      background-color: #fff; }
      .br-chatlist_groups .media.new .msg-count {
        display: flex; }
    .br-chatlist_groups .media.selected {
      background-color: #e9ecef; }
      .br-chatlist_groups .media.selected .br-img-user::after {
        box-shadow: 0 0 0 2px #e9ecef; }
      .br-chatlist_groups .media.selected::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        border-left: 3px solid #0866c6; }
  .br-chatlist_groups .media-body {
    margin-left: 15px; }
    .br-chatlist_groups .media-body P {
      margin-bottom: 0;
      font-size: 11px;
      line-height: 1.3; }
  .br-chatlist_groups .media-contact-name {
display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px; }
    .br-chatlist_groups .media-contact-name span:first-child {
      font-size: 13px;
      font-weight: 500;
      color: #212529; }
    .br-chatlist_groups .media-contact-name span:last-child {
      font-size: 11px;
      color: #adb5bd; }


overlay_all {
height:100% ;
width:100%;
position: absolute;
z-index: 1;
  /*transition: 0.5s;*/
}


.br-chatlist {
  height: calc(100% - 130px);
  overflow: hidden;
  position: relative; }
  .br-chatlist .br-img-user {
    width: 50px;
    height: 50px;
/* margin-top: 5px; */ }
  .br-chatlist .msg-count {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background-color: #DC3545;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    box-shadow: 0 0 0 2px #f8f9fa;
    display: none; }
  .br-chatlist .media {
    background-color: #fff;
    padding: 6px 10px;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6; 
    position: relative;
    margin-top: -1px; }
    .br-chatlist .media.new {
      background-color: #fff; }
      .br-chatlist .media.new .msg-count {
        display: flex; }
    .br-chatlist .media.selected {
   /*   background-color: #f4f8fc; */
/* border-color: #0866C6; */ }
      .br-chatlist .media.selected .br-img-user::after {
        box-shadow: 0 0 0 2px #fff; }
      .br-chatlist .media.selected::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
      border-left: 3px solid #0866c6;  }
  .br-chatlist .media-body {
    margin-left: 15px; }
    .br-chatlist .media-body P {
      margin-bottom: 0;
      font-size: 11px;
      line-height: 1.3; }
  .br-chatlist .media-contact-name {
display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px; }
    .br-chatlist .media-contact-name span:first-child {
      font-size: 13px;
      font-weight: 500;
      color: #212529; }
    .br-chatlist .media-contact-name span:last-child {
      font-size: 11px;
      color: #adb5bd; }

.br-chatpanel-body {
  flex: 1;
  position: relative;
  height: 100%;
  display: none; }
  @media (min-width: 992px) {
    .br-chatpanel-body {
      display: block; } }

.br-chat-header {

 /*  background-color: #ECF0F5; */
  border-bottom: 1px solid #ced4da;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px; }
  .br-chat-header .br-img-user {
    width: 50px;
    height: 50px; }
  .br-chat-header .chat-name {
    margin-left: 5px; }
    .br-chat-header .chat-name h6 {
      color: #212529;
      margin-bottom: 0; }
  .br-chat-header .nav {
    margin-left: auto;
    align-items: center; }
  .br-chat-header .nav-link {
    padding: 0;
    font-size: 24px;
    line-height: 1;
        color: #212529;
    /*display: none;*/ }
    @media (min-width: 576px) {
      .br-chat-header .nav-link {
        display: block; } }
    .br-chat-header .nav-link:hover, .br-chat-header .nav-link:focus {
      color: #0866c6; }
    .br-chat-header .nav-link + .nav-link {
      margin-left: 10px; }
    .br-chat-header .nav-link:first-child {
      font-size: 21px;
      display: block; }
      @media (min-width: 900px) {
        .br-chat-header .nav-link:first-child {
          display: none; } }
.br-chat-body_groups {
  position: relative;
   height: calc(100% - 95px);
  overflow: hidden; }


.br-chat-body {
  position: relative;
   height: calc(100% - 0px - 2px);
  overflow: hidden; }
  .br-chat-body .content-inner {
    padding: 20px; }
  .br-chat-body .br-img-user {
 
}
  .br-chat-body .br-img-user::after {
    box-shadow: 0 0 0 2px #e9ecef; }
  .br-chat-body .media + .media {
     }
  .br-chat-body .media.flex-row-reverse .media-body {

    align-items: flex-end; }
    @media (min-width: 576px) {
      .br-chat-body .media.flex-row-reverse .media-body {
        margin-left: 5px; } }
.br-chat-body .media.flex-row-reverse .msg-wrapper {
border-radius: 20px 0px 20px 20px; 
font-weight: 500 ;
background: #0866C6 ;
color: #ffffff; 
text-shadow: 1px 1px 2px #000000;  
}


.br-chat-body .media .msg-wrapper .share:hover {
opacity:0.7;
  
}









.br-chat-body .media.flex-row-reverse .msg-wrapper .moreoption {

}

.br-chat-body .media.mesincom .msg-wrapper .moreoption {

}

.rtl .br-chat-body .media.flex-row-reverse .msg-wrapper {
 border-radius: 0px 20px 20px 20px;
}

  .br-chat-body .media-body {
    margin-left: 10px;
    margin-right: 10px; 
    display: flex;
    flex-direction: column;
    align-items: flex-start; }
    @media (min-width: 576px) {
      .br-chat-body .media-body {
        margin-right: 5px; } }
    .br-chat-body .media-body > div:last-child {
      font-size: 11px;
      color: #6c757d;
      display: flex;
      align-items: center; }
      .br-chat-body .media-body > div:last-child a {
        font-size: 16px;
        line-height: 1;
        margin-left: 5px;
        color: #adb5bd; }
  .br-chat-body .chat-time {
    display: block;
    position: relative;
    text-align: center;
    margin: 20px 0; }
    .br-chat-body .chat-time:first-of-type {
      margin-top: 0; }
    .br-chat-body .chat-time span {
      font-size: 10px;
  font-weight: 500;
      font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
      text-transform: uppercase;
      letter-spacing: 1px; }


  .br-chat-body .msg-wrapper { 
    padding: 10px 10px;
   background-color: #f8f9fa;
    color: #000; 

    opacity:0.9;
      font-weight: 500 ;
    font-size: 16px;

    border-radius: 0px 20px 20px 20px;
    display: inline-block;
}

.rtl .br-chat-body .msg-wrapper {
 border-radius: 20px 0px 20px 20px;   
}

.br-chat-footer {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* background-color: #fff; */
 /* border-top: 1px solid #ced4da; */
  padding: 0 0px; }
  .br-chat-footer .nav {
    display: flex;
    align-items: center; }

.br-chat-footer .nav:last-child {
/*  display: none; */
}
.br-chat-footer .divdes {
margin-left:5px;
margin-right:5px;
}
      @media (min-width: 576px) {
        .br-chat-footer .nav:last-child {
          display: flex; } }
  .br-chat-footer > div {
    flex: 1;
    margin-left: 5px; }
    @media (min-width: 576px) {
      .br-chat-footer > div {
        margin-right: 5px; } }
    .br-chat-footer > div .form-control, .br-chat-footer > div .dataTables_filter input, .dataTables_filter .br-chat-footer > div input {
      padding: 0;
      border-width: 0; }
  .br-chat-footer .nav-link {
    padding: 0;
    font-size: 20px;
    color:#212529; cursor: pointer; font-weight: 600 }
    .br-chat-footer .nav-link:hover, .br-chat-footer .nav-link:focus {
      color: #0866C6; }
    .br-chat-footer .nav-link + .nav-link {
      margin-left: 5px; margin-right: 5px; }


.bgchat {
    background-image: url(../../ins/img//bgchat.png);
}





@media (min-width: 991.98px) {
.br-profile-page .br-profile-body { padding:15px 15px 20px 30px ; } }
.username_post{ margin-left:60px; }
.username_page{ margin-left:90px; }
.commet_body{ margin-left:40px; }
.edit_comment{ float:right; }
.edit_post { float:right; margin-right:5px; }
.bodypostmodal{ text-align:left; }
.imagepoststylediv{ float:right; padding-right:0px; }
.imagepoststyle{ float:right; border:1px solid #0866C6;padding:2px;border-top-left-radius: 10px;border-bottom-left-radius: 10px; border-right:0px;padding-right:0px; margin-left:5px; }
.morephoto{ position:absolute; right:10px;bottom:10px; border-radius: 6px; }

.navbar-brand{margin-left: 1rem; margin-right: 0rem;}


.nav-head a{font-size:22px; margin: auto;}


.rtl .navbar-brand{margin-left: 0rem;margin-right: 1rem;}
.rtl .content-post{ padding:0px; }

@media (min-width: 991.98px) {
.rtl .br-profile-page .br-profile-body { padding:15px 30px 20px 15px ; } }
.rtl .username_post{ margin-right:60px; }
.rtl .username_post{ margin-left:0px; }


.rtl .username_page{ margin-right:90px; }
.rtl .commet_body{ margin-right:40px; }
.rtl .edit_comment{ float:left; }
.rtl .edit_post { float:left; margin-left:5px; }
.rtl .drtl{ direction: rtl; }
.rtl .nav-effect-1 .nav-link { font-size:16px; }

.rtl .bodypostmodal{ text-align:right; }
.rtl .dropdown-menu{ text-align:right; }
.rtl .imagepoststyle{
float:left; border:1px solid #0866C6;padding:2px;border-top-right-radius: 10px;border-bottom-right-radius: 10px; border-left:0px;padding-left:0px; margin-right:5px;   
}

.rtl .morephoto{ position:absolute; left:10px; bottom:10px; border-radius: 6px; }

.rtl .likers-group img:not(:last-child) { margin-left: -12px; }
.rtl .likers-group { margin-left: 10px; }

.bd-lg{ border: 1px solid #ced4da !important;}







.cat-item.active{ background-color: #0866C6 !important;border: 1px dashed #015C9A;}
.cat-item.active h5{color: #fff !important;}    
.navst .nav-link{background: transparent;border: 1px dashed transparent;
transition: .5s;
font-family: "Inter", sans-serif;
font-weight: 700;
line-height: 1.2;
color: #333;font-size: 1.25rem;
cursor: pointer;     padding: .3rem .5rem;
}    
.navst .nav-link:hover {color: #0866C6 !important;}  
.navst .nav-link.active {color: #0866C6 !important;} 