/*
--------------------------------------------------------------------------------------------------------
* Project    :                                                                                         *
* Author     : piyush Tapaniya | +91 83060 05795                                                       * 
* Support    : piyush.tapaniya90@gmail.com                                                             * 
*------------------------------------------------------------------------------------------------------- 
NOTE: This is main stylesheet of template, This file contains the styling for the actual Template.
*/
.header {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 9;
    padding: 10px 20px;
    background: rgb(255 255 255);
}
.header.sticky {
    background: #ffffff;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    z-index: 9;
    animation: mymove 0.4s linear; 
}
.header.sticky .main-header .navbar {
    box-shadow: none;
    padding: 0;
}

/* Main Menu CSS Start*/
.main-header {
    position: relative;
}
.main-header .navbar { 
    width: 100%;
    position: relative;
    padding: 0 0px;
}
.header-navigation-area{
    margin-left: 30px;
}
.header-navigation-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-search input {
    background: rgb(0 0 0 / 4%);
    border: none;
    height: 38px;
    padding: 5px 5px 5px 35px;
    border-radius: 10px;
    font-size: 14px;
}

.header-search {
    position: relative;
}
.header-search svg {
    position: absolute;
    left: 10px;
    top: 13px;
}

.main-navigation .header-navigation-area ul li {
    display: inline-block;
    position: relative;
}

.main-navigation .menu > li > a {
    font-weight: normal;
    text-transform: capitalize;
    position: relative;
    padding: 10px 0px;
    margin: 0 10px;
    z-index: 5;
    display: inline-block;
    color: #000;
    transition: all 0.3s ease-in-out;
    transition: 0.3s linear;
    -o-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    position: relative;
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.main-navigation .menu > li.active > a, .main-navigation .menu > li > a:hover {
    color: #34a5f8;
}

.main-navigation .menu > li.active > a:after,
.main-navigation .menu > li > a:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    height: 2px;
    width: 0%;
    background-color: #34a5f8 ;
    transition: all 0.3s ease-in-out;
    transition: 0.3s linear;
    -o-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
}
.main-navigation .menu > li.active > a:after,
.main-navigation .menu > li > a:hover:after {
    width: 100%;
    left: 0;
}
.rs-search {
    font-size: 18px;
}
.rs-search:hover {
    color: red;
}
.expand-btn-inner ul {
    list-style-type: none;
    align-items: center;
    justify-content: center;
    display: flex;
}
.expand-btn-inner ul li {
    display: inline-block;
    margin-left: 30px;
}

.with-login .dropdown-toggle {
    display: flex;
    gap: 10px;
    align-items: center;
}
.with-login .dropdown-toggle img { 
    width: 38px;
    height: 38px;
    border-radius: 5px;
}
.with-login .dropdown-toggle span{
    font-size: 14px;
    line-height: 16px;
}
.with-login .dropdown-toggle::after{
    display: none;
}

/* Main Menu CSS End*/

/* Mobile Menu CSS Start*/
.mobile-menu-trigger {
    cursor: pointer; 
    display: none;
    background: transparent;
    border: none;
}
.mobile-menu-trigger span {
    height: 2px;
    display: block;
    width: 30px;
    margin-bottom: 9px;
    background-color: #000;
}
.mobile-menu-trigger span:last-child {
    margin-bottom: 0;
}
.mobile-menu-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    overflow-y: scroll;
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    overflow-x: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.mobile-menu-container li {
    opacity: 0;
    visibility: hidden;
    -ms-transform: translateX(1000px);
    -webkit-transform: translateX(1000px);
    transform: translateX(100px);
    -webkit-transition: 1s;
    transition: 1s;
    border-top: 1px solid rgb(255 255 255 / 8%);
}
.mobile-menu-container li:nth-last-child(1) {
    border-bottom: 1px solid rgb(255 255 255 / 8%);
}
.mobile-menu-container li > a .slicknav_arrow:after {
    content: "\f067";
    position: absolute;
    font-family: "FontAwesome";
    top: 0;
    bottom: 0;
    color: 000;
    z-index: 999;
    margin: 0 auto;
    text-align: center;
    right: 0;
    left: 0;
    font-size: 16px;
    line-height: 50px;
}
.mobile-menu-container.menu-open li.slicknav_open > a .slicknav_arrow:after {
    content: "\f068";
}
.mobile-menu-container.menu-open {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
.mobile-menu-container.menu-open li {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.mobile-menu-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1;
}
.mobile-menu-close::before {
    left: 15px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.mobile-menu-close::after {
    right: 13px;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.mobile-menu-close::before,
.mobile-menu-close::after {
    position: absolute;
    height: 30px;
    width: 2px;
    background: #000;
    content: "";
    top: 0;
}
#mobile-menu-wrap {
    display: block;
    height: calc(100% - 172px);
    width: 100%;
    position: relative;
    right: 0;
    padding: 20px;
}
#mobile-menu-wrap div {
    background-color: transparent;
}
#mobile-menu-wrap .slicknav_item i {
    display: none;
}

