:root {
    --primary-color: rgb(14, 1, 66);
    --secondary-color: #5F43D0;
    --background-color: #F3EFFF;
    --text-color: rgb(14, 1, 66);
    --text-white-color: #FFFFFF;
    --font-size: 16px;
    --border-radius: 1.25rem;
    --border-line-color: rgb(231 230 236);
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body{
    color: var(--text-color);
    font-family: 'Euclid Circular A', sans-serif;
}
.absolute {
    position: absolute;
}
.cursor-pointer {
    cursor: pointer;
}
.dark_btn{
    font-size: 15px;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    border: 0px solid var(--primary-color);
    color: var(--text-white-color);
    margin: 0 auto;
    padding: 16px 40px;
    font-family: 'Euclid Circular A', sans-serif ;
}
button{
    cursor: pointer;
}
.white_btn{
    background: var(--text-white-color);
    border-radius: var(--border-radius);
    border: 0px solid var(--primary-color);
    color: var(--primary-color);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 500;
}
.white_btn:hover{
    background: var(--secondary-color);
    color: var(--text-white-color);
}
.white_border_btn{
    background: var(--primary-color);
    border-radius: var(--border-radius);
    border: 2px solid var(--text-white-color);
    color: var(--text-white-color);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 500;
}
.white_border_btn:hover{
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    
}
.dark_btn:hover{
    background: var(--secondary-color);
    cursor: pointer;
}
.decoration-dashed {
    text-decoration: underline;
    text-decoration-style: dashed;
    text-underline-offset: 4px;
}
.height{
    height: 100%;
}
.m0{
    margin: 0 auto;
}
.mt_15{
    margin-top: 15px;
}
.flex{
    display: flex;
}
.flex_wrap{
    display: flex;
    flex-wrap: wrap;
}
.flex_block{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex_block:first-child{
    gap: 40px;
}
.fit_content{
    width: fit-content;
}
.gap_20{
    gap: 20px;
}
.hidden{
    display: none;
}
.leading-160{
    line-height: 160%;
}
.link_btn span{
    color: var(--text-color);
    font-weight: 700;
}
.link_btn:hover span{
    color: var(--secondary-color);
}
.low_title{
    font-size: 2rem;
    font-weight: 700;
    line-height: 120%;
}
.mb-8{
    margin-bottom: 8px;
}
.mt-20{
    margin-top: 20px;
}
.relative{
    position: relative;
}
.right{
    right: 0;
}
.-z-10 {
    z-index: -10;
}
.md\:block {
    display: block;
}
.main-top-block{
    max-width: 53em;
}
.mx-2{
    margin-left: .125rem;
    margin-right: .125rem;
}
.mt-12 {
    margin-top: .75rem;
}
.mb-20 {
    margin-bottom: 1.25rem;
}
.mh-4{
    min-height: 4.8rem;
}
.text_btn{
    display: flex;
    align-items: center;
    gap: 10px;
}
.opacity-60 {
    opacity: .6;
}
video{
width: 100%;
}
.w-100{
    width: 100%;
}
.mx-w{
    width: 500px;
}
.px-16 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.w-max {
    width: -moz-max-content;
    width: max-content;
}

.open-popup-btn{
    cursor: pointer;
}
.error-message {
    color: red;
    font-size: 0.9em;
    margin-top: 0.25em;
    display: none; /* Скрыто по умолчанию */
}
.error {
    display: block; /* Отображается при наличии ошибки */
}