@charset "UTF-8";

.video-title-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.video-title-box .tool {
    background: #F8FAFC;
    display: flex;
    position: relative;
    align-items: center;
    gap: 10px;
    border: 1px solid #F8FAFC;
    padding: 5px 10px;
    border-radius: 15px;
    min-width: fit-content;
}
.video-title-box .tool .video-duration {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 4px;
    font-size: 14px;
}
.video-title-box .tool .video-duration .time-value {
    display: block;
    margin-top: 3px;
}
.video-title-box .tool .video-duration i {
    font-size: 16px;
}
/*.video-title-main {
    padding-right: 22px;
}
*/
.video-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.video-archive .archive-header {
    text-align: center;
    margin-bottom: 40px;
}

.video-archive .archive-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.video-archive .archive-description {
    color: #666;
    font-size: 16px;
}

.video-archive .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.video-archive .video-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-archive .video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.video-archive .video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background: #f8f9fa;
    overflow: hidden;
}

.video-archive .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-archive .video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 48px;
}

.video-archive .video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
}

.video-archive .video-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    color: white;
}

.video-archive .video-badge.free {
    background: #48bb78;
}

.video-archive .video-badge.premium {
    background: #e53e3e;
}

.video-archive .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-archive .access-required {
    text-align: center;
}

.video-archive .access-required i {
    font-size: 24px;
    margin-bottom: 5px;
    display: block;
}

.video-archive .video-content {
    padding: 20px;
}

.video-archive .video-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-archive .video-title a {
    color: #333;
    text-decoration: none;
}

.video-archive .video-title a:hover {
    color: #667eea;
}

.video-archive .video-skill {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.video-archive .video-skill i {
    color: #667eea;
}

.video-archive .video-instructor {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.video-archive .instructor-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.video-archive .instructor-name {
    font-size: 14px;
    color: #666;
}

.video-archive .video-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.video-archive .video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.video-archive .video-status {
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-archive .video-status.accessible {
    color: #48bb78;
}

.video-archive .video-status.locked {
    color: #e53e3e;
}

.video-archive .no-videos {
    text-align: center;
    padding: 60px 20px;
}

.video-archive .no-videos-icon {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}

.video-archive .no-videos h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.video-archive .no-videos p {
    color: #666;
    font-size: 16px;
}



.video-main-sec {
    display: grid;
    /* grid-template-columns: minmax(0, 1fr) minmax(0, 9rem); */
    /* gap: 11px; */
}

.video-sidebar {
    width: 100%;
    height: fit-content;
    position: sticky;
    top: 12px;
}

.skill-section {
    margin-bottom: 18px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 4px 6px -4px #0000001A, 0px 10px 15px -3px #0000001A;
    overflow: hidden;
}
.skill-dropdown {
    border-radius: 20px;
}
.skill-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: #fff;
    background: #0F172A;
    padding: 17px 20px;
    line-height: 1;
    position: relative;
}
.skill-dropdown .skill-title {
    padding: 29px 20px;
}
.skill-dropdown .skill-title:after {
    content: '\e901';
    font-family: 'icomoon';
    margin-right: auto;
    font-size: 12px;
    transform: rotate(45deg);
    transition: 0.4s ease;
}
.skill-dropdown .skill-title.open:after {
    transform: rotate(0);
}
.skill-body {
    display: none;
}
.skill-title i {
    font-size: 18px;
}

.skill-icon {
    width: 20px;
    height: 20px;
    color: #667eea;
}

.video-list {
    list-style: none;
}

.video-item {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    transition: all 0.6s ease;
    border-bottom: 1px solid #E2E8F0;
    font-size:12px;
}

.video-item:hover {
    background: #f8f9fa;
}

.video-item.active {
    background: var(--color2);
    color: #fff;
}

.video-number {
    min-width: 20px;
    flex: none;
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #000;
    font-variation-settings: var(--wgh_800);
    line-height: 1;
    padding-top: 5px;
    transition: 0.4s ease;
}

.video-list li:nth-child(even) .video-number {
    background: #F8FAFC;
}

.video-item.active .video-number {
    color: #ffff;
    background: var(--color2) !important;
}

.video-title {
    flex: 1;
    font-size: 12px;
    line-height: 1.2;
}

.video-play-icon {
    width: 16px;
    height: 16px;
    font-size: 16px;
    opacity: 0.7;
}

.video-item.active .video-play-icon {
    opacity: 1;
}

.video-item::after {
    content: '\e914';
    font-family: 'icomoon';
    font-size: 8px;
    margin-right: auto;
    transition: 0.4s ease;
    margin-left: 24px;
}

.skill-end {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 15px;
    margin-top: 42px;
    background: #F8FAFC;
}

.full-video-list-btn {
    padding: 0 12px 0 6px;
    background: var(--color1);
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 10px;
    cursor: pointer;
    transition: background 0.4s ease;
    font-family: inherit;
    height: 30px;
    line-height: 1;
    min-width: 132px;
    gap: 8px;
    display: flex;
    align-items: center;
	transition: all 0.2s linear;
}

.full-video-list-btn i {
    font-size: 18px;
}

.full-video-list-btn:hover {
    background: var(--color2);
    color: #fff;
}

.video-stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    gap: 8px;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: var(--dark);
}

.video-stats i {
    font-size: 16px;
    color: var(--gray_600);
}

.video-data {
    background: #fff;
    border-radius: 6px;
    /*overflow: hidden;*/
    box-shadow: 0px 4px 6px -4px #0000001A, 0px 10px 15px -3px #0000001A;
    padding: 27px 12px 12px;
    margin-bottom: 20px;
}

.video-status-icon {
    width: 20px;
    height: 20px;
    color: #48bb78;
}

.video-player-section {
    position: relative;
    /* background: #000; */
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-player #spotplayer-player {
    display: none;
}

.video-player #spotplayer-player,
.video-player #spotplayer-player iframe {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-overlay,
.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.video-cover img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* filter: opacity(0.5); */
}
.video-cover .spotplayer-btn {
    position: absolute;
    background: #4f46e5;
    border: none;
    outline: none;
    transition: .3s;
    color: #fff;
    border-radius: 100%;
    line-height: 1;
    padding: 15px 13px 15px 17px;
    font-size: 25px;
    -moz-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
	    box-shadow: 0 0 20px 10px #ffffff;
}
.video-cover .spotplayer-btn:hover {
background: #3c2edd;
    color: #fff;
    box-shadow: 0 0 20px 10px #3c2edd;
}