.mobile-header {
    background-color: #eeedf9;
    padding: 10px 10px;
}
.mobile-footer {
    border-top: 1px solid #d3d3d3;
    padding: 20px;
}
.mobile-footer .dropdown-menu.show {
    display: block;
    width: calc(100% - 20px);
    right: 0 !important;
    left: 0 !important;
    margin: auto !important;
}

 
/*Sidebar Start*/
.slicknav_nav,
.slicknav_nav.slicknav_hidden {
    display: block !important;
    text-align: left;
}
.slicknav_btn {
    display: none !important;
}
.slicknav_menu {
    padding-left: 0;
}
.slicknav_nav li > a {
    display: block;
    font-weight: 400;
}
.slicknav_item.slicknav_row a {
    border-bottom: 0;
}
.slicknav_nav .slicknav_row,
.slicknav_nav a {
    padding: 10px 0px;
    margin: 0;
}
.slicknav_nav .slicknav_arrow {
    font-size: 0;
    background: rgb(255 255 255 / 8%);
    height: 100%;
    width: 50px;
    display: inline-block;
    position: absolute;
    top: 0;
}
.slicknav_nav ul {
    margin: 0 0 0 0px;
}
.slicknav_nav .menu-item-has-children ul {
    margin-bottom: 00px;
}
.slicknav_nav .menu-item-has-children ul li {
    padding-left: 25px;
}
.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
}
.slicknav_nav .slicknav_row:hover,
.slicknav_nav a:hover {
    border-radius: 0;
}
.slicknav_item.slicknav_row {
    display: inline-block;
    width: 100%;
    position: relative;
}
.slicknav_arrow {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    right: 0;
    top: 17px;
    position: absolute;
}
.slicknav_nav a,
.slicknav_row a {
    color: #000;
    font-size: 16px;
    display: inline-block;
}
/*Sidebar Start*/
/* Mobile Menu CSS End*/

.with-login ul li { 
    width: 100%;
}
.with-login ul li a{
    padding: 8px 15px;
}
.with-login ul li a svg{
    margin-right: 5px;
    width: 20px;
}
.with-login ul li a:hover {
    color: #34a5f8;
    background-color: transparent;
}
.with-login ul li a:hover svg path{
    fill: #34a5f8;
}

.notification .dropdown-toggle::after{
    display: none;
}
.notification .dropdown-menu.show {
    width: 220px;
    background: transparent;
    border: none;
}
.notification .dropdown-menu.show li{
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0px 2px 3.4px 0px #00000040;
    margin-top: 5px;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}
.notification .dropdown-menu.show li:hover{
    background: #fff;
}
.notification .dropdown-menu.show li .title{
    font-weight: 600;
}
.notification .dropdown-menu.show li .subittle{
    font-size: 12px;
}

.points{
    text-align: end;
}
.points h6{
    margin-bottom: 0;
}


/* left-side start*/
.page-wappere{
    width: 100%;
    display: flex;
}
.main-body.active .left-side{
    width: 256px;
    transform: translate(0, 0); 
}

.left-side-back {
    height: 58px;
    display: flex;
    align-items: center;
    padding: 40px 25px;
}
.left-side{
    background-color: var(--bg-1); 
    position: fixed; 
    left: 0;
    height: 100%; 
    z-index: 99;
    width: 88px; 
}
.main-body.active .right-side{
    padding-left: 256px;
}
.right-side {
    width: 100%;    
    padding-left: 0;
    transition: all 0.5s;
    position: relative;
    padding-left: 88px;
}
.left-menu li a {
    padding: 12px;
    border-radius: 12px;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    justify-content: center;
}
.left-menu li a svg {
    height: 20px;
    width: 20px;
}
.main-body.active .left-side-box .left-menu li a{
    justify-content: start;
}
.main-body.active .left-side-box .left-menu li a span {
    display: block;
}
.main-body .left-side-box .left-menu li a span {
    display: none;
}
.main-body.active .acitve-back{
    display: none;
}
.main-body .back{
    display: none;
}
.main-body.active .back{
    display: block;
} 


