.QUn1t3FMfjGA2JCDHpMm {
    display:flex;
    align-items: center;
    border: 1px solid #DCE0F0;
    background: #F1F7F9;
    flex: 1;
    border-radius: 90px;
    color: #071013;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 184.615% */
}

.QUn1t3FMfjGA2JCDHpMm:focus-within {
    border-color: #0d6efd;
}

.QUn1t3FMfjGA2JCDHpMm > *:last-child {
    border-top-right-radius: 90px;
    border-bottom-right-radius: 90px;
}

.BozqKfL0phVEKzbMxhQp {
    color:#B4C2D4;
    font-size: 24px;
    margin-left: 10px;
    margin-right: 10px;
}

.y2cUqduYUrsSEH630Hdg {
    border: none;
    background: none;
    padding: 5px 0;
    flex: 1;
    min-width: 1px;
}

.y2cUqduYUrsSEH630Hdg:focus {
    outline: none;
}

.jI5xeBNMFWKfaeK1ZArx {
    font-size: 24px;
    color: #5E738C;
    cursor: pointer;
    margin-right: 10px;
}

.qkmAZ8j7y6nhmzseBlPA, .KIGtwsxhOeC0CUMgdI07, .hKLrf27XsQnBd3k6mUK_ {
    align-self: stretch;
    display: flex;
    padding: 0 6px;
    justify-content: center;
    align-items: center;
    background: #3B4B5E;
    border: none;
    color: white;
    cursor: pointer;
}

.hKLrf27XsQnBd3k6mUK_ {
    cursor: default;
}

.qkmAZ8j7y6nhmzseBlPA {
    border-right: 1px solid #fff;
}

.KIGtwsxhOeC0CUMgdI07 {
    border-left: 1px solid #fff;
}

.qkmAZ8j7y6nhmzseBlPA:hover, .KIGtwsxhOeC0CUMgdI07:hover {
    background: #000000;
}

.eaun454awrMD_dgkyZ9s {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-radius: 12px;
    background-color: grey;
    background-position: center;
    background-size: cover;
    position: relative;
}

.eaun454awrMD_dgkyZ9s::before {
    content: "";
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.RB1jakjk5j43iWYzGzyo {
    flex-shrink: 0;
    z-index: 0;
    position: relative;
}

.RB1jakjk5j43iWYzGzyo > img {
    height: 60px;
}

.rPcBxh2EfKVqKqzPEOgT {
    z-index: 0;
    color: #222;
    text-align: center;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 19.5px */
    padding: 9px 20px;
    align-items: center;
    border-radius: 90px;
    border: 1px solid #CFD7E0;
    background: #FFF;
}


:root {
    --default-accent-color: #257DAA;
    --default-border-color: #C3CDD9;
    --default-text-color: #000;
}

.kmc2QWpIyVhzE_DMIk8x {
    --default-button-background-color: white;
    --background-color: var(--default-button-background-color);
    --border-color: var(--default-accent-color);
    --text-color: var(--default-accent-color);
    --hover-background-color: var(--text-color);
    --hover-text-color: var(--background-color);
    display: inline-flex;
    padding: 8px 14px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 90px;
    border: 1px solid var(--border-color);
    background-color: var(--background-color);
    color: var(--text-color);
    cursor: pointer;
    transition: background-color 250ms ease-in-out, color 250ms ease-in-out;

    &:hover:not([disabled]) {
        background-color: var(--hover-background-color);
        color: var(--hover-text-color);
    }

    &[disabled] {
        cursor: default;
        opacity: 0.6;
    }

    &.tDoGp0KYwcFDpYCmPkOR {
        --background-color: var(--default-accent-color);
        --text-color: var(--default-button-background-color);
    }
}

input[type="checkbox"].MFIT4zsb2Zi1sexqNCKH {
    --default-background-color: var(--default-accent-color);
    --width: 40px;
    --height: 20px;
    --circle-color-checked: white;
    --circle-color-unchecked: white;
    --background-color-checked: var(--default-accent-color);
    --background-color-unchecked: #b6b6b6;
    --circle-size: 14px;
    --circle-padding: calc(var(--height) / 2 - var(--circle-size) / 2);

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    display: inline-block;
    width: var(--width);
    height: var(--height);
    background-color: var(--background-color-unchecked);
    position: relative;
    border-radius: calc(var(--height) / 2);
    vertical-align: top;

    &:not([disabled]) {
        cursor: pointer;
    }

    &:checked {
        background-color: var(--background-color-checked);

        &:before {
            background-color: var(--circle-color-checked);
            transform: translateX(calc(var(--width) - var(--circle-size) - (var(--circle-padding) * 2)));
        }
    }

    &:before {
        position: absolute;
        top: var(--circle-padding);
        left: var(--circle-padding);
        content: "";
        width: var(--circle-size);
        height: var(--circle-size);
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);

        background-color: var(--circle-color-unchecked);
        border-radius: 100%;
        transition-property: transform;
        transition-duration: 0.2s;
    }
}

