/*
Theme Name: Realty Myths
Description: Custom Description
Version: 1.1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap');

:root {
    --blue-primary: #004181;
    --black-primary: #0e0e0e;
    --white-primary: #ffffff;
    --grey-primary:#f1f1f1;
    --lightgrey-primary:#f9f9f9;
    --darkgrey-primary:#b5b5b5;
    --primary-family: 'Work Sans', sans-serif;
}


body{
   font-family: var(--primary-family); 
}

.bg-grey{
    background: var(--grey-primary);
}

.bg-lgrey{
    background: var(--lightgrey-primary);
}

.bg-white{
    background: var(--white-primary);
}


.main-header{
    padding: 5px 0px;
    background: var(--white-primary);
	    -webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.1);
    -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.1);
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.1);
}

.main-header .row{
    align-items: center;
}

.logo-block img{
    width: 65px;
}


.menu-block .main-menu{
    padding: 0;
    text-align: end;
    margin-bottom: 0;
}

.menu-block .main-menu li{
    display: inline-block;
    margin: 0px 10px;
    text-align: center;
}

.menu-item-39{
    border-right: 1px solid var(--blue-primary);
    padding-right: 20px;
}

.action-btn{
    list-style-type: none;
    padding: 0;
    display: inline-flex;
    margin: 10px 0px;
}

.regbtn{
    margin: 0!important;
}

.regbtn a{
    height: min-content;
    min-height: 48px;
    border-radius: 7px;
    padding: 12px 24px 12px 24px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid var(--white-primary);
    margin: 0 5px!important;
    text-decoration: none;
    color: var(--black-primary);
}

.regbtn a:hover{
    border: 1px solid var(--grey-primary);
    color: var(--blue-primary);
    background: var(--grey-primary);
}

.logbtn{
    margin: 0!important;
}

.logbtn a{
    height: min-content;
    margin: 0!important;
    min-height: 48px;
    border-radius: 7px;
    padding: 12px 24px 12px 24px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid var(--blue-primary);
    color: var(--blue-primary);
    text-decoration: none;
    color: var(--black-primary);
}

.logbtn a:hover{
    border: 1px solid var(--blue-primary);
    background:var(--blue-primary);
    color: var(--white-primary)!important;
}

.menu-block .main-menu li .icon img{
    width: 60px;
}

.menu-block .main-menu li a{
    font-size: 16px;
    color: var(--black-primary);
    text-decoration: none;
    font-weight: 500;
}

.menu-block .main-menu li a:hover{
    font-size: 16px;
    color: var(--blue-primary);
    text-decoration: none;
}

.search-block form {
    display: flex;
}

.search-block form button{
    background: var(--blue-primary);
    border: 2px solid var(--blue-primary);
    border-radius: 0px 7px 7px 0px;
    text-transform: capitalize;
    color: var(--white-primary);
    width: 20%;
    margin-left: -1%;
    padding: 8px 10px;
}


.search-block form input {
    background: var(--lightgrey-primary);
    border: 1px solid #b5b5b5;
    border-radius: 7px 0px 0px 7px;
    padding: 8px 12px;
    width: 95%;
    font-size: 14px;
}

.search-block form input:focus{
    border: 1px solid var(--blue-primary);
    outline: 0;
}

.signin-block{
    border-left: 1px solid var(--blue-primary);
}

.signin-block ul{
    padding: 0;
}

.signin-block ul li{
    display: inline;
    margin: 0px 10px;
}

.signin-block ul li a{
    font-size: 20px;
    color: var(--black-primary);
    text-decoration: none;
}


.signin-block ul .signin-btn a{
    border-radius: 7px;
    padding: 15px 30px;
    border: 1px solid var(--blue-primary);
}

.signin-block ul .signin-btn a:hover{
    border: 1px solid var(--blue-primary);
    background: var(--blue-primary);
    color: var(--white-primary);
}

/*--- header end ---*/





/*---- homepage start ----*/

.signin-section{
    padding: 60px 0px 60px 0px;
}

.signin-section .login-form .title{
    font-size: 32px;
    color: var(--blue-primary);
    margin-bottom: 15px;
    font-weight: normal;
}


.signin-section .login-form form input{
    background: var(--lightgrey-primary);
    border: 2px solid #b5b5b5;
    border-radius: 7px;
    padding: 20px 30px;
    height: 50px!important;
    line-height: 50px;
}

