:root {
    scroll-behavior: smooth;
    --color-body: #0d111c;
    --color-outer: #1d232e;
    --color-outer-border: #3b4354;
    --color-white: #ffffff;
    --color-text: #e8e8e8;
    --color-link: #4154f1;
    --color-hover: #717ff5;
    --color-dark-blue: #012970;
    --color-title: #46cbe9;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--color-body);
    background-size: cover;
    color: var(--color-white);
    font-size: 14px;
}

a {
    color: var(--color-link);
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: var(--color-hover);
    text-decoration: none;
}

button,
.sr-buttons,
a {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
    margin-top: 0px;
    padding: 20px 40px;
    transition: all 0.3s;
}

@media (max-width: 1199px) {
    #main {
        padding: 20px;
    }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
    margin-bottom: 10px;
}

.pagetitle h1 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--bg-body);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--color-link);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #6776f4;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
    border-radius: 4px;
    padding: 10px 0;
    animation-name: dropdown-animate;
    animation-duration: 0.2s;
    animation-fill-mode: both;
    border: 0;
    box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
    text-align: center;
    font-size: 15px;
    padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
    color: #444444;
    text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
    text-decoration: none;
}

.dropdown-menu .dropdown-divider {
    color: #a5c5fe;
    margin: 0;
}

.dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f6f9ff;
}

@media (min-width: 768px) {
    .dropdown-menu-arrow::before {
        content: "";
        width: 13px;
        height: 13px;
        background: #fff;
        position: absolute;
        top: -7px;
        right: 20px;
        transform: rotate(45deg);
        border-top: 1px solid #eaedf1;
        border-left: 1px solid #eaedf1;
    }
}

@keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

/* Light Backgrounds */
.bg-primary-light {
    background-color: #cfe2ff;
    border-color: #cfe2ff;
}

.bg-secondary-light {
    background-color: #e2e3e5;
    border-color: #e2e3e5;
}

.bg-success-light {
    background-color: #d1e7dd;
    border-color: #d1e7dd;
}

.bg-danger-light {
    background-color: #f8d7da;
    border-color: #f8d7da;
}

.bg-warning-light {
    background-color: #fff3cd;
    border-color: #fff3cd;
}

.bg-info-light {
    background-color: #cff4fc;
    border-color: #cff4fc;
}

.bg-dark-light {
    background-color: #d3d3d4;
    border-color: #d3d3d4;
}

.section.dashboard .card {
    background: transparent;
}
.card {
    margin-bottom: 24px;
    border: none;
    background: var(--color-outer);
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.06);
    border-radius: 24px;
}

.card-header,
.card-footer {
    border-color: #ebeef4;
    background-color: #fff;
    color: #798eb3;
    padding: 15px;
}

.card-title {
    margin-bottom: 0;
    padding: 20px 0 15px 0;
}
.card-title h5 {
    padding: 0;
    color: #46cbe9;
    display: inline-block;
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
}
.card-title.red-color h5 {
    background: none;
    color: #fa1a1a;
    -webkit-text-fill-color: unset;
    text-fill-color: unset;
}

.card-title span {
    color: #899bbd;
    font-size: 14px;
    font-weight: 400;
}
.card-title a.btn-view,
.view-all-noti {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-white);
    opacity: 0.6;
}
.card-title a.btn-view:hover {
    color: var(--color-white);
    opacity: 1;
}

.card-body {
    padding: 0 25px 25px 25px;
}

.card-img-overlay {
    background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}

/* Close Button */
.btn-close {
    background-size: 25%;
}

.btn-close:focus {
    outline: 0;
    box-shadow: none;
}

/* Accordion */
.accordion-item {
    border: 1px solid #ebeef4;
}

.accordion-button:focus {
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--bg-body);
    background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
    padding: 15px 0;
    background: none;
    border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: var(--color-link);
}

.accordion-flush .accordion-body {
    padding: 0 0 15px 0;
    color: #3e4f6f;
    font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
    font-size: 14px;
    font-family: "Nunito", sans-serif;
    color: #899bbd;
    font-weight: 600;
}

.breadcrumb a {
    color: #899bbd;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
    color: #899bbd;
}

.breadcrumb .active {
    color: #51678f;
    font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
    border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
    margin-bottom: -2px;
    border: none;
    color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
    color: var(--color-link);
}

.nav-tabs-bordered .nav-link.active {
    background-color: #fff;
    color: var(--color-link);
    border-bottom: 2px solid var(--color-link);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
    line-height: 1;
}

@media (min-width: 1200px) {
    .logo {
        width: auto;
    }
}

.logo img {
    max-height: none;
    margin-right: 0;
    max-width: 100%;
    max-height: 180px;
    border-radius: 30px 30px 50px 50px;
}

.logo span {
    font-size: 26px;
    font-weight: 700;
    color: var(--bg-body);
    font-family: "Nunito", sans-serif;
}

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 60px;
    box-shadow: none;
    background-color: transparent;
    padding-left: 40px;
    margin-left: 300px;
    padding-right: 40px;
    margin-top: 35px;
}

.header .toggle-sidebar-btn {
    font-size: 32px;
    padding-left: 10px;
    cursor: pointer;
    color: #fff;
}

.header .search-bar {
    min-width: 450px;
    padding: 0;
    margin-right: 40px;
}

@media (max-width: 1199px) {
    .header .search-bar {
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        padding: 20px;
        box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
        background: white;
        z-index: 9999;
        transition: 0.3s;
        visibility: hidden;
        opacity: 0;
    }

    .header .search-bar-show {
        top: 60px;
        visibility: visible;
        opacity: 1;
    }
}

.header .search-form {
    width: 100%;
    position: relative;
}

.header .search-form input {
    border: 0;
    font-size: 16px;
    color: #fff;
    background: var(--color-outer);
    border: solid 1px var(--color-outer);
    border-radius: 100px;
    padding: 16px 15px 16px 50px;
    transition: 0.3s;
    width: 100%;
    font-weight: 200;
}

.header .search-form ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #6a6d72;
    font-weight: 200;
}

.header .search-form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #6a6d72;
    font-weight: 200;
}

.header .search-form ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #6a6d72;
    font-weight: 200;
}

.header .search-form input:focus,
.header .search-form input:hover {
    outline: none;
    box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
    border: 1px solid rgba(1, 41, 112, 0.3);
}

.header .search-form button {
    border: 0;
    padding: 0;
    margin-left: 0;
    position: absolute;
    left: 23px;
    background: none;
}

.header .search-form button i {
    color: #fff;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
    list-style: none;
}

.header-nav > ul {
    margin: 0;
    padding: 0;
}

.header-nav .nav-icon {
    font-size: 22px;
    color: #fff;
    margin-right: 0px;
    position: relative;
}

.header-nav .nav-profile {
    color: #fff;
}

.header-nav .nav-profile img {
    max-height: 48px;
}

.header-nav .nav-profile span {
    font-size: 14px;
    font-weight: 600;
}

.header-nav .badge-number {
    position: absolute;
    inset: -2px -5px auto auto;
    font-weight: normal;
    font-size: 12px;
    padding: 3px 6px;
}

.header-nav .notifications {
    inset: 20px -5px auto auto !important;
    background: var(--color-outer);
    border-radius: 24px;
    box-shadow: none !important;
    width: 370px;
}
.header-nav .notifications:before {
    display: none !important;
}

.header-nav .notifications .dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
}
.header-nav .notifications .dropdown-header span {
    color: #46cbe9;
}
.header-nav .notifications .dropdown-header i {
    color: #fff;
    font-size: 20px;
}

.header-nav .notifications .notification-item {
    display: flex;
    align-items: center;
    padding: 15px 15px;
    transition: 0.3s;
    border-bottom: solid 1px #484d57;
}
.header-nav .notifications .notification-item:last-child {
    border-bottom: none;
}
.header-nav .notifications .user-photo {
    margin-right: 15px;
}
.header-nav .notifications .user-photo img {
    border-radius: 90px;
    max-width: 45px;
}
.header-nav .notifications .notification-item i {
    margin: 0 20px 0 10px;
    font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    color: #fab21a;
    margin-bottom: 0px;
}
.header-nav .notifications span.comment {
    font-weight: 400;
    font-size: 10px;
    line-height: 160%;
    color: #fff;
    opacity: 0.5;
}
.header-nav .notifications span.time {
    font-weight: 400;
    font-size: 10px;
    line-height: 160%;
    color: #fff;
    opacity: 0.5;
}
.header-nav .notifications .unread .infos p {
    font-weight: 600;
    font-size: 14px;
    line-height: 160%;
    color: #fff;
}
.header-nav .notifications .notification-item p {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #fff;
    margin: 0;
}

.header-nav .notifications .notification-item:hover h4 {
    color: #46cbe9;
}

.header-nav .messages {
    inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
    padding: 15px 10px;
    transition: 0.3s;
}

.header-nav .messages .message-item a {
    display: flex;
}

.header-nav .messages .message-item img {
    margin: 0 20px 0 10px;
    max-height: 40px;
}

.header-nav .messages .message-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #444444;
}

.header-nav .messages .message-item p {
    font-size: 13px;
    margin-bottom: 3px;
    color: #919191;
}

.header-nav .messages .message-item:hover {
    background-color: #f6f9ff;
}

.header-nav .profile {
    min-width: 240px;
    padding-bottom: 0;
    top: 20px !important;
    background: var(--color-outer);
    border-radius: 16px;
    box-shadow: none !important;
}

.header-nav .show .header-nav .profile .dropdown-header h6 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
    color: #444444;
}

.header-nav .profile .dropdown-header span {
    font-size: 14px;
}

.header-nav .profile .dropdown-item {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #fff;
}
.header-nav .profile .dropdown-item .icon-pic {
    width: 20px;
    text-align: center;
    margin-right: 15px;
}
.header-nav .profile:before {
    display: none !important;
}
.header-nav .profile .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
    color: #46cbe9;
    background: none;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    z-index: 996;
    transition: all 0.3s;
    padding: 25px 0px 20px 0px;
    overflow-y: auto;
    /* scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent; */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    background: var(--color-outer);
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.11);
    border-radius: 0px 60px 60px 0px;
}

@media (max-width: 1199px) {
    .sidebar {
        left: -300px;
    }
}

.sidebar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #aab7cf;
}

@media (min-width: 1200px) {
    #main,
    #footer {
        margin-left: 300px;
    }
}

@media (max-width: 1199px) {
    .toggle-sidebar .sidebar {
        left: 0;
    }
}

@media (min-width: 1200px) {
    .toggle-sidebar #main,
    .toggle-sidebar #footer {
        margin-left: 0;
    }

    .toggle-sidebar .sidebar {
        left: -300px;
    }
}

.sidebar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav .nav-item {
    margin-bottom: 0px;
}

.sidebar-nav .nav-heading {
    font-size: 11px;
    text-transform: uppercase;
    color: #899bbd;
    font-weight: 600;
    margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    transition: 0s;
    background: none;
    padding: 16px 33px;
    border-radius: 0px;
}

.sidebar-nav .nav-link i {
    margin-right: 10px;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #bfcce0;
}
.sidebar-nav .nav-link .icon-pic .hover-icon {
    display: none;
}
.sidebar-nav .nav-link:hover .nav-icon,
.sidebar-nav .active .nav-icon {
    display: none;
}
.sidebar-nav .nav-link:hover .hover-icon,
.sidebar-nav .active .hover-icon {
    display: inline-block !important;
}
.sidebar-nav .nav-link.collapsed {
    color: #bfcce0;
    background: none;
}

.sidebar-nav .nav-link.collapsed i {
    color: #bfcce0;
}

