

/* Start:/local/templates/UTICLOCK_SUPPORT/styles.css?1752752927160*/
/* Для crm-форм с портала - чекбокс для подписки */
.b24-form-control-desc {
    font-size: 12px !important;
    opacity: .5;
}
/* End */


/* Start:/local/templates/UTICLOCK_SUPPORT/template_styles.css?17393541675359*/
*{
    box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fb;
    line-height: 1.5;
}
h1, h2, h3{
    color: #3a3a3a;
}
p, ul{
    color: #464646;
}
a{
    color: #539acd;
    transition: color .3s;
    text-decoration: none;
}
a:hover{
    color: #4b89b6;
}

header{
    background: radial-gradient(#707070, #48423B);
}
.btn{
    display: block;
    background-color: #539acd;
    color: white;
    text-decoration: none;
    width: fit-content;
    text-align: center;
    padding: 8px 20px;
    border-radius: 5px;
    -webkit-transition: color .3s,background-color .3s;
    -o-transition: color .3s,background-color .3s;
    transition: color .3s,background-color .3s;
}

.btn:hover{
    background-color: #4b89b6;
    color: white;
}

.header-content{
    color: white;
    max-width: 1250px;
    margin: 0 auto;
    padding: 25px 20px;
}
.header-content a{
    color: white;
    text-decoration: none;
}

.header-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.header-logos{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.header-main_logo{
    width: 200px;
    display: block;
}
.header-main_logo img{
    width: 100%;
    height: 100%;
}

.header-right{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header-menu{
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.header-menu a{
    margin-right: 15px;
}
.header-menu a:last-child{
    margin-right: 0;
}


.header-contacts{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media (max-width: 992px){
    .header-flex{
        flex-direction: column;
        justify-content: center;
    }
    .header-right{
        flex-direction: column;
        justify-content: center;
    }
    .header-menu{
        margin-right: 0;
    }
    .header-contacts{
        align-items: center;
        margin-top: 13px;
    }
}

.content{
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.content img{
    max-width: 100%;
}

/* главный блок на главной странице */
.main-block{
    display: flex;
    padding: 30px 0;
}
.main-content{
    margin-right: 50px;
}
.main-image{

}
@media (max-width: 992px){
    .main-image{
        display: none;
    }
}


/* блок актуальной инфы на главной */
.actual-block{
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}

.popular-block{
    width: calc(50% - 10px);
    margin-right: 10px;
    padding: 5px 35px;
    background-color: #ffffff;
    border: 1px solid #eff1f5;
    border-radius: 10px;
}
.popular-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popular-list{

}
.popular-item{
    display: flex;
    flex-direction: column;
    padding: 15px 0;
    border-bottom: 1px solid #eff1f5;
}
.popular-item:last-child{
    border-bottom: 0;
}
.popular-item span{
    color: #777777;
    font-size: 12px;
    margin-top: 4px;
}

.last-version-block{
    width: calc(50% - 10px);
    margin-left: 10px;
    padding: 5px 35px;
    background-color: #ffffff;
    border: 1px solid #eff1f5;
    border-radius: 10px;
}
.last-version-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.last-version-item h3{
    margin: 0;
    font-weight: 500;
}
.last-version-list{

}
.last-version-item{
    display: flex;
    flex-direction: column;
    padding: 15px 0;
    border-bottom: 1px solid #eff1f5;
}
.last-version-item:last-child{
    border-bottom: 0;
}
.last-version-item span{
    color: #777777;
    font-size: 12px;
    margin-bottom: 4px;
}

@media (max-width: 992px){
    .actual-block{
        display: block;
    }
    .popular-block{
        width: 100%;
        margin-right: 0;
    }
    .last-version-block{
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
}



/* форма обратной связи */
.form-block{
    margin-top: 50px;
}

/*думаю это стоит перенести в шаблон компонента с документацией!*/
/*документация*/
.docs-page{
    display: flex;
    align-items: flex-start;
}

.docs-menu-block{
    width: 100%;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 10px;
    margin-right: 35px;
    padding: 40px;
}

.docs-content-block{
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
}

.important-block{
    border: 1px solid;
    border-radius: 10px;
    padding: 12px 20px;
    background-color: #e5f4ff;
    border-color: #b5d2e7;
}
.important-block.green{
    background-color: #eeffe5;
    border-color: #c2e7b5;
}
.important-block.yellow{
    background-color: #feffcf;
    border-color: #e7e6b5;
}
.important-block.red{
    background-color: #ffe5e5;
    border-color: #e7b5b5;
}

.docs-content-block code{
    display: block;
    background-color: #f7faff;
    padding: 8px 17px;
    border: 1px solid #e5e5e5;
}

span.section-docs-title{
    color: #3a3a3a;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
    display: block;
}
/* End */
/* /local/templates/UTICLOCK_SUPPORT/styles.css?1752752927160 */
/* /local/templates/UTICLOCK_SUPPORT/template_styles.css?17393541675359 */
