:root {
    --bg-one: #282F40;
    --bg-two: #3D4353;
    --border-slate: #FAFAFA66;
    --bg-input: #505564;
    --color-input: #FAFAFAE5;
    --color-text: #FAFAFAE5;
    --color-placeholder: #FAFAFA80;
    --color-textwhite: #ffffff;
}

body {
    background-color: var(--bg-one);
    font-family: urbanist;
    display: flex;
    /* overflow-x: hidden; */
}

.row {
    --bs-gutter-x: .8rem !important;
}

.card {
    max-width: 432px;
    width: 100%;
    background-color: #3d4353;
    color: #fff;
    border-radius: 10px;
    border: 1px solid var(--border-slate);
}

.card p {
    font-size: 0.9rem;
    color: #FAFAFAE5;
}

.card .textfield {
    background: #505564;
    border-radius: 6px;
    height: 45px;
    font-size: 14px;
    padding: 12px;
    box-shadow: none;
    border: 1px solid var(--border-slate);
    color: var(--color-input);
}

.card .textfield:focus {
    background: #505564;
    box-shadow: none;
    border: 1px solid var(--border-slate);
    color: var(--color-input);
}

.card .btn-success {
    background-color: #29CB97;
    border: none;
}

.card .btn-success:hover {
    background-color: #29ae85;
}

.btn-outline-secondary {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #0f3460;
}

.btn-outline-secondary:hover {
    background-color: #e2e6ea;
    border-color: #dae0e5;
    color: #0f3460;
}

.auth-atag {
    text-decoration: none !important;
    color: #FAFAFAE5;
}

.auth-label {
    color: #FAFAFAE5;
}

.or-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 16px 0;
}

.btn-block {
    margin-top: 16px;
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #FAFAFA33;
}

.or-divider::before {
    margin-right: 0.5em;
}

.or-divider::after {
    margin-left: 0.5em;
}

.custom-select,
.phoneNumber {
    height: 45px;
    background-color: #505564;
    border: 1px solid #FAFAFA66;
    color: #ECF0F1;
    font-size: 14px;
    border-radius: 6px !important;
}

.custom-select:focus,
.phoneNumber:focus {
    background-color: #505564;
    color: #ECF0F1;
    border: 1px solid #FAFAFA66;
    box-shadow: none;
}

.custom-select {
    background-color: #505564 !important;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='white' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center / 8px 10px;
}

.otp-textfield {
    width: 46px;
    height: 46px;
    gap: 0px;
    padding: 8px 15px;
    font-size: 30px;
}

.inputgap {
    gap: 30px;
}

.input-group {
    display: flex;
    align-items: center;
    /* Ensures items are vertically aligned */
    gap: 15px
}

.password-container {
    position: relative;
    width: fit-content;
}

.input-box {
    background: var(--bg-input);
    width: 100%;
    height: 45px;
    max-width: 500px;
    border-radius: 6px;
    padding: 10px;
    /* margin: ; */
    display: flex;
    align-items: center;
    border: 1px solid var(--border-slate);
}

.input-box input {
    width: 90%;
    /* padding: 14px; */
    border: 1px;
    outline: 0;
    font-size: 14px;
    color: var(--color-input);
    background-color: inherit;
}

.input-box svg {
    width: 24px;
}

.social-btn {
    background-color: var(--bg-input);
    border: 1px solid var(--border-slate);
}

.popup {
    border-radius: 8px;
    overflow: hidden;
    width: 400px;
    /* Adjust as needed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.popup-header {
    background-color: #7d8490;
    /* Grey background */
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
}

.popup-header .icon {
    background-color: #2ce69b;
    /* Green circle background */
    color: white;
    border-radius: 50%;
    padding: 4px 8px;
    margin-right: 15px;
}

.popup-body {
    background-color: #1d2733;
    /* Dark blue background */
    color: white;
    padding: 10px;
}


/* dashboard css started*/


/* Sidebar */

.sidebar {
    width: 100px;
    z-index: 1001;
    background: var(--bg-input);
    position: fixed;
    bottom: 0;
    top: 0;
    left: 0;
    transition: left 0.3s ease-in-out;
}

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

.sidebar ul {
    list-style-type: none;
    padding: 0 0 0 0;
    align-content: center;
    margin-top: 10px;
}

.sidebar ul li {
    display: flex;
    justify-content: center;
    margin-bottom: -7px;
}

.sidebar ul a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-textwhite);
    font-family: Urbanist;
    font-size: 11px;
    font-weight: 400;
    line-height: 15.6px;
    text-align: center;
}

.sidebar ul a:hover {
    color: #29CB97;
}

.sidebar ul a:active {
    color: #29CB97;
}

.nav-link {
    color: #29CB97;
}

.nav-link:focus,
.nav-link:hover,
.nav-link:active {
    color: #29CB97;
}

.content {
    padding: 1rem;
    margin-left: 100px;
    width: 92%;
    background: var(--bg-one);
}

.nav-con {
    padding: .8rem .3rem 0px 1rem;
    left: 100px;
    position: fixed;
    width: 92%;
    top: 0px;
    background: var(--bg-one);
    z-index: 1;
}

.sidebar-bottom-bg {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background-color: var(--bg-input);
    z-index: -1;
}


/* Medium 1024 View */

@media (max-width: 1024px) {
    .content {
        width: 90%;
    }
    .nav-con {
        left: 100px;
        width: 90%;
    }
}


/* Mobile 992 View */

@media (max-width: 992px) {
    .sidebar {
        z-index: 1050;
        left: -110px;
        display: block;
        /* top: 86px; */
        overflow-y: scroll;
    }
    .sidebar.open {
        left: 0;
    }
    .sidebar ul {
        align-content: start;
    }
    .logo {
        margin-top: 7px;
    }
    .nav-con {
        padding: .8rem .3rem 0px .3rem;
        left: 0;
        width: 100%;
    }
    .content {
        margin-left: 0;
        width: 100%;
    }
}


/* Modal css starts here */

.modal-thumbnail-container-icon {
    position: absolute;
    top: 6px;
    right: 20px;
    padding: 1px 2.5px 2.5px 2px;
    border-radius: 7px;
    background-color: #FE1919;
}

.modal {
    color: #ffffff;
}

.modal-content {
    border-radius: .4rem;
}

.modal-header {
    background-color: #404450;
    border-bottom: 1px solid var(--bg-input);
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}

.modal-body {
    border-bottom-left-radius: calc(.3rem - 1px);
    border-bottom-right-radius: calc(.3rem - 1px);
}

.btn-close {
    border: none !important;
    font-size: 24px;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-width='1.5' d='m14.5 9.5l-5 5m0-5l5 5M22 12c0 4.714 0 7.071-1.465 8.535C19.072 22 16.714 22 12 22s-7.071 0-8.536-1.465C2 19.072 2 16.714 2 12s0-7.071 1.464-8.536C4.93 2 7.286 2 12 2s7.071 0 8.535 1.464c.974.974 1.3 2.343 1.41 4.536'/%3e%3c/svg%3e") center / 1em auto no-repeat;
}

