/* Шрифты */
@font-face {
    font-family: "Inter";
    font-weight: 400;
    font-style: normal;
    src: url("/css/fonts/Inter-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "Inter";
    font-weight: 700;
    font-style: normal;
    src: url("/css/fonts/Inter-Bold.ttf") format("truetype");
}



/* Компоненты */
body{
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    line-height: 1.3;
    margin-top: 68px;

}
p{
    line-height: 1.4;
}
.content li{
    margin-bottom: 10px;
}

.justf > p{
    text-align: justify;
}
.justf > p.right{
    text-align: right;
}

h1{
    font-size: 42px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 40px;

}

h2{
    padding: 0;
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: bold;

}

.green{
    color: green;
}
.red{
    color: #DE3327 !important;
}
.bold{
    font-weight: bold;
}

.dark{
    color: #2A2A2A;
}



.container-fluid{
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
}

.container{
    max-width: 1200px;
    box-sizing: border-box;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


.container330{
    box-sizing: border-box;
    max-width: 330px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}

.container600{
    box-sizing: border-box;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}


.container420{
    box-sizing: border-box;
    max-width: 420px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}


.container800{
    box-sizing: border-box;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}

input,button,textarea,select{
    outline: none;
    font-family: 'Inter', sans-serif;
}


.for-desktop{
    display: block;
}
.for-mobile{
    display: none;
}
.display-none{
    display: none;
}

.display-flex{
    display: flex;
}

.dn{
    display: none;
}

.right{
    text-align: right;
}
.alert-container{
    padding-top: 30px;
}
.alert{
    background-color: green;
    color: #fff;
    font-size: 18px;
    border-radius: 4px;
    padding: 10px 20px;
    margin-bottom: 20px;

}


.alert-danger{
    background-color: red;
}

.center{
    text-align: center;
}
strong{
    font-weight: bold;
}

.required label:after{
    content: "*";
    color: red;
    font-size: 18px;
    position: relative;
    top: 5px;
    left: 4px;
}


.icon{
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    position: relative;
    top: -2px;
}


*{
    -webkit-tap-highlight-color: transparent;
}

table {
    width: 100% !important;
    margin-bottom: 20px;
    border: 1px solid #006EB7;
    border-collapse: collapse;
    font-size: 16px;
    line-height: 1.2;
    overflow: auto;
    border-radius: 10px;

}
table th {
    font-weight: 600;
    padding: 8px;
    background: #F0F6FA;
    border: 1px solid blue;
    text-align: left;
}
table td {
    border: 1px solid #e8e8eb;
    padding: 8px;
}



/* АДМИНКА */
#adminka{
    background-color: #2c3e50;
    color: #fff;
    padding: 8px 20px;
    /*border-radius: 0 0 10px 10px;*/
}

#adminka ul{
    margin: 0;
    padding: 0;
}
#adminka li{
    display: inline-block;
    margin-right: 10px;
}

#adminka a{
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}





/* Модальное окно */
.modal-wrapper{
    overflow: auto;

    z-index: 2000;

    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: rgba(0, 0, 0, 0.6);
    display: grid;
    align-items: center;
    justify-content: center;

    opacity: 0;
}
.modal{
    background-color: #fff;
    max-width: 500px;
    max-height: 80%;
    overflow: auto;
    position: relative;

    padding: 30px;
}
.modal-close{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

/* СЛАЙДЕР */
.slider{
    overflow: hidden;
    position: relative;
}




.grid-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;

}

.grid-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;

}

.grid-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
}

.grid-centered{
    align-items: center;
}




/* Форма */
.form-control{
    border: 2px solid #999;
    width: 100%;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 18px;
    box-sizing: border-box;

}
.control-label{
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 18px;
}

.form-group{
    margin-bottom: 25px;
}

.admin-page .btn{
    font-size: 18px;
}




