:root {
    --site-max-width: 1400px;
    --site-white: #fff;
    --site-text: #0f0f0f;
    --site-accent: #d81113;
    --site-push: #9D0B0C;
    --site-muted: #929292;
    --site-soft: #fafafa;
    --site-black: #000000;
    --site-grey: #8C8C8C;
    --site-light-black: #232323;
    --site-dark-grey: #494949;
    --site-semi-gray: #D2EEB6;
    --site-valid: #5C8533;
    --site-font-regular: "InterTight-Regular", Inter, Arial, sans-serif;
    --site-font-medium: "InterTight-Medium", Inter, Arial, sans-serif;
    --site-font-semibold: "InterTight-SemiBold", Inter, Arial, sans-serif;
}

/****** common *******/
html, body, .shell{
    min-height: 100vh;
}
main{
    min-height: calc(100vh - 166px);
    box-sizing: border-box;
}
.visually-hidden{
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}
.p-xl-10-lg-0{
    padding-left: 10px;
    padding-right: 10px;
}
section{
    padding-bottom: 60px;
}
.form-line{
    margin-bottom: 20px;
}
.form-label{
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
}
.form-control{
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid var(--site-black);
    border-radius: 5px;
    font-size: 16px;
}

.form-textarea{
    display: block;
    width: 100%;
    height: 200px;
    padding: 10px;
    border: 1px solid var(--site-semi-gray);
    border-radius: 5px;
    resize: vertical;
    font-size: 16px;
    font-family: var(--site-font-regular);
    font-weight: 400;
    border-radius: 24px;
    padding: 20px;
    color: var(--site-text);
    outline: none;
    background-color: var(--site-white);
}
.form-textarea:focus{
    border-color: var(--site-grey);
}
.simple-posts-form .form-textarea{
    height: 300px;
}
.page-header{
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 30px;
    font-family: var(--site-font-semibold);
    font-weight: 600;
}
.block-header{
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
    font-family: var(--site-font-semibold);
    font-weight: 600;
}
.data-block{
    border-radius: 24px;
    padding: 30px;
    background-color: var(--site-soft);
    border: 1px solid var(--site-semi-gray);
}
.red-btn{
    background-color: var(--site-accent);
    color: var(--site-white);
    border: none;
    border-radius: 24px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--site-font-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}
.red-btn:hover{
    background-color: var(--site-push);
}
/****** common end *******/
/****** header *******/
header{
    margin-bottom: 40px;
    border-bottom: 1px solid var(--site-semi-gray);
}
.header-block{
    
}
.header-top-block{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.top-menu{
    width: calc(100% - 320px);
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.top-menu li{
    display: inline-block;
    padding: 10px 0;
}
.top-menu li a{
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}
.account-block{
    width: 300px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}
/****** header end *******/

/****** footer *******/
footer{
    background-color: var(--site-light-black);
}
.footer-info{
    padding: 30px 0;
}
.copy-text{
    font-size: 14px;
    font-weight: 400;
    color: var(--site-white);
    text-align: left;
    font-family: var(--site-font-regular);
}
/****** footer end *******/

/****** home page *******/
.options-block{
    display: block;
    background-color: var(--site-white);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid var(--site-semi-gray);
    margin-bottom: 20px;
    position: relative;
}
.options-title{
    
}
.options-title-text{
    position: relative;
    padding-left: 34px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--site-font-medium);
    color: var(--site-text);
    line-height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
    width: calc(100% - 55px);
}
.options-title-cb{
    appearance: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 1;
    border: 1px solid var(--site-semi-gray);
    border-radius: 50%;
    background-color: var(--site-white);
}
.options-title-cb:checked{
    background-color: var(--site-valid);
    border-color: var(--site-valid);
    box-shadow: inset 0 0 0 2px var(--site-white);
}
.show-options-btn{
    background-color: transparent;
    border: none;
    position: absolute;
    top: 21px;
    right: 21px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 1;
    background-color: transparent;
    color: var(--site-accent);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.show-options-btn:hover{
    color: var(--site-push);
}
.show-options-btn svg{
    width: 24px;
    height: 24px;
}
.options-content{
    display: none;
    padding: 20px 0 0 34px;
}
.options-form{

}
.options-row{
    margin-bottom: 20px;
}
.options-row:last-child{
    margin-bottom: 0;
}
.auth-row{
    margin-bottom: 20px;
}
.auth-row:last-child{
    margin-bottom: 0;
}
.auth-switch{
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--site-grey);
}
.auth-switch a{
    color: var(--site-accent);
    text-decoration: none;
}
.auth-switch a:hover{
    color: var(--site-push);
}
.auth-page{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 40px 10px;
    box-sizing: border-box;
}
.auth-page .data-block{
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}
.auth-page .block-header{
    text-align: center;
}
.auth-page .auth-switch{
    text-align: center;
}
.auth-page .red-btn{
    width: 100%;
}
.form-label{
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--site-font-medium);
    color: var(--site-grey);
    display: inline-block;
}
.options-row .form-label{
    display: block;
}
.auth-row .form-label{
    display: block;
}
.form-input{
    display: block;
    width: 100%;
    padding: 0 16px;
    height: 50px;
    border: 1px solid var(--site-semi-gray);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--site-font-regular);
    font-weight: 400;
    color: var(--site-text);
    outline: none;
    background-color: var(--site-white);
}
.form-input:focus{
    border-color: var(--site-grey);
}
.form-input.error{
    border-color: var(--site-accent);
}
.form-input.error:focus{
    border-color: var(--site-accent);
}
/****** home page end *******/

/****** media start *******/
@media (max-width: 991px) {
    .p-xl-10-lg-0{
        padding-left: 0;
        padding-right: 0;
    }
}