



/* ------------- 
content start -  popups
------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Popups */
.interactive-popup-fade {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(17 17 19 / 60%);
    z-index: 10002;
}

.interactive-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10003;
    display: flex;
    align-items: center;
    justify-content: center;
}

.interactive-popup-close {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 0;
    --s: 40px;
    width: var(--s);
    height: var(--s);
    border: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 10L10 30' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 10L30 30' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10003;
    transition: .3s;
}

.interactive-popup-close.in-iframe {
	background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 10L10 30' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 10L30 30' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.interactive-popup-content {
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 15px;
    background: none;
    position: relative;
    z-index: 10003;
    overflow: hidden;
    overflow-y: scroll;
    font-size: 0;
}

.interactive-popup-content--iframe {
    background: #F6F6F6;
}

.interactive-iframe {  
    height: 690px;
    border: none;
}

.interactive-popup-content::-webkit-scrollbar,
.interactive-iframe ::-webkit-scrollbar {
    display: none;
}

.interactive-popup-content,
.interactive-iframe  {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Navigation */
.interactive-navigation {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    gap: 10px;
    position: fixed;
    --p: 20px;
    right: var(--p);
    top: calc(var(--p) * 11);
    z-index: 50;
}

.interactive-navigation-btn {
    padding: 7px 15px;
    border: none;
    border-radius: 20px;
    background-color: #E1F1FF;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    transition: .3s;
}

.interactive-navigation-btn.btn-1 {
    background: #08FCA5;
}

.interactive-navigation-btn:hover {
    filter: brightness(0.95);
}

@media (max-width: 1200px) {
    /* Popups */
    .interactive-popup-close {
        top: 25px;
        right: 25px;
        --s: 35px;
    }

    .interactive-popup-content {
        max-width: 768px;
    }

    .interactive-iframe {  
        height: 600px;
    }

    /* Navigation */
    .interactive-navigation {
        max-width: 350px;
        gap: 10px;
        --p: 15px;
    }

    .interactive-navigation-btn {
        padding: 7px;
        font-size: 14px;
    } 

}

@media (max-width: 768px) {

    .interactive-popup-content {
        max-width: 320px;
    }

    .interactive-iframe {  
        height: 610px;
    }

    .interactive-popup-close {
        top: 10px;
        right: 10px;
        --s: 30px;
    }
  
}

@media (max-width: 600px) {

    .interactive-navigation {
        max-width: none;
        width: 95%;
        gap: 5px;
        top: auto;
        bottom: 55px;
        z-index: 50;
    }
    
}



/* ===== Финальный стиль скидочного pop-up с таймером в часах ===== */

.interactive-popup.is-hidden {
    display: none !important;
}

.interactive-popup[data-popup-num="discount-24h"] {
    padding: 20px !important;
    font-family: "Inter", Arial, sans-serif !important;
}

.interactive-popup[data-popup-num="discount-24h"] .interactive-popup-fade {
    background: rgba(6, 27, 44, 0.48) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
}

.interactive-popup[data-popup-num="discount-24h"] .interactive-popup-content {
    width: min(860px, calc(100vw - 32px)) !important;
    max-width: 860px !important;
    max-height: calc(100vh - 32px) !important;
    overflow: visible !important;
    border-radius: 30px !important;
    background: transparent !important;
    box-shadow: 0 28px 80px rgba(6, 27, 44, 0.28) !important;
}

.interactive-popup[data-popup-num="discount-24h"] .discount-main {
    position: relative !important;
    width: 100% !important;
    max-width: 860px !important;
    height: auto !important;
    min-height: 430px !important;
    margin: 0 auto !important;
    padding: 34px !important;
    overflow: hidden !important;
    border-radius: 30px !important;
    background: #0083FF !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    color: #ffffff !important;
    text-align: left !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 24px 70px rgba(6, 27, 44, 0.30) !important;
}

.interactive-popup[data-popup-num="discount-24h"] .discount-main::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 22px;
    pointer-events: none;
}

.interactive-popup[data-popup-num="discount-24h"] .discount-main::after {
    content: none !important;
    display: none !important;
}

/* Плашка с остатком часов */
.interactive-popup[data-popup-num="discount-24h"] .discount-timer-badge {
    position: absolute;
    left: 34px;
    top: 28px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.interactive-popup[data-popup-num="discount-24h"] .discount-timer-badge strong {
    margin-left: 5px;
    color: #FFE400;
    font-weight: 900;
}

/* Крестик в правом верхнем углу карточки */
.interactive-popup[data-popup-num="discount-24h"] .discount-popup-close,
.interactive-popup[data-popup-num="discount-24h"] .discount-main > .interactive-popup-close {
    position: absolute !important;
    top: 22px !important;
    right: 22px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 100 !important;

    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    margin: 0 !important;

    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.16) !important;
    background-image: none !important;
    cursor: pointer !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    box-shadow: none !important;
    transform: none !important;
}

.interactive-popup[data-popup-num="discount-24h"] .discount-popup-close::before,
.interactive-popup[data-popup-num="discount-24h"] .discount-popup-close::after,
.interactive-popup[data-popup-num="discount-24h"] .discount-main > .interactive-popup-close::before,
.interactive-popup[data-popup-num="discount-24h"] .discount-main > .interactive-popup-close::after {
    content: "" !important;
    position: absolute !important;
    width: 16px !important;
    height: 2px !important;
    border-radius: 2px !important;
    background: #ffffff !important;
    left: 50% !important;
    top: 50% !important;
    transform-origin: center !important;
}

.interactive-popup[data-popup-num="discount-24h"] .discount-popup-close::before,
.interactive-popup[data-popup-num="discount-24h"] .discount-main > .interactive-popup-close::before {
    transform: translate(-50%, -50%) rotate(45deg) !important;
}

.interactive-popup[data-popup-num="discount-24h"] .discount-popup-close::after,
.interactive-popup[data-popup-num="discount-24h"] .discount-main > .interactive-popup-close::after {
    transform: translate(-50%, -50%) rotate(-45deg) !important;
}

.interactive-popup[data-popup-num="discount-24h"] .discount-popup-close:hover,
.interactive-popup[data-popup-num="discount-24h"] .discount-main > .interactive-popup-close:hover {
    background: rgba(255, 255, 255, 0.26) !important;
}

/* Верхняя часть: 20% + заголовок */
.interactive-popup[data-popup-num="discount-24h"] .discount-main-row1 {
    position: relative !important;
    z-index: 2 !important;
    display: grid !important;
    grid-template-columns: 180px minmax(0, 1fr) !important;
    gap: 26px !important;
    align-items: center !important;
    justify-content: initial !important;
    padding-top: 58px !important;
}

/* 20% без желтого квадрата */
.interactive-popup[data-popup-num="discount-24h"] .discount-percent {
    width: auto !important;
    min-height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #FFE400 !important;
    font-size: 122px !important;
    line-height: 0.82 !important;
    font-weight: 900 !important;
    letter-spacing: -0.085em !important;
    text-shadow: 0 16px 38px rgba(255, 228, 0, 0.22) !important;
    box-shadow: none !important;
}

.interactive-popup[data-popup-num="discount-24h"] .discount-percent span {
    margin-top: 9px !important;
    margin-left: 5px !important;
    font-size: 42px !important;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;
    color: #FFE400 !important;
}

.interactive-popup[data-popup-num="discount-24h"] .discount-header {
    max-width: 560px !important;
    margin: 0 !important;
    color: #ffffff !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: clamp(38px, 4vw, 54px) !important;
    line-height: 1.02 !important;
    font-weight: 900 !important;
    letter-spacing: -0.055em !important;
    text-align: left !important;
}

/* Нижняя часть */
.interactive-popup[data-popup-num="discount-24h"] .discount-main-row2 {
    position: relative !important;
    z-index: 2 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 290px !important;
    gap: 28px !important;
    align-items: end !important;
}

.interactive-popup[data-popup-num="discount-24h"] .discount-main-row2 > div {
    flex-basis: auto !important;
    text-align: left !important;
}

.interactive-popup[data-popup-num="discount-24h"] .discount-main-row2 > div:not(.discount-img) {
    max-width: 500px !important;
    flex-basis: auto !important;
}

.interactive-popup[data-popup-num="discount-24h"] .discount-text {
    max-width: 500px !important;
    margin: 0 0 22px !important;
    color: rgba(255, 255, 255, 0.92) !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 19px !important;
    line-height: 1.44 !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
    text-align: left !important;
}

.interactive-popup[data-popup-num="discount-24h"] .discount-text strong {
    color: #ffffff !important;
    font-weight: 900 !important;
}

/* Кнопка */
.interactive-popup[data-popup-num="discount-24h"] .discount-button {
    width: auto !important;
    min-width: 250px !important;
    height: auto !important;
    min-height: 56px !important;
    padding: 16px 26px !important;
    border: none !important;
    border-radius: 16px !important;
    background: #FFE400 !important;
    color: #061B2C !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 18px !important;
    line-height: 1.1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em !important;
    box-shadow:
        0 14px 34px rgba(255, 228, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.50) !important;
    cursor: pointer !important;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease !important;
}

.interactive-popup[data-popup-num="discount-24h"] .discount-button:hover {
    opacity: 1 !important;
    filter: brightness(0.98) !important;
    transform: translateY(-2px) !important;
}

/* Картинка */
.interactive-popup[data-popup-num="discount-24h"] .discount-img {
    position: relative !important;
    align-self: stretch !important;
    min-height: 250px !important;
    border-radius: 26px !important;
    background: rgba(255, 255, 255, 0.14) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    overflow: hidden !important;
}

.interactive-popup[data-popup-num="discount-24h"] .discount-main img {
    position: absolute !important;
    right: -38px !important;
    bottom: -6px !important;
    width: 360px !important;
    max-width: none !important;
    height: auto !important;
    display: block !important;
}

/* Планшеты */
@media (max-width: 980px) {
    .interactive-popup[data-popup-num="discount-24h"] .interactive-popup-content {
        width: min(720px, calc(100vw - 24px)) !important;
    }

    .interactive-popup[data-popup-num="discount-24h"] .discount-main {
        min-height: auto !important;
        padding: 28px !important;
    }

    .interactive-popup[data-popup-num="discount-24h"] .discount-timer-badge {
        left: 28px !important;
        top: 28px !important;
        max-width: calc(100% - 100px) !important;
        line-height: 1.2 !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .interactive-popup[data-popup-num="discount-24h"] .discount-main-row1 {
        grid-template-columns: 130px minmax(0, 1fr) !important;
        gap: 18px !important;
        padding-top: 62px !important;
    }

    .interactive-popup[data-popup-num="discount-24h"] .discount-percent {
        font-size: 72px !important;
    }

    .interactive-popup[data-popup-num="discount-24h"] .discount-percent span {
        font-size: 27px !important;
    }

    .interactive-popup[data-popup-num="discount-24h"] .discount-main-row2 {
        grid-template-columns: 1fr !important;
    }

    .interactive-popup[data-popup-num="discount-24h"] .discount-img {
        display: none !important;
    }
}

/* Мобильная версия */
@media (max-width: 640px) {
    .interactive-popup[data-popup-num="discount-24h"] {
        align-items: center !important;
        padding: 12px !important;
    }

    .interactive-popup[data-popup-num="discount-24h"] .interactive-popup-content {
        width: calc(100vw - 24px) !important;
        max-height: calc(100vh - 24px) !important;
        border-radius: 24px !important;
        overflow-y: auto !important;
    }

    .interactive-popup[data-popup-num="discount-24h"] .discount-main {
        padding: 20px !important;
        border-radius: 24px !important;
        gap: 18px !important;
    }

    .interactive-popup[data-popup-num="discount-24h"] .discount-main::before {
        inset: 10px !important;
        border-radius: 18px !important;
    }

    .interactive-popup[data-popup-num="discount-24h"] .discount-timer-badge {
        position: relative;
        left: auto !important;
        top: auto !important;
        width: fit-content;
        max-width: calc(100% - 46px);
        min-height: 30px;
        padding: 8px 11px;
        font-size: 11px;
        line-height: 1.15;
    }

    .interactive-popup[data-popup-num="discount-24h"] .discount-popup-close,
    .interactive-popup[data-popup-num="discount-24h"] .discount-main > .interactive-popup-close {
        top: 16px !important;
        right: 16px !important;
        width: 36px !important;
        height: 36px !important;
    }

    .interactive-popup[data-popup-num="discount-24h"] .discount-main-row1 {
        padding-top: 0 !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .interactive-popup[data-popup-num="discount-24h"] .discount-percent {
        font-size: 62px !important;
    }

    .interactive-popup[data-popup-num="discount-24h"] .discount-percent span {
        font-size: 24px !important;
    }

    .interactive-popup[data-popup-num="discount-24h"] .discount-header {
        font-size: 32px !important;
        line-height: 1.04 !important;
        letter-spacing: -0.05em !important;
    }

    .interactive-popup[data-popup-num="discount-24h"] .discount-text {
        margin-bottom: 18px !important;
        font-size: 16px !important;
        line-height: 1.4 !important;
    }

    .interactive-popup[data-popup-num="discount-24h"] .discount-button {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 52px !important;
        padding: 14px 18px !important;
        font-size: 16px !important;
        border-radius: 14px !important;
    }
}
/* ------------- 
content finish -  popups
------------- */

/* ------------- 
content start - additional-popups
------------- */

/* DISCOUNT */
.interactive-popup-content:has(.discount-main) {
    max-width: 1728px;
}

.discount-main {
	position: relative;
    max-width: 1728px;
    height: 1026px;
    justify-content: space-between;
	margin: 0 auto;
    padding: 138px 130px;
    border-radius: 10px;
    background: #FFC300;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #000;
    font-family: "Inter", sans-serif !important;
}

.discount-main-row1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.discount-header {
	max-width: 925px;
	font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 100px;
    line-height: 111%;
    text-align: left;
}

.discount-percent {
    margin-top: 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 274px;
    font-weight: 900;
    line-height: 0.8;
}

.discount-percent span {
    margin-top: 0;
    margin-left: -5px;
    font-size: 100px;
}

.discount-main-row2 {
    display: flex;
}

.discount-main-row2 div {
    flex-basis: 50%;
    text-align: left;
}

.discount-main-row2 div:not(.discount-img) {
    flex-basis: 63%;
}

.discount-text {
    margin-bottom: 120px;
    line-height: normal;
    font-weight: 500;
    font-size: 50px;
    letter-spacing: -0.02em;
    color: #000;
    text-align: left;
}

.discount-button {
	position: relative;
    z-index: 1;
    padding: 10px;
    background: #FFF;
    line-height: normal;
    transition: 0.3s;
    border-radius: 5px;
    border: none;
    width: 735px;
    height: 99px;
    font-weight: 700;
    font-size: 50px;
    text-align: center;
    color: #000;
    transition: .3s;
}

.discount-button:hover {
    opacity: .8;
}

.discount-main img {
    max-width: 825px;
    position: absolute;
    bottom: 0;
    right: 0;
}

/* CATALOG */

.catalog-main {
    max-width: 540px;
    height: 710px;
    margin: 0 auto;
    padding: 45px;
    border-radius: 10px;
    background: #051C2C;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-family: 'Inter', sans-serif !important;
}

.catalog-header {
    margin-bottom: 70px;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.catalog-button {
    padding: 10px;
    border-radius: 5px;
    background: #FFC300;
    border: none;
    color: #051c2c;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: .3s;
}

.catalog-button:hover {
    opacity: .8;
}

@media (max-width: 1800px) {
	.discount-main {
		max-width: 95vw;
    height: 930px;
    padding: 5vw;
	}
	
	.discount-percent {
    font-size: 12.222vw;
	}
	
	.discount-percent span {
    font-size: 3.889vw;
	}
	
	.discount-header {
    font-size: 4.722vw;
	}
	
	.discount-text,
	.discount-button {
    font-size: 2.5vw;
	}
	
	.discount-button {
    width: 40vw;
	}
	
	.discount-main img {
    max-width: 48.529vw;
	}
}

@media (max-width: 1600px) {
    .discount-main {
        height: 53.75vw;
    }
    
    .discount-button {
        height: 70px;
    }
}

@media (max-width: 1024px) {
    .discount-main {
        height: 100%;
        gap: 7vw;
    }
    
    .discount-percent {
    margin-top: 0;
    margin-bottom: 0;
	}
    
    .discount-text {
	    margin-bottom: 5vw;
	}
	
	.discount-button {
        height: auto;
    }
}

@media (max-width: 768px) {
    .discount-main-row1 {
	    gap: 24px;
		}

  	.discount-percent {
        font-size: 14.322vw;
    }
    
        .discount-percent span {
        	margin-left: 0;
        font-size: 5.689vw;
    }
    
        .discount-header {
        font-size: 5.622vw;
    }
    
        .discount-text, .discount-button {
        font-size: 3.5vw;
    }

    .catalog-button {
        padding: 10px;
        font-size: 16px;
    }

    .catalog-main {
        max-width: none;
        height: auto;
        margin: 0 auto;
        padding: 45px 25px;
    }

    .catalog-header {
        margin-bottom: 40px;
        font-size: 20px;
    }
}


.interactive-popup[data-popup-num="discount-24h"] .discount-text [data-discount-text-hours-left] {
    color: #FFE400 !important;
    font-weight: 900 !important;
    white-space: nowrap;
}
/* ------------- 
content finish - additional-popups
------------- */

/* ------------- 
content start - С какого урока начать
------------- */

.where-start-popup-arrow {
    position: fixed;
    z-index: 10000;
    left: 53px;
    top: 30%;
    transform: translateY(-50%);
    display: none;
}

.popup-arrow-svg {
    position: absolute;
    left: 0;
    top: 56%;
}
.mob-svg-popup {
    display: none;
}
.where-start-popup {
    margin-left: 196px;
    width: 1026px;
    background: url('https://fs.getcourse.ru/fileservice/file/download/a/60733/sc/96/h/fb853bceb714e363027645c138029c8b.png'),
        url('https://fs.getcourse.ru/fileservice/file/download/a/60733/sc/137/h/9302ee35313771e8ab08dda5170e1b8e.png'),
        #0082FF;
    background-size: 162px 187px, 178px 183px, contain;
    background-repeat: no-repeat;
    background-position: left bottom, right bottom, center;
    padding: 40px;
    display: flex;
    justify-content: center;
    border-radius: 5px;
}

.where-start-popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.where-start-popup-subtitle {
    color: #FFF;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    margin: 23px 0px 42px 0px;
}

.where-start-popup-title {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

.where-start-popup-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 27px;
}

.start-beginning,
.watch-module {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    min-width: 181px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none !important;
    border: none !important;
    text-decoration: none !important;
    color: black !important;
    border-radius: 5px;
}

.watch-module {
    background: #FFE400;
}

.start-beginning {
    background: #ffffff !important;
}
.where-start-popup-fade {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(17 17 19 / 60%);
    z-index: 1000;
}
.where-start-popup-show {
    z-index: 2000;  
}
@media (max-width: 1200px) {
    .where-start-popup {
        background: #0082FF;
        width: 70vw;
    }

}
@media (max-width: 768px) {
    .where-start-popup {
        background: #0082FF;
        width: 70vw;
    }
    .where-start-popup {
        margin-left: 96px;
    }
    .where-start-popup-title {
        font-size: 25px;  
    }
    .where-start-popup-subtitle {
        font-size: 18px;  
    }

}
@media (max-width: 640px) {
    .where-start-popup-arrow {
        left: 20px;
    }
    .where-start-popup {
        padding: 20px;
        margin-left: 10px;
        width: 364px;
    }
    .popup-arrow-svg {
        top: 69%;
    }
    .desk-svg-popup {
        display: none;
    }
    .mob-svg-popup {
        display: block;
    }
    .where-start-popup-title {
        font-size: 20px;  
    }
    .where-start-popup-subtitle {
        margin: 10px 0px 30px 0px;
        font-size: 16px; 
    }
    .where-start-popup-bottom {
        gap: 14px;
        flex-direction: column;
    }
    .start-beginning {
        background: transparent !important;
        padding: 0 !important;
        color: white !important;
        text-decoration-line: underline !important;
        height: auto !important;
    }
}
@media (max-width: 480px) {
    .where-start-popup-arrow {
        top: 20%;
    }
}
/* ------------- 
content finish - С какого урока начать
------------- */