.btn-close:focus {
    border: none !important;
    box-shadow: none !important;
}


/* Apply only to the modal */

#transcriptModal ::-webkit-scrollbar {
    width: 4px !important;
}


/* Track */

#transcriptModal ::-webkit-scrollbar-track {
    background: #404450 !important;
}


/* Handle */

#transcriptModal ::-webkit-scrollbar-thumb {
    background: #404450 !important;
}


/* Handle on hover */

#transcriptModal ::-webkit-scrollbar-thumb:hover {
    background: #404450 !important;
}

.modal-body {
    background-color: #404450;
}

.modal-footer {
    background-color: #404450;
    border-top: none;
}

.modal-backdrop.show {
    opacity: .2;
}

.custom-modal {
    top: 47px;
    margin-left: 100px;
}

.modal-thumbnail-container img {
    width: 218px;
    height: 116px;
    border-radius: 5px;
}

.modal-input-container {
    position: relative;
    width: 218px;
    height: 116px;
    border-radius: 5px;
    background: #282E3E;
    border: 1px solid #282E3E;
}

.modal-input-container .square-input-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.modal-input-container .square-input {
    width: 218px;
    height: 116px;
    border-radius: 5px;
    background: #282E3E;
    border: 1px solid #282E3E;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.rename-modal-input {
    color: #ffffff;
    background-color: #505564;
    border: 1px solid #FAFAFA66;
}

.rename-modal-input:focus {
    background-color: #505564;
    border: 1px solid #FAFAFA66;
    box-shadow: none;
}

.modal-btn-bookmark {
    background-color: #505564;
    border: 1px solid #FAFAFA66;
    color: #ffffff;
}

.modal-btn-bookmark:hover {
    color: #ffffff;
}

.form-check-input {
    background-color: #505564;
    border-color: #FAFAFA66;
    box-shadow: none;
    border-radius: .25rem !important;
}

.form-check-input:focus {
    background-color: #505564;
    border-color: #FAFAFA66;
    box-shadow: none;
    border-radius: .25rem !important;
}

.form-check-input:checked {
    background-color: #29CB97;
    border-color: #29CB97;
}

.form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")
}

.form-check .form-check-label {
    color: #ffffff;
}

.form-check.btn-category-container {
    padding: 0px;
}

.category-checkbox {
    display: none;
}

.btn-category {
    color: #ffffff;
    font-size: 13px;
    padding: 13px 0px;
    background-color: #505564;
    border: 1px solid #FAFAFA66;
}

.btn-category:hover,
.btn-category:focus {
    color: #ffffff;
    background-color: #29CB97;
    border: 1px solid #29CB97;
}

.btn-category.active {
    color: #ffffff;
    background-color: #29CB97;
    border: 1px solid #29CB97;
}

@media (max-width:992px) {
    .custom-modal {
        top: 0px;
        margin: 8px;
    }
    .modal-thumbnail-container img {
        width: 177px;
    }
    .modal-input-container {
        width: 177px;
    }
}


/* Offcanvas css starts here */

.offcanvas {
    color: #ffffff;
    background: #282F40;
    width: 450px;
}

.offcanvas .header h5 {
    font-size: 21px;
    font-weight: 500;
    color: #ffffff;
}

.offcanvas h4 {
    text-align: start;
    font-size: 16px;
    margin-bottom: 13px;
}

.offcanvas .header p {
    font-size: 13px;
    font-weight: 400;
    color: #E8E7E7;
}

.offcanvas .btn-close {
    font-size: 13px;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center / 1em auto no-repeat;
}


/* Offcanvas css starts here end */


/* Header css starts here */

#page-topbar {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    padding: 10px 14.5px;
    background-color: var(--bg-input);
}

.bg-header {
    background-color: var(--bg-one) !important;
}

@media (min-width:1024px) {
    #page-topbar {
        left: 100px
    }
}

@media (max-width:768px) {
    #page-topbar {
        left: 0
    }
}

@media (min-width:768px) {
    .nav-item input {
        width: 313px
    }
}

@media (max-width:950px) {
    .tabs-to-dropdown .nav-wrapper {
        width: 100% !important;
    }
    .nav-item input {
        width: 100%
    }
    .nav-item .btn {
        width: 100%;
    }
}

.fs-32 {
    font-size: 2.36rem;
}

.navbar-toggler {
    padding: .1rem .3rem;
    font-size: 1.2rem;
    line-height: 1;
    background-color: #ffffff;
    box-shadow: none !important;
    border-radius: .25rem;
    transition: box-shadow .15s ease-in-out;
}

.nav-wrapper {
    margin: 6px 0px;
}

.navbar-brand {
    color: #ffffff !important;
    display: flex;
    font-size: 17px;
}

.navbar-brand .bi-plus-square {
    margin-top: 5px;
    margin-right: 4px;
}

@media (max-width:992px) {
    .navbar-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

.tabs-to-dropdown .nav-wrapper a {
    color: #ffffff;
}

.tabs-to-dropdown .nav-pills .nav-link.active {
    background-color: #29CB97;
}

.button-row .tabs-to-dropdown .nav-pills .nav-link.active {
    background-color: #29CB97;
    border: 1px solid #FAFAFA66;
}

.button-row .tabs-to-dropdown .nav-pills .nav-link svg {
    stroke: #ffffff;
}

.button-row .tabs-to-dropdown .nav-pills .nav-link.active svg {
    stroke: black;
}

.button-row .tabs-to-dropdown .nav-pills .nav-link.active svg path {
    fill: black;
}

.button-row .tabs-to-dropdown .nav-pills .nav-link svg path {
    fill: white;
}

.nav-item .btn-success {
    background-color: #29CB97;
    border: none;
}

.btn-success {
    background-color: #29CB97;
}

.btn-success:focus,
.btn-success:hover {
    background-color: #29ae85;
}

.btn-success:not(:disabled):not(.disabled):active {
    background-color: #29ae85;
    border-color: #29ae85;
    box-shadow: none;
}

.btn-danger {
    background-color: #FE1919;
}

.btn-danger:focus,
.btn-danger:hover {
    background-color: #e01515;
}

.custom-search {
    background-color: #3d4451;
    border-radius: 7px;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    /* width: 100%; */
    /* max-width: 327px; */
    color: var(--color-input);
    max-height: 45px;
}

.thumbnails.custom-search {
    margin-top: 80px;
}

.custom-search input {
    background-color: transparent;
    border: none;
    color: var(--color-input);
    flex-grow: 1;
    margin-left: 10px;
    outline: none;
}

.custom-search input::placeholder {
    color: #fff;
    font-family: Urbanist;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: center;
}

.custom-search .search-icon,
.custom-search .dots-icon {
    font-size: 1.5rem;
}

.custom-search .dots-icon {
    margin-left: 10px;
}

.custom-button {
    background-color: #29CB97;
    color: white;
    /* border: none;
    display: flex;
    align-items: center;
    justify-content: center; */
    width: 121px;
    max-height: 45px;
    top: 20px;
    left: 818px;
    gap: 0px;
    border-radius: 7px;
    opacity: 0;
}

.custom-button .icon {
    margin-right: 8px;
}

.chrome-atag {
    font-family: Urbanist;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--color-textwhite);
    width: 174px;
    height: 35px;
    border-radius: 7px;
    border: 1px solid var(--border-slate);
}

