@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

:root {
    --theme: #364691;
    --bg-theme: #364691;
    --bg-light-theme: #F4F6FF;
    --text-theme: #364691;
    --text-cs-black: #000000;
    --text-cs-white: #ffffff;
    --rounded-theme: 8px;
    --inp-text-placeholder: #AFAFAF;
    --btn-primary-hover: #6368a0;
    --section-padding: 80px;
    --section-border-color: rgba(221, 221, 221, 1);
    --bg-logo-light-theme: rgba(66, 95, 236, 0.07);
    --bg-switch-color: rgba(242, 244, 253, 1);
    --bg-btn-color: rgba(211, 70, 69, 1);
}

a {
    text-decoration: none;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item.active i,
.dropdown-item:active i {
    color: #fff;
    text-decoration: none;
    background-color: var(--theme);
}

/* Start Text Color */
.text-primary {
    color: var(--bg-theme) !important;
}

.text-cs-green {
    color: #55B45A;
}

.text-cs-red {
    color: #EB2027;
}

.load {
    color: var(--arrow-icon-color);
    font-size: 30px !important;
    display: inline-block;
    line-height: normal;
    animation: rotate 1s linear infinite;
    font-size: 20px;
    text-align: center;
}

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

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


.show-password i {
    position: absolute;
    top: 50px;
    right: 10px;
    cursor: pointer;
    display: none;
}

.hide-password i {
    position: absolute;
    top: 50px;
    right: 10px;
    cursor: pointer;
}
/* End Text Color */

/* Start Font Size */
.fs-10 {
    font-size: 10px;
}

.fs-11 {
    font-size: 11px;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-17 {
    font-size: 17px;
}

.fs-18 {
    font-size: 18px;
}

.fs-19 {
    font-size: 19px;
}

.fs-20 {
    font-size: 20px;
}

.fs-21 {
    font-size: 21px;
}

.fs-22 {
    font-size: 22px;
}

.fs-23 {
    font-size: 23px;
}

.fs-24 {
    font-size: 24px;
}

.fs-25 {
    font-size: 25px;
}

.fs-26 {
    font-size: 26px;
}

.fs-27 {
    font-size: 27px;
}

.fs-28 {
    font-size: 28px;
}

.fs-29 {
    font-size: 29px;
}

.fs-30 {
    font-size: 30px;
}

/* End Font Size */

/* Start Font Weight */
.fw-100 {
    font-weight: 100;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/* End Font Weight */

/* Start Border Radius */
.rounded-5 {
    border-radius: 5px;
}

.rounded-10 {
    border-radius: 10px;
}

.rounded-15 {
    border-radius: 15px !important;
}

.rounded-20 {
    border-radius: 20px;
}

.rounded-25 {
    border-radius: 25px;
}

.rounded-30 {
    border-radius: 30px;
}

.rounded-35 {
    border-radius: 35px;
}

.rounded-40 {
    border-radius: 40px;
}

.rounded-45 {
    border-radius: 45px;
}

.rounded-50 {
    border-radius: 50px;
}

/* End Border Radius */

/* Start Text Color */
.text-theme {
    color: var(--text-theme);
}

/* End Text Color */

/* Start Background Color */
.bg-theme {
    background: var(--text-theme);
}

.bg-light-theme {
    background: var(--bg-light-theme);
}

/* End Background Color */

/* Start line-clamp */
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* End line-clamp */

/* Start Button Color */
.btn-primary {
    color: #fff;
    background-color: var(--bg-theme);
    border-color: var(--bg-theme);
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--btn-primary-hover);
    border-color: var(--bg-theme);
}

.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--btn-primary-hover);
    border-color: var(--bg-theme);
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: var(--btn-primary-hover);
    border-color: var(--bg-theme);
    box-shadow: 0 0 0 0.25rem rgb(54 70 145 / 50%);
}

.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgb(54 70 145 / 50%);
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(54 70 145 / 18%);
}

.btn-group-lg>.btn,
.btn-lg {
    padding: .7rem 1.3rem;
    border-radius: var(--rounded-theme);
}

.btn-light-primary {
    color: #000000;
    background-color: var(--bg-light-theme);
    border-color: var(--bg-light-theme);
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none;
}

.btn-close:focus {
    box-shadow: unset;
}

:focus-visible {
    outline: unset;
}

.link-primary {
    color: var(--bg-theme);
}

/* End Button Color */

.dropdown-menu .dropdown-item.active i,
.dropdown-menu .dropdown-item:active i {
    color: #fff !important;
}

.auth-section .form-control::placeholder {
    color: #808080;
    font-size: 15px;
}

.auth-section .form-control {
    height: 55px;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: var(--rounded-theme);
}

.watchlist-inp {
    padding-left: 30px;
}