.signin-section .login-form form label{
    color: var(--black-primary);
    font-weight: normal;
    font-size: 16px;
    text-transform: capitalize;
}

.signin-section .login-form form .forget-password-btn{
    color: var(--blue-primary);
    font-weight: normal;
    font-size: 16px;
    text-transform: capitalize;
}

.error{
	font-size: 13px;
    padding-left: 12px;
    color: red;
}


.signin-section .login-form form input[type="submit"]{
    background: var(--blue-primary);
    border: 2px solid var(--blue-primary);
    border-radius: 7px;
    padding:0px;
    height: 50px!important;
    line-height: 50px;
    color: var(--white-primary);
    font-weight:500;
    width: 100%;
}

.signin-section .login-form form input[type="submit"]:hover{
    background: var(--black-primary);
    border: 2px solid var(--black-primary);
}

.more-options p{
    text-align: center;
    display: inline-flex;
    align-items: center;
    width: 100%;
}

.more-options p::after{
    content: '';
    width:16rem;
    display: block;
    height: 1px;
    background: var(--black-primary);
    margin: 0px 15px;
}


.more-options p::before{
    content: '';
    width: 16rem;
    display: block;
    height: 1px;
    background: var(--black-primary);
    margin: 0px 15px;
}

.signingoogle{
    margin-bottom: 10px;
}

.signingoogle a{
    background: var(--lightgrey-primary);
    border: 2px solid #b5b5b5;
    border-radius: 7px;
    height: 50px!important;
    line-height: 50px;
    text-align: center;
    color: var(--black-primary);
    text-decoration: none;
    display: block;
}

.signingoogle a:hover{
    background: var(--blue-primary);
    color: var(--white-primary);
    border: 2px solid var(--blue-primary);
}


.already-register a{
    background: var(--lightgrey-primary);
    border: 2px solid #b5b5b5;
    border-radius: 7px;
    height: 50px!important;
    line-height: 50px;
    text-align: center;
    color: var(--black-primary);
    text-decoration: none;
    display: block;
}

.forget-password-btn{
    text-decoration: none;
}

.forget-password-btn:hover{
    text-decoration: underline;
}

.already-register  a:hover{
    background: var(--blue-primary);
    color: var(--white-primary);
    border: 2px solid var(--blue-primary);
}


.signingoogle img{
    width: 25px;
}

.latest-stories{
    margin: 0px 20px;
}

.latest-stories .main-title{
    font-size: 32px;
    color: var(--blue-primary);
    margin-bottom: 15px;
    font-weight: normal;
}

.lateststoryslider .single-story img{
    border-radius: 7px;
    width: 100%;
    margin-bottom: 15px;
}

.lateststoryslider .single-story .title{
    font-size: 24px;
    color: var(--black-primary);
    margin-bottom: 10px;
    font-weight: normal;
}

.lateststoryslider .single-story .desc{
    font-size: 16px;
    color: var(--black-primary);
    margin-bottom: 10px;
    font-weight: normal;
}


.lateststoryslider .single-story a{
    font-size: 20px;
    color: var(--blue-primary);
    margin-bottom: 10px;
    font-weight: normal;
    text-decoration: none;
}



.top-profile{
    padding: 60px 0px 60px 0px;
}

.top-profile .main-title{
    font-size: 32px;
    color: var(--blue-primary);
    margin-bottom: 30px;
    font-weight: normal;
    text-transform: capitalize;
}


.top-profile .explore-btn{
    background: var(--blue-primary);
    border: 2px solid var(--blue-primary);
    border-radius: 7px;
    padding: 0px;
    height: 50px!important;
    line-height: 50px;
    color: var(--white-primary);
    text-transform: capitalize;
    text-align: center;
    text-decoration: none;
    display: block;
    margin: 40px 0px;
}

.top-profile .explore-btn:hover{
    background: var(--black-primary);
    border: 2px solid var(--black-primary);
}

.custom-grid{
    display: flex;
}

/*.single-item {
    width: 18.5%;
    margin: 0px 18px;
}*/

.single-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 7px;
    margin-bottom: 10px;
}

.single-item .name{
    font-size: 20px;
    color: var(--black-primary);
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 0px;
}

