

/* Start:/local/templates/mm_main/assets/css/registration.css?1648063275895*/
.form-change-outer {
    --slide-trs-ln: .2s;
    width: 100%;
    border-bottom: 1px solid #E3E5E5;
    margin-bottom: 29px;
}

.form-change-filter {
    max-width: 226px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 30px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.form-change-filter  #form-change-line {
    position: absolute;
    bottom: -2px;
    height: 3px;
    width: 0;
    left: 0;
    background-color: #A58A57;
    transition: all linear var(--slide-trs-ln);
}
.form-change-filter .form-change-filter__button {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #58666F;
    transition: color linear var(--slide-trs-ln);
}
.form-change-filter .form-change-filter__button.active {
    color: #202020;
}
#reg-form-submit {
    cursor: pointer;
}
/* End */


/* Start:/login/style.css?1750851719149*/
/*html
{
    overflow-y: hidden;
}
*/
@media screen and (max-width: 992px) 
{
    body main
    {
        padding-bottom: 0;
    }    
}

/* End */


/* Start:/local/templates/.default/components/bitrix/system.auth.form/mm.auth/style.css?16482101654283*/
.auth-form-wrapper
{
    background-color: #EAECEE;
    border-radius: 5px;

    max-width: 420px;

    margin: 0 auto;

    padding: 50px;
}



.forms-wrapper
{
    display: flex;
    /* flex-flow: row nowrap; */
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.forms-wrapper form
{
    width: 100%;

    max-height: 0;
    overflow: hidden;

    transition: max-height .5s;
}

.forms-wrapper form.visible
{
    max-height: max-content;
}

.auth-form__input-wrapper
{
    margin-bottom: 20px;
}

.up-input-text
{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.auth-form__input-wrapper label
{
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;

    color: #202020;
}

.forgot-password
{
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
    text-align: center;

    color: #556871;
}

.auth-form-input
{
    display: block;
    width: 100%;
    margin-top: 10px;

    padding: 18px 20px;

    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 4px;

    font-style: normal;
    font-weight: normal;
    font-size: 19px;
    line-height: 23px;

    color: #202020;

    transition: border .3s;
}
.auth-form__error .auth-form-input {
    border-color: #9C1F14;
}
.auth-form__error-text {
    color: #9C1F14;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 2px;
    text-align: left;
}
.auth-form__error-text:last-of-type {
    margin-bottom: 10px;
}
.auth-form-input:placeholder-shown
{
    color: #58666F;
}
.auth-form-input:focus
{
    border: 1px solid var(--gold-color);
}

#auth-form-submit
{
    margin-top: 10px;
}

.remember-me
{
    margin-top: 20px;
}

.remember-me input
{
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.remember-me-checkbox__label
{
    position: relative;

    cursor: pointer;

    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
    text-align: center;

    color: #556871;

    user-select: none;
}
.remember-me-checkbox__label::after,
.remember-me-checkbox__label::before
{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.login-with-socials
{
    margin-top: 20px;

    display: none;
}

.login-with-socials__title
{
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;

    color: #777777;

    margin-bottom: 10px;
}

.socials-list
{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
}

.socials-login__item
{
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 8px;

    border-radius: 50%;
    border: 1px solid #777777;

    margin-right: 8px;

    transition: border .3s;
}
.socials-login__item:hover
{
    border: 1px solid var(--gold-color);
}

.socials-list .socials-login__item:last-child
{
    margin-right: 0;
}

.socials-login__item svg path
{
    fill: #777;

    transition: fill .3s;
}
.socials-login__item:hover svg path
{
    fill: var(--gold-color);
}
.auth-form__captcha-wrapper {
    display: flex;
    gap: 30px;   
}
.auth-form__captcha-wrapper .captcha-img {
    aspect-ratio: 180 / 40;
    max-width: calc(50% - 15px);
    max-height: 60px;
    margin-top: 10px;
    object-fit: fill;
}
.remember-me-checkbox__label a {
    color: inherit;
    font-weight: 800;
}


@media screen and (max-width: 768px) {
    .auth-form__captcha-wrapper {
        flex-direction: column;
        gap: 0;
    }
    .auth-form__captcha-wrapper input {
        order: -1;
    }
    .auth-form__captcha-wrapper .captcha-img {
        max-width: unset;
    }
    .auth-form-wrapper {
        padding: 50px 0;
    }
    .auth-form-container {
        background-color: #EAECEE;
    }
}
.remember-me.reg-checkbox-wrapper label {
    display: block;
    text-align: left;
}
.remember-me.reg-checkbox-wrapper .custom-checkbox::before{
    top: 0;
    transform:none;
}
.remember-me.reg-checkbox-wrapper .custom-checkbox::after {
    transform:none;
    top: 3px;
}
/* End */


/* Start:/local/templates/.default/components/bitrix/main.register/mm.register/style.min.css?1648051369442*/
div.bx-auth-reg input.bx-auth-input{vertical-align:middle}div.bx-auth-reg span.bx-auth-secure{background-color:#fffae3;border:1px solid #dedbc8;padding:2px;display:inline-block;vertical-align:middle}div.bx-auth-reg div.bx-auth-secure-icon{background-image:url(/local/templates/.default/components/bitrix/main.register/mm.register/images/sec.png);background-repeat:no-repeat;background-position:center;width:19px;height:18px}div.bx-auth-reg div.bx-auth-secure-unlock{background-image:url(/local/templates/.default/components/bitrix/main.register/mm.register/images/sec-unlocked.png)}
/* End */
/* /local/templates/mm_main/assets/css/registration.css?1648063275895 */
/* /login/style.css?1750851719149 */
/* /local/templates/.default/components/bitrix/system.auth.form/mm.auth/style.css?16482101654283 */
/* /local/templates/.default/components/bitrix/main.register/mm.register/style.min.css?1648051369442 */