a:hover {
    color: #29CB97;
}

.filters-row.category .nav-link {
    width: fit-content;
    font-size: 12px;
    border-radius: 7px;
    background-color: var(--bg-input);
    padding: 7px 10px 7px 10px;
    gap: 10px;
    text-decoration: none;
    color: var(--color-textwhite);
}

.filters-row.category .nav-link:active,
.filters-row.category .nav-link:focus,
.filters-row.category .nav-link:hover {
    background-color: var(--bg-input);
    color: var(--color-textwhite);
}

.left,
.right {
    width: max-content;
}

.filters-row .left a {
    width: 64px;
    height: 32px;
    font-size: 12px;
    border-radius: 7px;
    background-color: var(--bg-input);
    padding: 6px 10px 6px 10px;
    gap: 10px;
    text-decoration: none;
    color: var(--color-textwhite);
}

.filters-row-bookmark .left a {
    font-size: 22px;
    text-decoration: none;
    color: var(--color-textwhite);
}

.bookmark-heading {
    color: #FFFFFF !important;
    cursor: pointer;
    display: flex;
    font-size: 17px;
}

.bookmark-heading .bookmark-plus-icon {
    margin-top: 2px;
}

.button-row {
    display: flex;
    /* background-color: #2c3e50; */
    flex-direction: row;
    /* justify-content: center; */
    align-items: center;
    gap: .5rem;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 5px;
}

.view {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5px;
    border: 1px solid #7F838E;
    border-radius: 7px;
    color: #3D4353;
    padding: 4px 5px;
}

.view a {
    background-color: var(--bg-one);
    padding: 5px 7px;
    display: flex;
    border-radius: 4px;
}

.view a.active {
    background: #FFFFFF;
}

.content-type {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5px;
    border: 1px solid #7F838E;
    border-radius: 7px;
    color: #3D4353;
    padding: 4px 5px;
}

.content-type a {
    background-color: var(--bg-one);
    padding: 5px 7px;
    display: flex;
    border-radius: 4px;
    align-items: center;
}

.content-type a.active {
    background: #ffffff;
}

.content-filter a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: #29CB97;
    color: #000000;
    text-decoration: none;
    border-radius: 7px;
    border: 1px solid #FAFAFA66;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    font-family: Urbanist;
}


/*Margin starts here*/

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

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

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

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

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

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

.mt-70 {
    margin-top: 70px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mt-110 {
    margin-top: 110px !important;
}

.mt-130 {
    margin-top: 130px !important;
}

.mt-170 {
    margin-top: 170px !important;
}

.mb-13 {
    margin-bottom: 13px !important;
}

.bg-none {
    background: none !important;
}

@media only screen and (max-width: 767px) {
    .mt-sm-80 {
        margin-top: 80px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .mt-md-130 {
        margin-top: 130px !important;
    }
}

@media only screen and (max-width: 590px) {
    .mt-sm-170 {
        margin-top: 170px !important;
    }
}


/*Content container starts here*/

.cardcon {
    display: block;
}

.listcon {
    display: block;
}

.youtube-con {
    display: block;
}

.reel-con {
    display: block;
}


/* video container css starts here */

.video-container {
    color: var(--color-textwhite);
    /* margin: auto; */
}

.video-container .card {
    margin: auto;
    /* height: 350px; */
    /* max-height: 330px; */
    background-color: #1c1c1e;
    overflow: hidden;
    border: 1px solid #7F838E;
    background: #3D4353;
}

.video-container .thumbnail-container {
    position: relative;
}

.video-container .thumbnail-wrapper {
    width: 100%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-container .thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:767px) {
    .video-container .card {
        margin: auto;
        height: auto !important;
        max-height: fit-content !important;
    }
}

.video-container .card-content {
    padding: 0px 10px 10px 10px;
}

.video-container .card-content h3 {
    margin: 10px 0;
    font-weight: 500;
    height: 50px;
    font-size: 16px;
    line-height: 20px;
    color: var(--color-textwhite);
}

.video-container .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 5px 0;
    font-size: 16px;
    color: #aaa;
}

.video-container .card-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto 0 10px 0;
}

.video-container .card-stats p {
    font-weight: 400;
    font-size: 13px;
    color: var(--color-text);
    margin: 0;
}

.video-container .card-footer span {
    background-color: #E8163C;
    padding: 5px 10px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-textwhite);
}

.video-container .card-footer {
    font-size: 12px;
    color: var(--color-text);
    text-align: right;
    padding: 0 0;
    border: none;
}

.video-container .time-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 5px;
    border-radius: 2px;
    font-size: 12px;
}

.video-container .pending-indicator {
    position: absolute;
    bottom: 5px;
    left: 5px;
    /* background-color: rgb(12 199 247 / 70%); */
    color: white;
    padding: 2px 5px;
    border-radius: 2px;
    font-size: 12px;
}

.video-container-search .pending-indicator {
    position: absolute;
    bottom: 5px;
    left: 5px;
    /* background-color: rgb(12 199 247 / 70%); */
    color: white;
    padding: 2px 5px;
    border-radius: 2px;
    font-size: 12px;
}

.video-container .bookmark-icon,
.video-container .three-dots-icon {
    position: absolute;
    display: none;
    text-align: center;
    padding-top: 1.5px;
    width: 30px;
    height: 30px;
    background: #3D4353;
    border-radius: 4px;
}

.video-container .bookmark-icon {
    top: 12px;
    left: 6px;
}

.video-container .three-dots-icon {
    top: 12px;
    right: 6px;
}

.video-container .thumbnail-container:hover .bookmark-icon,
.video-container .thumbnail-container:hover .three-dots-icon {
    display: block;
}

.btn-group .dropdown-toggle::before {
    display: none;
}

.dropend .dropdown-toggle::after {
    display: none;
}

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

.btn:focus {
    box-shadow: none;
}

.btn-group.dropend ul {
    padding: 10px 0 16px 0;
}

.btn-group.dropend .dropdown-menu .dropdown-item {
    color: #ffffff;
    font-size: 14px;
    font-weight: normal;
    margin: 6px 0px;
    text-align: left;
    align-items: start;
}

.btn-group.dropend .dropdown-menu.show {
    transform: translate(63px, -213px) !important;
}

.btn-group.default .dropdown-menu a {
    justify-content: start;
    font-weight: normal;
    line-height: 22px;
    padding: 4px 16px;
    background: none;
    border: 0;
    border-radius: 0;
}

.btn-group.default .dropdown-menu.show {
    margin-top: 9px !important;
    margin-right: 0 !important;
}

.btn-group .dropdown-menu.show {
    margin-top: -3px !important;
    margin-right: 13px !important;
}

#profileDropdownMenu.show {
    margin-top: 100px !important;
    margin-right: 13px !important;
}

.custom-channel-box .btn-group .dropdown-menu.show {
    margin-top: 4px !important;
    margin-right: 0px !important;
}