.single-item .desg{
    font-size: 18px;
    color: var(--blue-primary);
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 0px;
}

.single-item .company{
    font-size: 16px;
    color: var(--black-primary);
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 5px;
}

.single-post .desc .author-bio-section{
    display: none;
}


.latest-request{
    padding: 60px 0px 60px 0px;
}

.latest-request .main-title{
    font-size: 32px;
    color: var(--blue-primary);
    margin-bottom: 30px;
    font-weight: normal;
    text-transform: capitalize;
}

.latest-request-list .item{
    display: flex;
    background: var(--white-primary);
    padding: 15px 0px;
}

.latest-request-list .item:nth-child(even) {
    background: var(--grey-primary);
}

.latest-request-list .item .count{
    width: 5%;
    text-align: center;
    font-size: 20px;
}



.latest-request-list .item .content-block{
    width:95%;
}


.latest-request-list .item .content-block .list-name h3{
    font-size: 20px;
    color: var(--black-primary);
    margin-bottom: 0px;
}



.latest-request-list .item .content-block span{
    font-size: 18px;
    color: var(--black-primary);
}

.latest-request-list .item .content-block .date{
    color: var(--blue-primary);
}

.latest-request-list .item .content-block .company{
    color: var(--blue-primary);
}

.latest-request-list .item .content-block .lastdate{
    color: var(--blue-primary);  
}

.latest-request-list .item .content-block .location{
    color: var(--blue-primary);
}

/*---- homepage end ----*/



/*---- Auth page start ---*/

.form-group {
    margin-bottom: 1rem;
}
label{
    margin-bottom:2px;
}
.auth-page{
    padding: 60px 0px 60px 0px;
}


.auth-page .auth-form{
    background: var(--grey-primary);
    padding: 30px 30px;
    border-radius: 7px;
}

.auth-page .auth-form .title{
    font-size: 32px;
    color: var(--blue-primary);
    margin-bottom: 15px;
}


.auth-page .auth-form form input{
    background: var(--lightgrey-primary);
    border: 2px solid #b5b5b5;
    border-radius: 7px;
    padding: 12px 20px;
}

.auth-page .auth-form form select{
    background: var(--lightgrey-primary);
    border: 2px solid #b5b5b5;
    border-radius: 7px;
    padding: 12px 20px;
}

.auth-page .auth-form form label{
    color: var(--black-primary);
    font-weight: normal;
    font-size: 16px;
    text-transform: capitalize;
}

.auth-page .auth-form form .forget-password-btn{
    color: var(--blue-primary);
    font-weight: normal;
    font-size: 16px;
    text-transform: capitalize;
}



.auth-page .auth-form form input[type="submit"]{
    background: var(--blue-primary);
    border: 2px solid var(--blue-primary);
    border-radius: 7px;
    padding:0px;
    height: 50px!important;
    line-height: 50px;
    color: var(--white-primary);
    font-weight: 500;
}

.auth-page .auth-form form input[type="submit"]:hover{
    background: var(--black-primary);
    border: 2px solid var(--black-primary);
}

.auth-page .more-options p{
    text-align: center;
    display: inline-flex;
    align-items: center;
    width: 100%;
}

.auth-page .more-options p::after{
    content: '';
    width: 16rem;
    display: block;
    height: 1px;
    background: var(--black-primary);
    margin: 0px 15px;
}


.auth-page .more-options p::before{
    content: '';
    width: 16rem;
    display: block;
    height: 1px;
    background: var(--black-primary);
    margin: 0px 15px;
}

.auth-page .signingoogle{
    margin-bottom: 10px;
}

.auth-page .signingoogle a{
    background: var(--lightgrey-primary);
    border: 2px solid #b5b5b5;
    border-radius: 7px;
    height: 50px!important;
    line-height: 50px;
    text-align: center;
    color: var(--black-primary);
    text-decoration: none;
    display: block;
}

.auth-page .signingoogle a:hover{
    background: var(--blue-primary);
    color: var(--white-primary);
    border: 2px solid var(--blue-primary);
}


.auth-page .already-register a{
    background: var(--lightgrey-primary);
    border: 2px solid #b5b5b5;
    border-radius: 7px;
    height: 50px!important;
    line-height: 50px;
    text-align: center;
    color: var(--black-primary);
    text-decoration: none;
    display: block;
}

