@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 face end--*/
body {
    font-family: "Poppins", sans-serif;
    background: #F7F7F7;
    font-size: 14px;
    color: #393939;
}

:root {
    --primarycolor: #21675D;
    --secondarycolor: #D39631;
}

h4 {
    font-size: 24px;
    font-weight: 600
}

h5 {
    font-size: 20px;
    color: #0A0A0A;
}

.text-primary {
    color: var(--primarycolor) !important;
}

.text-secondary {
    color: var(--secondarycolor) !important;
}

.text-secondary-link {
    color: var(--secondarycolor);
    text-decoration: underline;
}

    .text-secondary-link:hover {
        text-decoration: none;
    }

.login-wrapper {
    min-height: 100vh;
    background: linear-gradient(to bottom, rgba(247,251,248,1) 80%,rgba(247,251,248,1) 80%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}


.login-left {
    background: var(--primarycolor);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    max-width: 460px;
    padding: 20px;
    width: 100%;
}

    .login-container h4 {
        font-weight: 600;
        margin: 0 0 20px;
        font-size: 22px;
    }

input.icon-holder {
    padding-left: 45px;
}

input.icon-holder-right {
    padding-right: 35px;
}

.form-control.icon-holder-right + .input-icon-right {
    position: absolute;
    top: 8px;
    right: 10px;
}

textarea.form-control {
border-radius:20px
}

.input-icon {
    position: absolute;
    left: 13px;
    top: 5px;
}

.form-control-lg + .input-icon, .form-control-lg ~ .password-eye-icon {
    top: 14px;
}

.form-check {
    padding-left: 30px;
    min-height: 30px;
}

    .form-check .form-check-label {
        padding-top: 4px;
    }

    .form-check .form-check-input {
        margin-left: -30px;
    }

.form-check-input[type="checkbox"] {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border-color: var(--primarycolor);
}

.form-check-input[type="radio"] {
    width: 22px;
    height: 22px;
}

.form-check-input:checked {
    background-color: var(--primarycolor);
    border-color: var(--primarycolor);
}

.password-eye-icon {
    position: absolute;
    right: 13px;
    top: 13px;
}

.form-control, .form-select {
    border-color: #27685B;
    font-size: 14px;
    height: 40px;
    border-radius: 30px;
}

    .form-control.form-control-lg {
        height: 50px;
    }

.page-title-row {
    display: flex;
    align-items: center;
}

.btn-effect {
    background-image: linear-gradient(to right, rgba(33,103,93,1), rgba(211,150,49,1));
    width: 200px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin: 20px;
    height: 55px;
    text-align: center;
    border: none;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

    .btn-effect:hover {
        background-position: 100% 0;
        background-size: 300% 100%;
        moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }




.btn.btn-lg {
    height: 50px;
    font-size: 16px;
}

.btn {
    font-size: 15px;
    line-height: 1.3;
    border-radius: 30px;
    padding: 10px 15px;
}

    .btn.btn-sm {
        font-size: 13px;
    }


    .btn.btn-primary.disabled {
        opacity: .5;
        background: #56C1C8;
        border-color: #56C1C8;
    }

.btn-primary {
    background: rgb(33,103,93);
    background: linear-gradient(90deg, rgba(33,103,93,1) 0%, rgba(211,150,49,1) 100%);
    border-color: transparent;
    position: relative;
    overflow: hidden;
    border: 0;
}


    .btn-primary::before {
        background: linear-gradient(90deg, rgba(33,103,93,1) 0%, rgba(211,150,49,1) 100%);
        content: "";
        position: absolute;
        top: -290px;
        transition: all .5s ease;
        left: -130%;
        width: 500px;
        height: 500px;
        border-radius: 30px;
        transform: rotate(20deg);
        opacity: 0;
        z-index: 1;
    }


    .btn-primary:hover {
        box-shadow: 4px 7px 14px rgba(33,103,93,.3);
        border: 0;
    }

        .btn-primary:hover::before {
            left: 0;
            opacity: 1;
            z-index: -1;
        }

.btn-light {
    background: #F6F2F5;
    border-color: #F6F2F5;
    color: #B1B1B1;
}

.btn-outline-primary {
    border-color: var(--primarycolor);
    color: var(--primarycolor);
}

    .btn-outline-primary:hover, .btn-outline-primary:active {
        border-color: var(--primarycolor) !important;
        background-color: var(--primarycolor) !important;
        box-shadow: 4px 7px 14px rgba(33,103,93,.3);
    }

        .btn-outline-primary:hover img {
            filter: brightness(100);
        }

.btn-secondary {
    background: #C862A7;
    border-color: #C862A7;
}

.btn.btn-secondary:hover, .btn.btn-secondary:active {
    background: #C862A7 !important;
    border-color: #C862A7 !important;
}

.btn-outline-danger {
    border-color: #F14336;
    color: #F14336;
}

.btn-outline-light {
    background: #F6F2F5;
    border-color: #F6F2F5;
    color: #B1B1B1;
}

    .btn-outline-light:hover {
        background: #56C1C8;
        border-color: #56C1C8;
        color: #fff;
    }

.btn.btn-outline-danger:hover {
    color: #fff;
    border-color: #F14336;
    background-color: #F14336;
}

.text-link {
    color: var(--primarycolor);
}

.form-label {
    color: #000;
    font-size: 14px;
    margin: 0 0 5px;
}

    .form-label sup {
        color: red;
    }

.tp-search {
    position: relative;
    margin: 0 0 0 20px;
    max-width: 330px;
    width: 100%;
}

    .tp-search input {
        border: solid 1px #D4D4D4;
        border-radius: 10px;
        padding: 10px 10px 10px 40px;
        width: 100%;
    }

    .tp-search .searchicon {
        position: absolute;
        left: 13px;
        top: 10px;
    }
/*--sidebar--*/
.closemenu-btn {
    display: none;
}

.sidebar {
    z-index: 9999;
    overflow: auto;
    position: fixed;
    width: 100%;
    max-width: 260px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--primarycolor);
    padding: 23px 20px;
    color: #fff;
}

.menubar-holder {
    display: flex;
    flex-flow: column;
    min-height: calc(100vh - 261px);
    overflow: auto;
    justify-content: space-between;
}

.menubar {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .menubar li {
        margin-bottom: 2px;
    }

        .menubar li > a {
            display: flex;
            align-items: center;
            border-radius: 10px;
            padding: 10px;
            color: #fff;
            font-size: 14px;
            text-decoration: none;
            height: 55px;
            font-weight: 500;
            position: relative;
            z-index: 10;
        }

            .menubar li > a img {
                margin-right: 10px;
            }

            .menubar li > a:hover,
            .menubar li a.active {
                color: #fff;
                background: var(--secondarycolor);
            }

        .menubar li.active a {
            background: var(--secondarycolor);
        }

        .menubar li > a.has-submenu::after {
            content: "";
            position: absolute;
            right: 10px;
            top: 20px;
            width: 12px;
            height: 12px;
            background: url(../images/arrow-right-menu.svg) 0 0 no-repeat;
            transition: all .2s ease;
        }

        .menubar li > a.has-submenu.active::after {
            transform: rotate(90deg);
        }

.has-submenu.active + .submenu {
    display: block;
}

.submenu {
    list-style: none;
    padding: 15px;
    background: #3C3C3C;
    position: relative;
    z-index: 8;
    top: -5px;
    border-radius: 0 0 8px 8px;
    display: none;
}

    .submenu li {
    }

        .submenu li a {
            padding: 5px 5px 5px 15px;
            border-radius: 0;
            height: auto;
            font-size: 14px;
            position: relative;
        }

            .submenu li a.active {
                background: transparent;
                color: #D87EBD;
            }

            .submenu li a:hover {
                background: transparent;
                color: #D87EBD;
            }

                .submenu li a:hover::after, .submenu li a.active::after {
                    background: #D87EBD;
                }

            .submenu li a::after {
                content: "";
                position: absolute;
                left: 0;
                top: 14px;
                width: 5px;
                height: 5px;
                border-radius: 100%;
                background: #D9D9D9;
            }



.sildebarlogo {
    margin: 30px 0 50px;
}


/*--sidebar--*/


.content-body {
    padding: 30px 30px 20px 80px;
}

.footer {
    text-align: center;
    border-top: solid 1px #E7E7E7;
    padding: 10px 0;
    font-size: 12px;
}

.dash-item {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    font-size: 28px;
    align-items: center;
    margin-bottom: 20px;
    border: solid 1px #DCEAE8;
}

    .dash-item a {
        display: flex;
        width: 100%;
        text-decoration: none;
        align-items: center;
    }

        .dash-item a p {
            color: #0A0A0A;
        }

    .dash-item .dash-item-icon {
        border-radius: 20px;
        background: #F7FBF8;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 75px;
        height: 75px;
        margin-right: 10px;
        border: solid 1px #C5EBE5
    }

    .dash-item h6 {
        font-size: 16px;
        color: #000;
        margin: 0 0 5px;
    }

    .dash-item h5 {
        font-size: 24px;
        color: #000;
        margin: 0;
        font-weight: 600;
    }

.innerbody {
    padding-left: 260px;
    background: linear-gradient(to bottom, rgba(247,251,248,1) 80%,rgba(255,255,255,1) 100%);
    transition: all .3s ease-in;
}




.user-set-menu {
    background: #E9AF46;
    color: #000;
    border-radius: 27px;
    padding: 3px 10px 3px 3px;
    margin-right: 10px;
    margin-left: auto;
}

    .user-set-menu .dropdown-toggle {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

        .user-set-menu .dropdown-toggle small {
            font-size: 10px;
            color: #4D4D4D;
        }

        .user-set-menu .dropdown-toggle h6 {
            font-size: 13px;
            margin: 0;
        }

        .user-set-menu .dropdown-toggle small {
            font-size: 10px;
        }

    .user-set-menu .dropdown-menu {
        font-size: 15px;
    }

    .user-set-menu a {
        color: #000;
    }

.pate-content-wrapper {
    min-height: calc(100vh - 122px);
    padding: 15px
}

.white-body-card {
    background: #fff;
    padding: 20px;
    min-height: calc(100vh - 230px);
    margin-bottom: 20px;
    border-radius: 10px;
}

.table > thead {
    vertical-align: middle;
}

.table thead th {
    background: var(--primarycolor);
    color: #fff;
    font-weight: 500;
}

.table {
    border: solid 1px #DEE5EF;
    font-size: 14px;
}

.table-result {
    display: flex;
    align-items: center;
}

.pagination .page-link {
    color: #293854;
}

.pagination .page-item.active .page-link {
    background: #56C1C8;
    border-color: #56C1C8;
    color: #fff;
}

.pagination .page-link img {
    margin-top: -3px;
}

.header {
    background: #fff;
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.filterby {
    display: flex;
    font-size: 16px;
    align-items: center;
}

    .filterby label {
        white-space: nowrap;
        margin-right: 10px;
    }

    .filterby .Searchbar {
        width:220px;
        margin-right:10px
    }
.package-select-col {
    display:flex;
    align-items:center;
}
    .package-select-col select {
        width:220px
    }
     .headerserarch {
        position: relative;
        width: 260px;
    }

    .headerserarch .inputicon {
        position: absolute;
        top: 8px;
        left: 10px;
    }

    .headerserarch .inputicon-rt {
        position: absolute;
        top: 6px;
        right: 14px;
        cursor: pointer;
    }

    .headerserarch .form-control {
        padding-left: 35px;
        padding-right: 35px;
    }



.text-light {
    color: #7B7B7B !important;
}

.user-post-col {
    border: solid 1px #B4B4B4;
    border-radius: 12px;
}

.post-date-text {
    color: rgba(18, 18, 18, .7);
    font-size: 11px;
    margin: 0 0 5px;
}

.user-post-short-cnt {
    padding: 15px 18px 18px;
}

    .user-post-short-cnt h6 {
        font-size: 15px;
    }

.comment-view {
    color: rgba(18, 18, 18, .7);
}

.post-vedio-col {
    position: relative;
}

    .post-vedio-col img, .post-vedio-col video {
        width: 100%;
        border-radius: 12px;
    }

    .post-vedio-col::after {
        background: url(../images/video-palybtn.svg) center center no-repeat rgba(0,0,0,.4);
        content: "";
        height: 100%;
        position: absolute;
        left: 0;
        z-index: 1;
        width: 100%;
        border-radius: 12px;
    }

.user-acnt-info-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 20px;
}

.user-srt-info-pic {
    width: 84px;
    height: 84px;
    margin-right: 15px;
}

.user-srt-info {
    display: flex;
    align-items: center;
    color: #767676;
}

    .user-srt-info h6 {
        font-size: 20px;
        color: #141413;
    }

.user-token-balance {
    border: solid 1px #E9E1F1;
    padding: 10px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    color: #767676;
    font-size: 13px;
}

    .user-token-balance h6 {
        font-size: 15px;
        color: #000000;
    }

.ttl-token {
    font-size: 20px;
    color: #E73333;
    margin-left: 30px;
}

.comment-post-det {
    border: solid 1px #B4B4B4;
    border-radius: 12px;
    margin: 0 0 20px;
}

h4 a {
    color: #0A0A0A;
    text-decoration: none;
}

/*--chat--*/
.chat-container {
    background: #fff;
    min-height: calc(100vh - 230px);
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
}

.chat-userlist-col {
    border-right: solid 1px #D9D9D9;
    flex: 0 0 380px;
    width: 380px;
}

.chat-search {
    padding: 20px 25px;
}

    .chat-search input {
        padding-left: 35px;
        border-color: #B4B4B4;
    }

    .chat-search .inputicon {
        position: absolute;
        left: 10px;
        top: 8px;
    }

.chat-userlist-col > h6 {
    font-size: 15px;
    color: #616161;
    padding: 0 25px;
}

.chat-user-list {
    list-style: none;
    padding: 0;
    overflow: auto;
    max-height: 550px;
    scrollbar-width: thin;
}

    .chat-user-list::-webkit-scrollbar {
        width: 5px;
    }

    .chat-user-list::-webkit-scrollbar-track {
        background: transparent;
    }

    .chat-user-list::-webkit-scrollbar-thumb {
        background-color: rgba(155, 155, 155, 0.5);
        border-radius: 20px;
        border: transparent;
    }


    .chat-user-list li {
        padding: 12px 25px;
        display: flex;
        align-items: center;
    }

        .chat-user-list li:hover, .chat-user-list li.active {
            background: #FFF4F4;
        }

.chat-user-pic {
    margin-right: 13px;
    position: relative;
}

    .chat-user-pic img {
        width: 53px;
        height: 53px;
        border-radius: 100%;
    }

    .chat-user-pic.live-user::after {
        position: absolute;
        width: 11px;
        height: 11px;
        border: solid 1px #fff;
        background: #7AA86F;
        right: 1px;
        top: 2px;
        content: "";
        border-radius: 100%;
    }

.chat-user-shrt-info {
    flex: 1;
}

    .chat-user-shrt-info h6 {
        font-size: 18px;
        padding: 0;
        color: #000000;
        margin: 0 0 5px;
    }

.chat-last-msg-txt {
    margin: 0;
    font-size: 15px;
    color: rgba(18,18,18,.7);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.chat-rec-info {
    text-align: right;
    font-size: 13px;
    color: #000;
}

.chat-unread-cnt {
    display: inline-block;
    width: 24px;
    background: #E73333;
    height: 24px;
    text-align: center;
    color: #fff;
    font-size: 13px;
    border-radius: 100%;
    line-height: 24px;
}

.chat-rec-time {
    margin: 0 0 5px;
}

.chatting-col {
    flex: 1;
    display: flex;
    flex-flow: column;
}

.chating-msg-detail {
    flex: 1;
}

.chatting-msg-cont {
    height: 500px;
    overflow: auto;
    display: flex;
    flex-flow: column;
    justify-content: end;
}

.chatting-msg-scroll {
    max-height: 470px;
    overflow: auto;
    scrollbar-width: thin;
    padding: 30px 30px 0;
}

.chatting-msg-form {
    margin: auto 30px 30px;
    border: solid 1px #858585;
    padding: 10px;
    display: flex;
    border-radius: 8px;
}

    .chatting-msg-form button {
        background: transparent;
        border: 0;
    }

    .chatting-msg-form textarea {
        flex: 1;
        border: 0;
        height: 50px;
        resize: none;
    }

        .chatting-msg-form textarea:focus-visible {
            outline: none;
        }

.chatting-header {
    border-bottom: solid 1px #D9D9D9;
    padding: 20px 30px;
    display: flex;
    align-items: center;
}

    .chatting-header h6 {
        font-size: 18px;
    }

.chat-user-status {
    color: #A7A7A7;
}

    .chat-user-status.chat-user-live {
        color: #588C4B;
    }

        .chat-user-status.chat-user-live .status-point {
            background: #588C4B;
        }

.status-point {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    display: inline-block;
    background: #D3D3D3;
    position: relative;
    top: 5px;
}

.chatting-hdr-pic {
    width: 53px;
    height: 53px;
    border-radius: 100%;
}

.chating-msg-user-pic {
    width: 45px;
    height: 45px;
    border-radius: 100%;
}

.chating-msg-sender {
    width: 75%;
    display: flex;
    margin: 0 0 30px;
}

.chating-msg-sender-bg {
    background: #FFF4F4;
    border-radius: 0 13px 13px 13px;
    padding: 10px 15px;
    margin-bottom: 5px;
    min-height: 80px;
    color: #363E48;
    font-size: 16px;
}

.chatting-msg-time {
    font-size: 13px;
    color: #8F8F8F;
    margin: 0 0 0;
    padding-left: 15px;
}

.chating-msg-owner {
    width: 75%;
    display: flex;
    margin: 0 0 30px auto;
    align-self: flex-end;
}

.chating-msg-owner-bg {
    background: #F4F4F4;
    border-radius: 13px 13px 0 13px;
    padding: 10px 15px;
    margin-bottom: 5px;
    min-height: 80px;
    color: #363E48;
    font-size: 16px;
}

.chating-msg-owner .chatting-msg-time {
    text-align: right;
    padding-right: 15px;
}
/*--chat--*/
.form-grey-bg {
    border-radius: 8px;
    background: #FBFAFA;
    padding: 20px 30px;
}

.form-step-process {
    text-align: center;
    margin: 20px 0;
    padding: 0;
}

    .form-step-process li {
        background: #56C1C8;
        color: #fff;
        border-radius: 8px;
        padding: 10px 20px;
        display: inline-block;
        margin-right: 10px;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 10px;
    }

        .form-step-process li.disabled {
            opacity: .6;
        }

    .form-step-process .step-count {
        background: #fff;
        width: 26px;
        height: 26px;
        text-align: center;
        line-height: 26px;
        color: #56C1C8;
        border-radius: 100%;
        margin-right: 5px;
        display: inline-block;
    }

.modal-header {
    border: 0;
    padding:20px 30px 0;
}

.modal-content {
    border-radius: 16px;
}

.modal-body {
    padding: 10px 30px 30px;
}

.modal-close {
    position: absolute;
    right: 1px;
    top: 5px;
    background: none;
    border: 0;
}

.min-btn-width-100 {
    min-width: 100px;
}

.input-gp {
    border: solid 1px #D4D4D4;
    border-radius: 6px;
    padding: 2px;
    display: flex;
}

    .input-gp input {
        flex: 1;
        border: 0px;
        padding: 0 10px;
    }

        .input-gp input:focus-visible {
            outline: none;
        }

    .input-gp .btn-sm {
        min-width: 90px;
        border-radius: 4px;
    }

/*--support--*/
.form-container-bg {
    background: #FBFAFA;
    padding: 20px;
    border-radius: 8px;
}

.custom-add-user-select {
    position: relative;
}

    .custom-add-user-select select.form-select {
        padding-right: 79px;
    }

    .custom-add-user-select .custom-symbol {
        position: absolute;
        right: 0;
        top: 0;
        display: flex;
        align-items: center;
        pointer-events: none;
    }

        .custom-add-user-select .custom-symbol span {
            background: #C862A7;
            border-radius: 0 6px 6px 0;
            padding: 9px 10px;
            display: inline-block;
            height: 40px;
            margin-left: 10px;
        }

.form-card {
    border-radius: 6px;
    border: solid 1px #D4D4D4;
    background: #fff;
}

.form-card-body {
    padding: 10px 15px;
}

.form-card-header {
    font-size: 14px;
    color: #141413;
    font-weight: 600;
    border-bottom: solid 1px #D4D4D4;
    padding: 8px 15px;
}

.form-card-collapse .form-card-header {
    padding: 0;
    border-bottom: 0;
}

    .form-card-collapse .form-card-header button {
        background: none;
        border: 0;
        padding: 8px 15px;
        width: 100%;
        text-align: left;
        position: relative;
    }

        .form-card-collapse .form-card-header button::after {
            content: "";
            position: absolute;
            right: 10px;
            top: 7px;
            background: url(../images/downarrow.png) 0 0 no-repeat;
            height: 22px;
            width: 22px;
            transition: all .4s ease;
        }

        .form-card-collapse .form-card-header button:not(.collapsed)::after {
            transform: rotate(-180deg);
        }

        .form-card-collapse .form-card-header button:not(.collapsed) {
            border-bottom: solid 1px #d4d4d4;
        }

.fs-11 {
    font-size: 11px;
}
/*--support--*/


/*--03-04-24 profile details--*/
.profile-short-info {
    border: solid 1px #C862A7;
    padding: 15px 20px;
    display: flex;
    background-color: #FFF9FD; /* For browsers that do not support gradients */
    background-image: linear-gradient(to bottom, #fff, #FFF9FD);
    border-radius: 8px;
    font-size: 13px;
    position: relative;
}

.pro-det-pic {
    width: 86px;
    height: 86px;
}

.profile-short-info h6 {
    font-size: 18px;
    margin: 0 0 5px;
}

.profile-short-info .mail-link {
    text-decoration: none;
    color: #141413;
}

.profile-short-info .pro-edit-link {
    position: absolute;
    right: 10px;
    top: 10px;
}

.card {
    border-radius: 8px;
}

.card-header h5 {
    font-size: 16px;
    margin: 0;
}

.card-header {
    background: transparent;
    border-radius: 8px 8px 0 0px !important;
    display: flex;
    border-bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.card-body {
    border-top: solid 1px #eee;
}

.text-link-theme-small {
    font-size: 12px;
    color: #56C1C8;
    text-decoration: underline;
}

.contact-data {
    background: #F2EEF5;
    border-radius: 10px;
    padding: 10px;
    font-size: 12px;
    color: #3E3E3E;
    display: flex;
    align-items: center;
}

    .contact-data h6 {
        font-size: 13px;
        margin: 0 0 5px;
    }

.badge {
    padding: 6px 11px;
    border-radius: 30px;
}

.text-bg-primary {
    background-color: #56C1C8 !important;
}

.min-h-225 {
    min-height: 225px;
}

.conditon-list {
    list-style: none;
    padding: 0;
    height: 200px;
    overflow-y: scroll;
    scrollbar-width: thin;
}

    .conditon-list li {
        border-bottom: solid 1px #F2EEF5;
        padding: 8px 0;
        font-size: 13px;
        color: #272727;
    }

.ser-list-icon {
    list-style: none;
    padding: 0;
    font-size: 12px;
}

    .ser-list-icon li {
        display: flex;
        align-items: center;
        border-bottom: solid 1px #eee;
        padding: 12px 0;
    }

        .ser-list-icon li:last-child {
            border: 0;
        }

        .ser-list-icon li h6 {
            margin: 0 0 3px;
            font-size: 13px;
        }

.ser-list-content {
    margin-left: 10px;
}

.form-control::file-selector-button {
    padding: .575rem .75rem;
}
/*--03-04-24 profile details--*/

/*--goal css--*/
.inprogresstext {
    color: #F26905;
}



.meter-info {
    box-sizing: border-box;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*background-color: var(--accent-color);
     padding: 30px 20px; */
}

#meter--ranger {
    width: 100%;
}

.small {
    font-weight: 300;
    font-size: 12px;
}

/*--goal css--*/

/*--availability list--*/

.availability-list {
    list-style: none;
    padding: 0;
    height: 200px;
    overflow-y: scroll;
    scrollbar-width: thin;
    font-weight: 300;
    font-size: 13px;
}

    .availability-list li {
        border-bottom: solid 1px #F2EEF5;
        padding: 8px 0;
        font-size: 13px;
        color: #272727;
        display: flex;
        align-items: center;
    }

        .availability-list li h6 {
            font-size: 13px;
            margin: 0px;
        }

.na-text {
    color: var(--primarycolor);
}

.avai-table-scroll {
    overflow: auto;
    max-height: 400px;
    scrollbar-width: thin;
}

.input-gp-btn {
    background: #56C1C8;
    padding: 5px 10px;
    border-radius: 6px 0 0 6px;
    line-height: 1;
    border: 0;
}

    .input-gp-btn:last-of-type {
        border-radius: 0px 6px 6px 0;
    }

.date-input-min-width {
    min-width: 150px;
}



/*ckEditor styles*/
.ck-rounded-corners .ck.ck-editor__main > .ck-editor__editable, .ck.ck-editor__main > .ck-editor__editable.ck-rounded-corners {
    border-radius: 0 0 10px 10px !important
}
/*.ck.ck-editor {
    margin-bottom:20px!important
}*/
.ck.ck-editor__top .ck-sticky-panel .ck-sticky-panel__content {
    border-radius: 10px 10px 0 0 !important;
}

.ck-rounded-corners .ck.ck-editor__top .ck-sticky-panel .ck-sticky-panel__content {
    border-radius: 10px 10px 0 0 !important
}

.ck.ck-editor__top .ck-sticky-panel .ck-sticky-panel__content .ck-toolbar {
    border-radius: 10px 10px 0 0 !important
}

.ck-powered-by {
    display: none !important;
}

.dataTables_length {
    margin:4px 0 0 10px
}


table.dataTable thead th {
    font-weight: 500
}


dataTables_wrapper .dataTables_length {
    margin-left: 10px;
    padding-top: .360em;
}

.dataTables_wrapper .dataTables_paginate {
    border: solid 1px #ccc;
    border-radius: 8px;
    padding: 0px
}

    .dataTables_wrapper .dataTables_paginate .paginate_button {
        width: 35px;
        height: 35px;
        line-height: 35px;
        padding: 0;
        border: 0;
        margin-left: 0;
        border-radius: 0px;
        font-weight: 500;
    }

        .dataTables_wrapper .dataTables_paginate .paginate_button.next:hover {
            border-radius: 0 8px 8px 0
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button.previous:hover {
            border-radius: 8px 0 0 8px
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button:active {
            box-shadow: none
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
            background: var(--secondarycolor);
            border: 0px;
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
            background: var(--secondarycolor);
            border: 0px;
            color: #000 !important
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
            border: 0px
        }

            .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
                border: 0px
            }

.dataTables_wrapper .dataTables_length select {
    border-radius: 6px
}
.table.table-default + .top {
    margin-top:10px
}
.dataTables_info, .dataTables_length {
    font-size: 13px
}

.table.dataTable.nowrap td {
    white-space:inherit
}

table.label-word-wrap label {
    word-break:break-all
}
.localizationMenuInner li.active a {
    color:var(--secondarycolor)
}
.localizationMenuInner li a {
    color: #000;
    text-decoration: none;
}





.tableImg {
    width: 35px;
    height: 35px;
    border: 1px solid #cbcbcb;
    display: inline-block; border-radius:5px
}

.actionIconsList img{width:30px;}

#data-table_feature tr th:nth-of-type(2),
#data-table_blog tr th:nth-of-type(2)
{
    max-width: 50px;
}
#data-table_blog tr th:first-child {
    max-width: 25px;
}

#data-table_faqs tr td ul { padding-left: 18px }

.text-link-secondary{
    color:var(--secondarycolor);
    text-decoration:underline
}
.text-link-secondary:hover {
    color: var(--primarycolor);
    text-decoration: none
}

#data-table_MembershipPackage tr th:nth-of-type(3) { min-width: 190px; }

.menu-collapse .menubar li > a img {
    margin:auto
}

#data-table_giftcard_wrapper table.dataTable thead tr th:nth-child(8), #data-table_giftcard_wrapper table.dataTable tbody tr td:nth-child(8) {
    text-align: end;
}

#data-table_giftcard_wrapper table.dataTable thead tr th:nth-child(9), #data-table_giftcard_wrapper table.dataTable tbody tr td:nth-child(9) {
    text-align: end;
}

#data-table_giftcard_wrapper table.dataTable thead tr th:nth-child(10), #data-table_giftcard_wrapper table.dataTable tbody tr td:nth-child(10) {
    text-align: end;
}
#data-table_blog tr th:last-child {
    width:55px!important
}
#data-table_feature tr th:last-child, #data-table_MembershipPackage tr th:last-child, #data-table_GiftPackage tr th:last-child, #data-table_SponsershipPackage tr th:last-child {
    width: 100px !important
}
.video-check-margin{
    margin-top:33px;
}