.sidebar-nav .nav-link:hover {
    color: #46cbe9;
    background: linear-gradient(
        359.05deg,
        rgba(33, 147, 176, 0.12) 0.81%,
        rgba(109, 213, 237, 0.12) 99.25%
    );
    border-radius: 5px;
    border-right: solid 5px #46cbe9;
}

.sidebar-nav .nav-link:hover .name {
    color: #46cbe9;
}
.sidebar-nav .nav-link:hover i {
    color: #46cbe9;
}

.sidebar-nav .active .nav-link {
    background: linear-gradient(
        359.05deg,
        rgba(33, 147, 176, 0.12) 0.81%,
        rgba(109, 213, 237, 0.12) 99.25%
    );
    border-radius: 5px;
    border-right: solid 5px #46cbe9;
}
.sidebar-nav .active .nav-link .name {
    color: #46cbe9;
}
.sidebar-nav .active .nav-link i {
    color: var(--color-white);
}

.sidebar-nav .nav-link .icon-pic {
    margin-right: 15px;
    width: 30px;
}
.sidebar-nav .nav-link .icon-pic img {
    max-width: 100%;
    width: 25px;
    height: 25px;
}

.sidebar-nav .nav-link .bi-chevron-down {
    margin-right: 0;
    transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
}

.sidebar-nav .nav-content {
    padding: 5px 0 0 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav .nav-content a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #bfcce0;
    transition: 0.3;
    padding: 10px 0 10px 40px;
    transition: 0.3s;
}

.sidebar-nav .nav-content a i {
    font-size: 6px;
    margin-right: 8px;
    line-height: 0;
    border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
    color: #fff;
}

.sidebar-nav .nav-content a.active i {
    background-color: var(--color-link);
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
    position: absolute;
    right: 0px;
    top: 15px;
}

.dashboard .filter .icon {
    color: #aab7cf;
    padding-right: 20px;
    padding-bottom: 5px;
    transition: 0.3s;
    font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
    color: var(--color-link);
}

.dashboard .filter .dropdown-header {
    padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #aab7cf;
    margin-bottom: 0;
    padding: 0;
}

.dashboard .filter .dropdown-item {
    padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
    padding-bottom: 10px;
}

.dashboard .info-card h6 {
    font-size: 28px;
    color: var(--bg-body);
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.dashboard .card-icon {
    font-size: 32px;
    line-height: 0;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    flex-grow: 0;
}

.dashboard .sales-card .card-icon {
    color: var(--color-link);
    background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
    color: #2eca6a;
    background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
    color: #ff771d;
    background: #ffecdf;
}

/* Activity */
.dashboard .activity {
    font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
    color: #888;
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
    min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
    content: "";
    position: absolute;
    right: -11px;
    width: 4px;
    top: 0;
    bottom: 0;
    background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
    margin-top: 3px;
    z-index: 1;
    font-size: 11px;
    line-height: 0;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid #fff;
    flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
    padding-left: 10px;
    padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
    top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
    padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item + .post-item {
    margin-top: 15px;
}

.dashboard .news img {
    width: 80px;
    float: left;
    border-radius: 5px;
}

.dashboard .news h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
    margin-bottom: 5px;
}

.dashboard .news h4 a {
    color: var(--bg-body);
    transition: 0.3s;
}

.dashboard .news h4 a:hover {
    color: var(--color-link);
}

.dashboard .news p {
    font-size: 14px;
    color: #777777;
    margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
    font-size: 14px;
}

.dashboard .recent-sales .table thead {
    background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
    border: 0;
}

.dashboard .recent-sales .dataTable-top {
    padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
    padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
    font-size: 14px;
}

.dashboard .top-selling .table thead {
    background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
    border: 0;
}

.dashboard .top-selling .table tbody td {
    vertical-align: middle;
}

.dashboard .top-selling img {
    border-radius: 5px;
    max-width: 60px;
}

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
    display: grid;
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    padding-top: 15px;
}

.iconslist .icon {
    background-color: #fff;
    border-radius: 0.25rem;
    text-align: center;
    color: var(--bg-body);
    padding: 15px 0;
}

.iconslist i {
    margin: 0.25rem;
    font-size: 2.5rem;
}

.iconslist .label {
    font-family: var(--bs-font-monospace);
    display: inline-block;
    width: 100%;
    overflow: hidden;
    padding: 0.25rem;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #666;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
    max-width: 120px;
}

.profile .profile-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2c384e;
    margin: 10px 0 0 0;
}

.profile .profile-card h3 {
    font-size: 18px;
}

.profile .profile-card .social-links a {
    font-size: 20px;
    display: inline-block;
    color: rgba(1, 41, 112, 0.5);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
    color: var(--bg-body);
}

.profile .profile-overview .row {
    margin-bottom: 20px;
    font-size: 15px;
}

.profile .profile-overview .card-title {
    color: var(--bg-body);
}

.profile .profile-overview .label {
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
    max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-link);
}

.faq .basic p {
    color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    padding: 28px 30px;
}

.contact .info-box i {
    font-size: 38px;
    line-height: 0;
    color: var(--color-link);
}

.contact .info-box h3 {
    font-size: 20px;
    color: var(--bg-body);
    font-weight: 700;
    margin: 20px 0 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--color-link);
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
    background: var(--color-link);
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #5969f3;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
    padding: 30px;
}

.error-404 h1 {
    font-size: 180px;
    font-weight: 700;
    color: var(--color-link);
    margin-bottom: 0;
    line-height: 150px;
}

.error-404 h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-body);
    margin-bottom: 30px;
}

.error-404 .btn {
    background: #51678f;
    color: #fff;
    padding: 8px 30px;
}

.error-404 .btn:hover {
    background: #3e4f6f;
}

@media (min-width: 992px) {
    .error-404 img {
        max-width: 50%;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    padding: 20px 0;
    font-size: 14px;
    transition: all 0.3s;
    border-top: 1px solid #cddfff;
}

.footer .copyright {
    text-align: center;
    color: var(--bg-body);
}

.footer .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    color: var(--bg-body);
}

/*--------------------------------------------------------------
# Main Style Start
--------------------------------------------------------------*/

.btn-blue {
    background: #46cbe9;
    border-radius: 100px;
    color: var(--color-outer);
    font-weight: 600;
    font-size: 20px;
    line-height: 160%;
    padding: 11px 20px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-blue i {
    margin-right: 6px;
    font-size: 20px;
}
.btn-blue:hover {
    color: var(--color-white);
}
.btn-blue-small {
    background: #46cbe9;
    border-radius: 100px;
    color: var(--color-outer);
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    padding: 11px 20px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-blue-small i {
    margin-right: 6px;
    font-size: 20px;
}
.btn-blue-small a,
.btn-blue a {
    color: var(--color-outer);
    text-decoration: none;
}
.btn-blue-small a:hover,
.btn-blue a:hover {
    color: var(--color-outer);
    text-decoration: none;
}
.btn-blue:hover,
.btn-blue-small:hover {
    color: var(--color-outer);
    background: var(--color-white);
}
.btn-blue-line {
}

.ddaat-logo {
    text-align: center;
    margin-bottom: 10px;
}
.ddaat-logo .logo {
    padding: 0 15px;
}

.menu-trogle {
    display: none !important;
}

nav.header-nav ul li.nav-item {
    background: var(--color-outer);
    border: 1px solid var(--color-outer);
    border-radius: 10px;
    padding: 5px;
}
nav.header-nav ul li.nav-item .nav-link {
    width: max-content;
}
nav.header-nav ul li.nav-item .profile-pic {
    margin-right: 6px;
}
nav.header-nav ul li.nav-item .profile-pic img {
    border-radius: 10px;
}
nav.header-nav li.chat-nav .nav-icon,
nav.header-nav li.bell-nav .nav-icon {
    width: 58px;
    text-align: center;
}
nav.header-nav li.chat-nav,
nav.header-nav li.bell-nav {
    padding: 12.3px !important;
    margin-right: 10px;
}
li.nav-item.telephone-nav {
    margin-right: 10px;
    padding: 12px 10px !important;
    background-color: #46cbe9 !important;
    border-color: #46cbe9 !important;
}
li.nav-item.telephone-nav:hover {
    background-color: #25b3d3 !important;
    border-color: #25b3d3 !important;
}

#header .title h1 {
    font-weight: 700;
    font-size: 28px;
    line-height: 140%;
    color: #fff;
    margin: 0;
}
#header .title h1 span {
    color: #46cbe9;
}
.header-nav a.nav-profile.show i {
    transform: rotate(180deg);
    position: relative;
    top: -4px;
}

.daily-motivation {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    position: relative;
    border-radius: 13px;
    border: none;
    padding: 0;
    margin-bottom: 30px;
}
.daily-motivation:after {
    background: linear-gradient(281.87deg, #01c4da -12.5%, #0177f8 103.41%);
    opacity: 0.67;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    content: "";
}
.daily-motivation .box {
    position: relative;
    z-index: 1;
    padding: 20px 25px;
}
.daily-motivation .box h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 176%;
    color: var(--color-white);
}
.daily-motivation .box p {
    font-weight: 400;
    font-size: 14px;
    line-height: 176%;
    color: var(--color-white);
    opacity: 0.97;
    margin: 0;
}
.daily-motivation .box .infos {
    padding-right: 20px;
}
.daily-motivation .box button {
    color: var(--color-white);
    font-size: 25px;
    position: absolute;
    top: 7px;
    right: 10px;
    z-index: 2;
    padding: 1.25rem 1rem;
    background: none;
    padding: 6px;
    border: 0;
}

.upcoming-session {
}
.mentor-section {
    padding: 5px;
    background: var(--color-outer);
    border: 1px solid var(--color-outer-border);
    border-radius: 12px;
    margin-bottom: 10px;
}
.mentor-section:last-child {
    margin-bottom: 0;
}
.mentor-section .left-area .profile,
.mentor-section .left-area .video-area {
    margin-right: 25px;
}
.mentor-section .left-area .video-area {
    width: 135px;
}

.mentor-section .left-area .profile .profile-pic {
    border-radius: 10px;
    max-width: 100%;
    margin-right: 15px;
}

.mentor-section .left-area .profile .info h4 {
    font-weight: 500;
    font-size: 16px;
    line-height: 154%;
    color: #fff;
    margin: 0;
}
.mentor-section .left-area .profile .info {
    font-weight: 400;
    font-size: 12px;
    line-height: 154%;
    color: #999999;
}
.mentor-section .left-area .profile .info a {
    font-weight: 400;
    font-size: 12px;
    line-height: 154%;
    color: #999999;
}
.mentor-section a:hover .info h4 {
    color: #46cbe9 !important;
}

.mentor-section .video-area,
.mentor-section .time-area {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 154%;
    color: var(--color-text);
}

.mentor-section .video-area img,
.mentor-section .time-area img {
    margin-right: 10px;
}

.mentor-section .right-area {
    padding-right: 15px;
}
/* .things-we-offer-you {
    display: none;
} */
.owl-nav button.disabled {
    opacity: 0.5;
}
.what-you-today {
    margin-bottom: 5px;
}
.what-you-today h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #fff;
    margin: 0 0 20px 0;
}
.what-you-today ul.menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.what-you-today ul.menu li {
    margin: 0 6px 0 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    border-radius: 7px;
}
.what-you-today ul.menu li img.nav-icon {
    max-width: 20px;
}
.what-you-today ul.menu li img.hover-icon {
    display: none;
}
.what-you-today ul.menu li:hover img.hover-icon,
.what-you-today ul.menu li.active img.hover-icon {
    display: inline-block;
    max-width: 20px;
}
.what-you-today ul.menu li:hover img.nav-icon,
.what-you-today ul.menu li.active img.nav-icon {
    display: none;
}