/* ЗАГРУЗКА ИЗОБРАЖЕНИЙ */
.file-input{
    margin-top: 30px;
    margin-bottom: 40px;
}
.file-input .field-content-image{
    position: relative;
    padding: 40px;
    text-align: center;

    border: 2px dashed #ccc;
    border-radius: 10px;
    transition: 0.1s;
}
.file-input .field-content-image:hover{
    border: 2px solid #999;
}
.file-input .control-label{
    margin-bottom: 0;
}

.file-input #content-image{
    cursor: pointer;
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
}
.added-image{
    width: 120px;
    /*height: 120px;*/
    display: inline-block;
    vertical-align: top;
    margin: 0 20px 20px 0;
    cursor: move;

    position: relative;
}
.shost{
    opacity: 0.5;
}
.selected{
    background-color: green;
}

.loading{
    background-color: #f2f2f2;
    width: 120px;
    height: 120px;
    display: inline-block;
    vertical-align: top;
    margin: 0 20px 20px 0;
    background-image: url("/images/load.svg");
    background-repeat: no-repeat;


}


.context-menu{
    opacity: 0;
    background-color: #fff;
    position: absolute;
    top: 5px;
    right: 5px;

    border-radius: 4px;
    transition: 0.2s;
}
.context-menu a{
    display: block;
    padding: 4px;
}
.context-menu img{
    display: block;
}


.added-image:hover .context-menu{
    opacity: 1;
}



.btn {
    background-color: #E73516;
    text-decoration: none;
    color: #fff;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.2s;
    position: relative;
    top: 0;
    display: inline-block;
    border: none;
    font-size: 17px;
    /*font-weight: bold;*/
    cursor: pointer;
    box-sizing: border-box;
}

.btn:hover{
    background-color: #c2280c;
}



/* Header */
.main-header{
    background-color: #2A2A2A;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 100;
}
.header-inner{
    padding-top: 20px;
    padding-bottom: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 14px;
}

.logo{
    margin-right: 25px;
}
.logo img{
    display: block;
}
.slogan{

}

.logo , .slogan, .phone-block, .email-block, .login-block{
    flex: none;
}
.search-block{
    /*background-color: #4a4a4a;*/

    width: 100%;
    margin-left: 25px;
    margin-right: 25px;
    padding: 6px 7px;
    border-radius: 4px;
}

.search{
    width: 100%;
    border: none;
    background-color: transparent;
    color: #fff;


}
.search::placeholder{
    color: #A4A4A4;
}
.search-block-inner{
    /*display: flex;*/

    display: none;
}

.search-block-inner .icon{
    top: 0;
    margin-right: 8px;
}


.email-block{
    margin-left: 25px;
}
.email-block .icon{
    margin-right: 7px;
}
.phone{
    color: #fff;
    text-decoration: none;
}

.email-link{
    color: #fff;
    text-decoration: none;
}

.phone-block .icon{
    margin-right: 7px;
}


.login-block{
    margin-left: 25px;
}
.login-block .icon{
    margin-right: 7px;
    vertical-align: middle;
}
.login-link{
    color: #fff;
    /*text-decoration: none;*/
    transition: 0.2s;
    max-width: 150px;
    max-height: 37px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
}
.login-link:hover{
    color: #7474ff;
}
/* Content */
main{}

/* Banner */
.banner{
    background-color: #ccc;
    height: 454px;
    text-align: center;

    align-items: center;
    display: grid;

    background-image: url("/images/banner.png");
    background-position: center;
    color: #fff;
}
.banner-inner{
    padding-left: 20px;
    padding-right: 20px;
}
.banner h1{
    font-size: 48px;
    margin-bottom: 45px;
}
.banner-slogan{
    font-size: 24px;
    line-height: 1.4;
}


/* Slider */
.slider{
    overflow: hidden;
    position: relative;
}

.main-slider{
    padding-bottom: 50px;
    margin-top: 54px;
}
.main-slider .swiper-slide{
    min-height: 332px;

}