.single-video .video-overlay .attachment-post-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-access-controls {
    position: absolute;
    right: 15px;
    bottom: 14px;
    background: #fff;
    border-radius: 20px;
    min-width: 210px;
    border: 1px solid #CBD5E1;
    overflow: hidden;
}

.video-access-head {
    background: #1E293B;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px 8px 10px;
}

.access-title {
    font-size: 12px;
}

.access-badge {
    padding: 5px 10px;
    border-radius: 20px 20px 20px 0;
    font-size: 12px;
    display: inline-flex;
    background: #E11D48;
    justify-content: center;
    gap: 6px;
    align-items: center;
}

.access-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 10px 10px 0;
}

.access-btn {
    padding: 8px 10px 9px 0;
    border: none;
    border-radius: 0 24px 24px 0;
    overflow: hidden;
    font-size: 14px;
    cursor: pointer;
    background: none;
    display: flex;
    align-items: center;
    gap: 13px;
    font-family: inherit;
    position: relative;
    color: var(--dark);
    line-height: 1;
    z-index: 0;
    transition: 0.6s ease;
}

.access-btn::before {
    content: '';
    width: 0;
    opacity: 0;
    height: 100%;
    background: var(--dark);
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    transition: 0.6s ease;
}

.access-btn::after {
    content: '\e914';
    font-family: 'icomoon';
    font-size: 8px;
    margin-right: auto;
    transition: 0.4s ease;
    margin-left: 15px;
}

.access-btn:hover::before {
    width: 100%;
    opacity: 1;
}

.access-btn:hover {
    color: #CBD5E1;
}

.video-creator {
    text-align: center;
    padding: 0 20px 15px;
    position: relative;
    z-index: 0;
    margin-bottom: 9px;
}

.video-creator::before {
    content: '';
    border: 1px solid #F1F5F9;
    border-radius: 24px;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 88px;
    right: 0;
    z-index: -1;
}

.creator-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.creator-info p {
    font-size: 14px;
    color: #666;
}

.video-interactions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.interaction-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    color: #000;
    cursor: pointer;
    padding: 3px;
    transition: all 0.3s ease;
    border: none;
    border-radius: 24px;
    min-width: 30px;
    height: 30px;
    justify-content: center;
    font-size: 12px;
}

.interaction-btn i {
    font-size: 17px;
}

.interaction-btn:hover {
    color: var(--color1);
}