.what-you-today ul.menu li a {
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 7px;
    background: var(--color-outer);
    border: 1px solid var(--color-outer-border);
    border-radius: 100px;
    padding: 12px 15px;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-white);
    margin-bottom: 14px;
    width: max-content;
}
.what-you-today ul.menu li.active a,
.what-you-today ul.menu li:hover a {
    background: #46cbe9;
    border: 1px solid #46cbe9;
    color: var(--color-outer);
}
.what-you-today ul.menu li a span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s;
}
/* .what-you-today ul.menu li a:hover span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
} */

.what-you-today .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: stretch;
    justify-content: space-between;
    align-items: stretch;
}
.what-you-today .owl-nav button {
    height: 30px;
    line-height: normal !important;
    margin: 0;
    margin-left: 10px;
}
.what-you-today .owl-nav button:hover span {
    color: #46cbe9;
}
.what-you-today .owl-nav button span {
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    color: #fff;
}

.videos-section {
    background: var(--color-outer);
    border: 1px solid var(--color-outer-border);
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 10px;
}
.videos-section:last-child {
    margin-bottom: 0;
}
/* .videos-section .left-area .profile{
	width: 65px;
	height: 68px;
	border-radius: 10px;
	overflow: hidden;
	margin-right:15px;
} */
.videos-section .left-area .profile .video-thumbnail {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.videos-section .left-area .profile .info h4 {
    font-weight: 500;
    font-size: 16px;
    line-height: 154%;
    color: #fff;
    margin: 0;
}
.videos-section .left-area .profile .info {
    font-weight: 400;
    font-size: 12px;
    line-height: 154%;
    color: var(--color-text);
}

.videos-section .right-area {
    padding-right: 15px;
    transition: all 0.3s;
}
.videos-section a:hover .info h4 {
    color: #46cbe9 !important;
}
.videos-section a:hover .right-area {
    padding-right: 25px;
    transition: all 0.3s;
}
.videos-section .image-container {
    width: 65px;
    height: 68px;
    border-radius: 10px;
    overflow: hidden;
    min-width: 65px;
    display: flex;
    align-items: center;
}
.videos-section .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-container {
    position: relative;
    display: inline-block;
    margin-right: 13px;
}
.image-container {
    width: 65px;
    height: 68px;
    border-radius: 10px;
    overflow: hidden;
    min-width: 65px;
    display: flex;
    align-items: center;
}
.image-container .centered-content .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 19px;
    padding: 1px 4px;
}
.iconing {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 19px;
    padding: 1px 4px;
}
.right-sidebar {
    padding-left: 30px;
}

.mynotes-widget .widget-row {
    background: var(--color-outer);
    border: 1px solid var(--color-outer-border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 10px;
}
.mynotes-widget .widget-row:last-child {
    margin-bottom: 0px;
}
.mynotes-widget .widget-row .heads {
    margin-bottom: 10px;
}
.mynotes-widget .widget-row .heads h4 {
    font-weight: 500;
    font-size: 16px;
    line-height: 154%;
    color: #fff;
    margin: 0;
}
.mynotes-widget .widget-row .heads h4 a {
    color: #fff;
}
.mynotes-widget .widget-row .heads h4 a:hover {
    color: #46cbe9;
}
.mynotes-widget .widget-row .heads p {
    margin-bottom: unset;
    text-align: center;
}
.mynotes-widget .widget-row .clock {
    font-weight: 400;
    font-size: 12px;
    line-height: 154%;
    color: #9d7600;
}
.mynotes-widget .widget-row .clock img {
    margin-right: 7px;
}
.mynotes-widget .widget-row .info {
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
    color: var(--color-text);
}
.widget-row.row {
    gap: 10px;
}
.articles-widget .widget-row {
    background: var(--color-outer);
    border: 1px solid var(--color-outer-border);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
}
.articles-widget .widget-row:last-child {
    margin-bottom: 0;
}
.articles-widget .thumbnail {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    min-width: 90px;
}
.articles-widget .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.articles-widget .info {
    padding-left: 13px;
}
.articles-widget .info h3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 154%;
    color: #000000;
    margin-bottom: 0px;
}
.articles-widget .info h3 a {
    color: #fff;
    text-decoration: none;
}
.articles-widget .info h3 a:hover {
    color: #46cbe9 !important;
}
.articles-widget .info p {
    font-weight: 400;
    font-size: 13px;
    line-height: 169%;
    color: var(--color-text);
    margin: 0;
}
.articles-widget .info .bottom {
    margin-top: 5px;
}
.articles-widget .info .bottom .name {
    font-weight: 400;
    font-size: 12px;
    line-height: 154%;
    color: #ebb8d2;
}
.articles-widget .info .bottom .date {
    font-weight: 400;
    font-size: 12px;
    line-height: 154%;
    color: var(--color-text);
}

button.close-nav-btn {
    border: none;
    padding: 0;
    position: absolute;
    top: 15px;
    left: 15px;
    background: none;
    font-size: 25px;
    border: solid 1px #cccccc;
    border-radius: 50px;
    width: 35px;
    height: 35px;
    text-align: center;
    display: none;
    color: var(--color-white);
}

.main-popup-modal .modal-content {
    padding: 40px;
    border-radius: 26px;
    background: var(--color-outer);
    border: 1px solid var(--color-outer-border);
    border-radius: 26px;
}
.main-popup-modal .w-760 {
    max-width: 760px;
}
.main-popup-modal .w-730 {
    max-width: 730px;
}
.main-popup-modal .w-580 {
    max-width: 580px;
}
.main-popup-modal .w-890 {
    max-width: 890px;
}
.main-popup-modal .modal-heads {
    position: relative;
    margin-bottom: 15px;
}
.main-popup-modal .modal-heads .heads {
    text-align: center;
    margin: 0 auto;
    /* max-width: 540px; */
}
.main-popup-modal .modal-heads .heads h4 {
    font-weight: 600;
    font-size: 36px;
    line-height: 130%;
    color: #fff;
    margin: 0 0 10px 0;
}
.main-popup-modal .modal-heads .heads .green {
    color: #009857;
}

.main-popup-modal .modal-heads .heads p {
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    text-align: center;
    color: #fff;
    opacity: 0.4;
    margin: 0;
}
.main-popup-modal .modal-heads button.btn-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    margin: 0;
    background-size: 24px;
    width: 34px;
    height: 34px;
    opacity: 1;
    background: none;
    color: var(--color-white);
    font-size: 34px;
}
.main-popup-modal .modal-body {
    padding-left: 0;
    padding-right: 0;
}

.form-fields {
    margin-bottom: 20px;
}
.form-control {
    display: block;
    width: 100%;
    padding: 10px 18px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    background: rgba(59, 67, 84, 0.4);
    border-radius: 100px;
    background-clip: padding-box;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 54px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:focus {
    color: #fff;
    background-color: transparent;
    border-color: #46cbe9;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-label {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #46cbe9;
}
.form-select {
    display: block;
    width: 100%;
    padding: 10px 18px;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #94979e;
    background: rgba(59, 67, 84, 0.4);
    border-radius: 100px;
    height: 54px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
textarea.form-control {
    border-radius: 10px;
}
.eye-icon {
    right: 20px !important;
}

.radio-timebar {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.radio-timebar input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
}

.radio-timebar label {
    display: inline-block;
    padding: 17px 20px;
    font-size: 16px;
    border: 1px solid #00d770;
    filter: drop-shadow(0px 4px 44px rgba(0, 0, 0, 0.06));
    border-radius: 100px;
    cursor: pointer;
}
.radio-timebar label i {
    font-size: 20px;
    color: #000000;
}
.radio-timebar label img.iconsh {
    display: none;
}

.radio-timebar label:hover {
    background: #00d770;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.06);
    border-radius: 100px;
    border: 1px solid transparent;
}
.radio-timebar label span {
    font-weight: 400;
    font-size: 13px;
    line-height: 154%;
    color: #00d770;
}
.radio-timebar label:hover span {
    color: #000000;
}

.radio-timebar input[type="radio"]:focus + label {
    background: linear-gradient(white, white) padding-box,
        linear-gradient(to right, #017ff4, #01b6df) border-box;
    border: 1px solid transparent;
}

.radio-timebar label.timeadd {
    background: rgba(59, 67, 84, 0.4);
    border: 1px solid #46cbe9;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.06);
    border-radius: 100px;
    font-size: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.radio-timebar label.timeadd i {
    color: var(--color-white);
}

.radio-timebar label:hover img.iconsh,
.radio-timebar input[type="radio"]:focus + label img.iconsh,
.radio-timebar input[type="radio"]:checked + label img.iconsh {
    display: inline-block;
}

.radio-timebar label:hover img.icons,
.radio-timebar input[type="radio"]:focus + label img.icons,
.radio-timebar input[type="radio"]:checked + label img.icons {
    display: none;
}

.radio-timebar input[type="radio"]:checked + label {
    background: #00d770;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.06);
    border-radius: 100px;
    border: 1px solid transparent;
}
.radio-timebar input[type="radio"]:checked + label span {
    color: #000000;
}

.add-date-time {
    position: relative;
}
.add-date-time .add-dt-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.add-date-time button#addtime1 {
    border: 1px solid #46cbe9;
    width: 188px;
    color: #46cbe9;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    display: block;
    padding: 10px 18px;
    background: rgba(59, 67, 84, 0.4);
    border-radius: 100px;
    background-clip: padding-box;
    height: 54px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.add-date-time button#addtime1 span img {
    padding-right: 6px;
}
.add-date-time input#addtime {
    border: 1px solid #00d770;
    padding-left: 48px;
    width: 188px;
}
.add-date-time input#addtime:hover {
    background-color: #00d770;
    color: var(--color-outer);
}
.add-date-time input#addtime:hover::placeholder {
    color: var(--color-outer);
}
.add-date-time input#addtime:hover ~ svg path {
    fill: var(--color-outer);
}

.add-date-time input#addtime::placeholder {
    color: #00d770;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}
button.btn-dt-close {
    position: absolute;
    top: -3px;
    right: -3px;
    border: 1px solid green;
    background: none;
    padding: 2px;
    background-color: var(--color-outer);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-dt-icon {
    transform: rotate(45deg);
}

.mynotes-widget .empty-notes {
    text-align: center;
    margin: 0 auto;
    max-width: 330px;
}
.mynotes-widget .empty-notes .info {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-align: center;
    color: rgba(255, 255, 255, 0.56);
}

.sessions-nav-area {
    margin-bottom: 20px;
}
.sessions-nav-area .nav-col {
    padding: 6px;
    background: var(--color-outer);
    border-radius: 100px;
}
.sessions-nav-area .nav-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.sessions-nav-area .nav-col ul li {
    margin: 0 10px 0 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #fff;
}
.sessions-nav-area .nav-col ul li:last-child {
    margin-right: 0;
}
.sessions-nav-area .nav-col ul li a {
    background: none;
    color: #fff;
    padding: 12px 25px;
    border: none;
    display: block;
}
.sessions-nav-area .nav-col ul li a:hover,
.sessions-nav-area .nav-col ul li a.active {
    background: #46cbe9;
    border-radius: 100px;
    color: var(--color-outer);
}
.sessions-nav-area a.btn {
    padding-top: 16px;
    padding-bottom: 16px;
}

.session-single-area {
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.06);
    border-radius: 24px;
}
.sessions-nav-back {
    margin-bottom: 20px;
}
.sessions-nav-back .btn-back {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: #46cbe9;
}
.sessions-nav-back .btn-back span {
    margin-left: 10px;
    position: relative;
    top: 1px;
}
.sessions-nav-back .btn-back i {
    position: relative;
    top: 2px;
}
.sessions-nav-back .btn-back:hover {
    color: #fff;
}