.auth-page .already-register  a:hover{
    background: var(--blue-primary);
    color: var(--white-primary);
    border: 2px solid var(--blue-primary);
}


.auth-page .signingoogle img{
    width: 25px;
}

.terms-condition{
    text-align: center;
    font-size: 14px;
    color: var(--black-primary);
    width: 80%;
    margin: auto;
}

.terms-condition a{
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    color: var(--blue-primary); 
}

.auth-form form .proceed-btn{
    background: var(--blue-primary);
    border: 2px solid var(--blue-primary);
    border-radius: 7px;
    padding:14px 20px;
    color: var(--white-primary);
    font-weight: bold;
    text-decoration: none;
    display: block;
    text-align: center;
    margin:15px 0px;
}

.wrapper-loader {
    position: fixed;
    inset: 0;
    background: rgba(99,99,99,.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 65px;
    height: 65px;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #004181;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/*---- Auth page end ---*/

.cstm-pagetitle{
	text-align:center;
	margin-bottom:30px;
}

.cstm-pagetitle::after{
	content:'';
	background:var(--blue-primary);
	height:4px;
	width:120px;
	display:block;
	margin:auto;
}


/*--- singlepage page start ---*/

.singlepage{
    padding:50px 0px;
}

.singlepage .post-card .short-detail {
    padding: 0px;
}

.singlepage .post-card .short-detail .title {
    padding:10px 15px;
    margin-bottom: 0;
}

.singlepage .post-card .image-block {
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
}

.singlepage .post-card .short-detail .desc{
    margin:0px 15px;
    border-bottom: 1px solid #cdcdcd;
}



/*--- singlepage page end ---*/

/*---- dashboard page start ----*/

.profile-info{
    display: flex;
    align-items:center;
    justify-content: right;
}

.profile-info .profilename h3{
    font-size: 20px;
    color: var(--black-primary);
    text-transform: capitalize;
    margin-bottom: 0;
    cursor: pointer;
}

.profile-info .profilename span{
    font-size: 20px;
    color: var(--blue-primary);
    text-transform: capitalize;
    margin-bottom: 0;
}


.profile-info .profileimg img{
    height: 38px;
    width: 38px;
    border: 1px solid var(--blue-primary);
    border-radius: 7px;
    margin-left:10px;
    
}

/* Dropdown */
.profile-dropdown {
    position: absolute;
    right: 45px;
    top: 55px;
    width: 210px;
    background: var(--white-primary);
    display: none;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(-12px);
    transition: all 0.25s ease;
    z-index: 1000;
}

.profile-dropdown.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.profile-dropdown ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.profile-dropdown ul li a,
.logout-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #1f2937;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Icons */
.profile-dropdown i {
    width: 18px;
    font-size: 16px;
    color: #004181;
}

/* Hover effect */
.profile-dropdown ul li a:hover {
    background: #f1f5f9;
    padding-left: 22px;
}

.logout-btn:hover {
    background: #fee2e2;
}

/* Divider */
.profile-dropdown .divider {
    height: 1px;
    margin: 8px 0;
    background: #004181;
}

/* Logout special style */
.logout-btn {
    color: #dc2626;
    font-weight: 600;
}

.logout-btn i {
    color: #dc2626;
}

.logout-btn:hover {
    color: #b91c1c;
}

.rmdashboardpage{
    padding: 60px 0px 60px 0px;
}

.draftpost-searchbar{
    margin-bottom: 20px;
}

.draftpost-searchbar form{
    display: flex;
}

.draftpost-searchbar form input{
    background: var(--white-primary);
    border: 1px solid #b5b5b5;
    border-radius: 7px 0px 0px 7px;
    padding: 20px 30px;
    height: 50px!important;
    line-height: 50px;
    width: 70%;
}

.draftpost-searchbar form input:focus{
    outline: none;
}

.draftpost-searchbar form input[type="submit"]{
    background: var(--blue-primary);
    border: 2px solid var(--blue-primary);
    border-radius: 0px 7px 7px 0px;
    padding: 0px;
    height: 50px!important;
    line-height: 50px;
    text-transform: capitalize;
    color: var(--white-primary);
    width: 30%;
    margin-left: 0%;
}

.main-block .single-post{
    margin-bottom: 30px;
}

.main-block .titlepage {
    font-size: 24px;
    color: var(--blue-primary);
    margin-bottom: 20px;
    font-weight: normal;
    text-transform: capitalize;
    font-weight: 600;
}

.post-detailbar{
    display: inline-flex;
    align-items: center;
    padding:15px 15px 10px 15px;
}

.post-detailbar  .right-dots-wrapper{
    text-align: center;
    position: absolute;
    right: 30%;
}

.dots-dropdown {
    position: absolute;
    top: 28px;
    right: 0;
    width: 150px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 999;
}

.dots-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 6px 0;
}

.dots-dropdown ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
}