#like-btn {
    position: relative;
    flex-grow: 1;
    transition: opacity .15s;
    cursor: pointer;
    font-size: 15px;
}

#like-btn i {
    color: #EF4444;
    font-size: 18px;
}

#like-btn.loading i,
#like-btn.loading span {
    pointer-events: none;
    opacity: 0.1;
}

#like-btn.loading::after {
    content: "";
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgb(0 0 0 / 20%);
    border-top-color: var(--color2);
    animation: loading-spin 0.8s linear infinite;
}

@keyframes loading-spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

.personal-list-wrap {
    position: relative;
    display: inline-block;
}

.personal-list-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    color: #000;
    cursor: pointer;
    padding: 3px;
    transition: all 0.3s ease;
    border-radius: 24px;
    height: 30px;
    justify-content: flex-start;
    font-size: 13px;
    font-family: inherit;
    border:none;
    min-width:95px;
}
.personal-list-btn i {
    font-size: 16px;
}
.personal-list-section {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    min-width: 180px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 100;
}

.personal-list-section.active {
    display: block;
}

.personal-list-section.loading::after {
    content: "";
    position: absolute;
    right: 50%;
    top: 45%;
    transform: translate(50%, 50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgb(0 0 0 / 20%);
    border-top-color: var(--color2);
    animation: personal-spin 0.8s linear infinite;
}

@keyframes personal-spin {
    from { transform: translate(50%, 50%) rotate(0deg); }
    to   { transform: translate(50%, 50%) rotate(360deg); }
}

.personal-list-section.loading .personal-list-options {
    pointer-events: none;
    opacity: 0.2;
}

.personal-list-section {
    border: 1px solid #F1F5F9;
    border-radius: 24px;
    padding: 18px;
    margin-top: 9px;
    transition: opacity .15s;
}

.personal-list-title {
    font-size: 12px;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.personal-list-title i {
    font-size: 17px;
}

.personal-list-options {
    display: grid;
    gap: 14px;
}

.personal-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.personal-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    display: grid;
    place-content: center;
}

.personal-option input[type="radio"]::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--dark);
    transform: scale(0);
    transition: 0.15s transform ease-in-out;
}
.personal-option input[type="radio"]:checked::before,
.personal-option input[type="radio"]:hover::before {
    transform: scale(1);
}

.personal-option label {
    font-size: 12px;
    color: var(--dark);
    cursor: pointer;
}

.video-desc {
    padding: 26px 31px 56px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 4px 6px -4px #0000001A, 0px 10px 15px -3px #0000001A;
    margin: 20px 0;
}

.acf-repeater-sections {
    padding: 20px 30px;
    border-top: 1px solid #eee;
}

.repeater-section {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 13px 12px 12px;
    margin-bottom: 18px;
    cursor: pointer;
    transition: all 0.4s ease;
    background: #fff;
    border-radius: 6px;
    border: 1px solid transparent;
    box-shadow: 0px 4px 6px -4px #0000001A, 0px 10px 15px -3px #0000001A;
}
.repeater-section:hover {
    border-color: #A5B4FC;
}
.repeater-section i {
    width: 52px;
    height: 52px;
    background: #6366F1;
    border-radius: 17px;
    color: #C7D2FE;
    font-size: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
}

.repeater-section::after {
    content: '\e915';
    font-family: 'icomoon';
    font-size: 18px;
    margin-right: auto;
    transition: 0.4s ease;
    margin-left: 18px;
}


.repeater-section:nth-child(even) i {
    background: #0EA5E9;
}
.repeater-section:hover i {
    color: #fff;
}
.repeater-section:hover::after {
    color: var(--color1);
}
.repeater-icon {
    width: 20px;
    height: 20px;
    color: #667eea;
}