/* End Form Control */

/* Start Auth Section */
.auth-section .container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-section .auth-image {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: var(--bg-light-theme);
}

.auth-section .auth-image img,
.auth-section .mob-auth-image img {
    max-width: 466px;
    width: 100%;
}

.auth-label {
    font-size: 18px;
    color: var(--text-cs-black);
    font-weight: 500;
}

.auth-content-buttons .btn {
    font-size: 18px;
    font-weight: 500;
}

.auth-content-logo img {
    max-width: 300px;
    width: 100%;
}

.auth-footer-buttons .btn {
    max-width: 220px;
    width: 100%;
}

.avatar-edit {
    text-align: center;
}

.avatar-edit input {
    display: none;
}

.avatar-edit {
    position: relative;
}

.choose-img {
    position: absolute;
    bottom: -116px;
    right: 39%;
    width: 40px;
    height: 40px;
    color: var(--bg-theme);
    font-size: 20px;
    background-color: var(--bg-light-theme);
    border-radius: 50%;
    text-align: center;
    line-height: 40px !important;
    cursor: pointer;
}

#imagePreview {
    width: 120px;
    height: 120px;
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border: 5px solid var(--bg-light-theme);
    border-radius: 50%;
    margin: auto;
}

.avatar-preview {
    margin-top: 20px;
}

/* End Auth Section */

/* Start Main Header Section */
.main-header {
    border-bottom: 1px solid #e3e2e2;
    padding: 0 15px;
}

.main-header .navbar-brand img {
    width: 190px;
    object-fit: cover;
}

.main-header .nav-profile-drop .dropdown-toggle img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.main-header .navbar-light .navbar-nav .nav-link {
    color: var(--text-cs-black);
}

.main-header .nav-notification-item {
    font-size: 24px;
    vertical-align: middle;
}

.main-header .nav-notification-item .nav-icon {
    background: #D34645;
    border: 1px solid var(--text-cs-white);
    width: 20px;
    height: 20px;
    padding: 3px;
    font-size: 9px;
    border-radius: 50rem;
    color: var(--text-cs-white);
    position: absolute;
    right: 0px;
    text-align: center;
}

.main-header .navbar-light .navbar-toggler {
    width: 58px;
    height: 46px;
    padding: 0px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggle {
    cursor: pointer;
    overflow: hidden;
    width: 58px;
    height: 46px;
    padding: 0.25rem 0.75rem;
    display: flex;
    align-items: center;
    position: relative;
}

.line-toggle {
    position: absolute;
    display: block;
    width: 33px;
    height: 4px;
    background: #000;
    border-radius: 10px;
    transition: all .6s;
}

.line-toggle:first-child {
    transform: translateY(-9px) translateX(0px);
    width: 33px;
    transition-delay: 0s;
}

.toggle .line-toggle:nth-child(2) {
    transition-delay: .12s;
}

.line-toggle:last-child {
    transform: translateY(9px) translateX(0px);
    width: 34px;
    transition-delay: 0s;
}

[aria-expanded="true"] .toggle .line-toggle:first-child {
    background: orangered;
    transform: translateY(0) translateX(0) rotate(45deg);
    width: 30px;
    height: 4px;
    transition-delay: .1s;
}

[aria-expanded="true"] .toggle .line-toggle:nth-child(2) {
    transform: translateX(110px);
    transition-delay: 0s;
}

[aria-expanded="true"] .toggle .line-toggle:last-child {
    background: orangered;
    transform: translateY(0) translateX(0) rotate(314deg);
    width: 30px;
    height: 4px;
    transition-delay: .1s;
}

.top-head-padding {
    padding-top: calc(var(--section-padding) + 20px);
}

/* End Main Header Section */

/* Start Search Box CSS */
.header-search-product.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: var(--theme);
    outline: 0;
    box-shadow: none;
}

.header-search-product {
    border: 1px solid #ced4da !important;
    background: #F5F7F9;
}

.header-search-product::placeholder {
    color: #959798;
    font-size: 14px;
}

@media (max-width: 768px) {
    .mainsearchcover[arial-search="false"] {
        max-width: 41px;
    }

    .mainsearchcover[arial-search="false"] .header-search-product {
        padding-left: 0 !important;
        padding-right: 0 !important;
        opacity: 0;
        cursor: pointer;
    }

    .mainsearchcover[arial-search="false"] .lg-search-icon {
        right: 9px;
    }

    .profile-setting-img {
        height: 125px;
    }
}

.lg-search-icon {
    transition: 0.3s;
    font-size: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    z-index: 99;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    border-radius: 50%;
    color: var(--cs-lightDark-white) !important;
}

