.row>* {
    flex-shrink: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.row-gap-0 {
    row-gap: 0 !important;
}

.row-gap-1 {
    row-gap: 0.25rem !important;
}

.row-gap-2 {
    row-gap: 0.5rem !important;
}

.row-gap-3 {
    row-gap: 1rem !important;
}

.row-gap-4 {
    row-gap: 1.5rem !important;
}

.row-gap-5 {
    row-gap: 3rem !important;
}

.text-limit-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}




.playlist-card {
    background: #111;
    border-radius: 14px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.playlist-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffca28;
    margin-bottom: 10px;
}

.playlist-desc {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 20px;
}

.video-card {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    /* margin-bottom: 10px; */
}

.video-thumb {
    width: 100px;
    height: 70px;
    background: #333;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-info {
    flex: 1;
}

.video-info h6 {
    margin-bottom: 5px;
    color: #fff;
    font-size: 13px;
}

.video-info a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.video-info a:hover {
    text-decoration: underline;
}


.authincation {
    background: rgba(69, 43, 144, 0.1);
    display: flex;
    min-height: 100vh;
}

.authincation.login-aside {
    background: #fff;
    padding-top: 5rem;
    max-width: 35rem;
    width: 100%;
    z-index: 1;
    position: relative;
}

.authincation.login-aside:after {
    content: "";
    clip-path: polygon(0% 100%, 100% 0%, 0% 0%);
    width: 8.75rem;
    height: 100%;
    position: absolute;
    right: -8.75rem;
    z-index: -1;
    top: 0;
    background: #fff;
    box-shadow: 0.125rem 0rem 1.875rem rgba(0, 0, 0, 0.15);
}

.authincation.login-aside.aside-image {
    min-height: 28.125rem;
    margin: auto 0;
    min-width: 0;
    background-size: contain;
    background-repeat: no - repeat;
    background-position: center;
}

@media only screen and(max-width: 87.5rem) {
    .authincation.login-aside {
        max-width: 22.5rem;
    }
}

@media only screen and(max-width: 61.9375rem) {
    .authincation.login-aside {
        max-width: 100%;
        padding-top: 0;
    }

    .authincation.login-aside:after {
        content: none;
    }
}

@media only screen and(max-width: 35.9375rem) {
    .authincation.login-aside.aside-image {
        min-height: 18.75 rem;
    }
}

.authincation-content {
    background: #fff;
    box-shadow: 0 0 2.1875 rem 0 rgba(154, 161, 171, 0.15);
    border-radius: 0.3125 rem;
}

[data-theme-version="dark"].authincation-content {
    background: #182237;
    box-shadow: none;
}

.authincation-content.style-1 {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(1.25rem);
}

.authincation-content.style-1 .form-control {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0.3125rem;
}

.authincation-content.style-1 .user-icon {
    height: 6.25rem;
    background: var(--primary);
    width: 6.25rem;
    text-align: center;
    border-radius: 6.25rem;
    line-height: 6.25rem;
    margin-left: auto;
    font-size: 3.75rem;
    text-align: center;
    color: white;
    margin-right: auto;
    margin-top: -6.25rem;
    margin-bottom: 1.25rem;
}

.authincation-content.style-2 {
    background: transparent;
    box-shadow: none;
    max-width: 33.125rem;
    width: 100%;
}

.authincation-content.style-2 .form-control {
    border: 0;
    border-radius: 0.3125rem;
    box-shadow: 0rem 0rem 0.9375rem rgba(0, 0, 0, 0.08);
}

.auth-form {
    padding: 3.125rem 3.125rem;
}

@media only screen and (max-width: 35.9375rem) {
    .authincation-content.style-2 .auth-form {
        padding: 1.875rem 0rem;
    }
}

.auth-form img {
    width: 160px;
}

.fix-wrapper {
    min-height: 100vh;
    display: flex;
    padding: 30px 0;
    align-items: center;
}








/* 

.video-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px; 
    align-items: center;
}

.video-thumb {
    width: 40%;
    height: 70px;
    background: #fff;
    box-shadow: 0 0 20px 8px #efefef;
    border-radius: 8px;
    overflow: hidden; 
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-info {
    flex: 1;
}

.video-info h6 {
    margin: 0;
    color: #000;
    font-size: 16px;
}

.video-info a {
    text-decoration: none;
    font-size: 14px;
}

.video-info a:hover {
    text-decoration: underline;
} */