.session-single-area .card-body {
    padding-top: 25px;
}
.session-single-area .user-photo {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    overflow: hidden;
}
.session-single-area .user-photo img {
    width: 100%;
    height: 100%;
}
.session-single-area .info-text {
    padding-left: 20px;
}
.session-single-area .info-text h3 {
    font-weight: 500;
    font-size: 27px;
    line-height: 154%;
    color: #fff;
    margin-bottom: 5px;
}
.session-single-area .video-area,
.session-single-area .time-area {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 154%;
    color: #fff;
}
.session-single-area .video-area img,
.session-single-area .time-area img {
    margin-right: 10px;
}
.session-single-area .video-area {
    margin-right: 20px;
}

.single-content-area .info-box,
.single-content-area .info-box p {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: #fff;
}

ul.rules-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.rules-list li {
    margin: 0 0 10px 0;
    position: relative;
    padding: 0 0 0 40px;
}
ul.rules-list li span {
    position: absolute;
    left: 0;
    top: 2px;
    width: 23px;
    height: 23px;
    border-radius: 50px;
    content: "";
    background: none;
    border: 1px solid #fff;
    text-align: center;
    line-height: 23px;
    font-weight: 400;
    font-size: 13px;
    color: #fff;
}

.join-session-btn {
    text-align: center;
}
.join-session-btn .btn {
    padding: 18px 120px;
}
.join-session-btn .btn img {
    margin-right: 10px;
}

.timer-section-area {
    background: url(../img/timer-bg-pic.jpg) center no-repeat;
    background-size: cover;
    padding: 30px 25px;
    text-align: center;
    border-radius: 24px;
    margin-bottom: 30px;
}
.timer-section-area h5 {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-white);
    margin: 0 0 5px 0;
}
.timer-section-area p#demo {
    font-weight: 600;
    font-size: 28px;
    line-height: 154%;
    color: var(--color-white);
    margin: 0;
}

.session-video-section .live-video .video {
    border-radius: 30px;
    width: 100%;
}
.session-video-section .video-button {
    margin-top: 25px;
}
.session-video-section .video-button .btn-set {
    margin: 0 15px;
}
.session-video-section .video-button .call-cut {
    position: relative;
    top: 10px;
    margin: 0px;
}

.allmembers-widget .widget-row {
    background: var(--color-outer);
    border: 1px solid var(--color-outer-border);
    border-radius: 12px;
    padding: 10px 25px 10px 10px;
    margin-bottom: 10px;
}
.allmembers-widget .widget-row .photo {
    width: 61px;
}
.allmembers-widget .widget-row .photo img {
    border-radius: 12px;
    width: 61px;
}
.allmembers-widget .widget-row .text-area {
    padding-left: 15px;
}
.allmembers-widget .widget-row .text-area h4 {
    font-weight: 500;
    font-size: 16px;
    line-height: 154%;
    color: var(--color-white);
    margin: 0;
}
.allmembers-widget .widget-row .text-area span {
    font-weight: 400;
    font-size: 12px;
    line-height: 154%;
    color: var(--color-white);
    opacity: 0.4;
}
.allmembers-widget .widget-row .button-area .iconset {
    margin-left: 30px;
}
.allmembers-widget .widget-row .button-area .iconset a {
    background: var(--color-outer);
    border: 1px solid var(--color-outer-border);
    display: block;
    border-radius: 12px;
    padding: 16px 10px;
    width: 52px;
    text-align: center;
}
.allmembers-widget .widget-row .button-area .iconset:first-child {
    margin-left: 0;
}
.chat-messages-widget .friend-chat .chat-box .chat-text {
    background: var(--color-outer-border);
    border-radius: 0px 14px 14px 14px;
    padding: 8px 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: #fff;
}
.chat-messages-widget .friend-chat .chat-box .chat-text small {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: #fbff50;
    margin: 0;
    padding: 0px;
}

.chat-messages-widget .friend-chat,
.chat-messages-widget .your-chat {
    margin-bottom: 6px;
}
.chat-messages-widget .friend-chat .pic,
.chat-messages-widget .friend-chat .pic img {
    width: 32px;
}
.chat-messages-widget .friend-chat .pic img {
    border-radius: 50px;
    margin-top: 15px;
}
.chat-messages-widget .friend-chat .chat-box {
    padding-left: 15px;
}
.chat-messages-widget .your-chat .chat-text {
    background: #46cbe9;
    border-radius: 14px 14px 0px 14px;
    padding: 15px 25px;
    color: var(--color-outer);
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
}

.chat-messages-widget .your-chat {
    padding-left: 47px;
}
.chat-messages-widget .chat-box span {
    display: block;
    font-weight: 400;
    font-size: 10px;
    line-height: 160%;
    color: #fff;
    opacity: 0.4;
    margin-top: 1px;
}
.chat-messages-widget .your-chat span {
    text-align: right;
}

.chat-messages-widget div.msg-box {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 15px 25px;
    border-radius: 0 0 12px 12px;
}
.chat-messages-widget div.msg-box .ip-msg {
    width: 100%;
    font-size: 16px;
    padding: 17px 25px;
    padding-right: 30%;
    color: #fff;
    background: var(--color-outer);
    border: 1px solid var(--color-outer-border);
    border-radius: 60px;
}
.chat-messages-widget div.msg-box span.btn-group {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 34px;
    display: inline-block;
    margin-right: 50px;
}
.chat-messages-widget div.msg-box i.bi-paperclip {
    color: #46cbe9;
    font-size: 22px;
    padding: 0 7px;
}
.chat-messages-widget div.msg-box i.bx-paper-plane {
    color: #46cbe9;
    font-size: 22px;
    padding: 0 7px;
}
.chat-messages-widget .chat-cols {
    padding-bottom: 50px;
}

.modal#writenotes .form-control {
    border-radius: 12px;
}

.w-90 {
    width: 90% !important;
}
.w-80 {
    width: 80% !important;
}
.w-70 {
    width: 70% !important;
}
.btn-center {
    margin: 0 auto;
}

.main-popup-modal .profile-area {
    margin-bottom: 30px;
}
.main-popup-modal .profile-area .user-photo,
.main-popup-modal .profile-area .user-photo img {
    width: 63px;
    height: 63px;
    border-radius: 70px;
    border: 1px solid #6e6e6e;
}
.main-popup-modal .profile-area .info-text h3 {
    font-weight: 500;
    font-size: 22px;
    line-height: 154%;
    color: var(--color-white);
    margin: 0;
}
.main-popup-modal .profile-area .info-text .video-area,
.main-popup-modal .profile-area .info-text .time-area {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 154%;
    color: #fff;
}
.main-popup-modal .profile-area .info-text .video-area img,
.main-popup-modal .profile-area .info-text .time-area img {
    margin-right: 10px;
}
.main-popup-modal .profile-area .info-text {
    padding-left: 10px;
}

.main-popup-modal .feedback {
    text-align: center;
    margin-bottom: 25px;
}
.main-popup-modal .feedback span {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #b4b4b4;
    margin-bottom: 10px;
}
.main-popup-modal .feedback img {
    max-width: 100%;
}

.opps-empty-area {
    text-align: center;
}
.opps-empty-area span {
    display: block;
    font-weight: 400;
    font-size: 17px;
    line-height: 160%;
    text-align: center;
    color: var(--color-white);
}

.video-btns-area {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 25px;
}
.video-btns-area .btn {
    padding: 20px 35px;
    border-radius: 80px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    display: flex;
    align-items: center;
}
.video-btns-area .btn img {
    margin-right: 10px;
}
.video-btns-area .my-favorites {
    border: 1px solid #46cbe9;
    color: #46cbe9;
}
.video-btns-area .my-favorites.active,
.video-btns-area .my-favorites:hover {
    border: 1px solid #46cbe9;
    color: var(--color-outer);
    background: #46cbe9;
}

.video-btns-area .my-favorites img {
    max-width: 24px;
}
.video-btns-area .my-favorites img.iconh {
    display: none;
}
.video-btns-area .my-favorites:hover img.iconh {
    display: inline-block;
}
.video-btns-area .my-favorites:hover img.icon {
    display: none;
}

.video-btns-area .my-watch-list {
    border: 1px solid #46cbe9;
    color: #46cbe9;
    background: none;
    margin-left: 20px;
}
.video-btns-area .my-watch-list:hover {
    border: 1px solid #46cbe9;
    color: var(--color-outer);
    background: #46cbe9;
}
.video-btns-area .my-watch-list img.iconh {
    display: none;
}
.video-btns-area .my-watch-list:hover img.iconh {
    display: inline-block;
}
.video-btns-area .my-watch-list:hover img.icon {
    display: none;
}

.document-session .document {
    margin-bottom: 20px;
    border: 1px solid var(--color-outer-border);
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 10px;
}
.document-session .document .file-icon {
    background: rgba(250, 201, 26, 0.12);
    border-radius: 10px;
    padding: 18px;
}
.document-session .document .info h4 {
    font-weight: 500;
    font-size: 16px;
    line-height: 154%;
    color: #fff;
    margin: 0 0 5px 0;
}
.document-session .document .info {
    font-weight: 400;
    font-size: 10px;
    line-height: 150%;
    color: #a5a7ab;
    padding-left: 15px;
}

.main-video-area {
    margin-bottom: 25px;
}
.main-video-area .video {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
/* .video-js .vjs-tech{
	object-fit: cover;
} */
.main-video-area .video a.play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 99px;
    height: 99px;
    margin-left: -49px;
    margin-top: -49px;
}
.main-video-area .video a.play img {
    width: 100%;
    height: 100%;
}
.main-video-area .video img.thumbnail {
    width: 100%;
    height: auto;
}

.video-discription {
    margin-bottom: 30px;
}
.video-discription .top-title {
    margin-bottom: 3px;
}
.video-discription .top-title h2 {
    font-weight: 600;
    font-size: 26px;
    line-height: 154%;
    color: #46cbe9;
    margin: 0;
}
.rv-shere-btn {
    width: 23px;
    height: 23px;
    margin-right: 10px;
}
.rv-shere-btn button {
    border: none;
    background: none;
    padding: 0;
}
.video-discription .top-title ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.video-discription .top-title ul li {
    margin: 0 0 0 10px;
    padding: 0;
    list-style: none;
    display: inline-block;
}

.video-discription .discription {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: rgba(255, 255, 255, 0.56);
}

.related-videos {
    margin-bottom: 50px;
}
.related-videos h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: var(--color-white);
    margin-bottom: 15px;
}
.related-videos .video-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    height: 245px;
}
.related-videos .video-box a.play {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -30px;
    margin-top: -30px;
    width: 50px;
    height: 50px;
}
.related-videos .video-box a.play img {
    width: 100%;
}
.related-videos .video-box img.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.related-videos .video-box .time-bot {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 20px 25px;
}
.related-videos .video-box .time-bot span {
    font-weight: 500;
    font-size: 17px;
    line-height: 140%;
    color: var(--color-white);
}

.purchase-session {
    text-align: center;
}
.purchase-session button {
    display: inline-block;
    padding: 15px 100px;
    background: #46cbe9;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--color-outer);
    border: solid 1px #46cbe9;
}
.purchase-session button:hover {
    background: none;
    border: solid 1px #46cbe9;
    color: #46cbe9;
}