.lg-search-icon::before {
    content: "\f0d1";
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

.lg-search-icon.close:hover {
    background-color: #11063845;
}

.lg-search-icon.close::before {
    content: "\EB99";
}

.lg-search-icon.close {
    cursor: pointer;
}

.lg-search-icon.close.searchloader {
    pointer-events: none;
    opacity: .8;
}

.lg-search-icon.close.searchloader::before {
    content: "\EEC2";
    animation: spiner 1s infinite linear;
}

.spiner {
    animation: spiner 1s infinite linear;
}

@keyframes spiner {
    0% {
        transform: rotate(0);
    }

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

.search-height {
    min-height: 100px;
    max-height: 250px;
}

[arial-search="false"] .searchbody {
    pointer-events: none;
}

[arial-search="true"] .searchbody {
    position: absolute;
    width: 100%;
    top: 0;
    border-radius: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.mt-30 {
    margin-top: 30px;
}

.header-search-product {
    transition: 0.2s;
    pointer-events: all;
}

@media (max-width: 568px) {
    [arial-search="true"] .BackButtonSearch {
        display: flex;
    }

    [arial-search="true"] .header-search-product {
        padding-left: 40px;
    }

    [arial-search="true"] {
        position: absolute;
        z-index: 99999;
        padding: 0 15px;
        left: -8px;
        right: 0px;
        width: calc(100% + 16px) !important;
    }

    .pace-activity {
        display: none !important;
    }
}

.BackButtonSearch {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    width: 25px;
    height: 25px;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 0;
    color: var(--cs-lightDark-white);
}

.transition {
    transition: 0.3s;
}

.min-w-80px {
    min-width: 80px;
}

@media (max-width: 768px) {
    [data-layout-mode="light"] [arial-search="false"] .header-search-product+.lg-search-icon {
        color: var(--vz-white-rgb) !important;
    }
}

@media (max-width: 767px) {
    [arial-search="true"].lg-search-icon::before {
        color: #ffffff !important;
    }
}

[arial-search="true"] .searchbody .searchresultbody {
    display: block;
    background: white;
    transform: scale(1) translateY(0);
    animation: searchboxanimation 0.1s linear;
    border-radius: 0 0 10px 10px;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    border: 1px solid #ced4da;
    border-top: unset;
}

[arial-search="true"] .searchbody .header-search-product {
    border-radius: 10px 10px 0 0 !important;
}

.searchresultbody {
    opacity: 0;
    border-radius: 10px;
    visibility: hidden;
    transform: scale(0.99) translateY(5px);
    z-index: 1;
}

[name="searchresult-radio-filter"]:checked+label {
    background: var(--theme);
    color: white;
    border: 1px solid var(--theme);
}

.searchresult-filter-label {
    cursor: pointer;
    border: 1px solid #E6E9EE;
    padding: 8px 5px;
}

.btn-add-watchlist {
    border: 1px dashed var(--theme);
    padding: 4px 10px;
}

.btn-add-watchlist:hover {
    border: 1px solid var(--theme);
    background: var(--bg-theme);
    color: var(--text-cs-white);
}

.btn-add-watchlist.active {
    border: 1px solid var(--theme);
    background: var(--bg-theme);
    color: var(--text-cs-white);
}

.searchresult-list-div:nth-child(odd) {
    background: rgb(54 70 145 / 5%);
}

/* ====================== Start Watchlist Css =========================== */
.watchlist-section,
.groupchat-section {
    padding: 20px 30px;
}

.watchlist-heading h1 {
    color: var(--text-cs-black);
    font-size: 28px;
    margin-bottom: 0;
}

.watchlist-info {
    border: 1px solid #E6E9EE;
    border-bottom: transparent;
    border-radius: 16px 16px 0 0;
}

.watchlist-body {
    padding: 20px;
}

.watchlist-content {
    border: 1px solid #E6E9EE;
    padding: 20px;
}

.watchlist-card {
    border-radius: 9px;
    transition: .4s;
}

.watchlist-bank {
    position: relative;
}

.watchlist-card-body {
    padding: 20px 20px 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.watchlist-counter {
    width: 40px;
    height: 19px;
    background-color: var(--bg-theme);
    display: block;
    border-radius: 30px;
    color: var(--bg-light-theme);
    font-size: 13px;
    text-align: center;
    line-height: 19px;
    position: absolute;
    top: 0;
    right: 0;
}


.remove-button {
    width: 40px;
    height: 19px;
    display: block;
    border-radius: 5px;
    color: var(--bg-light-theme);
    font-size: 13px;
    text-align: center;
    line-height: 19px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #cf0d0d;
    cursor: pointer;
}

.watchlist-bank img {
    width: 70px;
    border: 1px solid #E6E9EE;
    border-radius: 5px;
}

.bank-detail h5 {
    color: var(--text-cs-black);
    font-size: 16px;
    margin-bottom: 0;
}

.bank-detail {
    margin: 10px 0;
}

.bank-detail .list-member {
    color: #999A9A;
    font-size: 16px;
    font-weight: 300;
}

.watchlist-price .count-price {
    /* color: #55B45A; */
    font-size: 12px;
}

.watchlist-price {
    padding: 0 0 20px 0;
}

.watchlist-card {
    /* margin-top: 20px; */
}

.counter-plus {
    color: var(--bg-light-theme);
    font-size: 10px;
    vertical-align: middle;
}

.watchlist-price .count-price i {
    margin-right: 8px;
}

.see-more-button .click-btn {
    display: inline-block;
    color: var(--bg-theme);
    font-weight: 500;
    font-size: 20px;
    text-decoration: underline;
    padding: 30px 0;
    transition: .4s;
}

.see-more-button .click-btn:hover {
    color: var(--text-cs-black);
}

.card {
    border: none;
}

.watchlist-card-body {
    display: block;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 8px;
    margin: 10px 0;
}

.watchlist-card-body:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.watchlist-content {
    padding-bottom: 0;
    border-radius: 0 0 16px 16px;
}

.not-found-image img {
    margin: auto;
    display: block;
}

.not-found-image .no-image-description {
    color: var(--btn-primary-hover);
    /*font-size: 40px;*/
    font-weight: 400;
    text-align: center;
    margin-top: 20px;
}

/* ====================== End Watchlist Css =========================== */

/* ====================== Start Group Chat Css =========================== */
.groupchat-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E6E9EE;
}

.groupchat-li {
    margin-bottom: 20px;
    display: flex;
}

.groupchat-li.groupchat-right-li {
    justify-content: end;
}

.groupchat-card .groupchat-header-img img {
    width: 45px;
    height: 45px;
    object-fit: cover;
}

.groupchat-card .groupchat-card-body {
    background-color: #F8F9FA;
    background-image: url(../images/chat-bg-pattern.png);
}

.groupchat-card-body {
    min-height: 200px;
}

.groupchat-li-maincover {
    display: flex;
    max-width: 80%;
}

.groupchat-li-userimg img {
    margin-right: 10px;
}

.groupchat-li-userimg img {
    width: 35px;
    height: 35px;
    border-radius: 50rem;
}

.groupchat-li-username {
    color: #2C2C2E;
    font-weight: 500;
    font-size: 14.5px;
    margin-bottom: 4px;
}

.groupchat-li-message {
    background-color: white;
    color: #000000;
    padding: 12px 18px 19px 18px;
    border-radius: 10px;
    display: inline-block;
    min-width: 80px;
}

.groupchat-li {
    position: relative;
}

.emoji-show-box {
    position: absolute;
    bottom: -2px;
    left: 0;
    border-radius: 30px;
    padding: 2px 3px;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    cursor: pointer;
    display: block;
}

.emoji-right-show-box {
    position: absolute;
    bottom: -19px;
    right: 0;
    border-radius: 30px;
    padding: 2px 3px;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    cursor: pointer;
    display: block;
}

.emoji-show-box .emoji-box,
.emoji-right-show-box .emoji-box {
    padding: 0 2px;
    font-size: 11px;
}

.emoji-show-box .counter,
.emoji-right-show-box .counter {
    color: var(--text-cs-black);
    font-size: 12px;
    padding: 0 3px;
}

.groupchat-right-li .groupchat-li-message {
    background: var(--bg-theme);
    color: var(--text-cs-white);
}

.groupchat-right-li .groupchat-li-content .time {
    color: #ffffffcf !important;
}

.message-box-drop,
.emoji-box-drop {
    visibility: hidden;
    opacity: 0;
}

.groupchat-li-content:hover .message-box-drop,
.groupchat-li-content:hover .emoji-box-drop {
    visibility: visible;
    opacity: 1;
}

.message-box-drop .dropdown-toggle::after,
.emoji-box-drop .dropdown-toggle::after {
    content: unset;
}

.message-box-drop .dropdown-toggle,
.emoji-box-drop a i {
    margin-left: 5px;
    color: #878a99;
}

.emoji-box-drop:hover>.dropdown-menu {
    display: block;
}

[name="emoji-box-rec-radio"]:checked+label,
[name="emoji-box-rec-radio"]:hover+label {
    background-color: #f1f4f8;
}

.emoji-box-rec-lab {
    padding: 2px;
    width: 35px;
    height: 35px;
    border-radius: 50rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.emoji-box-drop .dropdown-menu {
    min-width: auto;
    padding: 2px 2px 2px 2px;
    border-radius: 50rem;
    margin-left: -53px !important;
}

.emoji-box-dropsub-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.groupchat-li-content .time {
    font-size: 11px;
    position: absolute;
    right: 8px;
    bottom: 4px;
}

.groupchat-li-subcontent {
    margin-top: 10px;
}

.groupchat-card-footer {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.groupchat-card-footer .groupchat-input input {
    background-color: #f1f4f8;
    padding: 10px 45px 10px 20px;
    border: unset;
}

.groupchat-card-footer .groupchat-input input:focus {
    box-shadow: none;
}

.groupchat-input {
    position: relative;
}

.groupchat-input-attheicon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

.groupchat-card-footer .btn {
    max-width: 100px;
    width: 100%;
}

.profile-offcanvas .team-cover {
    margin-bottom: -132px;
    display: block;
    z-index: -1;
    position: relative;
}

.modal-team-cover img,
.profile-offcanvas .team-cover img,
.team-box .team-cover img {
    height: 140px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.modal-team-cover::before,
.profile-offcanvas .team-cover::before,
.team-box .team-cover::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(#171e32), to(#405189));
    background: linear-gradient(to top, #171e32, #405189);
    opacity: .6;
}

.avatar-lg {
    height: 6rem;
    width: 6rem;
}

@media (max-width: 575.98px) {
    .groupchat-li-maincover {
        max-width: 90%;
    }
}

/* ====================== End Group Chat Css =========================== */
.massage-modal-body {
    padding: 10px;
}

.massage-modal-body h6 {
    border-bottom: 1px solid var(--inp-text-placeholder);
    padding: 5px 0;
}

.massage-item {
    padding: 0 0px;
}

.massage-item .nav-link.active {
    background-color: transparent;
    color: var(--text-cs-black);
}

.massage-item .massage-link {
    padding: 0;
}

.modal-dialog-scrollable .modal-content {
    max-height: 300px;
}

.groupchat-li {
    position: relative;
}

.emoji-position {
    position: absolute;
    top: 0;
    right: 0;
}

.nav .massage-item .massage-link.active,
.nav .massage-item .massage-link {
    width: 50px;
    height: 40px;
    cursor: pointer;
}

.nav .massage-item .massage-link.active {
    color: var(--btn-primary-hover);
    position: relative;
}

.nav .massage-item {
    margin: 0 10px;
    text-align: start;
    display: inline-block;
}

.nav .all-person {
    text-align: start;
    margin-left: 0;
}

.emoji-like {
    cursor: pointer;
}

.nav-link {
    color: var(--btn-primary-hover);
}

.nav-link:focus {
    color: #000;
}

.massage-item .count {
    color: var(--btn-primary-hover);
    font-size: 15px;
}

.person-detail {
    text-align: center;
}

.nav .massage-item .massage-link.active::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--btn-primary-hover);
    transition: .4s;
}

.pinned-header .message-label {
    color: var(--btn-primary-hover);
    margin-bottom: 0;
}

.comment {
    font-size: 14px;
    padding-bottom: 20px;
    width: 276px;
}

.pin-massage {
    padding: 10px;
    width: 150px;
    background-color: var(--text-cs-white);
    border-radius: 0 0 5px 5px;
    position: sticky;
    top: 0px;
    z-index: 1;
    cursor: pointer;
    text-align: center;
}

.pinned-message-body {
    margin-right: 1rem;
}

.pinned-message-body::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--btn-primary-hover);
    border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.pin-massage .pin-thumb {
    color: var(--bg-theme);
    margin-right: 10px;
}

.pin-massage .massage {
    color: var(--text-cs-black);
    font-weight: 300;
    font-size: 12px;
}

.massage-list {
    border: 2px solid var(--bg-light-theme);
    border-radius: 10px;
}

.massage-body {
    padding: 20px;
}

.massage-body-spacing {
    margin-top: 20px;
}

.pinned-comments {
    padding: 0 0;
}

.pinned-header {
    border-bottom: 1px solid var(--bg-light-theme);
}

.pin-massage .pin-massage-body i {
    color: rgba(54, 70, 145, 1);
    padding: 10px;
    background-color: var(--bg-light-theme);
    border-radius: 5px;
    font-size: 16px;
    margin-right: 10px;
}

.pin-massage .pin-massage-body {
    margin-bottom: 0;
}

.report-card-body {
    width: 100%;
    padding: 10px;
    background-color: transparent;
    border: 1px solid rgba(230, 233, 238, 1);
    border-radius: 6px;
}

.report-button {
    padding: 10px 50px;
    border-radius: 9px;
}

.cancel-button {
    background-color: rgba(226, 226, 226, 1);
    color: rgba(58, 59, 84, 1);
    transition: .4s;
}

.cancel-button:hover {
    background-color: rgba(54, 70, 145, 1);
    color: var(--text-cs-white);
}

.submit-button {
    background-color: rgba(54, 70, 145, 1);
    color: var(--text-cs-white);
    transition: .4s;
}

.submit-button:hover {
    background-color: rgba(226, 226, 226, 1);
    color: rgba(58, 59, 84, 1);
}

.report-header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-header .report-close-btn {
    margin-left: auto;
}

.form-control:focus {
    box-shadow: unset;
}

.report-select-asb+.select2-container {
    width: 100% !important;
}

.report-select-asb+.select2-container .select2-selection--single {
    height: 45px;
}

.report-select-asb+.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
}

.report-select-asb+.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 43px;
    width: 23px;
}

.report-select-asb+.select2-container--default .select2-results__option--selected {
    background-color: var(--bg-light-theme);
}

.report-select-asb+.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--bg-light-theme);
}