.bookmark-list .btn-group .dropdown-menu.show {
    transform: translate(-9px, 4px);
}

.btn-group .dropdown-menu {
    background-color: #1B212F;
}

.bookmark-list .btn-group .dropdown-menu.show {
    margin-top: 4px !important;
    margin-right: 4px !important;
}

.btn-group .dropdown-menu .dropdown-item {
    color: #ffffff;
    font-size: 14px;
    text-align: left;
}

.btn-group .dropdown-menu .dropdown-item:hover {
    color: #ffffff;
    background-color: #29CB97;
}

.btn-group .dropdown-menu .dropdown-item:active {
    color: #ffffff;
    background-color: #29CB97;
}


/* reels container css start here  */

.reel-container {
    color: var(--color-textwhite);
}

.reel-container .card {
    margin: auto;
    height: 576px;
    background-color: #1c1c1e;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #7F838E;
    background: #3D4353;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.reel-container .thumbnail-container {
    position: relative;
    width: 100%;
    height: 410px;
    /* Fixed height for uniformity */
    overflow: hidden;
}

.reel-container .thumbnail-wrapper {
    width: 100%;
    max-width: 480px;
    height: auto;
    /* Allow dynamic height */
    aspect-ratio: 9/16;
    /* Ensure correct Shorts aspect ratio */
    overflow: hidden;
}

.reel-container .thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Prevent stretching, crop instead */
    object-position: center center;
    /* Ensure proper focus */
    /* object-fit: cover; */
}

.reel-container .card-content {
    flex: 1;
    /* Pushes content to take remaining space */
    padding: 10px;
    overflow: hidden;
    /* Prevents content from overlapping */
    /* padding: 0px 10px 10px 10px; */
}

.reel-container .card-content h3 {
    margin: 10px 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: var(--color-textwhite);
}

.reel-container .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 5px 0;
    font-size: 16px;
    color: #aaa;
}

.reel-container .card-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto 0 10px 0;
}

.reel-container .card-stats p {
    font-weight: 400;
    font-size: 13px;
    color: var(--color-text);
    margin: 0;
}

.reel-container .card-footer span {
    background-color: #E8163C;
    padding: 5px 10px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-textwhite);
}

.reel-container .card-footer {
    font-size: 12px;
    color: var(--color-text);
    text-align: right;
    padding: 0 0;
    border: none;
}

.reel-container .time-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 5px;
    border-radius: 2px;
    font-size: 12px;
}

.reel-container .pending-indicator {
    position: absolute;
    bottom: 5px;
    left: 5px;
    /* background-color: rgb(12 199 247 / 70%); */
    color: white;
    padding: 2px 5px;
    border-radius: 2px;
    font-size: 12px;
}

.reel-container .bookmark-icon,
.reel-container .three-dots-icon {
    position: absolute;
    display: none;
    text-align: center;
    padding-top: 1.5px;
    width: 30px;
    height: 30px;
    background: #3D4353;
    border-radius: 4px;
}

.reel-container .bookmark-icon {
    top: 6px;
    left: 6px;
}

.reel-container .three-dots-icon {
    top: 6px;
    right: 6px;
}

.reel-container .thumbnail-container:hover .bookmark-icon,
.reel-container .thumbnail-container:hover .three-dots-icon {
    display: block;
}


/* list view css */

.content .heading-row {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.09px;
    color: #fafafa;
    padding: 10px 0;
}

.list-row {
    color: #FAFAFA;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #3d4353;
    border-radius: 6px;
    border: 1px solid #FAFAFA66;
}

.list-row img {
    width: 50px;
    height: 50px;
    border: 0.5px solid #E0E0E0;
    border-radius: 6px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    /* Ensure it's above other content */
}

.popup {
    border-radius: 8px;
    overflow: hidden;
    width: 400px;
    /* Adjust as needed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.popup-header {
    background-color: #7d8490;
    /* Grey background */
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
}

.popup-header .icon {
    background-color: #2ce69b;
    /* Green circle background */
    color: white;
    border-radius: 50%;
    padding: 4px 8px;
    margin-right: 15px;
}

.popup-body {
    background-color: #1d2733;
    /* Dark blue background */
    color: white;
    padding: 10px;
}

.logout-button:hover {
    background-color: #d32f2f;
}

#loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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


/* Upload Image css starts here */

.main-heading {
    color: #ffffff;
    font-size: 45px;
}

@media (max-width: 767.98px) {
    .main-heading {
        font-size: 25px;
    }
}

#image-preview {
    position: relative;
    cursor: pointer;
}

#uploaded-image {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 6px;
}

#upload-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
}


/* video container Search css starts here */

.video-container-search .card {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 848px;
    height: 186px;
    background-color: #1c1c1e;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #7F838E;
    background: #3D4353;
}