.slider-block{
    background-image: url("/images/svg/ligth-bg.svg");
    background-position: right top;
    background-repeat: no-repeat;
}



.navi-slider .swiper-wrapper{
    justify-content: center;
    border-bottom: 1px solid #D9D9D9;
}
.navi-slider .swiper-slide{
    width: 130px;
    font-size: 22px;
    font-weight: bold;
    color: #949494;

    text-align: center;
    margin-top: 60px;
    padding-bottom: 17px;

    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: 0.2s;
    margin-bottom: -1px;
}

.navi-slider .swiper-slide:hover{
    color: #000;
}

.navi-slider .swiper-slide-thumb-active{
    border-bottom: 3px solid #413A8F;
    color: #2A2A2A;
}


.slide-flex{
    display: flex;
    align-items: center;


}
.slide-1{
    background-image: url("/images/svg/finrositet.svg");
    background-position: bottom left;
    background-repeat: no-repeat;
}
.s-1{
    flex: 1;
    padding-bottom: 100px;
}
.s-2{
    flex: 1;
    margin-left: 30px;
}


.main-slider .swiper-slide h2{
    font-size: 42px;
    margin-bottom: 25px;
}

.s-1 p{
    line-height: 1.4;
    font-size: 18px;
}

.slide-btn{
    margin-top: 30px;
}





.index-form{
    background-color: #41398E;
    color: #fff;
    background-image: url("/images/svg/form-bg.svg");
    background-size: cover;
    background-position: center;
}

.index-form-flex{
    display: flex;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
}
.iff-1{
    flex: 1;
    font-size: 24px;
    font-weight: bold;

}
.iff-2{
    flex: 1;
    margin-left: 30px;
}

.form-flex{
    display: flex;
    align-items: center;
}

.form-flex .form-group{
    margin-bottom: 0;
}


.index-form .form-control{
    border: none;
    height: 42px;
}
.index-form .form-control::placeholder{
    color: #949494;
}



.index-form .btn{
    height: 42px;
    font-weight: bold;
    margin-left: 16px;
}
.index-form .field-subs-ma{
    margin-left: 16px;
}

.index-form-title{
    margin-top: 0;
    font-weight: normal;
    font-size: 18px;
}


.has-error .form-control{
    background-color: #ffe6e6;
    border: 2px solid red;
}




/* Сессии */
.ses-wrap{
    background-color: #2A2A2A;
    color: #fff;
}
.ses-grid{
    grid-column-gap: 12px;
    grid-row-gap: 12px;
}


.ses-panel-1{
    padding-top: 68px;
    padding-bottom: 48px;
    background-image: url("/images/svg/ligth-bg.svg");
    background-repeat: no-repeat;
    background-position: 0 -50px;


}

.ses-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.ses-head h2{
    font-size: 42px;
    font-weight: bold;
}
.all-ses{
    margin-left: 20px;
}
.all-ses a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: 0.2s;
}
.all-ses a:hover{
    margin-right: -5px;
}

.all-ses img{
    vertical-align: middle;
    margin-left: 10px;
    transition: 0.2s;
}
.all-ses a:hover img{
    margin-left: 12px;
}

.ses-block{
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #2A2A2A;
    padding: 19px 15px;
    background-color: #fff;

}



.ses-panel-2{
    /*margin-top: 48px;*/
    padding-bottom: 111px;
    padding-top: 30px;
    border-top: 1px solid #6a6a6a;
    background-image: url("/images/svg/ligth-bg.svg");
    background-repeat: no-repeat;
    background-position: 0 -50px;
}