.report-header {
    border-bottom: none;
}

.report-footer {
    border-top: none;
}

#myModal .form-control+.select2-container--default .select2-selection--single,
#myModal .select2-dropdown,
#myModal .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid rgba(230, 233, 238, 1);
}

#message-text:focus {
    border: 1px solid var(--btn-primary-hover);
}

#myModal .form-control+.select2-container--default .select2-selection--single:focus {
    border-color: var(--btn-primary-hover);
}

#myModal+.select2-container--open .select2-dropdown--below:focus {
    border-color: var(--btn-primary-hover);
}

#myModal .select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: var(--btn-primary-hover);
}

#myModal .select2-container--open .select2-dropdown--below:focus {
    border-color: var(--btn-primary-hover);
}

#myModal .select2-container--default .select2-search--dropdown .select2-search__field:focus .select2-container .select2-selection--single .select2-selection__rendered {
    border: 1px solid var(--btn-primary-hover);
}

.pin-massage a {
    margin-left: auto;
    color: rgba(54, 70, 145, 1);
}

.emoji-picker__preview {
    border-top: none;
}

.emoji-picker {
    max-width: 350px;
    width: 100%;
}

.groupchat-li-content .remove-react {
    font-size: 13px;
    color: var(--bg-theme);
}

.react-username {
    margin-bottom: 0;
}