@media (max-width:767px) {
    .video-container-search .card {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    .video-container-search .thumbnail-container {
        justify-content: start;
        width: 100%;
        max-width: 480px;
        height: auto;
        aspect-ratio: 16/9;
        overflow: hidden;
    }
}

.video-container-search .thumbnail-container {
    justify-content: start;
    height: auto;
    aspect-ratio: 16/9;
}

.video-container-search .card img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.video-container-search .card-content {
    padding: 10px 10px 10px 10px;
}

.video-container-search .card-stats {
    display: flex;
    align-items: center;
    margin: 10px 0 0 0;
    gap: 13px;
}

.video-container-search .card-content h3 {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    color: var(--color-textwhite);
}

.video-container-search .card-footer {
    font-size: 12px;
    color: var(--color-text);
    text-align: right;
    padding: 0 0;
    border: none;
}


/* video container History css starts here */

.video-container-history .card {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 707px;
    height: 150px;
    background-color: #1c1c1e;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #7F838E;
    background: #3D4353;
    padding: 10px;
}

.video-container-history .thumbnail-container {
    justify-content: start;
    width: 100%;
    height: 100% !important;
}

.video-container-history .card img {
    width: 100%;
    height: 100%;
}

.video-container-history .card-content {
    margin: 0;
    padding: 0px 10px 10px 10px !important;
}

@media (max-width:768px) {
    .video-container-history .card {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    .video-container-history .card-content {
        margin: 0;
        padding: 10px 0px 0px 0px !important;
    }
}

.video-container-history .card-stats {
    display: flex;
    align-items: center;
    margin: 10px 0 0 0;
    gap: 13px;
}

.video-container-history .card-content h3 {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: var(--color-textwhite);
}

.video-container-history .card-stats p {
    font-weight: 400;
    font-size: 12px;
    color: var(--color-text);
    margin: 0;
}

.video-container-history .card-footer {
    font-size: 12px;
    color: var(--color-text);
    text-align: right;
    padding: 0 0;
    border: none;
}


/* video container Web Browser Size css starts here */


/* video container Home Large Size View css starts here */

.video-container-large .card {
    width: 100%;
    max-width: 310px;
    height: 248px;
    background-color: #1c1c1e;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #7F838E;
    background: #3D4353;
    padding: 10px;
}

.video-container-large .card img {
    width: 100%;
    height: auto;
}

.video-container-large .card-content {
    display: flex;
    padding: 6px 0px 0px 0px;
}

.video-container-large .card-content img {
    width: 34px;
    height: 34px;
    border-radius: 17px;
    margin: 0px 10px 10px 0px;
}

.video-container-large .card-content h3 {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 3px;
    color: var(--color-textwhite);
}

.video-container-large .card-stats {
    display: grid;
    align-items: center;
    margin: 0;
}

.video-container-large .card-stats p {
    font-weight: 400;
    font-size: 12px;
    color: var(--color-text);
    margin: 0;
}


/* video container Home Small Size View css starts here */

.video-container-small .card {
    width: 100%;
    max-width: 220px;
    height: 213px;
    background-color: #1c1c1e;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #7F838E;
    background: #3D4353;
    padding: 10px;
}

.video-container-small .card img {
    width: 100%;
    height: auto;
}

.video-container-small .card-content {
    display: flex;
    padding: 6px 10px 0px 0px;
}

.video-container-small .card-content img {
    width: 34px;
    height: 34px;
    border-radius: 17px;
    margin: 0px 10px 10px 0px;
}

.video-container-small .card-content h3 {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 3px;
    color: var(--color-textwhite);
}

.video-container-small .card-stats {
    display: grid;
    align-items: center;
    margin: 0;
}

.video-container-small .card-stats p {
    font-weight: 400;
    font-size: 12px;
    color: var(--color-text);
    margin: 0;
}


/* video container column Size View css starts here */

.video-container-column .card {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 318px;
    background-color: #1c1c1e;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #7F838E;
    background: #3D4353;
    padding: 10px;
}

.video-container-column .thumbnail-container {
    width: auto;
    height: auto !important;
}

.video-container-column .card img {
    width: 127px !important;
    height: 71px;
}

.video-container-column .card-content {
    margin: 0;
    padding: 0px 0px 0px 10px;
}

.video-container-column .card-content h3 {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 3px;
    color: var(--color-textwhite);
}

.video-container-column .card-stats {
    display: grid;
    align-items: center;
    margin: 0;
}

.video-container-column .card-stats p {
    font-weight: 400;
    font-size: 12px;
    color: var(--color-text);
    margin: 0;
}


/* video container Channel Large Size View css starts here */

.video-container-channel-large .card {
    width: 100%;
    max-width: 360px;
    background-color: #1c1c1e;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #7F838E;
    background: #3D4353;
    padding: 10px;
}

.video-container-channel-large .card img {
    width: 100%;
    height: auto;
}

.video-container-channel-large .card-content {
    padding: 0px;
}

.video-container-channel-large .card-content h3 {
    margin-top: 5px;
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 6px;
    color: var(--color-textwhite);
}

.video-container-channel-large .card-stats {
    align-items: center;
    margin: 0;
}

.video-container-channel-large .card-stats p {
    font-weight: 400;
    font-size: 12px;
    color: var(--color-text);
    margin: 0;
}


/* video container Channel small Size View css starts here */

.video-container-channel-small .card {
    width: 100%;
    max-width: 190px;
    height: 179px;
    background-color: #1c1c1e;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #7F838E;
    background: #3D4353;
    padding: 10px;
}

.video-container-channel-small .card img {
    width: 100%;
    height: auto;
}

.video-container-channel-small .card-content {
    padding: 0px;
}

.video-container-channel-small .card-content h3 {
    margin-top: 5px;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 6px;
    color: var(--color-textwhite);
}

.video-container-channel-small .card-stats {
    align-items: center;
    margin: 0;
}

.video-container-channel-small .card-stats p {
    font-weight: 400;
    font-size: 12px;
    color: var(--color-text);
    margin: 0;
}


/* video container Watch Later Large Size View css starts here */

.video-container-later-large .card {
    width: 100%;
    max-width: 271px;
    background-color: #1c1c1e;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #7F838E;
    background: #3D4353;
    padding: 10px;
}

.video-container-later-large .card img {
    width: 100%;
    height: auto;
}


/* video container Mobile Size css starts here */

.video-container-mobile .card {
    width: 100%;
    max-width: 319px;
    background-color: #1c1c1e;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #7F838E;
    background: #3D4353;
    padding: 10px;
}

.video-container-mobile .card img {
    width: 100%;
    height: auto;
}

.video-container-mobile .card-content {
    display: flex;
    padding: 6px 0px 0px 0px;
}

.video-container-mobile .card-content img {
    width: 34px;
    height: 34px;
    border-radius: 17px;
    margin: 0px 10px 0px 0px;
}

.video-container-mobile .card-content h3 {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 3px;
    color: var(--color-textwhite);
}

.video-container-mobile .card-stats {
    align-items: center;
    margin: 0;
}

.video-container-mobile .card-stats p {
    font-weight: 400;
    font-size: 12px;
    color: var(--color-text);
    margin: 0;
}


/* video container Allpe Tv Size css starts here */


/* video container Home Size View css starts here */

.video-container-tv-home .card {
    width: 100%;
    max-width: 423px;
    height: 397px;
    background-color: #1c1c1e;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #7F838E;
    background: #3D4353;
    padding: 10px;
}

.video-container-tv-home .thumbnail-container {
    width: auto;
    height: 250px !important;
}

.video-container-tv-home .card img {
    width: 100%;
    height: 250px;
}

.video-container-tv-home .card-content {
    padding: 0px;
}

.video-container-tv-home .card-content h3 {
    font-weight: 600;
    font-size: 26px;
    line-height: 31px;
    margin-bottom: 4px;
    color: var(--color-textwhite);
}

.video-container-tv-home .card-stats {
    align-items: center;
    margin: 4px 0;
}

.video-container-tv-home .card-stats p {
    font-weight: 400;
    font-size: 19px;
    line-height: 22px;
    color: var(--color-text);
    margin: 8px 0 8px 0;
}

.video-container-tv-home .card-footer {
    font-size: 18px;
    color: var(--color-text);
    text-align: right;
    padding: 0 0;
    border: none;
}

.video-container-tv-home .card-footer p {
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: var(--color-text);
    margin: 0;
}


/* video container Original Size View css starts here */

.video-container-tv-original .card {
    width: 100%;
    max-width: 691px;
    height: 501px;
    background-color: #1c1c1e;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #7F838E;
    background: #3D4353;
    padding: 10px;
}

.video-container-tv-original .thumbnail-container {
    width: auto;
    height: auto !important;
}

.video-container-tv-original .card img {
    width: 100%;
    height: 478px !important;
}

.page-link {
    color: #ffffff !important;
}

.custom-pagination .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #00d084;
    border-color: #00d084;
}

.custom-pagination .page-item .page-link {
    background-color: #3D4353;
    /* Darker shade for the active page */
    border-color: #3D4353;
    /* Border color for the active page */
}


/* Modal css starts here */

.video-container .bookmark-icon img,
svg {
    vertical-align: middle;
    margin-top: 0px;
}


/* Tutorial Container css starts here */

.h-90 {
    height: 90vh;
}

.tutorial-container {
    position: relative;
}

.tutorial-container-search {
    position: relative;
}

.tutorial-search-icon {
    width: 44px;
    height: 44px;
    border-radius: 22px;
    background-color: #00d084;
    position: relative;
    border: none;
}

.tutorial-search-input {
    height: 55px;
    color: #ffffff;
    background: #3D4353;
    border: 1px solid #7F838E;
    box-shadow: none !important;
}

.tutorial-search-input:focus {
    color: #ffffff;
    background: #3D4353;
    border: 1px solid #7F838E;
}

.tutorial-search-icon-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.tutorial-search {
    position: absolute;
}

.tutorial-search {
    top: 6px;
    right: 6px;
}


/* Tutorial Tab */

.tabs-tuturial .nav-tab-tutorial a {
    color: white;
}

.nav-tab-tutorial .nav-pills {
    border-bottom: 2px solid #ffffff;
    margin-top: 9px;
}

.nav-tab-tutorial .nav-pills .nav-link {
    border-radius: 0;
    padding: 0px 4px 9px 4px;
    margin: 0px 13px 0px 0px;
}

.nav-tab-tutorial .nav-pills .nav-link.active {
    background: none;
    border-bottom: 2px solid #ffffff;
}

.nav-tab-tutorial.nav-pills .nav-link {
    color: #ffffff;
}

.tabs-tuturial .nav-tab-tutorial .nav-pills .nav-link.active {
    background: none;
}


/* Tutorial Container */

.tutorial-container {
    color: var(--color-textwhite);
}

.tutorial-container-search {
    color: var(--color-textwhite);
}

.tutorial-container .card {
    margin: auto;
    height: 350px;
    display: flex;
    flex-direction: column;
    background-color: #1c1c1e;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #7F838E;
    background: #3D4353;
}

.tutorial-container .card-content-heading {
    display: flex;
    align-items: center;
    margin: 0px 0px 15px 0;
    padding: 0px 10px 0px 10px;
}

.tutorial-container .card-content-heading p {
    font-weight: 600;
    font-size: 14px;
    color: #00d084;
    text-transform: uppercase;
    margin: 0px 0px 0px 6px;
}

.tutorial-container .card img {
    width: 100%;
    height: auto;
}

.tutorial-container .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px 0px 10px 0px;
}

