.max-lines-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(1lh);
    /* 1 × current element's line-height */
}

.max-lines-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(2lh);
    /* 2 × current element's line-height */
}

.max-lines-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(3lh);
    /* 3 × current element's line-height */
}

.max-lines-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(4lh);
    /* 4 × current element's line-height */
}

.max-lines-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(5lh);
    /* 5 × current element's line-height */
}

.max-lines-6 {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(6lh);
    /* 6 × current element's line-height */
}

.create-course-tab-area .nav-tabs {
    flex-basis: unset;
    flex-direction: unset;
    display: flex;

}

.custom-calendar .date-picker-area input {
    height: 50px;
}

.custom-calendar {
    display: block;
}

.create-course-area-main-wrapper-inner .single-input input {
    border-radius: 6px;
    border: 1px solid #DDD8F9;
    height: 50px;
}

.create-course-area-main-wrapper-inner .single-input input:focus {
    border-color: var(--color-primary);
}

.create-course-area-main-wrapper-inner .single-input label {
    margin-bottom: 20px;
    color: #110C2D;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

table tbody tr td .draft-btn.published-btn {
    color: #09A24F !important;
    background: #E5FFEF !important;
    text-decoration: none !important;
}


table tbody tr td .draft-btn.published-btn {
    border-radius: 30px !important;
    border: 1px solid #DDD8F9 !important;
    padding: 3px 7px !important;
    width: 150px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

table tbody tr td .draft-btn {
    border-radius: 30px;
    border: 1px solid #DDD8F9;
    background: #F9F8FF;
    padding: 3px 7px !important;
    width: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none !important;

}

table tbody tr td .right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
    padding: 15px 0;
}

.wishlist-btn i {
    font-size: 46px;
    color: var(--color-primary);
}

/* Active (clicked) state */
a.wishlist-btn.heart-active {
    background-color: var(--color-instagram);
    color: #fff;
    border-radius: 50%;
}

.pagination-full-width .pagination ul li.active {
    text-decoration: underline;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 2.5rem;
    /* leave space for icon */
}

.password-wrapper i.toggle-password {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #555;
}

.right-course-details .right i {
    color: var(--color-primary);
    transition: 0.3s;
}

.thumbnail-custom {
    width: 100%;
    max-height: 370px;
}

.thumbnail-custom img {
    object-fit: fill;
    height: 100%;
    width: 100%;
}

.single-custom {
    color: #FFF;
    font-weight: 700;
    background: #005d81;
    padding: 2px 5px;
}

.style500 {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
}

.style500 img {
    display: block;
    width: 100%;
    height: auto;
}

/* Overlay pseudo-element */
.style500::after {
    content: '';
    position: absolute;
    top: -90%;
    /* move up so rotation covers full image */
    left: 0;
    width: 0;
    height: 200%;
    /* taller so rotation covers */
    background-color: rgba(255, 255, 255, 0.4);
    transform: rotate(15deg);
    transform-origin: top left;
    /* Animation instead of hover */
    animation: sheenLoop 3s infinite;
}

/* Keyframes for sliding overlay diagonally */
@keyframes sheenLoop {
    0% {
        width: 0;
        background-color: rgba(255, 255, 255, 0.4);
    }

    50% {
        width: 180%;
        background-color: rgba(255, 255, 255, 0);
    }

    100% {
        width: 0;
        background-color: rgba(255, 255, 255, 0.4);
    }
}

.rts-single-wized .logo-area img {
    width: 50%;
    height: auto;
    display: inline-block;
    animation: zoomPulse 4s infinite ease-in-out;
    transform-origin: center;
    /* scale from center */
}

/* Keyframes for smooth pulsing */
@keyframes zoomPulse {

    0%,
    100% {
        transform: scale(1);
        /* normal size */
    }

    60% {
        transform: scale(1.1);
        /* zoom in */
    }
}