.users-reactions {
    border: none;
    outline: none;
}

.emoji-picker__preview {
    padding: 25px;
}

/* ========================================== Company Details Page ============================== */

.details-header {
    margin-top: 30px;
    border: 1px solid var(--section-border-color);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 20px;
}

.company-logo {
    max-width: 70px;
    width: 100%;
    max-height: 70px;
    height: 100%;
    background-color: var(--bg-logo-light-theme);
    border: 1px solid var(--section-border-color);
    border-radius: 50%;
    line-height: 70px;
    text-align: center;
}

.details-concepts h1 {
    color: var(--text-cs-black);
    font-size: 28px;
    margin-bottom: 0;
}

.details-concepts {
    margin-left: 25px;
}

.details-concepts p {
    color: var(--inp-text-placeholder);
    margin-bottom: 0;
}

.switches-container {
    width: 16rem;
    position: relative;
    display: flex;
    padding: 0;
    position: relative;
    background-color: var(--bg-switch-color);
    line-height: 3rem;
    border-radius: 10px;
    margin-left: 60px;
    margin-right: auto;
}

.switches-container input {
    visibility: hidden;
    position: absolute;
    top: 0;
}

.switches-container label {
    width: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
    cursor: pointer;
    color: var(--bg-theme);
    font-size: 20px;
}