.tutorial-container .card-content-inner {
    flex: 1;
    padding: 0px 13px 0px 13px;
}

.tutorial-container .card-content h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    color: var(--color-textwhite);
}

.tutorial-container .card-content {
    margin: 5px 0;
    font-size: 14px;
    color: #ffffff;
}

.tutorial-container .card-content-inner p {
    color: #ffffff;
}

.tutorial-container .card-stats {
    align-items: center;
    padding: 10px 13px 0px 13px;
    border-top: 1px solid #7F838E;
    margin-top: auto;
}

.tutorial-container .card-stats a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
}

.tutorial-container .card-stats p {
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    margin: 0;
}

.tutorial-container .card-footer span {
    background-color: #E8163C;
    padding: 5px 10px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-textwhite);
}

.tutorial-container .card-footer {
    font-size: 12px;
    color: var(--color-text);
    text-align: right;
    padding: 0 0;
    border: none;
}

.tutorial-container .thumbnail-container {
    position: relative;
    height: 150px !important;
}

.tutorial-container .time-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 5px;
    border-radius: 2px;
    font-size: 12px;
}

.tutorial-container .pending-indicator {
    position: absolute;
    bottom: 5px;
    left: 5px;
    /* background-color: rgb(12 199 247 / 70%); */
    color: white;
    padding: 2px 5px;
    border-radius: 2px;
    font-size: 12px;
}

.tutorial-container .bookmark-icon,
.tutorial-container .three-dots-icon {
    position: absolute;
    display: none;
    text-align: center;
    padding-top: 1.5px;
    width: 30px;
    height: 30px;
    background: #3D4353;
    border-radius: 4px;
}

.tutorial-container .bookmark-icon {
    top: 6px;
    left: 6px;
}

.tutorial-container .three-dots-icon {
    top: 6px;
    right: 6px;
}

.tutorial-container .thumbnail-container:hover .bookmark-icon,
.tutorial-container .thumbnail-container:hover .three-dots-icon {
    display: block;
}


/* Tutorial Detail container css starts here */

.tutorial-detail {
    color: #ffffff;
}

.tutorial-img-container img {
    width: 100%;
    height: 444px;
}

.tutorial-detail ul ol {
    font-size: 17px;
    font-weight: 600;
    padding-left: 10px;
}

.tutorial-detail ul .text {
    font-size: 14px;
}


/* Support container css starts here */

.form-select {
    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='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.custom {
    height: 49px;
    color: #ffffff;
    box-shadow: none;
    background-color: #505564;
    border: 1px solid #FAFAFA66;
}

.custom:focus {
    color: #ffffff;
    box-shadow: none;
    background-color: #505564;
    border: 1px solid #FAFAFA66;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff !important;
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

::placeholder {
    color: #ffffff !important;
}

.custom-icon {
    position: absolute;
    top: 13px;
    right: 9px;
}

.custom-icon-video {
    position: absolute;
    top: 13px;
    left: 6px;
}

.custom-icon-menu {
    position: absolute;
    top: 13px;
    right: 2px;
    rotate: 90deg;
}


/* Query Video container css starts here */

.query-video-container {
    color: #ffffff;
}

.query-video-container .query-chat .inner {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.query-video-container .query-chat .sub-inner {
    text-align: right;
}

.query-video-container .query-chat .inner img {
    width: 32px;
    height: 32px;
    border-radius: 19px;
}

.query-video-container .query-chat .inner h5 {
    font-size: 16px;
    margin-bottom: 0;
}

.query-video-container .query-chat .inner p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 26px;
}

a {
    text-decoration: none;
}

.pagination.page-link {
    padding: .200rem .600rem;
}

.page-link {
    padding: .200rem .600rem;
}

.pagination.page-link {
    color: #ffffff !important;
}

.pagination .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #00d084;
    border-color: #00d084;
}

.pagination .page-item .page-link {
    background-color: #3D4353;
    /* Darker shade for the active page */
    border-color: #3D4353;
    /* Border color for the active page */
}


/* Modal css starts here */


/* filter page */

input.filter-searchbar::placeholder {
    text-align: justify;
    font-size: 14px;
    font-weight: 400;
}


/* Dashboard new layout */

.video-duration-time {
    bottom: 130px;
    right: 0;
    background-color: #000;
    border-radius: 6px;
    font-size: 13px;
    padding: 0px 5px;
    font-weight: 600;
    color: #fff;
}


/* video stats */

.col-1 .card-footer span {
    background-color: #E8163C;
    width: 50px;
    height: 18px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-textwhite);
}

.card-footer {
    font-size: 12px;
    color: var(--color-text);
    text-align: right;
    padding: 0 0;
    border: none;
}

.card-time-stamp {
    text-decoration: underline;
}

.statistics-img {
    max-width: 120px !important;
    height: 70px !important;
    border-radius: 7px;
}

.statistics-img {
    max-width: 120px !important;
    height: 70px !important;
    border-radius: 7px;
}