.modal-root .modal.lmTqUX9yPLmA57oag65K .close-btn {
    top: 10px;
    right: 10px;
}

.DeMa4dGANVW_NTkmG0Cw {
    width: 100vw;
    max-width: 735px;
    display: grid;
    gap: 0 12px;
    grid-template-columns: min-content 1fr;
    grid-template-rows: repeat(4, auto);
    grid-template-areas:
            "p n"
            "p j"
            "p l"
            "b b";
}

.crR09zXxFAHOdsmayktO {
    grid-area: p;
    width: 94px;
    height: 94px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    background-color: lightgray;
    margin-right: 4px;
}

.NJG1jFeJ2sqC_3mVU8AE {
    grid-area: n;
    color: #222;
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.miZafYfhvc91Uou0Zy7T {
    grid-area: j;
    color: #666;
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 200% */
}

.NNu756lOXd7gz5ojELXN {
    margin-top: 3px;
    grid-area: l;
    display: flex;
    gap: 8px;
    align-self: flex-end;
}
.NNu756lOXd7gz5ojELXN > * {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    border: 1px solid #5E738C;
    width: 24px;
    height: 24px;
}

.qdi3FtsexTfUJhcIN0LS {
}

.SHfHQn3xOfksLf5CnyKc {
}

.rlTWcAUzBcXCwtF0GwQR {
}

.RuuN3ZQpP2bUAK8olAnY {
    font-size: 12px;
    margin-left: auto;
}

.JMxZ1hzzA3WRl67FlpHJ {
    grid-area: b;
    color: #222;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}
.wXlLs3thbvq2Mt07noMu {
    height: 16px;
    position: relative;
}

.zP5x3ZUptI39u6uRZ3Wl {
    position: absolute;
    height: 4px;
    top: 6px;
    width: 100%;
    left: 0;
    background: rgba(0, 64, 112, 0.1);
}

.dOukBe_3lt4zj7rRbO6e {
    position: absolute;
    height: 4px;
    top: 6px;
    left: 0;
    background: #004070;
}

.ytS0wNd6MTkLf2KPuL4A {
    position: absolute;
    height: 16px;
    top: 0;
    width: 4px;
    background: #004070;
    border-radius: 2px;
    cursor: pointer;
}

.iMYLEXi6jh11gfl_H3P0 {
    position: absolute;
    top: 3px;
    height: 10px;
    background: #004070;
    opacity: 0.5;
    border-radius: 4px;
}

.A7OE8ZARl4_bKBaIqjTz, .Lj6vybsv0GNetAojqk0y {
    position: absolute;
    height: 16px;
    top: 0;
    width: 4px;
    background: #FFD643;
    border-radius: 2px;
    cursor: pointer;
}

.Lj6vybsv0GNetAojqk0y {
    background: #ffa143;
}
.ynV0vgTL9hiNeyZy8q2B {
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.fvyRfVKxnVyLLyzfT5hv {
    position: relative;
    gap: 10px;
    display: flex;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid #D8DFE7;
}

.fvyRfVKxnVyLLyzfT5hv:last-child {
    border-bottom: none;
}

.vJJAtmIIJft_sTuthhQn .dxOMJWsshyNsSJWFQoPJ {
    font-weight: 700;
}

.dViibdOzjdwr2LEyE5YR {
    position: absolute;
    top: 8px;
    height: 4px;
    border-radius: 1px;
    background-color: #D3DCE8;
}

.pQwcX1cXJY5IUsI2F_yC {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 1px;
    background: #004070;
}

.WFcZAicM6MM30AkCiQmf {
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
}

._kT2unicX5YP3P0urRdQ {
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(157, 158,160);
}

.E52XMvpxMb_iK5zrrAgQ {
    display: flex;
    padding: 0 8px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: #000;
    color: #FFF;
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 233.333% */
    text-transform: uppercase;
}

.dxOMJWsshyNsSJWFQoPJ {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    flex: 1;
    cursor: pointer;
    color: rgb(157, 158,160);
}

.x7ETk8JMARCKzU3Cq0ZL {
    margin-left: 10px;
    padding: 8px 14px;
    align-items: center;
    gap: 6px;
    color: #555;
    font-family: "Roboto Flex", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 166.667% */
    border-radius: 90px;
    background: #D3DCE8;
    border: none;
    cursor: pointer;
    display: none;
}

.x7ETk8JMARCKzU3Cq0ZL:hover {
    background: #C8D3E0;
}

.fvyRfVKxnVyLLyzfT5hv.vJJAtmIIJft_sTuthhQn .x7ETk8JMARCKzU3Cq0ZL {
    display: flex;
}
.fvyRfVKxnVyLLyzfT5hv:hover .dxOMJWsshyNsSJWFQoPJ, .fvyRfVKxnVyLLyzfT5hv.vJJAtmIIJft_sTuthhQn .dxOMJWsshyNsSJWFQoPJ {
    color: #070C13;
}
.fvyRfVKxnVyLLyzfT5hv:hover ._kT2unicX5YP3P0urRdQ, .fvyRfVKxnVyLLyzfT5hv:hover .WFcZAicM6MM30AkCiQmf {
    color: #004070;
}
.Hf79sbqGmNkMIU3WmCdN {
    transform: scaleX(-1);
}

/*noinspection CssInvalidMediaFeature*/
@media(max-width: 1024px) {
    .fvyRfVKxnVyLLyzfT5hv {
        border: none;
    }
}

.w00kYamPXjHVfcYtcNGN {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.R3g1MX41cHKafmW2BFCm {
    display: grid;
    grid-template-columns: min(calc((100vh - 450px) * 1.77), 60vw)  1fr; /* calculate video width so it's taking all height - constant px */
    padding: 20px 45px;
    gap: 20px;
    height: 100%;
    overflow: hidden;
}

.eaun454awrMD_dgkyZ9s {
    grid-column-start: 1;
    grid-column-end: 3;
}

.QUn1t3FMfjGA2JCDHpMm {
    flex: none;
}

.zuAnDHfrCjsy7_kO5cbM {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    flex: none;
    max-height: 100%;
}

.zuAnDHfrCjsy7_kO5cbM > *:last-child {
    border-top: 1px solid #D8DFE7;
}

.sOs8INU3yhB1CPDQqNCw {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #C3CDD9;
    overflow: hidden;
}

.kvtmMp_VPG31VN_fMzQA {
    width: 100%;
    display: block;
    background: black;
    overflow: hidden;
    border-radius: 12px;
    flex: none;
}

.WTga7TP1VftSUnPSpGYF {
    width: 100%;
    aspect-ratio: 16/9;
}

.kvtmMp_VPG31VN_fMzQA.aoggUdZ_7nc_Nd_Cd71a {
    width: 100%;
    height: 100%;
}

.EX0bkJcBogmrDXuDNo42 {
    display: block;
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
}

.EX0bkJcBogmrDXuDNo42 .youtube {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background-color: black;
}

.r6NtvOOIMCLDEIK1fFPx {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mCJ5RyBCJoGysXg5Ifd_ {
    color: #222;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px; /* 150% */
}

.LWjizyGOJ7_WtO6sAzE_ {
    color: #5E738C;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 150% */
}

.NwPRuv1JtWnAlYN1Ujkc {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.NwPRuv1JtWnAlYN1Ujkc > button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 90px;
    border: 1px solid #CFD7E1;
    background: #FFF;
    font-family: Poppins, sans-serif;
    color: #222;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 233.333% */
    cursor: pointer;
}

.NwPRuv1JtWnAlYN1Ujkc > button:hover {
    background: #F7F9FC;
}

.WjnP8tkE3YxWoCajTomU {
    transform: scaleX(-1);
}

.odAsgwan_KxieR8qafyQ {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 10px;
}

.FUKZgbwSiA55detbTGt6 {
    height: 68px;
    border-radius: 4px;
}

.Phw3Y4WxmAHZ9JUwQdl0 {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: flex-start;
    flex: 1;
}

.Hazc7qyIctCpobuwMjHg {
    color: #222;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.Hazc7qyIctCpobuwMjHg.e1dSdQ0tRt6BJ5f0O0IK {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 150% */
}

.TjHLf4VFIOhf6N1ll4Jn {
    color: #5E738C;
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.TjHLf4VFIOhf6N1ll4Jn.e1dSdQ0tRt6BJ5f0O0IK {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 150% */
}

.OPiE5Uurg7Urhw519qHY {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 90px;
    border: 1px solid #CFD7E1;
    background: #FFF;
    font-family: Poppins, sans-serif;
    color: #222;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 233.333% */
    cursor: pointer;
}

.OPiE5Uurg7Urhw519qHY:hover {
    background: #F7F9FC;
}

.transcript-list {

}

.j8GwHWgTMw1awjb8zS_B {
    display: none;
    gap: 13px;
    height: 47px;
    flex: none;
    padding: 0 10px;
}

.j8GwHWgTMw1awjb8zS_B > li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-bottom: 3px solid #E6ECF2;
    cursor: pointer;
    flex: 1;
    color: #C3CDD9;
    text-align: center;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px; /* 150% */
}

.j8GwHWgTMw1awjb8zS_B > li.YdrvxdbHIzTpjy8pf3tF {
    flex: none;
}

.j8GwHWgTMw1awjb8zS_B > li.e3LcxgCFvJkiL84RUxE2 {
    border-bottom-color:#004070;
    color: #004070;
    cursor: default;
}

.PNXEoACzttWLAaUa9Ju5 {
    display: flex;
    padding: 4px 6px;
    align-items: center;
    gap: 8px;
    border-radius: 90px;
    background: #E6ECF2;
    color: #000;
    font-family: Poppins, sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 8px;
    width: max-content;
    cursor: pointer;
}

.f7ig2JlwgFP5s9bjrNzu {
    width: 16px;
    height: 16px;
    background-position: center;
    background-size: cover;
    border-radius: 100%;
}

/*noinspection CssInvalidMediaFeature*/
@media(max-width: 1024px) {
    .R3g1MX41cHKafmW2BFCm {
        display: flex;
        flex-direction: column;
        padding: 0;
        gap: 0;
    }
    .zuAnDHfrCjsy7_kO5cbM {
    }
    .zuAnDHfrCjsy7_kO5cbM > *:last-child {
        border-top: none;
    }
    .sOs8INU3yhB1CPDQqNCw {
        padding: 0;
        border-radius: 0;
        border: none;
        margin: 10px 10px 0;
    }
    .kvtmMp_VPG31VN_fMzQA {
        border-radius: 0;
    }
    .r6NtvOOIMCLDEIK1fFPx {
        padding: 0 10px;
    }
    .odAsgwan_KxieR8qafyQ {
        margin: 10px 10px 0;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: min-content min-content;
        gap: 10px;
        grid-template-areas: "a b" "c c";
    }
    .OPiE5Uurg7Urhw519qHY {
        grid-area: c;
    }
    .eaun454awrMD_dgkyZ9s {
        display: none;
    }
    .NwPRuv1JtWnAlYN1Ujkc {
        justify-content: space-between;
    }
    .NwPRuv1JtWnAlYN1Ujkc > button {
        flex: 1;
    }
    .wXlLs3thbvq2Mt07noMu {
        display: none;
    }
    .ynV0vgTL9hiNeyZy8q2B {
        margin: 0 10px;
    }
    .j8GwHWgTMw1awjb8zS_B {
        display: flex;
    }
    .uoJotgHbx6k2UEbebOv0 .sOs8INU3yhB1CPDQqNCw, .cmQr9hIpBQUxWKC9ySgG .sOs8INU3yhB1CPDQqNCw {
        display: none;
    }
    .uoJotgHbx6k2UEbebOv0 .ynV0vgTL9hiNeyZy8q2B, .rSRVJwy7Ckvodwl1S8de .ynV0vgTL9hiNeyZy8q2B {
        display: none;
    }
    .cmQr9hIpBQUxWKC9ySgG .odAsgwan_KxieR8qafyQ, .rSRVJwy7Ckvodwl1S8de .odAsgwan_KxieR8qafyQ,
    .cmQr9hIpBQUxWKC9ySgG .r6NtvOOIMCLDEIK1fFPx, .rSRVJwy7Ckvodwl1S8de .r6NtvOOIMCLDEIK1fFPx {
        display: none;
    }

}

/*noinspection CssInvalidMediaFeature*/
@media (max-width: 1024px) and (orientation: landscape) {
    .sOs8INU3yhB1CPDQqNCw {
        display: none;
    }
    .kvtmMp_VPG31VN_fMzQA {
        position: absolute;
        height: 100%;
    }
    .EX0bkJcBogmrDXuDNo42 {
        padding-bottom: 0;
        height: 100%;
    }
    .ynV0vgTL9hiNeyZy8q2B {
        display: none;
    }
    .r6NtvOOIMCLDEIK1fFPx {
        display: none;
    }
}