.s-date{
    font-size: 12px;
    color: #949494;
    margin-bottom: 5px;
}
.s-title{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}
.s-title a{
    color: #000;
    transition: 0.2s;
    text-decoration: none;
}
.s-title a:hover{
    color: #2B255E;
}
.s-content{
    font-size: 12px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.ses-vid{
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #E73516;
}
.ses-vid-price{
    display: inline-block;
    font-weight: bold;
    /*color: #038400;*/
    background-color: #E73516;
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
}

.s-el{
    display: flex;
    justify-content: space-between;
    margin-bottom: 19px;
}
.s-label{
    color: #949494;
    font-size: 12px;
}

.s-prices{
    font-size: 13px;
    color: #038400;
    font-weight: bold;
}

.s-old-price{
    font-size: 14px;
    color: #949494;
    text-decoration: line-through;
}
.s-price{
    font-weight: bold;
    color: #038400;
    font-size: 18px;
}
.s-p{
    font-size: 18px;
    color: #EA981C;
}
.s-but a{
    display: block;
    border: 1px solid #2A2A2A;
    border-radius: 4px;
    text-decoration: none;
    padding: 11px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #2A2A2A;
    transition: 0.2s;
}
.s-but a:hover{
    background-color: #2A2A2A;
    color: #fff;
}


.ses-flex{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.ses-flex-1{
    height: 100%;
}



.back{
    
}
.back a{
    color: #41398E;
    text-decoration: none;
}
.back img{
    position: relative;
    top: 2px;
}

.page-container{
    padding-top: 30px;
    padding-bottom: 60px;
}

.main-title{
    margin-top: 60px;
    margin-bottom: 25px;
}

.page-desc{
    margin-top: 60px;
}
.page-desc p{
    margin-top: 0;
    font-size: 15px;
    padding-top: 0;
    margin-bottom: 5px;
}


.open-session-main{
    background-color: #fff;
    background-image: url("/images/session-bg.jpg");
    background-position: right bottom;
    background-repeat: no-repeat;
    /*background-size: 100%;*/
}
.session-date{
    background-color: #3A429B;
    border-radius: 5px;
    display: table;
    padding: 7px 15px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
}


.session-images{
    margin-bottom: 30px;
}
.main-img{

}
.main-img img{
    width: 100%;
    border-radius: 15px;
}

.parameter{
    margin-bottom: 30px;

}
.label{
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
}

.insered-image{
    max-width: 405px;
    margin-bottom: 20px;
    margin-top: 20px;

    display: inline-block;
    margin-right: 20px;

}
.insered-image img{
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}
.insered-image h3{
    margin-bottom: 0;
    padding-bottom: 0;
}

.abd-block{
    margin-bottom: 20px;
}
.adb{
    background-color: green;
    padding: 5px 10px;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;

}

.video-block{

}
.video-block video{
    width: 100%;
    border-radius: 15px;
}

.video-blur{
    position: relative;
}
.video-blur img{
    width: 100%;
    border-radius: 15px;
}

.video-pay-panel{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: grid;
    place-items: center;
}
.video-pay-panel .btn{
    font-size: 26px;
}

.session-form{
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.25);
    margin-top: 40px;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
}

.link{
    color: #2B255E;
    transition: 0.2s;
}
.link:hover{
    color: blue;
}


.share{
    margin-top: 30px;
    text-align: right;
}
.share-label{
    display: inline-block;
    margin-right: 10px;
    font-weight: bold;
}
.ya-share2{
    display: inline-block;
    vertical-align: middle;
}


.sp-lab{
    font-size: 16px;
    color: #2A2A2A;
    margin-bottom: 15px;
}
.sf-price .s-old-price{
    font-size: 15px;
}
.sf-price .s-price{
    font-size: 24px;
}

.sf-info{
    font-size: 14px;
    margin-top: 10px;
}
.sf-info p{
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 5px;
    padding-bottom: 0;
    color: #2A2A2A;
}


.s-form{

    margin: 30px auto;
}






/* Footer */
.footer-1-wrap{
    background-color: #2B255E;
    color: #fff;
}
.footer-flex{
    display: flex;
    padding-top: 45px;
    padding-bottom: 75px;
}

.footer-1{
    flex: none;
}
.footer-logo{
    margin-bottom: 10px;
}
.footer-slogan{
    font-size: 14px;
}

.footer-2{
    width: 100%;
    margin-left: 120px;
    margin-right: 100px;

    display: flex;
    justify-content: space-between;
}
.footer-2 ul{
    margin: 0;
    padding: 0;
}

.footer-2 li{
    list-style: none;
    margin-bottom: 15px;
}
.footer-2 li:last-child{
    margin-bottom: 0;
}
.footer-2 a{
    color: #fff;
    font-size: 14px;
    text-decoration: none;

}
.footer-2 a:hover{
    text-decoration: underline;
}

.footer-3{
    flex: none;
}


.footer-phone{
    margin-bottom: 5px;
}
.footer-email{
    margin-bottom: 20px;
}


.soc{
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}
.soc a{
    display: block;
}
.soc img{
    display: block;
}


.footer-2-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    padding-bottom: 22px;
    font-size: 14px;
}