.statistics-row {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #7F838E;
    background: #3D4353;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.statistics-row-headings {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    color: #fff;
}

.statistics-channel-icon {
    width: 45px;
    height: 45px;
    border-radius: 22px;
    display: inline-block;
    object-fit: cover;
}

.statistics-content {
    /* margin-left: 10px; */
    padding: 1rem;
    width: 100%;
    color: var(--color-textwhite);
}


/* Channels screen */

.channel-card {
    /*width: 325px;*/
    height: auto;
    border-radius: 6.367px;
    border: 0.91px solid #7F838E;
    color: #ffffff;
    background: #3D4353;
}

.channel-card .row {
    position: relative;
}

.channel-info {
    position: absolute;
    left: 115px;
    bottom: 0;
}

.channel-card hr {
    border: 1px solid #7F838E;
}

.channel-img {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    margin-top: 9px;
    margin-left: 8px;
}

.channel-name {
    color: var(--font-color);
    font-family: Urbanist;
    font-size: 17px;
    font-style: normal;
    word-break: break-all;
    font-weight: 500;
    line-height: 23px;
    /* 127.778% */
    text-transform: capitalize;
}

.channel-category {
    color: var(--font-color);
    font-family: Urbanist;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    /* 191.667% */
    text-transform: capitalize;
    word-break: break-all;
}

.subscribers-count {
    display: inline-flex;
    padding: 4px 7px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: #303545;
    color: var(--font-color);
    font-family: Urbanist;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 8px;
    margin-left: 1.3rem;
}

.channel-stats-text {
    color: var(--font-color);
    font-family: Urbanist;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    text-transform: capitalize;
}

.channel-stats-btn {
    color: var(--font-color);
    font-family: Urbanist;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    /* 164.286% */
    text-transform: capitalize;
    text-decoration: none;
    cursor: pointer;
    margin-top: 6px;
    margin-bottom: 5px;
}

.card-content {
    padding: 0px 10px 2px 10px;
}

.card-content h3 {
    margin: 10px 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: var(--color-textwhite);
}

.card-content {
    margin: 5px 0;
    font-size: 14px;
    color: #aaa;
}

.card-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0px 8px;
}

.card-stats p {
    font-weight: 400;
    font-size: 13px;
    color: var(--color-text);
    margin: 0;
}


/* Channel stats */

.channel-statistics-img {
    width: 75px;
    height: 75px;
    border-radius: 50px;
    display: inline-block;
    object-fit: cover;
}

.channel-stats .channel-name {
    font-size: 14.55px;
    font-weight: 600;
    line-height: 20.92px;
    color: #fff !important;
}

.channel-stats .channel-category {
    font-size: 12px;
    font-weight: 400;
    line-height: 20.92px;
    color: #fff;
}

.btn-group.filter .dropdown-menu.show {
    margin-top: 9px !important;
    margin-right: 0 !important;
}

.btn-group .dropdown-menu {
    background-color: #1B212F;
}