.mynotes-single .title-area {
    padding-top: 25px;
    margin-bottom: 25px;
}
.mynotes-single .title-area h3 {
    font-weight: 500;
    font-size: 26px;
    line-height: 154%;
    color: var(--color-white);
    margin: 0 0 15px 0;
}
.mynotes-single .title-area .date {
    font-weight: 400;
    font-size: 16px;
    line-height: 154%;
    color: #dba11c;
}

.mynotes-single .content {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: rgba(255, 255, 255, 0.56);
}

.stream-video-area {
    margin-bottom: 35px;
}
.stream-video-area .video {
    overflow: hidden;
    border-radius: 10px;
}
.stream-video-area .video img {
    width: 100%;
    height: auto;
}
.stream-video-area .video-info {
    margin-top: 20px;
    margin-bottom: 25px;
}
.stream-video-area .video-info h4 {
    font-weight: 600;
    font-size: 18px;
    line-height: 154%;
    color: var(--color-white);
    margin: 0;
}
.stream-video-area .video-info .live {
    position: relative;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 154%;
    color: var(--color-white);
    padding: 0 0 0 15px;
}
.stream-video-area .video-info .live:after {
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: #ef444b;
    content: "";
    border-radius: 15px;
}
.stream-video-area .video-info .head {
    margin-bottom: 6px;
}
.stream-video-area .video-info p {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: rgba(255, 255, 255, 0.56);
    opacity: 0.5;
    margin: 0;
}
.stream-video-area .video-control {
    text-align: center;
}
.stream-video-area .video-control img {
    width: 100%;
    height: auto;
}

.video-discription .search {
    margin-bottom: 20px;
}
.video-discription .search input {
    border: 0;
    font-size: 16px;
    color: #fff;
    background: var(--color-outer);
    border: 1px solid var(--color-outer-border);
    border-radius: 10px;
    padding: 16px 15px 16px 25px;
    transition: 0.3s;
    width: 100%;
    font-weight: 200;
}

.video-discription .lists {
    position: relative;
    padding: 0 0 0 30px;
    margin-bottom: 20px;
}
.video-discription .lists span {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: var(--color-white);
}
.video-discription .lists h5 {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: var(--color-white);
    margin: 0 0 10px 0;
}
.video-discription .lists p {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: var(--color-white);
    opacity: 0.46;
}

.feeds-main-section .grid {
    display: flex;
    /* display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fill, minmax(49%,1fr));
	grid-auto-rows: 20px; */
}
.feeds-main-section .feed-loop .content {
    padding: 25px;
}

.feeds-main-section .feed-loop .head {
    margin-bottom: 20px;
}
.feeds-main-section .feed-loop .head .user img {
    border-radius: 16px;
}
.feeds-main-section .feed-loop .head .user,
.feeds-main-section .feed-loop .head .user img {
    width: 70px;
}
.feeds-main-section .feed-loop .head .title {
    padding-left: 15px;
}
.feeds-main-section .feed-loop .head .title h3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 154%;
    color: var(--color-white);
    margin: 0;
}
.feeds-main-section .feed-loop .head .title span {
    font-weight: 400;
    font-size: 12px;
    line-height: 154%;
    color: var(--color-white);
    opacity: 0.4;
}

.feeds-main-section .feed-loop .head .right i {
    font-size: 25px;
    color: #4a4f58;
}
.feeds-main-section .feed-loop .thumbnail {
    margin-bottom: 20px;
}
.feeds-main-section .feed-loop .thumbnail img {
    border-radius: 18px;
    width: 100%;
    height: auto;
}
.feeds-main-section .feed-loop .info {
    font-weight: 400;
    font-size: 16px;
    line-height: 176%;
    color: var(--color-white);
}

.feeds-main-section .feed-loop .bottom-link {
    margin-top: 15px;
}
.feeds-main-section .feed-loop .bottom-link span img {
    margin-right: 5px;
}
.feeds-main-section .feed-loop .bottom-link span {
    font-weight: 400;
    font-size: 16px;
    line-height: 136%;
    color: var(--color-white);
    cursor: pointer;
}
.feeds-main-section .feed-loop .bottom-link .heart-set {
    margin-right: 15px;
}

.feeds-main-section .feed-loop .comment-box-area {
    margin-top: 25px;
}
.feeds-main-section .feed-loop .comment-box-area h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #46cbe9;
    margin-bottom: 15px;
}
.feeds-main-section .feed-loop .comment-box-area .user,
.feeds-main-section .feed-loop .comment-box-area .user img {
    width: 52px;
}
.feeds-main-section .feed-loop .comment-box-area p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 176%;
    color: var(--color-white);
    margin: 0;
}
.feeds-main-section .feed-loop .comment-box-area .user-area {
    margin-bottom: 15px;
}

.feeds-main-section .feed-loop .comment-box-area .head {
    margin-bottom: 7px;
}

.feeds-main-section .comment-box-area .msg-box {
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 15px 0px 0;
    overflow: hidden;
}
.feeds-main-section .comment-box-area .ip-msg {
    width: 100%;
    font-size: 16px;
    padding: 17px 25px;
    padding-right: 65px;
    color: #fff;
    background: var(--color-outer);
    border: 1px solid var(--color-outer-border);
    border-radius: 60px;
    outline: none;
}
.feeds-main-section .comment-box-area span.btn-group {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 32px;
    display: inline-block;
    margin-right: 20px;
}
.feeds-main-section .comment-box-area i.bx-paper-plane {
    color: #46cbe9;
    font-size: 22px;
    padding: 0 7px;
}

.comment-box-area {
    display: none;
    min-height: 400px;
}

body.show-comment .comment-box-area {
    display: block !important;
}

.modal.likesposts h4.title {
    text-align: left;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #46cbe9;
}
.modal.likesposts .heads {
    max-width: 100%;
}

.modal .post-like-user .user-box .pic,
.modal .post-like-user .user-box .pic img {
    width: 52px;
}
.modal .post-like-user .user-box .pic img {
    border-radius: 12px;
}
.modal .post-like-user .user-box {
    margin-bottom: 10px;
}
.modal .post-like-user .user-box:last-child {
    margin-bottom: 0;
}
.modal .post-like-user .user-box span.name {
    font-weight: 500;
    font-size: 18px;
    line-height: 154%;
    color: var(--color-white);
    padding-left: 15px;
}

.upload-post-area {
}
.upload-post-area .drop-image-area {
    background: #404757;
    border-radius: 16px;
    border: 2px dashed #d4dae6;
    padding: 40px 20px;
    text-align: center;
    font-weight: 400;
    font-size: 10px;
    line-height: 176%;
    color: var(--color-white);
    margin-bottom: 15px;
}
.upload-post-area .drop-image-area h4 {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 176%;
    color: var(--color-white);
    margin: 15px 0 0 0;
}
.upload-post-area .drop-image-area h4 span {
    color: #46cbe9;
}

.blog-main-section .blog-loop .content {
    padding: 25px;
}
.blog-main-section .blog-loop .thumnail {
    margin-bottom: 15px;
    border-radius: 18px;
    width: 100%;
    height: 285px;
    overflow: hidden;
}
.blog-main-section .blog-loop .thumnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-main-section .blog-loop .info h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 145%;
    color: var(--color-white);
}
.blog-main-section .blog-loop .info h3 a {
    color: var(--color-white);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s;
}
.blog-main-section .blog-loop .info h3 a:hover {
    color: #46cbe9;
}
.blog-card-content p {
    color: var(--ffffff, #fff);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 28.8px */
    opacity: 0.65;
    margin-bottom: 14px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s;
}
.blog-main-section .blog-loop .info p {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: var(--color-white);
    opacity: 0.65;
}

.blog-main-section .blog-loop .user .pic {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
}
.blog-main-section .blog-loop .user .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-main-section .blog-loop .user .name {
    padding-left: 15px;
}
.blog-main-section .blog-loop .user .name h6 {
    font-weight: 600;
    font-size: 14px;
    line-height: 180%;
    color: #ebb8d2;
    margin: 0;
}
.blog-main-section .blog-loop .user .name span {
    font-weight: 400;
    font-size: 12px;
    line-height: 180%;
    color: var(--color-white);
}

.blog-single-section .blog-single .content {
    padding: 25px;
}
.blog-single-section .blog-single .thumnail {
    margin-bottom: 15px;
}
.blog-single-section .blog-single .info h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 145%;
    color: var(--color-white);
}
.blog-single-section .blog-single .info p {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: var(--color-white);
    opacity: 0.65;
}
.blog-single.card .thumnail {
    width: 100%;
    height: 310px;
    border-radius: 18px;
    overflow: hidden;
}
.blog-single.card .thumnail img.thumb {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-fit: contain;
}
.blog-single-section .blog-single .user .pic {
    width: 46px;
}
.blog-single-section .blog-single .user .pic img {
    border-radius: 60px;
    width: 100%;
}
.blog-single-section .blog-single .user .name {
    padding-left: 15px;
}
.blog-single-section .blog-single .user .name h6 {
    font-weight: 600;
    font-size: 14px;
    line-height: 180%;
    color: #ebb8d2;
    margin: 0;
}
.blog-single-section .blog-single .user .name span {
    font-weight: 400;
    font-size: 12px;
    line-height: 180%;
    color: var(--color-white);
}

.blog-single-section .blog-single .user button.share {
    background: none;
    outline: none;
    border: none;
    font-size: 20px;
    color: #46cbe9;
}

.area-center-area {
    margin: 0 auto;
}
.my-profile-section .card {
    padding: 40px 30px;
}

.my-profile-section .profile-area {
    text-align: center;
}
.my-profile-section .profile-area .photo {
    width: 107px;
    height: 107px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 15px;
    border: solid 4px #fff;
    border-radius: 50%;
}
.my-profile-section .profile-area .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.my-profile-section .profile-area button {
    position: absolute;
    right: -4px;
    bottom: -4px;
    border: none;
    outline: none;
    background: #46cbe9;
    border-radius: 50px;
    padding: 7px;
    width: 25px;
    height: 25px;
    font-size: 25px;
}
.my-profile-section .profile-area button i {
    position: relative;
    left: -7px;
    top: -10px;
}
.my-profile-section .profile-area h3 {
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    color: var(--color-white);
    margin: 0;
}
.my-profile-section .profile-area span.mail {
    font-weight: 400;
    font-size: 14px;
    line-height: 172%;
    color: rgba(255, 255, 255, 0.56);
}

.my-profile-section .category-list {
    margin-top: 20px;
}
.my-profile-section .category-list .top {
    margin-bottom: 10px;
}
.my-profile-section .category-list .top h4 {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: var(--color-white);
    margin: 0;
}
.my-profile-section .category-list .top a.edit-btn {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #46cbe9;
    background: none;
    border: none;
    outline: none;
}
.my-profile-section .category-list .top a.edit-btn:hover {
    color: #fff;
}

.my-profile-section .category-list ul.lists {
    margin: 0;
    padding: 0;
    list-style: none;
}
.my-profile-section .category-list ul.lists li {
    margin: 0 6px 0 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    border-radius: 7px;
}
.my-profile-section .category-list ul.lists li a {
    display: flex;
    border-radius: 7px;
    border-radius: 100px;
    padding: 15px 25px;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    background: #46cbe9;
    border: 1px solid #46cbe9;
    color: var(--color-outer);
    align-items: center;
}
.my-profile-section .category-list ul.lists li a:hover {
    background: #fff;
    border: 1px solid #fff;
}
.my-profile-section .category-list ul.lists li .icon {
    margin-right: 10px;
}