.switch-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    padding: 0.15rem;
    z-index: 3;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    /* transition: transform 1s; */
}

.switch {
    border-radius: 10PX;
    background-color: var(--bg-theme);
    color: var(--bg-light-theme);
    font-size: 20px;
    font-weight: 300;
    height: 100%;
}

.switch div {
    width: 100%;
    text-align: center;
    opacity: 0;
    display: block;
    transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1) 0.125s;
    position: absolute;
    top: 0;
    left: 0;
}

.switches-container input:nth-of-type(1):checked~.switch-wrapper {
    transform: translateX(0%);
}

.switches-container input:nth-of-type(2):checked~.switch-wrapper {
    transform: translateX(100%);
}

.switches-container input:nth-of-type(1):checked~.switch-wrapper .switch div:nth-of-type(1) {
    opacity: 1;
}

.switches-container input:nth-of-type(2):checked~.switch-wrapper .switch div:nth-of-type(2) {
    opacity: 1;
}

.detail-update .update {
    color: var(--bg-light-theme);
    padding: 5px 10px;
    font-size: 14px;
    background-color: var(--bg-btn-color);
    border-radius: 30px;
}

.detail-update-success .update {
    background-color: green;
    padding: 5px 10px;
    font-size: 14px;
    color: var(--bg-light-theme);
    border-radius: 30px;
}

