/* ===============================
   Timetable Wrapper
================================= */
.dt-sc-class-timetable-container {
   
    margin: 0 auto;
}

/* ===============================
   Filter Tabs
================================= */
.dt-sc-class-timetable-tabs {
    text-align: center;
    margin-bottom: 40px;
}

.dt-sc-class-timetable-tabs .dt-sc-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.dt-sc-class-timetable-tabs .dt-sc-tab-nav-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 44px;
    padding: 0 20px;
    font-size: 16px;
    line-height:1.5em;
    font-weight: 600;
    text-decoration: none;
    color: #8b9187;
    background: transparent;
    border: 1px solid rgba(var(--wdtPrimaryColorRgb),0.5);
    border-radius: 6px;
    transition: all .3s ease;
}

.dt-sc-class-timetable-tabs .dt-sc-tab-nav-item.active a,
.dt-sc-class-timetable-tabs .dt-sc-tab-nav-item:hover a {
    background: #546d5d;
    border-color: #546d5d;
    color: #fff;
}

/* ===============================
   Table
================================= */

.dt-sc-class-timetable-main {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    /* padding-bottom: 10px; */
    scrollbar-color: var(--wdt_PrimaryColor) transparent;
    border: 1px solid rgb(var(--wdtPrimaryColorRgb),0.3);
    border-radius: var(--wdtRadius_2X);
}
.dt-sc-timetable-table{
    margin: 0 auto;
}

/* Header */
.dt-sc-class-timetable-table thead th {
    background: #556e5d;
    color: #fff;
    font-size: 24px;
    font-style: italic;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    text-align: center;
    padding: 22px 15px;
    border: none;
}

.dt-sc-class-timetable-table thead th:first-child {
    width: 140px;
}

/* Left Time Column */
.dt-sc-timetable-time {
    text-align: center;
    font-size: 14px;
    font-weight: var(--wdtFontWeight_Alt);
    color: var(--wdtHeadAltColor);
    background: transparent;
    border: 1px solid rgb(var(--wdtPrimaryColorRgb),0.3);
    padding: 30px 15px;
    vertical-align: middle;
    border-width: 0 1px 1px;
}
.dt-sc-timetable-table tr td{
    min-width: clamp(9.375rem, 7.2917rem + 4.3403vw, 12.5rem) /*200px - 150px*/;
}
.dt-sc-timetable-table tr td:first-child,
.dt-sc-timetable-table tr th:first-child {
    border-left: 0;
}
.dt-sc-timetable-table tr td:last-child,
.dt-sc-timetable-table tr th:last-child {
    border-right: 0;
}

/* Table Cells */

.dt-sc-class-timetable-table th,
.dt-sc-class-timetable-table td{
    width: max-content;
    text-wrap: nowrap;
}

.dt-sc-class-timetable-table td {
    position: relative;
    vertical-align: middle;
    text-align: center;
    border-right: 1px solid #d8dbd2;
    border-bottom: 1px solid #d8dbd2;
    background: #f8f6ef;
    min-height: 120px;
    padding: 0;
}

.dt-sc-class-timetable-table tr:nth-child(even) td {
    background: #f2efe7;
}

/* Remove Last Border */
.dt-sc-class-timetable-table tr td:last-child,
.dt-sc-class-timetable-table thead th:last-child {
    border-right: none;
}

.dt-sc-class-timetable-table tbody tr:last-child td {
    border-bottom: none;
}

.dt-sc-timetable-hidden .dt-sc-timetable-cell-inner { opacity: 0; }

/* ===============================
   Event Card
================================= */
.dt-sc-timetable-cell-inner {
    position: relative;
    display: block;
    height: 120px;
    overflow: hidden;
    transition: .4s;
}

/* Image */
.dt-sc-timetable-cell-media img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    opacity: .15;
    transition: .4s;
}

/* Overlay */
.dt-sc-timetable-cell-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(84,109,93,.15);
}

/* Hover */
.dt-sc-timetable-cell-inner:hover img {
    opacity: .35;
}

/* ===============================
   Book Button
================================= */
/* .dt-sc-content-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
} */

.dt-sc-content-button .dt-sc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 24px;
    border-radius: 40px;
    background: #556e5d;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.dt-sc-content-button .dt-sc-button:hover {
    background: #415546;
}

/* ===============================
   Empty Cells
================================= */
.dt-sc-timetable-cell-empty {
    background: #f8f6ef;
}