.dots-dropdown ul li a i {
    width: 16px;
    text-align: center;
    color: #004181;
}

.dots-dropdown ul li a:hover {
    background: #f4f6f8;
}

/* show dropdown */
.dots-dropdown.show {
    display: block;
}

.post-detailbar .right-dots {
    font-size: 22px;
    color: var(--darkgrey-primary);
}

.post-detailbar img{
    height: 38px;
    width: 38px;
    border: 1px solid var(--blue-primary);
    border-radius: 7px;
    margin-right: 10px;
}

.post-detailbar p{
    color: var(--blue-primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: -2%;
}

.post-detailbar .author_name a{
    color: var(--black-primary);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    text-decoration: none;
    text-transform: capitalize;
}

.post-detailbar p a{
    color: var(--blue-primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    text-decoration: none;
    text-transform: capitalize;
}

.post-detailbar .post_time span{
    color: var(--darkgrey-primary);
    font-size: 14px;
}

/* .post-detailbar p:after{
    content:'|';
    margin-right:5px;
    margin-left:5px;
} */

.post-detailbar p:last-child::after{
    content:'';
}

.post-detailbar p span{
    color: var(--black-primary);
}

.post-card{
    background: var(--white-primary);
    border-radius: 7px;
    border: 2px solid #b5b5b5;
}


.post-card .short-detail{
   padding: 5px 15px 15px 15px; 
}

.unlock-benefit .short-detail{
    padding: 15px 15px 15px 15px; 
 }



.post-card .short-detail .title{
    font-size: 18px;
    color: var(--blue-primary);
    margin-bottom: 10px;
    font-weight: 500;
    line-height: normal;
}

.unlock-benefit .short-detail .title{
    margin-bottom: 0;
 }

.post-card .short-detail .desc{
    font-size: 14px;
    color: var(--black-primary);
    font-weight: 500;
    line-height: normal;
}

.unlock-benefit .sharepost .desc{
    font-size: 14px;
    color: var(--black-primary);
    font-weight: 500;
    line-height: normal;
}

.post-card .short-detail .desc p{
    margin-bottom: 0;
}

.single-post .post-card .short-detail .desc p{
    margin-bottom: 10px;
}



.post-card .image-block{
    width: 100%;
    overflow: hidden;
}


.post-card .image-block img{
    width: 100%;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

.post-card .image-block img:hover{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    z-index: 0;
}

.post-card .sharepost{
    padding: 5px 15px;
    display: flex;
    align-items: center;
}

.post-card .sharepost .context{
    width:50%;
    font-size: 14px;
}

.post-card .sharepost .context p{
    text-align: left;
    margin-bottom: 0;
}

.post-card .sharepost .context a{
    text-decoration: none;
}

.post-card .sharepost .context i{
    padding: 5px;
    background: var(--grey-primary);
    color: var(--black-primary);
    border-radius: 3.5px;
    margin-right: 3px;
    font-size: 25px;
    text-align: center;
    transition: 0.3s;
}

.post-card .sharepost .context i:hover{
    background: var(--blue-primary);
    color: var(--white-primary);
}

.post-card .sharepost .share-comments{
    width:50%;
    font-size: 14px;
    text-align: right;
}

.post-card .sharepost .share-comments p{
    text-align: right;
    margin-bottom: 0;
}

.left-block{
    background: var(--white-primary);
    border-radius: 7px;
    border: 1px solid #b5b5b5;
    padding: 15px 15px;
}

.left-block .profile-bar{
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
}

.left-block .profile-img img{
    height: 38px;
    width: 38px;
    border: 1px solid var(--blue-primary);
    border-radius: 7px;
    margin-right: 10px;
}

.profile-detail .name{
    font-size: 16px;
    color: var(--black-primary);
    margin-bottom: -5px;
    font-weight: 500;
    text-transform: capitalize;
}

.profile-detail .desg{
    font-size: 14px;
    color: var(--blue-primary);
    margin-bottom: 0px;
    font-weight: 500;
    text-transform: capitalize;
}

.left-block .side-menu{
    margin-bottom: 25px;
}

.left-block .side-menu ul{
    padding: 0;
    list-style-type: none;
}

.left-block .side-menu ul li{
    margin-bottom: 15px;
}

.left-block .side-menu ul li a{
    display: block;
    width: 100%;
    line-height: 38px;
    color: var(--black-primary);
    text-decoration: none;
}

.left-block .side-menu ul li a:hover{
    color: var(--blue-primary);
}

.left-block .side-menu ul li .dashicons{
    height: 38px;
    width: 38px;
    border: 1px solid var(--blue-primary);
    border-radius: 7px;
    margin-right: 10px;
    line-height: 36px;
}

.left-block .top-lawyers .title{
    font-size: 20px;
    font-weight:600;
    color: var(--blue-primary);
    text-transform: capitalize;
    margin-bottom: 15px;
}

.right-block{
    background: var(--white-primary);
    border-radius: 7px;
    border: 1px solid #b5b5b5;
    padding: 15px 15px;
}

.right-block .top-influencers .title{
    font-size: 20px;
    font-weight: 600;
    color: var(--blue-primary);
    text-transform: capitalize;
    margin-bottom: 15px;
}


.right-block .profile-bar{
    display: inline-flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.right-block .profile-img img{
    height: 38px;
    width: 38px;
    border: 1px solid var(--blue-primary);
    border-radius: 7px;
    margin-right: 10px;
}

.profile-detail .name{
    font-size: 16px;
    color: var(--black-primary);
    margin-bottom: -5px;
    font-weight: 500;
    text-transform: capitalize;
}

.profile-detail .desg{
    font-size: 14px;
    color: var(--blue-primary);
    margin-bottom: 0px;
    font-weight: 500;
    text-transform: capitalize;
}

.top-brands{
    margin-top: 10px;
}

.right-block .top-brands .title{
    font-size: 20px;
    font-weight: 600;
    color: var(--blue-primary);
    text-transform: capitalize;
    margin-bottom: 15px;
}

.top-brands .list-item{
    border-bottom: 1px solid var(--black-primary);
    margin-bottom: 10px;
}

.top-brands .list-item:last-child{
    border-bottom: 0px solid var(--black-primary);
}

.top-brands .list-item .companyname{
    font-size: 16px;
    color: var(--black-primary);
    text-transform: capitalize;
    margin-bottom: 0;
    font-weight: 500;
}

.top-brands .list-item .postedby{
    font-size: 14px;
    color: var(--black-primary);
    text-transform: capitalize;
}

.top-brands .list-item .postedby span{
    font-size: 14px;
    color: var(--blue-primary);
    text-transform: capitalize;
}


.addnewpost input {
    background: var(--white-primary);
    border: 2px solid #b5b5b5;
    border-radius: 7px;
/*    padding: 20px 30px;*/
    height: 40px!important;
/*    line-height: 50px;*/
    width: 100%;
}


.addnewpost textarea {
    background: var(--white-primary);
    border: 2px solid #b5b5b5;
    border-radius: 7px;
    /* padding: 10px 30px; */
    width: 100%;
}

.addnewpost  input[type="file"] {
    background: transparent;
    border: 0px solid #b5b5b5;
    border-radius: 0px;
    padding: 0px;
    line-height: 25px;
    width: max-content;
}

.addnewpost  input[type="submit"] {
    background: var(--blue-primary);
    border: 2px solid var(--blue-primary);
    border-radius: 7px;
    padding: 0px;
    height: 50px!important;
    line-height: 50px;
    text-transform: capitalize;
    color: var(--white-primary);
    width: 100%;

}

.addnewpost input:focus{
    border: 2px solid var(--blue-primary);
    outline: 0;
}


/*---- dashboard page end ----*/


/*--- author page start ---*/

/* .authorblock{
    background: var(--white-primary);
    padding: 20px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
} */

.author-profileblock{
    text-align: center;
    margin-bottom: 20px;
}

.author-profileblock img{
    border: 1px solid var(--blue-primary);
    border-radius: 7px;
    width: 90px;
    margin-bottom: 5px;
}

.author-profileblock .author-name{
    font-size: 20px;
    margin: 0;
}

.author-profileblock .author-desg{
    font-size: 16px;
    color: var(--blue-primary);
    text-transform: capitalize;
    margin: 0;
}

.author-detail-single{
    padding-bottom: 10px;
    border-bottom: 1px solid #c5c5c5;
    margin-bottom: 10px;
    position: relative;
}

.author-detail-single:last-child{
    border-bottom: 0px solid #c5c5c5;
    margin-bottom: 0px;
}

.author-detail-single .heading{
    font-size: 16px;
    color: var(--black-primary);
    line-height: 16px;
}

.author-detail-single .cntxt{
    font-size: 14px;
    color: var(--blue-primary);
}

.author-detail-single i{
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
}

/*--- author page end ---*/



#basicpage{
	padding:50px 0px;
}

/*--- thank you page ---*/
.thankyou-page{
    padding: 60px 0px 60px 0px;
}
.thankyou-card{
    background: var(--grey-primary);
    padding: 45px 30px;
    border-radius: 7px;
}

.thankyou-card .content{
    color: var(--black-primary);
    font-weight:500;
    font-size: 15px;
    text-align: center;
    margin-bottom: 0px;
}

.thankyou-card .confirm-message {
    color: var(--blue-primary);
}

.thankyou-card .social-media{
    margin-top: 30px;
}

.thankyou-card .social-media p{
    color:  var(--blue-primary);
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    margin-bottom: 5px;
}

/*--- thank you end ---*/

/*--- slick slide css  start---*/

.slick-dots li{
    margin: 0 2px!important;
}

.slick-dots li button:before{
    font-size: 12px!important;
    color:#d5d5d5!important;
    opacity: 1!important;
}


.slick-dots li.slick-active button:before{
    opacity: 1!important;
    color: var(--blue-primary)!important;
}


/*--- slick slide css end ---*/

.ql-toolbar.ql-snow{
    border-radius: 15px 15px 0px 0px!important;
    background: var(--white-primary);
}

.addnewpost #postcontent{
    border-radius: 0px 0px 15px 15px!important;
    min-height: 200px;
    background: var(--white-primary);
}

/*--- footer start -----*/

footer{
    background: var(--grey-primary);
}

.widget-title{
    font-size: 22px;
}

.footer-menu{
    padding: 0!important;
    list-style-type: none;
    /*margin: 0px 12px;*/
  /*  columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;*/
}

.footer-menu ul{
    padding: 0!important;
}

.footer-menu li{
    list-style-type:none;
}


.footer-menu li a{
    font-size: 16px;
    color: var(--black-primary);
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-menu li a:hover{
    color: var(--blue-primary);
}

.footer-logo img{
    width: 65px;
}

.social-links i{
    background: var(--blue-primary);
    color: var(--white-primary);
    padding: 12px 0px;
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 50%;
    margin: 0px 2px;
}

.social-links i:hover{
    background: var(--black-primary);
    color: var(--white-primary);
}


.mail p{
    font-size: 16px;
    color: var(--black-primary);
    margin-bottom: 10px;
    text-decoration: none;
    margin-top: 20px;
}


.mail p a{
    text-decoration: none;
    color: var(--black-primary);
}

.mail p a:hover{
    color: var(--blue-primary);
}

.copyright{
	font-size:13px;
}

footer .footer-copyright{
    padding: 12px 0px;
    background: var(--white-primary);
}

.footer-links ul {
    padding: 0;
    text-align: right;
    margin-bottom: 0;
}

.footer-links ul li{
    display: inline-block;
    margin: 0px 5px;
    text-align: center;
}

.footer-links ul li a{
    font-size: 13px;
    color: var(--black-primary);
    text-decoration: none;
    text-transform: capitalize;
}


/*--- footer end -----*/


/*--- slider start -----*/
.single-post .slick-slide img {
    display: block;
    height: 358px;
    object-fit: cover;
}

.single-post .slick-prev {
    left: 10px;
    z-index: 9;
}

.single-post .slick-next {
    right: 10px;
}

.single-post .slick-dots {
    position: absolute;
    bottom: 10px;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}

.single-post .slick-slider {
    margin-bottom: 15px;
}

/*--- slider end -----*/

.profileimg {
    background-color: #004181;
    width: 65px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10%;
    color: white;
    font-size: 30px;
    font-weight: bold;
}


.error-page{
  padding:50px 0;
}
.error-page .component{
  text-transform:uppercase;
  margin-bottom:30px;
  font-size: 24px;
}
.error-page .content{
  text-transform:uppercase;
  margin-bottom:45px;
  color: #004181;
  font-weight: bold;
}  
.error-page .error-content img{
  display:inline-block;
  margin-bottom:50px;
}
.error-page .error-content h2{
  color:#004181;
} 
.error-page .error-content h1{
  font-size:50px;
}
.error-page .error-content p{
  margin:0 13%;
  font-style: oblique;
  color: #000;
}
.error-page .error-content p > a{
  color:#004181;
}


.note-modal-body{
    padding: 10px 30px !important;
    position: relative !important;
}

.note-modal-footer {
    height: 70px !important;
    padding: 10px 30px !important;
    text-align: center !important;
}

.dropdown-toggle::after {
    display: none !important;
}

.post_time{
    text-transform: capitalize;
}

.short-detail .title a {
     color: var(--blue-primary) !important; 
     text-decoration: none !important; 
}

.joinform {
    background: var(--white-primary);
    padding: 15px 15px;
    border-radius: 7px;
    border: 1px solid var(--grey-primary);
}

.joinform form input[type="submit"] {
    background: var(--blue-primary);
    border: 2px solid var(--blue-primary);
    border-radius: 7px;
    padding: 0px;
    height: 50px !important;
    line-height: 50px;
    color: var(--white-primary);
    font-weight: 500;
    width: 100%;
}

.select-wrapper {
    position: relative;
}

/* default CLOSED */
.select-arrow {
    position: absolute;
    right: 18px;
    top: 45px;
    pointer-events: none;
    font-size: 18px;
    color: #6c757d;
    transition: transform 0.2s ease;
    transform: rotate(0deg);
}

/* rotate on hover */
.select-wrapper:hover .select-arrow {
    transform: rotate(180deg);
    color: #004181;
}

/* SHARE & COMMENT SECTION */
.sharepost {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    margin-top: 10px;
}

/* Share & comment count */
.share-comments {
    font-size: 14px;
    color: #555;
}

/* Clickable comment text */
.comment-toggle {
    cursor: pointer;
    color: #004181;
    font-weight: 500;
}

.comment-toggle:hover {
    text-decoration: underline;
}

/* COMMENT FORM CONTAINER */
.comment-box {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    padding: 10px;
}

/* Visible state */
.comment-box.active {
    max-height: max-content;
    opacity: 1;
}

/* COMMENT INPUT ROW */
.comment-input-wrapper {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

/* Input field */
.comment-input {
    flex: 1;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    outline: none;
    transition: border-color 0.2s ease;
}

.comment-input:focus {
    border-color: #2563eb;
}

/* Submit button */
.comment-submit-btn {
    padding: 8px 16px;
    font-size: 14px;
    background-color: #004181;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

/* MOBILE RESPONSIVE */
@media (max-width: 576px) {
    .comment-input-wrapper {
        flex-direction: column;
    }

    .comment-submit-btn {
        width: 100%;
    }
}

.empty-post-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
}

.empty-post-card {
    max-width: 900px;
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.empty-title {
    padding: 20px 20px;
    font-size: 22px;
    font-weight: 600;
    color: #0b4a8b;
}

.empty-illustration img {
    width: 100%;
}

.empty-footer {
    padding: 20px 30px 30px;
    font-size: 14px;
    color: #6b7280;
}

.empty-footer a {
    color: #0b4a8b;
    text-decoration: none;
    font-weight: 500;
}

.empty-footer a:hover {
    text-decoration: underline;
}

.access-block .profile-info {
    display: flex;
    align-items: center;
}

.access-block .profile-image img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.author-detail-single a{
    text-decoration: none;
}

/* Password input wrapper */
.input-group {
    position: relative;
}

/* Eye icons */
.password-toggle-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    font-size: 16px;
    z-index: 5;
}

/* Hover effect */
.password-toggle-icon:hover {
    color: #000;
}

/* Hide utility */
.d-none {
    display: none;
}