



/* ------------- 
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;
    }
    
}
/* ------------- 
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;
    }
}

/* ------------- 
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 - С какого урока начать
------------- */