/* ===============================
   Rounded Corners
================================= */
.dt-sc-class-timetable-table thead th:first-child {
    border-top-left-radius: 14px;
}

.dt-sc-class-timetable-table thead th:last-child {
    border-top-right-radius: 14px;
}

.dt-sc-class-timetable-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 14px;
}

.dt-sc-class-timetable-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 14px;
}

/* ===============================
   Responsive
================================= */
@media (max-width: 991px) {

    .dt-sc-class-timetable-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .dt-sc-class-timetable-table thead th {
        font-size: 18px;
        padding: 18px;
    }

    .dt-sc-timetable-time {
        min-width: 110px;
    }

    .dt-sc-class-timetable-table td {
        min-width: 160px;
    }

}

/* All rows same height */
.dt-sc-class-timetable-table tbody tr {
    height: 120px;
}

/* All cells */
.dt-sc-class-timetable-table td {
    height: 120px;
    min-width: 140px;
    vertical-align: middle;
    border: 1px solid rgba(var(--wdtPrimaryColorRgb),.5);
    background: transparent;
}
.dt-sc-class-timetable-table th {
    border-color: rgba(var(--wdtBorderColorRgb),.75);
}

/* Alternate row color */
.dt-sc-class-timetable-table tbody tr:nth-child(even) td {
    background: var(--wdtBodyBgColor);
}

/* Empty cells */
.dt-sc-timetable-cell-empty {
    background: transparent;
}

/* Event container */
.dt-sc-timetable-cell-inner {
    min-height: 120px;
    position: relative;
    display: grid;
    overflow: hidden;
    height:fit-content;
}

.dt-sc-timetable-cell-inner .dt-sc-cell-content-wrapper,
.dt-sc-timetable-cell-inner .dt-sc-cell-media-wrapper {
    grid-area: 1 / 1;
    transition: opacity .35s ease, visibility .35s ease;
}
.dt-sc-timetable-cell-inner .dt-sc-cell-media-wrapper{
    max-height: 150px;
}
.dt-sc-timetable-cell-inner .dt-sc-cell-media-wrapper > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Default State */
.dt-sc-cell-content-wrapper {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    height: fit-content;
    margin: auto;
    padding: 10px;
}
.dt-sc-class-timetable-container.type_2 .dt-sc-timetable-instructor,
.dt-sc-class-timetable-container.type_2  .dt-sc-book-btn{ font-size:var(--wdtFontSize_Base); }
.dt-sc-cell-content-wrapper .dt-sc-timetable-title{
    margin-top:0;
    margin-bottom:0;
    white-space: nowrap;
}

.dt-sc-cell-media-wrapper {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

/* Hover State */
.dt-sc-timetable-cell-inner:hover .dt-sc-cell-content-wrapper {
    opacity: 0;
    visibility: hidden;
}

.dt-sc-timetable-cell-inner:hover .dt-sc-cell-media-wrapper {
    opacity: 1;
    visibility: visible;
}

/* Image */
.dt-sc-timetable-cell-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .15;
}


.dt-sc-cell-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10;   
    text-decoration: none;
    color: var(--wdtPrimaryColor);  
    font-weight: var(--wdtFontWeight_Alt);
}

.dt-sc-timetable-table .dt-sc-timetable-day {font-family:var(--wdtFontTypo_Alt); font-weight:var(--wdtFontWeight_Alt);
 font-size:var(--wdtFontSize_H5); line-height:var(--wdtLineHeight_H5); font-style:italic; white-space:nowrap;vertical-align:middle; }

.dt-sc-timetable-table tbody tr { border-radius: var(--wdtRadius_1X); justify-content: center; align-items: center;}
 /* Style for Odd Rows (1st, 3rd, 5th, etc.) */
.dt-sc-timetable-table tbody tr:nth-child(odd) {
background-color:rgba(var(--wdtSecondaryColorRgb),0.5);
}

/* Style for Even Rows (2nd, 4th, 6th, etc.) */
.dt-sc-timetable-table tbody tr:nth-child(even) {
background-color:transparent;
}

.dt-sc-timetable-table tbody tr .dt-sc-timetable-cell { padding:0px; border-color:rgba(var(--wdtPrimaryColorRgb),0.3); }
/* .dt-sc-timetable-table tbody tr td,
.dt-sc-timetable-table tbody tr{
    width: 100%;
} */



