lite-youtube {
    background-color: #000;
    position: relative;
    display: block;
    contain: content;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    height: 100%;
    width: 100%;

    &::before {
        content: attr(data-title);
        display: block;
        position: absolute;
        top: 0;
        /* Pixel-perfect port of YT's gradient PNG, using https://github.com/bluesmoon/pngtocss plus optimizations */
        background-image: linear-gradient(180deg, rgb(0 0 0 / 67%) 0%, rgb(0 0 0 / 54%) 14%, rgb(0 0 0 / 15%) 54%, rgb(0 0 0 / 5%) 72%, rgb(0 0 0 / 0%) 94%);
        height: 99px;
        width: 100%;
        font-family: "YouTube Noto", Roboto, Arial, Helvetica, sans-serif;
        color: hsl(0deg 0% 93.33%);
        text-shadow: 0 0 2px rgba(0, 0, 0, .5);
        font-size: 18px;
        padding: 25px 20px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        box-sizing: border-box;
    }

    &:hover::before {
        color: white;
    }

    &::after {
        content: "";
        display: block;
        padding-bottom: calc(100% / (16 / 9));
    }

    &>iframe {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border: 0;
    }

    &>.lty-playbtn {
        display: block;
        /* Make the button element cover the whole area for a large hover/click target… */
        width: 100%;
        height: 100%;
        /* …but visually it's still the same size */
        background: no-repeat center/68px 48px;
        /* YT's actual play button svg */
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24 27 14v20" fill="white"/></svg>');
        position: absolute;
        cursor: pointer;
        z-index: 1;
        filter: grayscale(100%);
        transition: filter .1s cubic-bezier(0, 0, 0.2, 1);
        border: 0;
    }

    &:hover>.lty-playbtn,
    .lty-playbtn:focus {
        filter: none;
    }

    &.lyt-activated {
        cursor: unset;
    }

    &.lyt-activated::before,
    &.lyt-activated>.lty-playbtn {
        opacity: 0;
        pointer-events: none;
    }
}

.lyt-visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}



.video-list-channel {
    font-weight: normal;
    letter-spacing: .3px;
    text-align: left;
    color: #767676;
    font-family: MaisonNeue-Medium,Arial,Helvetica,sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    box-sizing: border-box;
}

.video-list-playlist {
    letter-spacing: .3px;
    text-align: left;
    font-style: normal;
    line-height: 42px;
    box-sizing: border-box;
    outline: none;
    font-family: MaisonNeue-Medium,Arial,Helvetica,sans-serif;
    margin: 0;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #022b6f !important;
}

.video-list-header {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
}


.video-list {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #f1f5fa;
}

.video-item {
    background: white;
    margin-bottom: 5px;
    overflow: hidden;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.video-header {
    display: flex;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
    gap: 20px;
    display: grid;
    grid-template-columns: 20% 1fr 16%;
}
.video-item-actions {
    min-width: 140px;
    display: flex;
    justify-content: space-evenly;
    a{
        color:inherit
    }
}
.video-header:hover {
    background: #f5f5f5;
}

.thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    img.play-button-small {
        position: absolute;
        bottom: 0;
        width: 24px;
        height: 24px;
        right: 0;
    }
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}



.play-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #002147;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
}

.video-info {
    flex-grow: 1;
    border-left: solid 1px;
    border-right: solid 1px;
    padding-left: 20px;
    margin-left: 5px;
    padding-top: 5px;
}

.video-title {
    color: #022b6f;
    margin-bottom: 5px;
    font-size: 16px;
}

.video-meta {
    color: #666;
    font-size: 14px;
}