.detail-update .update i {
    color: var(--bg-light-theme);
    font-size: 14px;
    margin-left: 8px;
}

.detail-update-success .update i {
    color: var(--bg-light-theme);
    font-size: 14px;
    margin-left: 8px;
}


.detail-price h1 {
    color: var(--text-cs-black);
    font-size: 35px;
    font-weight: 600;
    margin-left: 10px;
    margin-bottom: 0;
}

.update-content p {
    color: var(--inp-text-placeholder);
    font-size: 18px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}

.details-section {
    border: 1px solid var(--section-border-color);
    border-bottom: transparent;
    border-top: transparent;
    padding: 30px;
    margin-bottom: 0;
}

.detail-card {
    height: 100%;
    border: 1px solid var(--section-border-color);
    border-radius: 10px;
}

.details-body h2 {
    color: var(--text-cs-black);
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 15px;
}

.details-body h6 {
    color: var(--inp-text-placeholder);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

.range,
.range-count {
    margin-bottom: 10px;
}

.range-count h6 {
    color: var(--text-cs-black);
    font-size: 16px;
    font-weight: 400;
}

.range-line {
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #EB2027 0%, #55B45A 100%);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.range-line::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 18%;
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-color: #000000 transparent transparent transparent;
    z-index: 10;
    transform: rotate(180deg);
    cursor: pointer;
}

.range-last-line {
    border-bottom: 1px dashed var(--text-cs-black);
    padding: 20px;
}

.range-padding {
    margin-bottom: 8px;
}

/* #chartdiv {
    width: 100%;
    height: 500px;
  } */
.advance-chart {
    border: 1px solid var(--section-border-color);
    border-radius: 10px;
    padding: 15px;
}

.chart-heading h1 {
    color: var(--text-cs-black);
    font-size: 25px;
}

.chart-nav .chart-nav-link.active {
    padding: 8px 20px;
    background-color: var(--bg-theme);
    border-radius: 30px;
}

.chart-nav .chart-nav-link {
    padding: 8px 15px;
    font-size: 14px;
    color: var(--bg-theme);
    border: 1px solid var(--section-border-color);
    border-radius: 30px;
    margin-left: 10px;
}

.chart-nav {
    padding: 10px 0;
}

.apexcharts-toolbar {
    display: none !important;
}

.am5-layer-30 {
    display: none !important;
}

.subsections {
    border: 1px solid var(--section-border-color);
    border-top: transparent;
    padding: 0 30px 30px 30px;
    border-bottom: transparent;
}

.subheading-header {
    border: 1px solid var(--section-border-color);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 20px;
}

.subheading-header h1 {
    color: var(--text-cs-black);
    font-size: 25px;
    margin-bottom: 0;
    font-weight: 400;
}

.sub-content-body {
    border: 1px solid var(--section-border-color);
    border-top: transparent;
    margin: 0 30px 30px 30px;
    padding: 10px;
}

.overview-value {
    padding: 0 20px 0 20px;
    border-right: 1px dashed var(--section-border-color);
    border-top: transparent;
    margin-top: 16px;
}

.overview-value li {
    border-bottom: 1px solid var(--section-border-color);
    padding: 15px 0;
}

.overview-value li h5 {
    color: var(--inp-text-placeholder);
    margin-bottom: 0;
    font-weight: 400;
}

.overview-value li h6 {
    color: var(--text-cs-black);
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 400;
}

.subheading-border-transparent {
    border-left-color: transparent;
    padding-left: 0;
}

.subheading-overview {
    border: 1px solid var(--section-border-color);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top: transparent;
}

.dashed-border-none {
    border-right-color: transparent;
    padding-left: 0;
}

.action-tab {
    padding: 20px;
}

.action-nav .action-nav-link.active {
    padding: 10px 20px;
    background-color: var(--bg-theme);
    border-radius: 30px;
}

.action-nav-link {
    color: var(--text-cs-black);
    font-size: 18px;
    padding: 10px 20px;
    border: 1px solid var(--section-border-color) !important;
    border-radius: 30px !important;
    display: block;
    margin-left: 15px;
    margin-top: 8px;
}

.action-nav-link:hover {
    color: var(--bg-light-theme);
    background-color: var(--bg-theme);
}

.action-card {
    border: 1px solid var(--section-border-color);
    border-radius: 12px;
}

.action-time {
    color: var(--inp-text-placeholder);
    font-size: 16px;
    margin-bottom: 10px;
    display: inline-block;
}

.action-card-body h5 {
    color: var(--text-cs-black);
    font-size: 20px;
}

.action-card-body p {
    color: var(--inp-text-placeholder);
    font-size: 17px;
    margin-bottom: 0;
}

.more-action .action-btn {
    color: var(--bg-theme);
    font-size: 18px;
    font-weight: 500;
    text-decoration: underline;
    text-align: end;
    display: block;
    /* margin-bottom: 20px; */
    transition: .4s;
}

.more-action .action-btn:hover {
    color: var(--text-cs-black);
}

.action-card-body {
    padding: 20px 30px;
}

.action-card {
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background-color: var(--bg-theme);
}

table {
    /* border-spacing: 25px; */
    border-collapse: separate;
    border-radius: 10px;
    padding: 20px;
}

table thead tr {
    outline: 1px solid var(--section-border-color);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

table thead th {
    padding: 20px 20px 20px 70px;
    color: var(--text-cs-black);
    font-size: 22px;
    font-weight: 500;
}

table thead th:first-child {
    width: 20%;
}

table thead th:nth-child(3) {
    width: 60%;
}

table tbody tr {
    outline: 1px solid var(--section-border-color);
    border-top-color: transparent;
}

table tbody td {
    padding: 20px 20px 20px 70px;
    color: var(--text-cs-black);
    font-size: 20px;
    font-weight: 400;
}

table tbody tr:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

table {
    position: relative;
    border: 1px solid var(--section-border-color);
    overflow: hidden;
    padding: 0;
}

table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background-color: var(--bg-theme);
}

.new-content {
    padding: 30px;
}

.new-card {
    border: 1px solid var(--section-border-color);
    padding: 20px;
}

.new-card .card-img-top {
    width: 200px;
    height: 100px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card-text {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

input:focus~.read-more {
    outline: -webkit-focus-ring-color auto 5px;
}

input:checked+.card-text {
    -webkit-line-clamp: unset;
}

.btn-read-less {
    display: none;
}

input:checked~.read-more .btn-read-less {
    display: block;
}

input:checked~.read-more .btn-read-more {
    display: none;
}

.read-more {
    border-radius: 4px;
    padding: 0.2em 0.6em;
    border: 1px solid var(--bg-theme);
    background-color: var(--bg-theme);
    color: #fff;
    font-size: 0.8em;
}

.new-card .thubnail {
    min-height: 100px;
}

.new-card .card-img-top {
    max-width: 200px;
    max-height: 100%;
    object-fit: scale-down;
}

.new-card-body {
    padding: 15px 0 0 0;
}

.new-card-title {
    color: var(--inp-text-placeholder);
}

.new-title {
    margin-left: 10px;
}

.new-text {
    color: var(--text-cs-black);
    font-size: 16px;
    font-weight: 500;
}

.subsection-line {
    border-bottom: 1px solid var(--section-border-color);
}

.subheading-img img {
    width: 330px;
    object-fit: cover;
}

.subheading-img .second-thumb {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.subheading-img .third-thumb {
    max-width: 200px !important;
    max-height: 100% !important;
    object-fit: scale-down;
}

.second-heading {
    margin-left: 30px !important;
}

.subheading-card {
    border: 1px solid var(--section-border-color);
    padding: 20px;
}

.subheding-card-content {
    margin-left: 60px;
}

.subheding-card-content .new-title-size {
    font-size: 18px;
    color: var(--text-cs-black);
}

.subheding-card-content h1 {
    color: var(--text-cs-black);
    font-size: 22px;
}

.more-details {
    padding: 20px 0;
    display: block;
}

/* ========= loader ==== */

.loader i {
    color: var(--arrow-icon-color);
    font-size: 17px;
    display: inline-block;
    line-height: normal;
    animation: rotate 2s linear infinite;
}

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

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

.alert-button a {
    color: var(--bg-light-theme);
    padding: 8px 30px;
    background-color: var(--btn-primary-hover);
    border: 1px solid var(--btn-primary-hover);
    display: inline-block;
    border-radius: 8px;
    transition: .4s;
}

.alert-button a:hover {
    color: var(--bg-theme);
    background-color: transparent;
}

.shimmer-nl label,
.shimmer-nl input,
.shimmer-nl p,
.shimmer-nl span {
    opacity: 0.3;
    border-radius: 5px;
    min-height: 1em;
    vertical-align: middle;
    cursor: wait;
    background: var(--bg-light-theme) !important;
    -webkit-animation: placeholder-glow 2s ease-in-out infinite;
    animation: placeholder-glow 2s ease-in-out infinite;
    filter: brightness(0);
}

.shimmer-nl img {
    opacity: 0.3;
    border-radius: 0;
    min-height: 1em;
    vertical-align: middle;
    cursor: wait;
    background: var(--bg-light-theme) !important;
    -webkit-animation: placeholder-glow 2s ease-in-out infinite;
    animation: placeholder-glow 2s ease-in-out infinite;
    filter: brightness(0);
}

@keyframes placeholder-glow {
    50% {
        opacity: .1;
    }
}