.footer-2-links ul{
    margin: 0;
    padding: 0;
}
.footer-2-links li{
    display: inline-block;
    margin-left: 20px;
}
.footer-2-links a{
    color: #2A2A2A;
    text-decoration: none;
}
.footer-2-links a:hover{
    text-decoration: underline;
}


.custom-button-block {
    margin: 10px 0;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 5px;
}

.custom-button-block button {
    padding: 8px 16px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}


.open-page-slide{

    background-image: url("/images/svg/finrositet.svg");
    background-position: bottom left;
    background-repeat: no-repeat;
}
.open-page-slide-wrap{
    padding-top: 30px;
    padding-bottom: 50px;
    background-image: url("/images/svg/ligth-bg.svg");
    background-position: right top;
    background-repeat: no-repeat;
}

.audit-container{
    padding-bottom: 0;
}


.audit-categories{
    background-color: #2A2A2A;
    color: #fff;

    padding-top: 50px;
    padding-bottom: 60px;
}


.hide{
    display: none;
}
.level-head{
    user-select: none;
    display: flex;
    cursor: pointer;
}
.plus{
    margin-right: 20px;

}

.im1{
    transition: 0.2s;
    transform-origin: 50% 50%;
}
.r1 .im1{

    transform: rotate(90deg);
}


.level-1{
    border-bottom: 1px solid #4C4C4C;
    padding-top: 20px;
    padding-bottom: 20px;
}
.level-1:last-child{
    border-bottom: none;
}
.level-1 > .level-head{
    font-size: 42px;
    font-weight: bold;
}

.level-body{
    margin-top: 15px;
    padding-bottom: 25px;
}





.level-2{
    /*margin-bottom: 18px;*/
}

.level-2 > .level-head{
    margin-bottom: 18px;

    font-size: 24px;
    font-weight: bold;
    padding: 15px 20px;
    border-radius: 5px;
}