.repeater-title {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.repeater-action {
    width: 20px;
    height: 20px;
    color: #666;
}
.modal-video.trailer-modal {
    padding: 0;
    max-width: 700px;
    overflow: hidden;
    display: flex;
}
.modal-close i {
    pointer-events: none;
}
@media (max-width: 1400px) {

    .skill-end {
        flex-wrap: wrap;
        gap: 10px;
    }
}
@media (max-width: 1200px) {

    .skill-end {
  
        justify-content: center;
    }
        .video-sidebar {
        width: 100%;
        position: static;
    }



    .video-info {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-evenly;
    }

    .video-interactions {
        flex-direction: column;
    }

   /* #like-btn {
        flex-direction: column-reverse;
    }
*/
    .video-main-sec {
        grid-template-columns: unset;
    }
}


@media (max-width: 768px) {
    .video-title-box .tool{
        margin-top:12px;
    }
    .video-title-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .skill-end {
        justify-content: space-between;
    }

    .header-container {
        padding: 0 15px;
    }

    .search-input {
        width: 200px;
    }

    .video-info {
        gap: 15px;
    }

    .video-interactions {
        margin-left: 0;
    }

    .personal-list-options {
        flex-direction: column;
        gap: 10px;
    }

    .video-archive .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-archive .archive-title {
        font-size: 24px;
    }

    .video-archive .video-content {
        padding: 15px;
    }

    .video-access-controls {
        display: none;
    }
}

@media (max-width: 576px) {
    .video-info {
        justify-content: space-between;
    }
}
@media (max-width: 360px) {
    .skill-end {
        justify-content: center;
    }
}


.dark-mode {
    background: #1a1a1a;
    color: #fff;
}

.dark-mode .site-header,
.dark-mode .video-sidebar,
.dark-mode .video-data,
.dark-mode .video-desc,
.dark-mode .modal-video {
    background: #2d2d2d;
    color: #fff;
}

.dark-mode .video-item:hover {
    background: #3d3d3d;
}

.dark-mode .repeater-section {
    background: #3d3d3d;
}

.dark-mode .repeater-section:hover {
    background: #4d4d4d;
}

.dark-mode .modal-title,
.dark-mode .form-label,
.dark-mode #timer-countdown {
    color: #fff;
}

.dark-mode .form-input,
.dark-mode .otp-input {
    background: #3d3d3d;
    border-color: #555;
    color: #fff;
}

.dark-mode .form-input:focus,
.dark-mode .otp-input:focus {
    border-color: #667eea;
}

.dark-mode .modal-close {
    color: #ccc;
}

.dark-mode .modal-close:hover {
    color: #fff;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.more-options-wrapper {
    position: relative;
    display: inline-block;
}
#more-options-btn .icon-close-circle {
    position: absolute;
    opacity: 0;
    transition: 0.4s ease;
}
#more-options-btn .icon-more {
    transition: 0.4s ease;
}
#more-options-btn.active .icon-more {
    opacity: 0;
}
#more-options-btn.active .icon-close-circle {
    opacity: 1;
}
.more-options-dropdown {
    position: absolute;
    top: 0;
    right: 36px;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #CBD5E1;
    padding: 10px 10px 10px 0;
    min-width: 210px;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-50%);
    transition: 0.6s ease;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.more-options-dropdown.show {
    visibility: visible;
    opacity: 1;
}

.more-options-dropdown .dropdown-item {
    padding: 8px 10px 9px 4px;
    border: none;
    border-radius: 0 24px 24px 0;
    overflow: hidden;
    font-size: 12px;
    cursor: pointer;
    background: none;
    display: flex;
    align-items: center;
    gap: 13px;
    font-family: inherit;
    position: relative;
    color: var(--gray_500);
    line-height: 1;
    z-index: 0;
    transition: 0.6s ease;
}
.more-options-dropdown .dropdown-item:before {
    content: '';
    width: 0;
    opacity: 0;
    height: 100%;
    background: var(--dark);
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    transition: 0.6s ease;
}
.more-options-dropdown .dropdown-item:hover:before {
    width: 100%;
    opacity: 1;
}
.more-options-dropdown .dropdown-item:hover {
    color: #CBD5E1;
}

#trailer-modal-close {
    z-index: 9;
    background: #a30000;
    padding: 7px;
    line-height: 0;
    border-radius: 5px;
}
#trailer-modal-close:hover {
    color: #d4d4d4;
}

@media (min-width: 769px) {
    .title-tooltip {
        position: relative;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        cursor: pointer;
    }
    .tooltip-popup {
        position: fixed;
        background: rgba(15, 23, 42, 0.95);
        color: #fff;
        padding: 8px 12px;
        border-radius: 8px;
        pointer-events: none;
        z-index: 9999;
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 2px 4px rgba(0,0,0,0.2);
        font-size: 13px;
        font-weight: 500;
        display: none;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        max-width: 300px;
        word-wrap: break-word;
        white-space: normal;
        line-height: 1.4;
    }
    
    /* Tooltip arrow */
    .tooltip-popup::before {
        content: '';
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid rgba(15, 23, 42, 0.95);
        filter: drop-shadow(0 -2px 4px rgba(0,0,0,0.2));
    }
    
  
}

.truncate-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}