.my-profile-section .profile-form {
    margin-top: 25px;
}

.my-profile-section .profile-form .date {
    background-image: url(../img/calender-icon.png);
    background-position: 96% 48%;
    background-repeat: no-repeat;
}
.my-profile-section .profile-form .gender {
    background-image: url(../img/users-icon.png);
    background-position: 96% 48%;
    background-repeat: no-repeat;
}
.my-profile-section .profile-form .phone {
    background-image: url(../img/cell-icon.png);
    background-position: 96% 48%;
    background-repeat: no-repeat;
}
.my-profile-section .profile-form .years {
    background-image: url(../img/age-icon.png);
    background-position: 96% 48%;
    background-repeat: no-repeat;
}
.my-profile-section .profile-form [type="submit"] {
    margin: 0 auto;
}

.my-subscription-section {
    padding-top: 40px;
}
.my-subscription-section .price-box {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}
.my-subscription-section .box1 {
    background: linear-gradient(
        359.05deg,
        rgba(33, 147, 176, 0.87) 0.81%,
        rgba(109, 213, 237, 0.87) 99.25%
    );
}
.my-subscription-section .box2 {
    background: linear-gradient(
        360deg,
        rgba(117, 127, 154, 0.87) 0%,
        rgba(215, 221, 232, 0.87) 102.33%
    );
}
.my-subscription-section .box3 {
    background: linear-gradient(
        182.63deg,
        rgba(168, 192, 255, 0.87) 0.75%,
        rgba(63, 43, 150, 0.87) 125.79%
    );
}
.my-subscription-section .price-box .area-price {
    background: url(../img/price-area-bg.png) top center no-repeat;
    background-size: cover;
    padding: 30px;
    text-align: center;
    height: 100%;
}
.my-subscription-section .price-box .head {
    position: relative;
    padding-top: 60px;
}
.my-subscription-section .price-box span.save {
    padding: 5px 8px;
    position: absolute;
    top: 20px;
    right: 15px;
    background: var(--color-white);
    border-radius: 4px;
    font-size: 12px;
    line-height: 15px;
    color: #585757;
}
.my-subscription-section .price-box .head h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 140%;
    margin: 20px 0 0 0;
    word-wrap: break-word;
}
.my-subscription-section .box1 .head h2 {
    color: #35738d;
}
.my-subscription-section .box2 .head h2 {
    color: #6b8091;
}
.my-subscription-section .box3 .head h2 {
    color: #575ccf;
}
.my-subscription-section .price-box .middle {
    margin-top: 80px;
    margin-bottom: 120px;
}
.my-subscription-section .price-box .middle .price {
    font-weight: 500;
    font-size: 40px;
    line-height: 160%;
    color: var(--color-white);
    word-break: break-word;
}
.my-subscription-section .price-box .middle .price span {
    display: inline-block;
    font-weight: 400;
    font-size: 25px;
    line-height: 160%;
    text-align: center;
    color: rgba(255, 255, 255, 0.76);
}
.my-subscription-section .price-box .middle p {
    font-weight: 500;
    font-size: 20px;
    line-height: 160%;
    color: var(--color-white);
}
.my-subscription-section .price-box a.btn-subscribe {
    border: 1.5px solid var(--color-white);
    border-radius: 100px;
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: var(--color-white);
    padding: 12px 25px;
    display: block;
}
.my-subscription-section .price-box a.btn-subscribe:hover,
.my-subscription-section .price-box a.active {
    border: 1.5px solid var(--color-white);
    background: var(--color-white);
    color: #01c4da;
}

.my-purchase-section {
    margin-top: 40px;
}

.reviewrating-session .review-loops {
    margin-bottom: 30px;
}
.reviewrating-session .review-loops:last-child {
    margin-bottom: 0;
}
.reviewrating-session .review-loops .pic {
    width: 60px;
    height: 60px;
    border-radius: 100%;
}
.reviewrating-session .review-loops .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reviewrating-session .review-loops .info {
    padding-left: 20px;
}
.reviewrating-session .review-loops .info h3 {
    font-weight: 500;
    font-size: 15px;
    line-height: 154%;
    color: var(--color-white);
    margin: 0 0 10px 0;
}
.reviewrating-session .review-loops .info span.date {
    font-weight: 400;
    font-size: 12px;
    line-height: 154%;
    color: #646464;
}
.reviewrating-session .review-loops .info span.date img {
    margin-right: 10px;
}

.reviewrating-session .review-loops .head {
    margin-bottom: 10px;
}
.reviewrating-session .review-loops p {
    font-weight: 400;
    font-size: 14px;
    line-height: 176%;
    color: var(--color-white);
    margin: 0;
}

/** **/
.reqrd-switch .switch {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 37px;
}

.reqrd-switch .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.reqrd-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border: 1px solid #ffffff40;
    background: #f4f4f4;
}

.reqrd-switch .slider:before {
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    left: 4px;
    bottom: 3px;
    background-color: var(--color-white);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
}

.reqrd-switch input:checked + .slider:before {
    -webkit-transform: translateX(39px);
    -ms-transform: translateX(39px);
    transform: translateX(39px);
}

.reqrd-switch .slider.round {
    border-radius: 34px;
}
.reqrd-switch .slider.round:before {
    border-radius: 50%;
}
.reqrd-switch input:checked + .slider.round {
    background: #46cbe9;
}

/** **/

.notofication-set input {
    opacity: 0;
    width: 0;
    height: 0;
}
.notofication-set input:checked + .box {
}
.notofication-set label {
    display: block;
}
.notofication-set .box {
    background: var(--color-outer);
    border: 1px solid var(--color-outer-border);
    border-radius: 12px;
    padding: 5px 15px 5px 5px;
    margin-bottom: 10px;
}
.notofication-set .box .icon {
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.notofication-set .box h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 154%;
    color: var(--color-white);
    margin: 0;
    padding: 0 0 0 15px;
}
.notofication-set .check-are i {
    width: 27px;
    height: 27px;
    border: solid 2px #bababa;
    border-radius: 6px;
    text-align: center;
    line-height: 23px;
    font-size: 20px;
    color: var(--color-outer);
}
.notofication-set input:checked + .box .check-are i {
    border: solid 2px #46cbe9;
    font-size: 20px;
    background: #46cbe9;
    color: var(--color-outer);
}

.notofication-set .box .bg1 {
    background: linear-gradient(
        281.87deg,
        rgba(1, 196, 218, 0.17) -12.5%,
        rgba(1, 119, 248, 0.17) 103.41%
    );
}
.notofication-set .box .bg2 {
    background: rgba(105, 104, 232, 0.12);
}
.notofication-set .box .bg3 {
    background: rgba(235, 184, 210, 0.2);
}