.module-1 > .level-head{background-color: #408DB9;}
.module-2 > .level-head{background-color: #A050B4;}
.module-3 > .level-head{background-color: #40B9AA;}
.module-4 > .level-head{background-color: #CDA92A;}
.module-5 > .level-head{background-color: #D55E65;}
.module-6 > .level-head{background-color: #5C954E;}



.level-3{
    padding-left: 50px;
    /*margin-bottom: 15px;*/
}

.level-3 > .level-head{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}


.level-4{
    padding-left: 40px;
    margin-bottom: 15px;
}


.topics{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;

    padding-left: 40px;
    padding-bottom: 10px;
}
.topic{
    border: 1px solid #4C4C4C;
    padding: 16px 20px;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.2s;
    background-size: cover;
    background-position: 100% 0;
    cursor: pointer;
}

.topic:hover{
    background-color: #408DB9;
    background-image: url("/images/svg/topic-bg.svg");
    background-position: 0 0;
}

.topic a{
    color: #fff;
    text-decoration: none;
}


.navi-block{
    text-align: center;
    border-bottom: 1px solid #D9D9D9;
}
.navi-block ul{
    margin: 0;
    padding: 0;
}
.navi-block li{
    display: inline-block;
    width: 150px;
}


.navi-block a{
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: #949494;
    text-align: center;
    margin-top: 60px;
    padding-bottom: 17px;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    margin-bottom: -1px;

    text-decoration: none;
    transition: 0.2s;
}
.navi-block a:hover{
    color: #000;
}

.navi-block a.active-navi-link{
    border-bottom: 3px solid #413A8F;
    color: #2A2A2A;
}

.back-container{
    padding-top: 30px;
}

.promo{
    margin-bottom: 30px;
}

.help-block-error{
    color: red;
}

.site-login{
    margin-top: 150px;
}



.p-block{
    border-top: 1px solid #D9D9D9;
    padding-top: 20px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.p-block:last-child{
    margin-bottom: 0;
}
.p-row{
    display: flex;
    margin-bottom: 10px;
}
.p-row:last-child{
    margin-bottom: 0;
}
.p-label{
    font-weight: bold;
    width: 160px;
}

.user-page-container{
    padding-bottom: 20px;
}


.club-row{
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.club-row:last-child{
    border-bottom: none;
}
.club-flex{
    display: flex;
}




/* Ошибка 404 */

.error404{
    padding-top: 50px;
    padding-bottom: 50px;

}
.error-title1{
    margin-top: 50px;
    font-size: 90px;
    color: red;
}
.error-title2{
    font-weight: 600;
    color: red;
    font-size: 30px;
}


.right-content .edit-t a{
    text-decoration: none;
    border-bottom: none !important;
}

.flex{
    display: flex;
}
.just{
    justify-content: space-between;
    align-items: center;
}


.subs-video-form{
    background-color: #41398e;
    color: #fff;
    background-image: url("/images/svg/form-bg.svg");
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.subs-video-form .index-form-flex{
    padding-left: 25px;
    padding-right: 25px;

}

.subs-video-form  .form-control {
    border: none;
    height: 42px;
}
.subs-video-form   .field-subs-ma {
    margin-left: 16px;
}
.subs-video-form .btn {
    height: 42px;
    font-weight: bold;
    margin-left: 16px;
}
.subs-video-form .has-error .form-control {
    border: 2px solid red;
}

.subs-video-form .iff-1{
    font-size: 22px;
}
.iff-01{
    font-size: 12px;
    font-weight: normal;
    padding-top: 10px;
    color: #ccc;
}


.video-panel{
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    overflow: hidden;
}
.video-preview {
    aspect-ratio: 16 / 9;
    overflow: hidden; /* обрезает лишнее */
}

.video-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* заполняет блок, обрезая лишнее */
    display: block; /* убирает отступы снизу */
}
.video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* заполняет блок, обрезая лишнее */
    display: block; /* убирает отступы снизу */
}
.video-meta{
    padding: 10px 15px;
}
.video-date{
    color: #2A2A2A;
    font-size: 12px;

}
.video-title a{
    font-size: 18px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    transition: 0.2s;
}
.video-title a:hover{
    color: #2B255E;
}

.open-video-content{
    margin-top: 30px;
}


.vcats{
    margin-bottom: 20px;
}
.vcat{
    display: inline-block;
    vertical-align: middle;
}
.vcat a{
    display: block;
    color: #000;
    padding: 8px 20px;
    border: 1px solid #B9B9B9;
    border-radius: 6px;
    margin-right: 10px;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 10px;

    transition: 0.2s;
}
.vcat a:hover{
    background-color: #E73516;
    border-color: #E73516;
    color: #fff;
}
.active-vcat a{
    background-color: #E73516;
    border-color: #E73516;
    color: #fff;
}

.vcat-sot img{
    vertical-align: middle;
    margin-left: 3px;
}

.video-meta-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 11px;
}
.video-views{
    font-weight: bold;
    font-size: 11px;
    color: #999;
}
.video-views .icon{

    margin-right: 1px;
    position: relative;
    top: 0px;

}