.left-side-back-box {
    position: absolute;
    right: -44px;
}

.left-menu li a.active,
.left-menu li a:hover {
    background: var(--white-color); 
    color: var(--white-color);
} 
.left-menu li a.active:hover span,
.left-menu li a.active span{
    color: var(--black-color);
}
.left-menu li a svg {
    height: 40px;
    width: 40px;
    padding: 10px;    
    border-radius: 12px;
}
.left-menu li a:hover svg,
.left-menu li a.active svg{
    background: var(--primary-color);
}
.left-menu li a:hover span,
.left-menu li a.active span{
    color: var(--black-color);
}

.left-side-box {
    height: 100%;
}
.left-box{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: calc(100% - 80px);
}

.mobile-btns {
    padding: 15px;
    display: none;
}

.is-left-bottom .left-side .left-box .left-menu{
    height: calc(100% - 410px);
}

.left-menu {
    padding: 0;
    overflow: auto;
}

.left-bottom {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.left-point-item {
    background: var(--primary-color);
    border-radius: 15px;
    padding: 15px;
}
.main-body.active .left-point-item { 
    padding: 25px;
}
 
.main-body.active .left-point-content {
    display: block;
    margin-top: 15px;
}
.left-point-content {
    display: none;
}
.left-point-content p {
    font-size: 14px;
    color: var(--white-color);
    margin-bottom: 5px;
}
.left-point-content h5 {
    font-size: 20px;
    color: var(--white-color);
}
.profile-login {
    display: flex;
    gap: 10px; 
    justify-content: center;
        align-items: center;
}
.profile-login-content {
    display: none;
}

.profile-login:after {
    content: '';
    position: absolute;
    height: 24px;
    width: 24px;
    background: url(../../assets/images/icon/more.svg) no-repeat;
    right: 10px;
}


.main-body.active .profile-login {
    justify-content: start;
}
.main-body.active .profile-login-content {
    display: block;
}

.left-login .dropdown-toggle::after{
    display: none;
}

.left-bottom {
    padding: 15px;
}

 
.left-tc ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.left-tc ul li a {
    font-size: 13px;
    color: var(--secondary-color);
    text-decoration: underline;
    max-width: 60px;
}

.main-body.active  .left-tc ul li a{
    max-width: 100%;

}

.main-body.active .left-menu {
    padding: 0 10px;
}

.main-body.active.show-menu .left-side {
    transform: translate(0, 0);
}

.main-body.active.show-menu:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    margin: 0 auto;
    background: rgb(0 0 0 / 22%);
    z-index: 9;
}

.slidebar-spin {
    position: absolute;
    background: #F6F6F6;
    height: 85px;
    width: 100%;
    padding: 15px;
    bottom: 0; 
}
/* left-side end*/


@media only screen and (max-width: 991px) {
    /*Menu*/
    .header { 
        padding: 10px 10px;  
    }
    .header-navigation-area  {
        display: none !important;
    }
    .mobile-menu-trigger {
        display: block !important;
    }
    .left-side-back-box {
        right: 0;
    }
    .left-side-box { 
        overflow: auto;
    }
    .main-body.active .left-side { 
        transform: translate(-260px, 0);
    }
    .main-body.active .right-side {
        padding-left: 0;
    }
    .left-menu {
        height: calc(100% - 218px); 
    }
    .with-login .dropdown-toggle img {
        position: relative; 
    }
    .with-login .dropdown-toggle {
        padding-left: 0;
    }
    .with-login .dropdown-toggle span { 
        display: none;
    }

    .is-left-bottom .left-side .left-box .left-menu {
        height: 100%;
        overflow: initial;
    }
    .left-side-back { 
        position: absolute;
        right: 0;
        top: 0;
    }
    .mobile-btns { 
        display: block;
    }
}
@media only screen and (max-width: 520px) {  
    .main-header .header-navigation-right .spins img{
        width: 35px;
    }
    .main-header .header-navigation-right .points p{
        font-size: 10px;
    }
    .header-search input { 
        width: 120px;
    }
}
@media only screen and (max-width: 420px) { 
    .main-header .header-navigation-right .spins{
        display: none !important;
    }  
    .nav-logo img {
        width: 120px;
    }
}