.savecards-session .cards-box {
    margin-bottom: 15px;
}
.savecards-session .cards-box .cards {
    border-radius: 12px;
}
.savecards-session .cards-box .logo {
    position: relative;
    padding: 15px 20px;
    background: url(../img/visa-logo-large.png) 95% 7px no-repeat;
}
.savecards-session .cards-box .deatils {
    padding: 20px;
}
.savecards-session .cards-box .number {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--color-white);
    margin-bottom: 15px;
}
.savecards-session .cards-box .bottom .name {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--color-white);
}
.savecards-session .cards-box .bottom .name {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--color-white);
}
.savecards-session .cards-box .bottom .valid {
    font-weight: 700;
    font-size: 5px;
    line-height: 7px;
    color: var(--color-white);
    margin-right: 7px;
    text-align: center;
    text-transform: uppercase;
}
.savecards-session .cards-box .bg1 {
    background: linear-gradient(360deg, #757f9a 0%, #d7dde8 102.33%);
}
.savecards-session .cards-box .bg2 {
    background: linear-gradient(182.63deg, #a8c0ff 0.75%, #3f2b96 125.79%);
}

.transaction-area .subscription {
    background: var(--color-outer);
    border: 1px solid var(--color-outer-border);
    border-radius: 12px;
    padding: 6px 15px 6px 6px;
    margin-bottom: 10px;
}
.transaction-area .subscription .icon {
    border-radius: 12px;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.transaction-area .subscription .icon .icon-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.transaction-area .subscription .icon .icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.transaction-area .subscription .info {
    padding-left: 15px;
}
.transaction-area .subscription .info h2 {
    font-weight: 500;
    font-size: 16px;
    line-height: 154%;
    margin: 0;
}
.transaction-area .subscription .info .renewal {
    font-weight: 400;
    font-size: 12px;
    line-height: 154%;
    color: var(--color-white);
    opacity: 0.4;
}
.transaction-area .subscription .right {
    text-align: right;
}
.transaction-area .subscription .right h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 154%;
    margin: 0;
}
.transaction-area .subscription .right span {
    font-weight: 400;
    font-size: 12px;
    line-height: 154%;
    color: var(--color-white);
    opacity: 0.4;
}
.transaction-area .subscription .red h4 {
    color: #f15454;
}
.transaction-area .subscription .green h4 {
    color: #00d770;
}

.transaction-area .box1 .info h2 span {
    background: linear-gradient(359.05deg, #2193b0 0.81%, #6dd5ed 99.25%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.transaction-area .box2 .info h2 span {
    background: linear-gradient(182.63deg, #a8c0ff 0.75%, #3f2b96 125.79%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.transaction-area .box3 .info h2 span {
    background: linear-gradient(359.05deg, #2193b0 0.81%, #6dd5ed 99.25%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.transaction-area .box1 .icon {
    background: #4c869f;
}
.transaction-area .box2 .icon {
    background: linear-gradient(182.63deg, #a8c0ff 0.75%, #3f2b96 125.79%);
}
.transaction-area .box3 .icon {
    background: #cddde4;
}

/** **/

.interested-set .switch {
    margin-bottom: 20px;
}
.interested-set input {
    opacity: 0;
    width: 0;
    height: 0;
    display: none;
}
.interested-set label {
    display: block;
}
.interested-set .btn-box {
    border: 2px solid #46cbe9;
    border-radius: 100px;
    padding: 15px 25px;
    /* height: 66px; */
}
.interested-set .btn-box img.iconsh {
    display: none;
}
.interested-set .switch img {
    width: 50px;
    max-height: 35px;
    object-fit: contain;
}
.interested-set .btn-box span {
    font-weight: 500;
    font-size: 20px;
    line-height: 160%;
    color: #46cbe9;
    padding-left: 5px;
}

.interested-set input:checked + .btn-box {
    background: #46cbe9;
}
.interested-set input:checked + .btn-box span {
    color: var(--color-outer);
}
.interested-set input:checked + .btn-box img.iconsh {
    display: inline-block;
}
.interested-set input:checked + .btn-box img.icons {
    display: none;
}

.interested-box .card-body {
    padding: 45px 25px;
}
.interested-box .interested-set {
    margin: 0 auto;
    max-width: 90%;
}

/** Login Pages Style **/

.login-pages {
    background: url(../img/login-bg-pic.jpg) center no-repeat;
    background-size: cover;
}

@media (min-width: 1800px) {
    .login-pages {
        background-size: 180%;
    }
}

.login-pages:after {
    position: fixed;
    left: 0;
    top: 0;
    background: var(--color-body);
    opacity: 0.64;
    content: "";
    bottom: 0;
    right: 0;
}

header.header-login {
    background: var(--color-body);
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.22);
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
    z-index: 2;
}
.header-login .logo {
    max-width: 200px;
    max-height: 100px;
}

.header-login .btn-area a {
    mix-blend-mode: normal;
    border-radius: 100px;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    text-align: center;
    padding: 10px 40px;
}
.header-login .btn-area a.signin,
.header-login .btn-area a.signup {
    border: 1px solid #46cbe9;
    color: #46cbe9;
}
.header-login .btn-area a.signup {
    /* border: 1px solid #46cbe9; */
    /* background: #46cbe9; */
    /* color: var(--color-body); */
    margin-left: 5px;
}
.header-login .btn-area a.signin:hover,
.header-login .btn-area a.signup:hover,
.header-login .btn-area a.signin.active,
.header-login .btn-area a.signup.active {
    border: 1px solid #46cbe9;
    background: #46cbe9;
    color: var(--color-body);
}

main.main-login {
    position: relative;
    padding-top: 100px !important;
    margin: 0 !important;
    z-index: 1;
}

.form-area .form-set {
    margin-bottom: 15px;
}
.form-area .form-set .form-field {
    background: var(--color-outer);
    border: 1px solid var(--color-outer-border);
    border-radius: 100px;
    width: 100%;
    padding: 0 75px 0 30px;
    height: 65px;
    line-height: 65px;
    font-weight: 300;
    font-size: 16px;
    line-height: 160%;
    color: var(--color-white);
}

.form-area .form-set .name {
    background: url(../img/login/user-icon.png) 95% 16px no-repeat
        var(--color-outer);
}
.form-area .form-set .mail {
    background: url(../img/login/mail-icon.png) 95% 23px no-repeat
        var(--color-outer);
}
.form-area .form-set .pass {
    background: url(../img/login/lock-icon.png) 95% 16px no-repeat
        var(--color-outer);
}

.main-login-form {
    max-width: 600px;
}
.main-login-form .box {
    background: rgba(13, 17, 28, 0.35);
    box-shadow: inset 40.5px -40.5px 40.5px rgba(0, 0, 0, 0.2),
        inset -40.5px 40.5px 40.5px rgba(96, 103, 123, 0.2);
    border-radius: 16px;
    padding: 35px;
}
.main-login-form .box .heading {
    margin-bottom: 30px;
}
.main-login-form .box .heading h2 {
    font-weight: 400;
    font-size: 40px;
    line-height: 131%;
    color: var(--color-white);
    margin: 0;
}
.main-login-form .box .heading h2 span {
    font-weight: 500;
    color: #46cbe9;
}
.main-login-form .box .heading p {
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    color: #7c7c7c;
    margin: 0;
}
.main-login-form .keep-logged {
    margin-bottom: 20px;
    margin-top: 10px;
}
.main-login-form .keep-logged .left {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: var(--color-white);
}
.main-login-form .keep-logged a.forgot {
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    text-align: right;
    color: #46cbe9;
    text-decoration: none;
}
.main-login-form .keep-logged a.forgot:hover {
    color: #fff;
    text-decoration: none;
}
.main-login-form .keep-logged .left input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.forgot-modal .modal-body form {
    margin: 0 auto;
    max-width: 480px;
}

.main-login-form .other-accounts {
    text-align: center;
}
.main-login-form .other-accounts {
    padding-top: 30px;
}
.main-login-form .other-accounts h6 {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: var(--color-white);
    margin: 0 0 25px 0;
}
.main-login-form .other-accounts ul.links {
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-login-form .other-accounts ul.links li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
}
.main-login-form .other-accounts ul.links li a {
    display: block;
    background: var(--color-outer);
    border: 1px solid var(--color-outer-border);
    border-radius: 100px;
    padding: 15px 40px;
}
.main-login-form .other-accounts .account {
    margin-top: 30px;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    text-align: center;
    color: var(--color-white);
}
.main-login-form .other-accounts .account a {
    font-weight: 700;
    font-size: 18px;
    line-height: 160%;
    color: #46cbe9;
    text-decoration: none;
}
.main-login-form .other-accounts .account a:hover {
    color: #fff;
    text-decoration: none;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
header.header-login .navbar {
    padding: 0;
}

header.header-login .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

header.header-login .navbar li {
    position: relative;
}

header.header-login .navbar a,
header.header-login .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 20px;
    font-weight: 300;
    font-size: 20px;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

header.header-login .navbar a i,
header.header-login .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

header.header-login .navbar a:hover,
header.header-login .navbar .active,
header.header-login .navbar .active:focus,
header.header-login .navbar li:hover > a {
    color: #46cbe9;
}

header.header-login .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

header.header-login .navbar .dropdown ul li {
    min-width: 200px;
}

header.header-login .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #151515;
    font-weight: 400;
}

header.header-login .navbar .dropdown ul a i {
    font-size: 12px;
}

header.header-login .navbar .dropdown ul a:hover,
header.header-login .navbar .dropdown ul .active:hover,
header.header-login .navbar .dropdown ul li:hover > a {
    background-color: #ffc451;
}

header.header-login .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

header.header-login .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

header.header-login .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    header.header-login .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    header.header-login .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
header.header-login .mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    header.header-login .mobile-nav-toggle {
        display: block;
    }

    header.header-login .navbar ul {
        display: none;
    }
}

header.header-login .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

header.header-login .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

header.header-login .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

header.header-login .navbar-mobile a,
header.header-login .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #151515;
}

header.header-login .navbar-mobile a:hover,
header.header-login .navbar-mobile .active,
header.header-login .navbar-mobile li:hover > a {
    color: #151515;
    background-color: #ffc451;
}

header.header-login .navbar-mobile .getstarted,
header.header-login .navbar-mobile .getstarted:focus {
    margin: 15px;
}

header.header-login .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

header.header-login .navbar-mobile .dropdown ul li {
    min-width: 200px;
}

header.header-login .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
    color: #151515;
}

header.header-login .navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

header.header-login .navbar-mobile .dropdown ul a:hover,
header.header-login .navbar-mobile .dropdown ul .active:hover,
header.header-login .navbar-mobile .dropdown ul li:hover > a {
    background-color: #ffc451;
}

header.header-login .navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

.chat-messages #chat-box {
    height: 730px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

form#chat-form .msg-box {
    background-color: var(--color-outer);
}

.chat-box .date {
    font-size: 12px;
}

/* chatbot */
#easy_chat {
    max-width: 350px;
}

.easy_chat_btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 65px;
    border-radius: 50%;
    overflow: hidden;
    padding: 0;
    z-index: 999;
}

#easy_chat .dropdown-menu {
    padding: 0;
    border-radius: 10px;
}

#easy_chat .card {
    margin-bottom: 0;
}

#easy_chat .chat-messages {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: none;
}

#easy_chat .msg-box {
    background-color: var(--color-outer);
    border-radius: 0px 0px 10px 10px;
}

/* amaan */
.my_chabot_wrapper button {
    color: inherit;
    background-color: transparent;
    border: 0;
    outline: 0 !important;
    cursor: pointer;
}

/* .my_chabot_wrapper .chatbox-open,
.my_chabot_wrapper .chatbox-close {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 52px;
	height: 52px;
	color: #fff;
	background-color: #0360a5;
	background-position: center center;
	background-repeat: no-repeat;
	box-shadow: 12px 15px 20px 0 rgba(46, 61, 73, 0.15);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
} */

.my_chabot_wrapper .chatbox-open,
.my_chabot_wrapper .chatbox-close {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 52px;
    height: 52px;
    color: #fff;
    background-color: #0360a5;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 12px 15px 20px 0 rgba(46, 61, 73, 0.15);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    z-index: 999;
}

.my_chabot_wrapper .chatbox-open {
    margin: 16px;
}

.my_chabot_wrapper .chatbox-close {
    display: none;
    margin: 16px 84px 16px 16px;
}

.my_chabot_wrapper textarea {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    height: 24px;
    padding: 0 8px;
    font-family: inherit;
    font-size: 16px;
    line-height: 24px;
    color: #888;
    border: 0;
    outline: 0 !important;
    resize: none;
    overflow: hidden;
}

.my_chabot_wrapper textarea::placeholder {
    color: #888;
}

.my_chabot_wrapper .chatbox-popup,
.my_chabot_wrapper .chatbox-panel {
    display: none;
    position: fixed;
    box-shadow: 5px 5px 25px 0 rgba(46, 61, 73, 0.2);
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid var(--color-outer-border);
}

.my_chabot_wrapper .chatbox-popup {
    bottom: 84px;
    right: 16px;
    width: 300px;
    height: auto;
    z-index: 999;
}

/* .my_chabot_wrapper .chatbox-popup__header,
.my_chabot_wrapper .chatbox-panel__header {
	box-sizing: border-box;
	display: flex;
	width: 100%;
	padding: 16px;
	color: #46CBE9;
	background-color: var(--color-outer);
	align-items: center;
	justify-content: space-around;
	gap: 15px;
} */
.my_chabot_wrapper .chatbox-popup__header,
.my_chabot_wrapper .chatbox-panel__header {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    padding: 16px;
    color: #46cbe9;
    background-color: var(--color-outer);
    align-items: center;
    justify-content: space-around;
    gap: 15px;
    border-radius: 8px 8px 0px 0px;
    border-bottom: 1px solid var(--color-outer-border);
}

.my_chabot_wrapper .chatbox-popup__avatar {
    margin-top: -32px;
    background-color: var(--color-outer);
    border: 5px solid var(--color-outer-border);
    border-radius: 50%;
}

.my_chabot_wrapper .chatbox-popup__main,
.my_chabot_wrapper .chatbox-panel__main {
    box-sizing: border-box;
    width: 100%;
    padding: 32px 16px;
    line-height: 24px;
    color: #888;
    background-color: var(--color-outer);
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: none;
}

.my_chabot_wrapper .chatbox-popup__footer,
.my_chabot_wrapper .chatbox-panel__footer {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    padding: 16px;
    border-top: 1px solid var(--color-outer-border);
    align-items: center;
    justify-content: space-around;
    background-color: var(--color-outer);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.my_chabot_wrapper .chatbox-panel {
    top: 0;
    right: 0;
    bottom: 0;
    width: 377px;
}

.my_chabot_wrapper .friend-chat {
    margin-bottom: 15px;
}

.my_chabot_wrapper .friend-chat .pic {
    width: 32px;
}

.my_chabot_wrapper .friend-chat .pic img {
    border-radius: 50px;
    margin-top: 15px;
    width: 32px;
}

.my_chabot_wrapper .friend-chat .chat-box {
    padding-left: 0px;
}

.my_chabot_wrapper .friend-chat .chat-box .chat-text {
    background: var(--color-outer-border);
    border-radius: 0px 12px 12px 12px;
    padding: 12px 15px;
    font-weight: 400;
    font-size: 12px;
    line-height: normal;
    color: #fff;
}

.my_chabot_wrapper .chat-box .date {
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
    color: #fff;
    opacity: 0.4;
    margin-top: 3px;
}

.my_chabot_wrapper .your-chat {
    padding-left: 47px;
    margin-bottom: 15px;
}

.my_chabot_wrapper .your-chat .chat-text {
    background: #46cbe9;
    border-radius: 12px 12px 0px 12px;
    padding: 12px 15px;
    color: #000000;
    font-weight: 400;
    font-size: 12px;
    line-height: normal;
}

.my_chabot_wrapper .your-chat .date {
    text-align: end;
}

.my_chabot_wrapper .msg-box .ip-msg {
    width: 100%;
    font-size: 14px;
    padding: 10px 18px;
    color: #fff;
    background: var(--color-outer);
    border: 1px solid var(--color-outer-border);
    border-radius: 25px;
}
.akr-header .navbar,
.akt-togl {
    display: none !important;
}

.my-subscription-section .price-box .area-price {
    position: relative;
}
.my-subscription-section .price-box .area-price .bot {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

section.my-subscription-section .area-center-area .row .col-md-4 {
    margin-bottom: 20px;
}

/* chat-css */
.akr-card-profile {
    padding-top: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid #525252;
    margin-bottom: 15px;
}
.akr-card-profile-pic {
    gap: 16px;
}
.akr-card-profile-pic .card-profile-dp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--color-outer-border);
    display: flex;
    align-items: center;
    justify-content: center;
}
.akr-card-profile-pic .card-profile-dp img.img-fluid {
    height: 100%;
    max-width: fit-content;
}
.akr-profile-name {
    color: #fff;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}
.akr-profile-status {
    color: #30c39e;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 19.2px */
}
.emoji-groupchat {
    position: absolute;
    left: 50px;
    top: 32px;
}
#chat-form input.ip-msg {
    padding-left: 75px !important;
}
.emoji-groupchat-attch {
    position: absolute;
    left: 75px;
    top: 32px;
}
.emoji-groupchat-attch img {
    max-width: 16px;
}