.duration {
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-button {
    background: #ccc;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.video-content {
    display: none;
    border-top: 1px solid #eee;
}

.video-content.active {
    display: block;
}




.video-container {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .video-container {
        flex-direction: row;
    }
}

.video-player {
    flex: 1;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.custom-controls {
    background: #1a1a1a;
    padding: 15px;
    color: white;
}

.controls-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.progress-container {
    flex-grow: 1;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #333;
    border-radius: 2px;
    cursor: pointer;
}

.progress {
    width: 0%;
    height: 100%;
    background: #0066cc;
    border-radius: 2px;
    transition: width 0.1s linear;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 5px;
}

.video-details {
    flex: 1;
    background: #002147;
    color: white;
    padding: 20px;
}



.details-header {
    margin-bottom: 20px;
}

.views {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.details-list {
    list-style: none;
}

.details-list li {
    display: flex;
    font-size: 12px;
    color: white;
}

.details-list .label {
    width: 100px;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-button {
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    img{
        height: 22px;
    }
}

.atranscript {
    padding: 20px;
    line-height: 1.6;
    p{
        line-height: 1.2;
    }
}

.enquiry-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: white;
    color: #002147;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    padding: 20px;
    background: none;
    color: white;
    border: solid 1px white;
    border-radius: 30px;


}

.vide-footer {
    display: flex;
    justify-content: space-between;
}

.video-content-block {
    font-size: 14px;
    line-height: 1.6;
    padding: 20px;
    p{
        line-height: 1.2;
    }
}

.video-content-blocks{
    hr {
        margin-top: 20px;
        margin-bottom: 20px;
        border: 0;
        border-top: 1px solid #eee;
    }
}
.video-content-block h2 {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
}



.text-content{
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease-out;
    &.collapsed{
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        max-height: 4.5em;
    }
}
.read-more-btn{
    color: #00bfca;
    cursor: pointer;
}


.video-content-footer {
    display: flex;
    padding: 10px;
}

.author-block-avatar {
    width: 120px;
    border-radius: 50%;
}

.author-block-avatar img {
    border-radius: inherit;
    max-width: 70px;
}

.author-block-content {
    padding: 0 20px;
}

.contributor-name.textblue {
    color: black;
    font-weight: bold;
}


.video-contact-form {
    padding: 30px;
    display: none;
    &.show{
        display: block;
    }
}


.single-video-container {
    display: flex;
    flex-direction: column;
    padding-top: 40px;
    max-width: 650px;
    margin:50px auto;
    .more-videos a{
        color:white!important;
        border: solid 1px white!important;
        border-radius: 20px;
        padding: 20px;

    }
    .more-videos {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.single-video-header {
    background: #022b6f !important;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    position: relative;
}

.video-logo {
    background: #022b6f !important;
    margin-top: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -30px;
    img{
        margin: 0!important;
        max-width: 60px;
    }

}
.white-spacer {
    background: white;
    width: 50px;
    height: 2px;
    /* float: none; */
}
.single-video-header h2 {
    color: white!important;
}



.oculase-video-duration{
    svg{
        width: 14px;
    }
    .value{
        display: flex;
        align-items: center;
        gap: 5px;
    }
}

img.play-btn-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    z-index: 9;
}

.thumbnail-wrapper {
    /* width: 20%; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-item-duration {
    display: flex;
    font-size: 14px;
    gap: 5px;
    /* color: red; */
}

.video-item-duration svg {
    width: 15px;
}

.video-item-duration span {
    color: #00bfca;
    font-weight: bold;
}

.video-item  span.wpcf7-form-control-wrap .wpcf7-form-control {
    margin-bottom: 15px;
}

.video-item input.wpcf7-form-control.wpcf7-submit.has-spinner {
    margin: 0;
    font: inherit;
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    max-width:100px;
    color: #fff;
    border-radius: 24px;
    cursor: pointer;
    padding: 6px 12px !important;
    background-color: #022b6f !important;
    float: initial;
}






@media (max-width: 767px) {
    .video-details {
        min-height: 300px;
    }
    .video-item-actions {
        display: none;
    }

    .video-info {
        border: 0;
        padding-left: 10px;
        width: 100%;
    }

    .video-item-duration {
        display: none;
    }
    .video-header{
        display: flex;
    }

}





select[data-custom-dropdown] {
    display: none !important;
}

.dropdown-select {
    background-repeat: repeat-x;
    background-color: white;
    color: black;
    border-radius: 6px;
    border: solid 1px #eee;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    float: left;
    font-size: 14px;
    font-weight: normal;
    height: 42px;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: center !important;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
    max-width: 520px;
    font-family: MaisonNeue-Medium,Arial,Helvetica,sans-serif;

}

.dropdown-select:focus {
    /* background-color: #fff; */
}

.dropdown-select:hover {
    /* background-color: #fff; */
}

.dropdown-select:active,
.dropdown-select.open {
    /* background-color: #fff !important; */
    border-color: #bbb;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) inset;
}

.dropdown-select:after {
    height: 0;
    width: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #777;
    -webkit-transform: origin(50% 20%);
    transform: origin(50% 20%);
    transition: all 0.125s ease-in-out;
    content: '';
    display: block;
    margin-top: -2px;
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 50%;
}

.dropdown-select.open:after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.dropdown-select.open .list {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.dropdown-select.open .option {
    cursor: pointer;
}

.dropdown-select.wide {
    width: 100%;
}

.dropdown-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.dropdown-select .list {
    box-sizing: border-box;
    transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    /* box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09); */
    background-color: #fff;
    color: black;
    border-radius: 6px;
    margin-top: 4px;
    padding: 3px 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    max-height: 250px;
    overflow: auto;
    border: 1px solid #ddd;
}

.dropdown-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}


.dropdown-select .list ul {
    padding: 0;
    width: 100%;;
}

.dropdown-select .option {
    cursor: default;
    font-weight: 400;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    transition: all 0.2s;
    list-style: none;
}

.dropdown-select .option:hover,
.dropdown-select .option:focus {
    background-color: #f6f6f6 !important;
}

.dropdown-select .option.selected {
    font-weight: 600;
    color: #12cbc4;
}

.dropdown-select .option.selected:focus {
    background: #f6f6f6;
}

.dropdown-select a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.dropdown-select a:hover {
    color: #666;
}



.videos-header {
    min-height: 240px;
    background: #022b6f !important;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
}

.videos-header h2 {
    font-size: 34px;
    position: relative;
    color: white;
    text-align: center;
}

.video-header-description {
    letter-spacing: .3px;
    font-family: MaisonNeue-Medium,Arial,Helvetica,sans-serif;
    text-align: center;
    font-weight: normal;
    box-sizing: border-box;
    line-height: 26px;
    margin: 0 0 10px;
    font-size: 14px;
    color: #fff!important;
    opacity: 1;
}

.dropdown-select.wide {
    text-align: center;
}


.video-list.is_loading:before {
    content: "Loading...";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30px;
}


.no-videos-found {
    display: flex;
    justify-content: center;
    align-items: center;
}


.playlist-selection{
    display: flex;
    justify-content: center;
}

.playlist-description {
    text-align: center;
    margin-top: 10px;
}