/* class time table */
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item{ display:flex; padding: 45px 0;
    border-bottom: 1px solid rgb(var(--wdtPrimaryColorRgb), .2); cursor: pointer;} 
    .dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item:first-child{ border-top:1px solid rgb(var(--wdtPrimaryColorRgb), .2) ; }
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor{display:flex; gap:30px; align-items:center; }
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor,
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-content{ flex:33.33%; }
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-timings{ flex:23.33%; }
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor,
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-content,
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-timings{  display:flex; align-items: center;  border-right: 1px solid rgb(var(--wdtPrimaryColorRgb), .2); justify-content:center; }
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-button{ flex:10%; display:flex; justify-content:end; align-items:center; }
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor h5{ font-size: clamp(1.625rem, 1.4605rem + 0.6579vw, 2.25rem); /* Min-26 & Max-36 */ margin-bottom:0px; margin-top:0;}
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor .dt-sc-instructor-role{ margin-bottom:20px;}
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor .dt-sc-class-timetable-image,
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor .dt-sc-class-timetable-image img{ width:150px; height:150px; border-radius:var(--wdtRadius_Full); object-fit: cover; background-position:center center; } 
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor{ justify-content:start; padding-right:10px; }
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-timings{ border-right-width:0; }
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor .dt-sc-instructor-experience{ display:flex; align-items:center; padding:4px 12px; background-color:var(--wdtAccentTxtColor); border-radius:var(--wdtRadius_2X); width:fit-content; }
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor .dt-sc-instructor-experience:before{
    content: '';
    width: 16px;
    height: 16px;
    display: inline-block;
    background-color: currentColor; 
    -webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 50 50' style='enable-background:new 0 0 50 50;' xml:space='preserve'%3E%3Cpath d='M39.8,49.7h-0.3l-0.3-0.2L25.6,39.1c-0.4-0.3-0.9-0.3-1.3,0L10.6,49.6l-0.7,0l-0.3-0.2 c-0.2-0.1-0.3-0.3-0.4-0.5l-0.1-0.3l0.1-0.4l5.2-16.7c0.1-0.5,0-1-0.4-1.3L0.2,19.8L0,19.1l0.1-0.4c0.1-0.2,0.2-0.4,0.4-0.6l0.2-0.2 l0.4,0h16.7c0.5,0,0.9-0.3,1-0.8l5.3-17l0.5-0.4l0.4,0c0.2,0,0.4,0.1,0.6,0.2L25.9,0L26,0.4l5.2,16.7c0.1,0.5,0.6,0.8,1,0.8h17 l0.6,0.3l0.2,0.4c0.1,0.3,0.1,0.6,0,0.8l-0.1,0.3l-0.3,0.3L36,30.2c-0.4,0.3-0.5,0.8-0.4,1.3l5.3,17l-0.2,0.6l-0.2,0.2 C40.2,49.6,40,49.7,39.8,49.7z M3.3,19.8L15,28.7c1,0.8,1.4,2.1,1,3.4l-4.5,14.5l11.7-9c1-0.8,2.4-0.8,3.4,0l11.7,8.9l-4.5-14.5 c-0.4-1.2,0-2.6,1-3.4l11.7-8.9H32.2c-1.2,0-2.3-0.8-2.7-2.1L25,3.2l-4.5,14.5c-0.4,1.2-1.5,2.1-2.7,2.1H3.3z'/%3E%3C/svg%3E%0A");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 50 50' style='enable-background:new 0 0 50 50;' xml:space='preserve'%3E%3Cpath d='M39.8,49.7h-0.3l-0.3-0.2L25.6,39.1c-0.4-0.3-0.9-0.3-1.3,0L10.6,49.6l-0.7,0l-0.3-0.2 c-0.2-0.1-0.3-0.3-0.4-0.5l-0.1-0.3l0.1-0.4l5.2-16.7c0.1-0.5,0-1-0.4-1.3L0.2,19.8L0,19.1l0.1-0.4c0.1-0.2,0.2-0.4,0.4-0.6l0.2-0.2 l0.4,0h16.7c0.5,0,0.9-0.3,1-0.8l5.3-17l0.5-0.4l0.4,0c0.2,0,0.4,0.1,0.6,0.2L25.9,0L26,0.4l5.2,16.7c0.1,0.5,0.6,0.8,1,0.8h17 l0.6,0.3l0.2,0.4c0.1,0.3,0.1,0.6,0,0.8l-0.1,0.3l-0.3,0.3L36,30.2c-0.4,0.3-0.5,0.8-0.4,1.3l5.3,17l-0.2,0.6l-0.2,0.2 C40.2,49.6,40,49.7,39.8,49.7z M3.3,19.8L15,28.7c1,0.8,1.4,2.1,1,3.4l-4.5,14.5l11.7-9c1-0.8,2.4-0.8,3.4,0l11.7,8.9l-4.5-14.5 c-0.4-1.2,0-2.6,1-3.4l11.7-8.9H32.2c-1.2,0-2.3-0.8-2.7-2.1L25,3.2l-4.5,14.5c-0.4,1.2-1.5,2.1-2.7,2.1H3.3z'/%3E%3C/svg%3E%0A");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    margin-right:8px;
}
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item  .dt-sc-class-timetable-content .dt-sc-class-title{ margin-bottom:0; }
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item  .dt-sc-class-timetable-content  .dt-sc-class-features{text-align:center; }
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-timings{ flex-direction:column; gap:10px; }
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-button a{ font-size:0; background: var(--wdtSecondaryColor);
    color: var(--wdtPrimaryColor);     border-radius: var(--wdtRadius_Full); margin-top: 0;     transition: var(--wdtAltTransition); width:45px; height:45px; padding:0; display:flex; justify-content:center; align-items:center; margin-right:25px;
} 
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-button a:hover{ background-color:var(--wdtPrimaryColor); color: var(--wdtAccentTxtColor);}
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-button a:after{
      content: '';
    width: 35px;
    height: 20px;
    display: inline-block;
    background-color: currentColor; 
    transition: var(--wdtAltTransition);
    -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 15'%3E%3Cpath d='M30,7.5c0,0.1,0,0.1,0,0.1c0,0.1,0,0.1,0,0.1c0,0.1,0,0.1-0.1,0.1c0,0,0,0.1-0.1,0.1l-6.2,6.3c-0.1,0.1-0.2,0.1-0.2,0.2 c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0-0.2,0-0.3-0.1c-0.1,0-0.2-0.1-0.2-0.2c-0.1-0.1-0.1-0.2-0.2-0.2c0-0.1-0.1-0.2-0.1-0.3 c0-0.1,0-0.2,0.1-0.3c0-0.1,0.1-0.2,0.2-0.2l5-5H0.7c-0.1,0-0.2,0-0.3-0.1C0.4,8.1,0.3,8.1,0.2,8C0.2,8,0.1,7.9,0.1,7.8 C0,7.7,0,7.6,0,7.5c0-0.1,0-0.2,0.1-0.3c0-0.1,0.1-0.2,0.2-0.2c0.1-0.1,0.1-0.1,0.2-0.2c0.1,0,0.2-0.1,0.3-0.1h26.8l-5-5 c-0.1-0.1-0.1-0.1-0.2-0.2c0-0.1-0.1-0.2-0.1-0.3c0-0.2,0-0.3,0.1-0.4s0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1 c0.2,0,0.3,0.1,0.4,0.2L29.8,7c0,0,0,0,0.1,0.1c0,0.1,0.1,0.1,0.1,0.2C30,7.3,30,7.4,30,7.5z'%3E%3C/path%3E%3C/svg%3E"); 
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 15'%3E%3Cpath d='M30,7.5c0,0.1,0,0.1,0,0.1c0,0.1,0,0.1,0,0.1c0,0.1,0,0.1-0.1,0.1c0,0,0,0.1-0.1,0.1l-6.2,6.3c-0.1,0.1-0.2,0.1-0.2,0.2 c-0.1,0-0.2,0.1-0.3,0.1c-0.1,0-0.2,0-0.3-0.1c-0.1,0-0.2-0.1-0.2-0.2c-0.1-0.1-0.1-0.2-0.2-0.2c0-0.1-0.1-0.2-0.1-0.3 c0-0.1,0-0.2,0.1-0.3c0-0.1,0.1-0.2,0.2-0.2l5-5H0.7c-0.1,0-0.2,0-0.3-0.1C0.4,8.1,0.3,8.1,0.2,8C0.2,8,0.1,7.9,0.1,7.8 C0,7.7,0,7.6,0,7.5c0-0.1,0-0.2,0.1-0.3c0-0.1,0.1-0.2,0.2-0.2c0.1-0.1,0.1-0.1,0.2-0.2c0.1,0,0.2-0.1,0.3-0.1h26.8l-5-5 c-0.1-0.1-0.1-0.1-0.2-0.2c0-0.1-0.1-0.2-0.1-0.3c0-0.2,0-0.3,0.1-0.4s0.2-0.2,0.3-0.3c0.1-0.1,0.3-0.1,0.4-0.1 c0.2,0,0.3,0.1,0.4,0.2L29.8,7c0,0,0,0,0.1,0.1c0,0.1,0.1,0.1,0.1,0.2C30,7.3,30,7.4,30,7.5z'%3E%3C/path%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    margin-right:-50px; pointer-events: none;
}
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-button a:hover:after{ margin-right:0; width:24px; }
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor .dt-sc-class-timetable-image img {
    transform: translateX(-60px) scale(.9);
    opacity: 0;
    transition: transform .8s cubic-bezier(.22, 1, .36, 1),
                opacity .8s cubic-bezier(.22, 1, .36, 1);
}
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor h5,
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-instructor-role,
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-instructor-experience {
    transform: translateX(-180px);
    opacity: 1;
    transition: transform .6s cubic-bezier(.22, 1, .36, 1),
                opacity .6s cubic-bezier(.22, 1, .36, 1);
}
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item:hover .dt-sc-class-timetable-image img,
.dt-sc-class-timetable-container.type_1  .dt-sc-class-timetable-item.wdt_active .dt-sc-class-timetable-image img  {
    transform: translateX(0) scale(1);
    opacity: 1;
}
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item:hover .dt-sc-class-timetable-instructor h5,
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item.wdt_active .dt-sc-class-timetable-instructor h5 {
    transform: translateX(0);
    opacity: 1;
    
}
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item:hover .dt-sc-instructor-role,
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item.wdt_active .dt-sc-instructor-role {
    transform: translateX(0);
    opacity: 1;
   
}
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item:hover .dt-sc-instructor-experience,
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item.wdt_active .dt-sc-instructor-experience {
    transform: translateX(0);
    opacity: 1;
    
}
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-content{ padding:0 20px; }
@media (max-width:1540px){
    .dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor .dt-sc-class-timetable-image,
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor .dt-sc-class-timetable-image img{ width:100px; height:100px; }
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor h5,
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-instructor-role,
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-instructor-experience {
    transform: translateX(-120px);
}}
@media (max-width:1280px){
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor h5,
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-instructor-role,
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-instructor-experience {
    transform: translateX(-110px);
}
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor{ gap:20px; }
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor .dt-sc-instructor-experience{ padding:4px; }
}    
@media (max-width:1024px){
 .dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item{ flex-wrap:wrap; row-gap:0; padding:30px 0; }
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor,
 .dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-content {
   flex:50%; justify-content: start;
}
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-timings{
   flex: 50%; align-items:start; border-right: 1px solid rgb(var(--wdtPrimaryColorRgb), .2); padding-top: 40px; padding-right: 20px;
}
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-button{
    flex: 50%;
}
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor h5, 
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-instructor-role,
 .dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-instructor-experience {
        transform: translateX(-120px);
    }
    .dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-button{ justify-content: start; padding-left:40px; }
    .dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-content{ padding-left: 40px; border-right:none; }
    .dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor{ padding-right:20px; }
}
@media (max-width:767px){
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor .dt-sc-class-timetable-image img {
    transform: translateX(0px) scale(1);
    opacity: 1;
    transition: transform .8s cubic-bezier(.22, 1, .36, 1),
                opacity .8s cubic-bezier(.22, 1, .36, 1);
}
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor h5,
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-instructor-role,
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-instructor-experience {
    transform: translateX(0px);
    opacity: 1;
    transition: transform .6s cubic-bezier(.22, 1, .36, 1),
                opacity .6s cubic-bezier(.22, 1, .36, 1);
}
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor{ flex-direction:column; align-items: start; gap:20px;}
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-button,
.dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-content{ padding-left:20px; }
}
@media (max-width:479px){
    .dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor, 
    .dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-content{ flex:100%; padding-left:0; border:none; }
    .dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-button{flex: 100%; padding-left:0;}
    .dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-timings{flex: 100%; padding:0; border:none;}
    .dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor{ flex-direction:row; gap:20px; align-items:center; padding-right:0; }
    .dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor h5{ margin-top:0; }
    .dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-content .dt-sc-class-title{ margin-top:0; }
    .dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-content .dt-sc-class-features{text-align: start; }
    .dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item{gap:30px; }
    .dt-sc-class-timetable-container.type_1 .dt-sc-class-timetable-item .dt-sc-class-timetable-instructor .dt-sc-instructor-experience{ font-size:var(--wdtFontSize_Ext); }
}
.wdt-overflow-hidden{
    overflow:hidden !important;
}