.akr-chat-side-bar {
    border-radius: 10px;
    background: var(--color-outer);
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.06);
    height: 880px;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}
.card.chat-messages-widget {
    height: 880px;
}
.akr-chat-search-box {
    padding: 16px;
}
.akr-sidebar-search {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}
.akr-sidebar-search input {
    border: 0;
    font-size: 16px;
    color: #fff;
    background: var(--color-outer);
    border: 1px solid var(--color-outer-border);
    border-radius: 100px;
    padding: 15px 15px 15px 50px;
    transition: 0.3s;
    width: 100%;
    font-weight: 200;
}
.akr-sidebar-search button {
    border: 0;
    padding: 0;
    margin-left: 0;
    position: absolute;
    left: 23px;
    background: none;
}
.akr-sidebar-search button i {
    color: var(--color-white);
}
.akr-online-member {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding: 16px;
}
.akr-online-member.active {
    background-color: #2c3036;
}
.akr-online-member.akr-border-radius {
    border-bottom-left-radius: 13px;
    border-bottom-right-radius: 13px;
}
.akr-online-member-dp {
    max-width: 45px;
    height: 45px;
    background-color: var(--color-outer-border);
    border-radius: 50%;
    overflow: hidden;
    width: -webkit-fill-available;
    display: flex;
    align-items: center;
    justify-content: center;
}
.akr-online-member-dp img.img-fluid {
    height: 100%;
    max-width: fit-content;
}
.akr-online-member-dpname-txt {
    color: #fff;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 25.6px */
    margin-bottom: 8px;
}
.akr-online-member-dpname-content {
    color: #646464;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 23.4px */
}
.akr-online-member-time {
    color: #ccc;
    font-family: Poppins;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    position: absolute;
    top: 16px;
    right: 16px;
}

/* interested-categories */
form.select-your-interested-cat {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    max-width: 546px;
    margin: auto;
}

form.select-your-interested-cat .checkbox-group {
    position: relative;
}

form.select-your-interested-cat input[type="checkbox"] {
    display: none;
}

form.select-your-interested-cat label {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #46cbe9;
    padding: 20px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 261px;
    height: 74px;
    color: #46cbe9;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 32px */
}

form.select-your-interested-cat input[type="checkbox"]:checked + label {
    background-color: #46cbe9;
    color: #000000;
}
form.select-your-interested-cat
    input[type="checkbox"]:checked
    + label
    svg
    path {
    fill: black !important;
}

form.select-your-interested-cat .submit-btn {
    width: 100%;
    margin-top: 50px;
    padding: 17px;
    border-radius: 30px;
    border: none;
    background-color: #22d3ee;
    cursor: pointer;
    color: var(--color-outer);
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.akr-otp-form .box .heading {
    text-align: center;
}
.akr-otp-form #otp.inputs {
    gap: 24px;
}
.akr-otp-form #otp.inputs input.otp-input {
    width: 66px;
    height: 63px;
}
.re-send-otp {
    color: #46cbe9;
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 28.8px */
    margin: 20px 0px;
}
.card.mynotes-single .title-area span.date img {
    padding-right: 10px;
}
.user-drop-nav .profile-pic {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
}
.user-drop-nav .profile-pic img {
    width: 100%;
    height: 100%;
}
.emojionearea .emojionearea-editor {
    color: #fff !important;
}
.your-chat .chat-text .chat-attachment {
    /* background-color: #94eafd; */
    padding: 5px;
    margin-bottom: 3px;
    border-radius: 6px;
}
.friend-chat .chat-text .chat-attachment {
    /* background-color: #9096a3; */
    padding: 5px;
    margin-bottom: 3px;
    border-radius: 6px;
}
.akr-pandding-smg {
    text-align: center;
    background-color: #46cbe9;
    color: #000;
    width: max-content;
    display: block;
    padding: 3.6px 6px;
    border-radius: 13.2px;
    min-height: 12px;
    min-width: 18px;
    float: inline-end;
    margin-top: 5px;
}

.akr-live-courses .video-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    height: 245px;
}
.akr-live-courses .video-box a.play {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -30px;
    margin-top: -30px;
    width: 50px;
    height: 50px;
}
.akr-live-courses .video-box a.play img {
    width: 100%;
}
.akr-live-courses .video-box .time-bot {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 20px 25px;
}
.akr-live-courses .video-box img.thumbnail {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.akr-live-courses .owl-1 .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.akr-live-courses .owl-1 .owl-dots button.owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d9d9d9;
}
.akr-live-courses .owl-1 .owl-dots button.owl-dot.active {
    background-color: #46cbe9;
}
.akr-live-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 6px 8px;
    border-radius: 12px;
    background-color: #412b2b;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 15px */
}
.akr-live-btn img {
    max-width: 9px;
    margin-right: 7px;
}
.course-p-and-f-btn {
    border-radius: 4px;
    padding: 2px 11px;
    color: #000;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.course-p-and-f-btn.free-course-btn {
    background-color: #00d770;
}
.course-p-and-f-btn.paid-course-btn {
    background-color: #ffad00;
}
.courses-right-area {
    display: flex;
    align-items: center;
    gap: 30px;
}
.mentor-side-session .mentor-section {
    padding: 16px 24px;
}
.sr-accept-reject-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}
.sr-buttons {
    padding: 15px;
    border: 1.6px solid #46cbe9;
    border-radius: 24px;
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: #46cbe9;
    background-color: var(--color-outer);
    width: 120px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sr-buttons:hover,
.sr-buttons.active {
    background: #46cbe9;
    color: var(--color-outer);
}

.mentor-side-session .mentor-section .right-area {
    padding: 0px;
}
nav.header-nav li.chat-nav .nav-icon span.chat-badge {
    position: absolute;
    right: 7px;
    top: -3px;
    background-color: #fe3d00;
    padding: 1px 5px;
    border-radius: 50%;
    font-size: 10px;
    line-height: normal;
    min-width: 17px;
}
/* Musaif */

#mk-chatbot {
    padding: 0 15px 20px 15px;
}

#mk-chatbot .chat-text {
    border-radius: 0px 6px 6px 6px;
    padding: 8px 15px;
    font-size: 13px;
    line-height: 140%;
}

#mk-chatbot .your-chat .chat-text {
    border-radius: 6px 6px 0px 6px;
}

#mk-chatbot input.ip-msg {
    padding-left: 30px !important;
}

#mk-chatbot #chatbotinput:focus {
    outline: none;
    box-shadow: 0px 0px 4px 2px rgba(70, 203, 233, 0.5);
}

.please-chat-first {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.please-chat-first img.please-chat-img {
    max-width: 150px;
    margin-bottom: 10px;
}
.please-chat-first h3 {
    color: gray;
}
.sub-edit-pass-btn-group button.btn-blue-small {
    background-color: #46cbe9;
    color: var(--color-body);
    width: 70%;
}
#updatepasswordform label {
    margin-bottom: 6px;
}
#updatepasswordform .form-control {
    color: #fff;
    padding: 10px 20px;
}
#updatepasswordform .form-control:focus {
    background: none;
}
.cat-area {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
    margin-bottom: 14px;
}
.edit-area {
    margin-bottom: 14px;
}
.edit-area a.btn.btn-edit-area {
    color: #46cbe9;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
    padding: 0;
}
.c-a-e-area-buttos-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cat-and-edit-area input {
    opacity: 0;
    width: 0;
    height: 0;
    display: none;
}
.cat-and-edit-area label {
    display: block;
}
.cat-and-edit-area .btn-box {
    border: 2px solid #46cbe9;
    border-radius: 100px;
    min-width: 188px;
    height: 53.303px;
    padding: 10px;
}
.cat-and-edit-area .btn-box img.iconsh {
    display: none;
}
.cat-and-edit-area .btn-box img {
    max-width: 20px;
}
.cat-and-edit-area .btn-box span {
    color: #46cbe9;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 22.4px */
    padding-left: 5px;
}
.cat-and-edit-area input:checked + .btn-box {
    background: #46cbe9;
}
.cat-and-edit-area input:checked + .btn-box span {
    color: var(--color-outer);
}
.cat-and-edit-area input:checked + .btn-box img.iconsh {
    display: inline-block;
}
.cat-and-edit-area input:checked + .btn-box img.icons {
    display: none;
}

/* agora */
#participants .widget-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

#participants .widget-row .left-area .photo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
}

#participants .widget-row .button-area .iconset a {
    padding: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
}

#mentor-container .video-button .btn-set {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(
        90deg,
        rgba(1, 119, 248, 0.2),
        rgba(1, 196, 218, 0.2)
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

#mentor-container .video-button .btn-set.call-cut {
    background: none;
    width: unset;
    height: unset;
}

/* video */

#live-video {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
#live-video .live-vid-buttons {
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 9999;
}
#live-video .live-vid-buttons .lv-btn-group {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    /* background: linear-gradient(
        90deg,
        rgba(1, 119, 248, 0.2),
        rgba(1, 196, 218, 0.2)
    ); */
    background: linear-gradient(90deg, rgb(0 0 0 / 10%), rgb(29 35 46));
    display: flex;
    align-items: center;
    justify-content: center;
}
#live-video .user-profile-video-group {
    max-width: 200px;
    max-height: 200px;
    position: absolute;
}
.s-bar-v-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.accordion.faqAccordion .accordion-header,
.accordion.faqAccordion .accordion-header .accordion-button {
    color: var(--color-white);
    background-color: var(--color-outer);
    border-color: var(--color-outer-border);
    border-width: 2px;
}
.accordion.faqAccordion .accordion-item {
    color: var(--color-white);
    background-color: var(--color-body);
    border-color: var(--color-outer-border);
    border-width: 2px;
}

.profileOuterBox {
    position: relative;
    margin: 0px 0px 20px 0px;
    border-color: var(--color-dark-blue);
    border-width: 2px;
    border-style: solid;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s;
}

.profileOuterBox.active,
.profileOuterBox:hover {
    border-color: var(--color-link);
    border-radius: 0px;
}

.profileOuterBox img {
    border-radius: 3px;
    transition: all 0.3s;
}

.profileOuterBox.active::after {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 9;
    content: "\2713"; /* Unicode for check mark ✔ */
    font-size: 16px;
    color: var(--color-white);
    background: var(--color-body);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profileOuterBox.active img,
.profileOuterBox:hover img {
    border-radius: 0px;
}

.akrDropdown .dropdown-menu {
    background-color: var(--color-outer);
}
.akrDropdown .dropdown-menu li a {
    color: var(--color-white);
}
.akrDropdown .dropdown-menu li a:hover,
.akrDropdown .dropdown-menu li a.active {
    background-color: transparent;
    color: var(--color-title);
}