.btns-div {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.filter-card {
    width: 448px !important;
    background-color: #282F40;
    color: var(--font-color);
    border-radius: 10px;
    border: 1px solid var(--border-slate);
}

.filter-card-p {
    color: #E8E7E7;
    font-family: Urbanist;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
    text-transform: capitalize;
    width: 292px;
}

.search-card-popup-heading {
    color: var(--font-color);
    font-family: Urbanist;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 3px;
    /* 109.524% */
    text-transform: capitalize;
}

.search-card-popup-form-label {
    /* Label */
    font-family: Urbanist;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.search-card-popup-input {
    display: flex;
    width: 390px !important;
    height: 45px !important;
    padding: 14px;
    align-items: flex-start;
    gap: 10px;
}

.filter-rest-button {
    color: var(--font-color);
    font-family: Urbanist;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
    text-transform: capitalize;
}

.find-outliers {
    color: #94A3B8;
    font-family: Urbanist;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    /* 164.286% */
    text-transform: capitalize;
}

.advance-search-input {
    background: #3c4252;
    width: 93%;
    height: calc(1.5em + .75rem + 2px);
    border-radius: 6px;
    padding: 20px;
    display: flex;
    align-items: center;
    border: 2px solid var(--Border-Enable, rgba(250, 250, 250, 0.20));
    margin-left: 19px;
}

.advance-search-input input {
    width: 95%;
    border: none;
    outline: 0;
    font-size: 14px;
    color: #e2dcdcb6;
    background-color: inherit;
}

.advance-search-input input::placeholder {
    color: #a9a9a9;
    opacity: 1;
}

.advance-search-input-validation {
    color: var(--Content-Validation-Message, rgba(250, 250, 250, 0.70));
    font-family: Urbanist;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.create-new-folder-button {
    width: 95%;
    border: none;
    outline: 0;
    font-size: 14px;
    background-color: inherit;
    color: var(--bw-white, #FFF);
    text-align: center;
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}

.check-box-font {
    color: var(--Content-Label, #FAFAFA);
    font-family: Urbanist;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.category-btn {
    border-radius: 6px;
    border: 1px solid #636874;
    background: #3D4353;
    display: flex;
    width: 142px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-wrap: nowrap;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
}

.category-btn:active {
    border-radius: 6px;
    border: 1px solid #1A9B72;
    background: var(--Button-Button, #29CB97);
    display: flex;
    width: 142px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-wrap: nowrap;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
}

.add-new-btn {
    display: flex;
    width: 142px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid rgba(173, 173, 173, 0.70);
    background: #FFF;
    color: #282F40;
    font-family: Urbanist;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
}

.save-button {
    display: inline-flex;
    height: 37px;
    padding: 6px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 7px;
    background: var(--Button-Button, #29CB97);
    color: var(--font-color);
}

.custom-button {
    width: 150px !important;
}

.btn-group.default .dropdown-menu a {
    justify-content: start;
    padding: 4px 16px;
    background: none;
    border: 0;
    border-radius: 0;
}

.btn-group.default .dropdown-menu.show {
    margin-top: 9px !important;
    margin-right: 0 !important;
    height: fit-content;
}

.btn-secondary {
    font-size: 18px !important;
}

.btn-light {
    font-size: 12px !important;
}


/* Support container css starts here */

.form-select {
    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='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.custom {
    height: 55px;
    color: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: none;
    padding: 5px;
    background-color: #505564;
    border-radius: .25rem;
    border: 1px solid #FAFAFA66;
}

.custom-channel-box .custom a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px !important;
}

.custom-channel-box .custom p {
    margin: 0;
}

.custom-icon {
    position: absolute;
    top: 13px;
    right: 9px;
}

.custom-icon-video {
    position: absolute;
    top: 13px;
    left: 6px;
}

.custom-icon-menu {
    position: absolute;
    top: 13px;
    right: 2px;
    rotate: 90deg;
}

.custom-icon-mic {
    position: absolute;
    top: 13px;
    right: 9px;
}


/* list view css */

tbody,
td,
tfoot,
th,
thead,
tr {
    vertical-align: middle;
}

table.list-table {
    border-collapse: separate;
    border-spacing: 0 10px;
}

.list-table thead {
    font-size: 16px;
    font-weight: 400 !important;
    color: #fafafa;
}

.list-table thead th {
    font-size: 16px;
    font-weight: normal;
}

.list-table tbody tr {
    height: 110px;
    color: #FAFAFA;
    background: #3d4353;
}

.list-table tbody td:first-child {
    padding-left: 15px;
    border-radius: 6px 0 0 6px;
}

.list-table tbody td:last-child {
    border-radius: 0 6px 6px 0;
}

.table-btn span {
    background-color: #E8163C;
    padding: 5px 10px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-textwhite);
}

.list-table a {
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
}

.list-table a:hover {
    color: #ffffff;
}

.list-table img {
    width: 120px;
    height: 69px;
    border: 0.5px solid #E0E0E0;
    border-radius: 6px;
}

.list-table .channel-img img {
    width: 44px;
    height: 44px;
    border-radius: 22px;
}

.list-table .channel-info-img img {
    width: 70px;
    height: 70px;
    border-radius: 45px;
}

.category-add-btn {
    font-size: 14px !important;
    font-weight: 500;
}


/* Affiliate container css starts here */

.affiliate {
    color: #000000;
    text-align: center;
}

.affiliate .heading h3 {
    font-size: 32px;
    font-weight: 700;
}

.affiliate .heading p {
    color: #60748A;
    font-size: 14px;
    font-weight: 400;
}

.affiliate .card {
    margin: auto;
    max-width: 554.61px;
    padding: 30px;
    margin-bottom: 15px;
    background-color: #ffffff;
}

.affiliate .card p {
    color: #3D4D5F;
    font-size: 12.75px;
    font-weight: 400;
}

.affiliate .card p .inner {
    font-weight: 600;
}

.affiliate .card p a {
    color: #3D4D5F;
    font-size: 12.75px;
    font-weight: 400;
    text-decoration: underline;
}

.affiliate .card hr {
    color: #3D4D5F;
}

.affiliate .card .form-group {
    color: #3D4D5F;
    text-align: start;
    margin: 10px 0;
}

.affiliate .card .form-group .form-label {
    color: #3D4D5F;
    font-size: 14px;
}

.affiliate .card .form-group .custom {
    height: 35.06px;
    border-color: #D4DDE7;
    border-radius: 6px;
    color: #758BA5 !important;
    background-color: #ffffff;
}

.affiliate .card .form-group ::placeholder {
    color: #758BA5 !important;
}

.affiliate .card .form-group a {
    color: #1884FF;
    font-size: 12.75px;
    font-weight: 400;
    text-decoration: none;
}

.affiliate .card-bottom {
    padding: 0 30px;
    margin-bottom: 20px;
}

.affiliate .card-bottom p {
    color: #3D4D5F;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

.affiliate .card-bottom a {
    color: #3D4D5F;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

.affiliate .card-bottom a:hover {
    color: #29CB97;
}

.affiliate .card-bottom span {
    color: #3D4D5F;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}


/* Billing container css starts here */

.billing-container {
    color: #ffffff !important
}

.billing th {
    font-weight: 700;
}

.billing tbody,
td,
tfoot,
th,
thead,
tr {
    color: #ffffff;
    border-bottom: 1.5px solid #DEE2E6;
}

.billing tbody th.text-success {
    color: var(--color-text-success) !important;
}

.billing tbody td a {
    color: #ffffff;
    text-decoration: none;
}


/* Checkout container css starts here */

.checkout tbody,
td,
tfoot,
th,
thead,
tr {
    border-top: none;
}

.checkout tbody,
td {
    padding: 0 20px !important;
}

.checkout tbody,
td:first-child {
    border-left: none;
}

.checkout tbody,
td:last-child {
    border-right: none;
}

.checkout tbody,
tr.last,
td {
    border-bottom: none;
}

.checkout-container .card {
    max-width: 100%;
    border: none;
    padding: 20px;
    margin-bottom: 25px;
}

.checkout-container .card .inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 9px;
}

.checkout-container .card .inner h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.checkout-container .card .inner p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.checkout-container .card .inner p span {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
}

.checkout-container .card .inner hr {
    color: #ffffff;
    height: 6px;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 0;
}

.checkout-container .card .checkout .heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.checkout-container .card .checkout a {
    color: #ffffff;
    text-decoration: underline;
}

.card .business-trail .inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 13px;
}

.card .business-trail .inner .sub-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.card .business-trail .inner h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.card .business-trail .inner h4 {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 3px 0;
}

.card .checkout-container .inner p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.card .business-trail .inner hr {
    color: #ffffff;
    height: 2px !important;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 0;
}

.card .business-trail span {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.card .business-trail .form-check-input {
    width: 36px;
    height: 22px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .25);
    border-radius: 2em !important;
    box-shadow: none !important;
}

.card .business-trail .form-check-input:focus {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .25);
    box-shadow: none !important;
}

.card .business-trail .form-check-input:checked {
    background-color: #29CB97;
    border-color: #29CB97;
}


/* video container css starts here */

.faq-container {
    color: var(--color-textwhite);
    /* margin: auto; */
}

.faq-container .card {
    margin: auto;
    background-color: #1c1c1e;
    overflow: hidden;
    border: 1px solid #7F838E;
    background: #3D4353;
}

.faq-container .card img {
    width: 100%;
    height: auto;
}

.faq-container .card-content {
    padding: 0px 10px 10px 10px;
}

.faq-container .card-content h3 {
    margin: 10px 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: var(--color-textwhite);
}

.faq-container .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 5px 0;
    font-size: 16px;
    color: #aaa;
}

.faq-container .card-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto 0 10px 0;
}

.faq-container .card-stats p {
    font-weight: 400;
    font-size: 14px;
    color: var(--color-text);
    margin: 0;
}

.faq-container .card-footer span {
    background-color: #E8163C;
    padding: 5px 10px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-textwhite);
}

.faq-container .card-footer {
    font-size: 12px;
    color: var(--color-text);
    text-align: right;
    padding: 0 0;
    border: none;
}

.faq-container .thumbnail-container {
    position: relative;
    height: 230px !important;
    overflow: hidden;
}


/* Report Issue container css starts here */

.report-issue {
    cursor: #ffffff;
}

.report-issue .card {
    max-width: 100%;
    background-color: #505564;
    border: none;
    border-radius: 6px;
}

.report-issue .card .card-header {
    display: flex;
    justify-content: space-between;
    vertical-align: middle;
    align-items: center;
    background-color: #505564;
    border-radius: 6px 6px 0 0;
}

.report-issue h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
}

.report-issue h5 {
    font-size: 18px;
    font-weight: 600;
}

.report-issue p {
    color: #B0B3B8;
    font-size: 14px;
}

.report-issue .report-content-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.report-issue .report-content p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

#outlier-slider .noUi-touch-area {
    position: relative;
}

#outlier-slider .noUi-touch-area:hover::after {
    opacity: 1;
}

.swal2-confirm {
    background-color: #00c89b !important;
    /* Replace with your brand color */
    color: #fff !important;
    border: none !important;
    box-shadow: none !important;
}