
.switcher {
    width: 26px;
    background-color: white;
    cursor: pointer;
    height: 16px;
    border-radius: 16px;
    position: relative;
    transition: background-color .3s ease-in-out;
    min-width: 27px;
}
.switcher i {
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background-color: var(--bg-color);
    display: block;
    position: absolute;
    top: 2px;
    left: 2px;
    /* transition: background-color .3s ease-in-out, left .3s ease-in-out, right .3s ease-in-out; */
}
.theme-light .switcher {
    background-color: var(--bg-color);
}
.theme-light .theme-switch i {
    left: 12px;
}
.theme-light .switcher i {
    background-color: white;
}
.live-badge {
    background-color: var(--red);
    height: 16px;
    padding: 0 5px;
    line-height: 16px;
    box-shadow: 0px 0px 8px 1px var(--red);
    font-size: 8.5px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 16px;
    margin-left: 10px;
}
.theme-light .live-badge {
    color: white;
}
.theme-light .live-badge:hover, .live-badge:hover {
    color: var(--bg-color);
}
.language-switch {
    margin-left: 16px;
    color: red;
    width: 40px;
    min-width: 40px;
}
.language-switch i {
    width: 17px;
    transition: all .3s ease-in-out;
    left: 2px;
    right: auto;
}
.language-switch b {
    font-weight: 600;
    font-size: 8px;
    position: absolute;
    left: 5px;
    top: 50%;
    margin-top: -6px;
    color: white;
}
.language-switch b:nth-child(3) {
    right: 5px;
    left: auto;
    color: var(--bg-color);
}
.en .language-switch i{
    left: auto; right: 2px;
}
.en .language-switch b,
.en.theme-light .language-switch b:nth-child(3),
.theme-light .language-switch b {
    color: var(--bg-color);
}
.en .language-switch b:nth-child(3),
.en.theme-light .language-switch b,
.theme-light .language-switch b:nth-child(3) {
    color: white;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
.checkbox:before, .radio:before, .list-selector .select:before {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    float: left;
}
textarea, input, .radio-group label, .checkbox-group label {
    font-family: var(--main-font);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-appearance: none;
}
.list-selector {
    transition: .2s all ease-in-out;
    -webkit-transition: .2s all ease-in-out;
    -moz-transition: .2s all ease-in-out;
    -ms-transition: .2s all ease-in-out;
    -o-transition: .2s all ease-in-out;
}
@media(hover: hover) {
    .list-selector .select:hover {
        color:#000;
    }
}
form label {
    display: block;
}
textarea, input {
    display: block;
    border: none;
    border-bottom: 1px solid #202020;
    border-radius: 0;
    font-size: 14px;
    line-height: 1;
    height: 29px;
    padding: 0;
    outline: none;
    color: #202020;
    background: transparent;
    width: 100%;
    float: none;
    /* background-color: rgba(255,255,255,0.8); */
    transition: .2s all ease-in-out;
    -webkit-transition: .2s all ease-in-out;
    -moz-transition: .2s all ease-in-out;
    -ms-transition: .2s all ease-in-out;
    -o-transition: .2s all ease-in-out;
}
@media(hover: hover) {
    textarea:hover, input:hover {
        /* background-color: var(--bg-color); */
    }
}
textarea:focus, input:focus, .list-selector.dropped {
    border-color: #999999;
}
::-webkit-input-placeholder {
    color: var(--bg-color);
    font-size: 16px;
}
::-moz-placeholder {
    color: var(--bg-color);
    font-size: 16px;
}
:-moz-placeholder {
    color: var(--bg-color);
    font-size: 16px;
}
:-ms-input-placeholder {
    color: var(--bg-color);
    font-size: 16px;
}
.theme-light textarea, .theme-light input, .theme-light .list-selector:not(.disabled) {
    background: transparent;;
    border-color: #ffffff;
    color: #ffffff;
}
.theme-light textarea:focus, .theme-light input:focus, .theme-light textarea:active, .theme-light input:active, .theme-light textarea:hover, .theme-light input:hover {
}
.theme-light .list-selector .select:before {
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='5' viewBox='0 0 9 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L4.5 4L8 1' stroke='%23191d38' stroke-width='0.5'/%3E%3C/svg%3E%0A");
}
textarea {
    font-family: var(--main-font);
    padding: 15px 30px;
    min-height: 80px;
    min-width: 300px;
}
form label.error, input.error {
    color: #cf4455;
}
input.error {
    border-color: #cf4455;
}
form textarea.error {
    border: 1px solid #cf4455;
    color: #cf4455;
}
.list-selector.disabled, input[disabled="disabled"] {
    opacity: .5;
}
input.error + span.error {
    position: absolute;
    color: #cf4455;
    bottom: -15px;
    font-size: 12px;
    left: 0;
}
.checkbox {
    padding: 0;
    margin: 0;
    line-height: 26px;
    white-space: nowrap;
    display: inline-block;
    height: 19px;
    cursor: pointer;
    font-size: 15px;
}
.checkbox input[type="checkbox"] {
    margin: 0 5px 0 -3px;
    vertical-align: middle;
    padding: 0;
    cursor: pointer;
    opacity: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    display: none;
}
.checkbox:before {
    content: "check_box_outline_blank";
    font-size: 24px;
    margin: 0 4px 0 0;
}
@media(hover: hover) {
    .checkbox:hover {
        color:lightblue;
    }
}
.checkbox.on:before {
    color: lightblue;
    content: "check_box";
}
.checkbox.disabled {
    cursor: default;
    color: #9B9B9B;
}
.checkbox.disabled {
}
input[type=radio] {
    display: none;
}
label.radio {
    position: relative;
    cursor: pointer;
    padding-left: 25px;
    height: 19px;
    line-height: 21px;
    font-size: 15px;
    margin: 0 10px 10px 0;
}
label.radio:hover {
    color: #00ACBC;
}
label.radio:before {
    content: "radio_btn_unchecked";
    width: 19px;
    height: 19px;
    position: absolute;
    display: block;
    left: 0;
    top: 3px;
    font-size: 16px;
    color: #9B9B9B;
}
label.radio:hover:before {
    color: #00ACBC;
}
input[type=radio]:checked + label, input[type=radio]:checked + label:before {
    color: #00ACBC;
}
input[type=radio]:checked + label:before {
    content: "radio_btn_checked";
}
.list-selector:not(.disabled) {
    display: inline-block;
    padding: 0;
    height: 30px;
    vertical-align: middle;
    position: relative;
    min-width: 40px;
    border: none;
    background: var(--bg-color);
    min-width: 50px;
    border: 1px solid var(--white);
    border-radius: 4px;
}
.list-selector.disabled {
    background: #e6e6e6;
    border-radius: 35px;
}
.list-selector a.pick {
    border: 0 none;
    text-decoration: none;
    display: block;
    line-height: 34px;
    height: 34px;
    margin: 0;
    padding: 7px 60px 7px 30px;
    font-size: 18px;
    color: #000;
    z-index: 10;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
@media(hover: hover) {
    .list-selector:hover {
        outline: none;
        border-color: var(--green-light);
    }
}
.list-selector .select {
    display: inline-block;
    width: 12px;
    font-weight: normal;
    font-style: normal;
    overflow: hidden;
    border: 0 none;
    position: absolute;
    top: 50%;
    right: 10px;
    height: 8px;
    margin-top: -3px;
    color: #000;
    line-height: 8px;
}
.list-selector .select:before {
    content: "";
    transition: -webkit-transform .2s ease;
    -webkit-transition: -webkit-transform .2s ease;
    -o-transition: transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease;
    transition: transform .2s ease,-webkit-transform .2s;
    width: 9px;
    margin: 0;
    /* text-align: center; */
    padding: 0;
    /* text-indent: -7px; */
    /* font-size: 27px; */
    /* line-height: 8px; */
    height: 5px;
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='5' viewBox='0 0 9 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L4.5 4L8 1' stroke='white' stroke-width='0.5'/%3E%3C/svg%3E%0A");
}
.list-selector.dropped .select:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}
.list-selector .pick {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
}
.list-selector input[type="text"]:not(.disabled):not([disabled="disabled"]), .list-selector input[type="text"]:hover:not(.disabled):not([disabled="disabled"]) {
    border: none;
    background: none;
}
.list-selector .list-data, #autocomplete_popup_list, .typewatch_popup_list {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    min-width: 100%;
    background: var(--bg-color);
    z-index: 100;
    margin-top: 2px;
    top: 100%;
    left: 0;
    position: absolute;
    border: none;
    padding: 0;
    font-size: 14px;
    -webkit-box-shadow: 0 7px 10px 0 rgba(0,0,0,0.2);
    box-shadow: 0 7px 10px 0 rgba(0,0,0,0.2);
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    -o-transition: opacity .2s;
    overflow: hidden;
    text-align: left;
    padding: 5px 0;
}
.theme-light .list-selector .list-data, .theme-light #autocomplete_popup_list, .theme-light .typewatch_popup_list {
    background: var(--gray-light-bg)
}
.list-selector .list-data.dropped-top {
    top: auto;
    bottom: 51px;
    margin: 0px 0 0 0;
}
.list-selector.dropped .list-data, #autocomplete_popup_list, .typewatch_popup_list {
    opacity: 1;
    visibility: visible;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}
.list-selector.dropped .list-data .simplebar-scroll-content {
    margin-bottom: -17px!important;
}
.list-selector.select-status.dropped .list-data {
    min-width: 130%;
}
.list-selector .list-data li, #autocomplete_popup_list li, .typewatch_popup_list li {
    padding: 0 10px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin: 5px 10px 3px 0px;
    border-radius: 3px;
    white-space: nowrap;
    height: 34px;
    line-height: 34px;
}
.list-selector .list-data.first-empty li:first-of-type {
    display: none;
}
.list-selector .list-data li.hidden {
    display: none;
}
#autocomplete_popup_list li a {
    display: block;
    margin: 5px 0;
    border: none;
}
.list-selector .list-data li:first-of-type {
    margin-top: 10px;
}
.list-selector .list-data li:last-of-type {
    margin-bottom: 10px;
}
@media(hover: hover) {
    .list-selector .list-data li.selected, .list-selector .list-data li:hover, #autocomplete_popup_list li:hover, .typewatch_popup_list li:hover {
        color: var(--red);
    }
}
.list-selector .list-data li.disabled {
    color: #999;
}
@media(hover: hover) {
    .list-selector .list-data li.disabled:hover {
        background: none;
        color: #999;
        cursor: default;
    }
}
.list-selector.pink:not(.disabled) {
    background: #C02482;
}
.list-selector.pink .select, .list-selector.pink .pick {
    color: #fff;
}
@media(hover: hover) {
    .list-selector.pink:hover .select, .list-selector.pink:hover .pick {
        color: #000000;
    }
    .list-selector.pink:not(.disabled):hover {
        background: #ffffff;
    }
}
.btn, button {
    /* display: inline-block; */
    height: auto;
    /* line-height: 40px; */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* background: var(--red); */
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    padding: 0 30px 7px 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    text-align: center;
    font-family: Inter, Arial, sans-serif, serif, sans-serif;
    font-weight: 600;
    border-radius: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    white-space: nowrap;
    text-transform: capitalize;
    border-bottom: 2px solid #FFFFFF;
    font-family: var(--main-font);
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    text-align: left;
    background-image: url("data:image/svg+xml,%3Csvg width='21' height='19' viewBox='0 0 21 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.1793 14.2652C0.488708 14.7228 0.299811 15.6535 0.757387 16.3441C1.21496 17.0347 2.14574 17.2236 2.83633 16.7661L1.1793 14.2652ZM20.4584 4.56287C20.6232 3.75099 20.0986 2.95926 19.2867 2.7945L6.05646 0.109465C5.24458 -0.0553025 4.45286 0.469283 4.28809 1.28116C4.12332 2.09304 4.64791 2.88476 5.45978 3.04953L17.22 5.43622L14.8333 17.1965C14.6686 18.0084 15.1932 18.8001 16.005 18.9649C16.8169 19.1296 17.6086 18.605 17.7734 17.7932L20.4584 4.56287ZM2.83633 16.7661L19.8169 5.51496L18.1599 3.0141L1.1793 14.2652L2.83633 16.7661Z' fill='white'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: 100% 3px;
}
.theme-light .btn, .theme-light button {
    color: white;
    border-color: white;
}
@media(hover: hover) {
    .btn:hover:not(.disabled), .btn:active:not(.disabled), .btn:focus:not(.disabled), btn:hover:not(.disabled), btn:active:not(.disabled), btn:focus:not(.disabled) {
        /* background: #a157ff; */
        color: #a157ff;
        border-bottom-color: #a157ff;
    }
    .btn.white:hover:not(.disabled), .btn.white:active:not(.disabled), .btn.white:focus:not(.disabled), btn.white:hover:not(.disabled), btn.white:active:not(.disabled), btn.white:focus:not(.disabled) {
        /* background: #E8E8E8; */
        /* color: #000; */
    }
}
.btn.white, btn.white {
    text-decoration: none;
    position: relative;
    /* background-color: #FFF; */
    /* color: #000; */
    /* border: 1px solid #E8E8E8; */
}
.btn.green, btn.green {
    text-decoration: none;
    position: relative;
    background-color: var(--green);
    color: #fff;
    border: 1px solid var(--green-hover);
}
.btn.green:hover, btn.green:hover {
    background-color: var(--green-hover);
}
.topmenu-container .btn.search:before {
    font-size: 24px;
    line-height: 33px;
    margin: 0;
    padding: 0;
    height: 30px;
    width: 50px;
}
.btn.big, btn.big {
    font-size: 18px;
    line-height: 50px;
    height: 50px;
    border-radius: 5px;
    padding-left: 50px;
    padding-right: 50px;
}
.btn.small, btn.small {
    /* font-size: 14px; */
    /* line-height: 34px; */
    /* height: 34px; */
    /* border-radius: 5px; */
    /* padding-left: 20px; */
    /* padding-right: 20px; */
    transform: scale(.75) translateX(-28px);
}
.btn.light {
    font-weight: 400;
    font-size: 13px;
}
.btn.centered, btn.centered {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.form {
}
form .row, .form .row {
    margin: 20px 0;
    position: relative;
}
form .row .title, .form .row .title {
    font-size: 16px;
    line-height: 16px;
    color: #2F2F2F;
    display: block;
    margin-bottom: 10px;
}
form .row .title.disabled, .form .row .title.disabled {
    opacity: .5;
}
.form .row btn, form .row .btn {
    padding-left: 10px;
    padding-right: 10px;
}
.form .row:before {
    content: "";
    display: table;
    clear: both;
}
.form .row.col-2 input, .form .row.col-2 textarea, .form .row.col-2 .list-selector {
    width: 46%;
    display: inline-block;
    margin-right: 6%;
}
.form .row.col-2 input:last-of-type, .form .row.col-2 textarea:last-of-type, .form .row.col-2 .list-selector:last-of-type {
    margin-right: 0;
}
.form .row .list-selector {
    width: 100%;
}
form .row.btn-container {
    margin: 40px auto;
}
form .lostpassword, .form .lostpassword {
    float: right;
    line-height: 18px;
}
.row.error textarea, .row.error input, .row.error .list-selector, textarea.red-border, input.red-border, .list-selector.red-border {
    border-color: #cf4455!important;
    background-color: rgba(207,68,85,0.05);
}
textarea.success, input.success, .list-selector.success {
    border-color: #93c35e!important;
    background-color: rgba(147,195,94,0.05);
}
form .notifications, .form .notifications {
    color: #cf4455;
    font-size: 16px;
    font-weight: bold;
    /* text-align: center; */
}
form .notifications.success, .form .notifications.success {
    color: #93c35e;
}
input + .error, textarea + .error, .list-selector + .error {
    position: absolute;
    color: #cf4455;
    width: 100%;
    color: #cf4455;
    opacity: 0;
    filter: alpha(opacity=0);
    font-size: 12px;
    bottom: -12px;
    line-height: 12px;
    left: 0;
}
input + .error, .list-selector + .error.active, textarea + .error.active, input + .error.active {
    opacity: 1;
    filter: alpha(opacity=100);
}
input + .success, textarea + .success, .list-selector + .success {
    color: var(--green)!important;
}
.row.success {
    color: #fff;
    font-size: 24px;
}
.autocomplete-container {
    position: relative;
    padding: 0;
}
.autocomplete-container:before {
    color: #4A4A4A;
    font-size: 30px;
    position: absolute;
    left: 20px;
    top: 16px;
}
.autocomplete-container input {
    margin: 0;
    padding-left: 60px;
}
form .row {
    width: 100%;
    margin: 0 0 20px 0;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    height: auto;
}
form .row>*{
    width:auto;
    padding: 0;
}
form input, form .row input {
    width: 100%;
    background: #ffffff;
    color: var(--bg-color);
    padding: 0 24px;
    font-weight: 500;
    border: none;
    border-radius: 24px;
    height: 40px;
    line-height: 40px;
}

form .title{
    display: block;
    margin-bottom: 10px;
}
    
form textarea {
    min-height: 80px;
    width: 100%;
    min-width: 100px;
}
form btn, form .btn {
    display: block;
    text-align: center;
    margin: 0 auto;
    width: auto;
}
.btn-green {
    background: var(--green);
    border-bottom-color: var(--green-hover);
}
.btn-green:hover:not(.disabled) {
    background: var(--green-hover);
}
form btn[disabled="disabled"], .form .btn[disabled="disabled"], form btn.disabled, .form .btn.disabled {
    cursor: default;
    opacity: .5;
}
form btn.waiting, .form .btn.waiting {
    cursor: default;
    opacity: .85;
}
form .list-selector {
    width: 100%;
}
form label {
    color: white;
    display: block;
    margin-bottom: 5px;
}
form label.radio {
    float: left;
}
form input + .error-tip, form textarea + .error-tip, form .list-selector + .error-tip {
    position: absolute;
    width: 130px;
    color: #cf4455;
    opacity: 0;
    filter: alpha(opacity=0);
    margin-top: -15px;
    font-size: 10px;
}
form .list-selector + .error-tip.active, form textarea + .error-tip.active, form input + .error-tip.active {
    opacity: 1;
    filter: alpha(opacity=100);
}
form .list-selector.inactive a, form .list-selector.inactive {
    opacity: 1;
    cursor: default;
}
@media(hover: hover) {
    form .list-selector.inactive:hover {
        background: #e6e6e6;
        border: 1px solid #e6e6e6;
        cursor: default;
    }
}
#clear-template form {
    max-width: 320px;
    width: 100%;
    margin: 40px auto;
}
.social-authorization {
    text-align: center;
    margin: 20px auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.social-authorization-btn {
    display: flex;
    justify-content: flex-start;
    column-gap: 16px;
}
.socicon-twitter {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M512 97.248c-19.04 8.352-39.328 13.888-60.48 16.576 21.76-12.992 38.368-33.408 46.176-58.016-20.288 12.096-42.688 20.64-66.56 25.408C411.872 60.704 384.416 48 354.464 48c-58.112 0-104.896 47.168-104.896 104.992 0 8.32.704 16.32 2.432 23.936-87.264-4.256-164.48-46.08-216.352-109.792-9.056 15.712-14.368 33.696-14.368 53.056 0 36.352 18.72 68.576 46.624 87.232-16.864-.32-33.408-5.216-47.424-12.928v1.152c0 51.008 36.384 93.376 84.096 103.136-8.544 2.336-17.856 3.456-27.52 3.456-6.72 0-13.504-.384-19.872-1.792 13.6 41.568 52.192 72.128 98.08 73.12-35.712 27.936-81.056 44.768-130.144 44.768-8.608 0-16.864-.384-25.12-1.44C46.496 446.88 101.6 464 161.024 464c193.152 0 298.752-160 298.752-298.688 0-4.64-.16-9.12-.384-13.568 20.832-14.784 38.336-33.248 52.608-54.496z' fill='%2303a9f4'/%3E%3C/svg%3E");
}
.socicon-facebook {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='512' viewBox='0 0 24 24' width='512'%3E%3Cpath d='M15.997 3.985h2.191V.169C17.81.117 16.51 0 14.996 0c-3.159 0-5.323 1.987-5.323 5.639V9H6.187v4.266h3.486V24h4.274V13.267h3.345l.531-4.266h-3.877V6.062c.001-1.233.333-2.077 2.051-2.077z' fill='%234267b2'/%3E%3C/svg%3E");
}
.socicon-vkontakte {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='548.358' height='548.358'%3E%3Cpath d='M545.451 400.298c-.664-1.431-1.283-2.618-1.858-3.569-9.514-17.135-27.695-38.167-54.532-63.102l-.567-.571-.284-.28-.287-.287h-.288c-12.18-11.611-19.893-19.418-23.123-23.415-5.91-7.614-7.234-15.321-4.004-23.13 2.282-5.9 10.854-18.36 25.696-37.397 7.807-10.089 13.99-18.175 18.556-24.267 32.931-43.78 47.208-71.756 42.828-83.939l-1.701-2.847c-1.143-1.714-4.093-3.282-8.846-4.712-4.764-1.427-10.853-1.663-18.278-.712l-82.224.568c-1.332-.472-3.234-.428-5.712.144l-3.713.859-1.431.715-1.136.859c-.952.568-1.999 1.567-3.142 2.995-1.137 1.423-2.088 3.093-2.848 4.996-8.952 23.031-19.13 44.444-30.553 64.238-7.043 11.803-13.511 22.032-19.418 30.693-5.899 8.658-10.848 15.037-14.842 19.126-4 4.093-7.61 7.372-10.852 9.849-3.237 2.478-5.708 3.525-7.419 3.142-1.715-.383-3.33-.763-4.859-1.143-2.663-1.714-4.805-4.045-6.42-6.995-1.622-2.95-2.714-6.663-3.285-11.136-.568-4.476-.904-8.326-1-11.563-.089-3.233-.048-7.806.145-13.706.198-5.903.287-9.897.287-11.991 0-7.234.141-15.085.424-23.555.288-8.47.521-15.181.716-20.125.194-4.949.284-10.185.284-15.705s-.336-9.849-1-12.991a44.442 44.442 0 00-2.99-9.137c-1.335-2.95-3.289-5.232-5.853-6.852-2.569-1.618-5.763-2.902-9.564-3.856-10.089-2.283-22.936-3.518-38.547-3.71-35.401-.38-58.148 1.906-68.236 6.855-3.997 2.091-7.614 4.948-10.848 8.562-3.427 4.189-3.905 6.475-1.431 6.851 11.422 1.711 19.508 5.804 24.267 12.275l1.715 3.429c1.334 2.474 2.666 6.854 3.999 13.134 1.331 6.28 2.19 13.227 2.568 20.837.95 13.897.95 25.793 0 35.689-.953 9.9-1.853 17.607-2.712 23.127-.859 5.52-2.143 9.993-3.855 13.418-1.715 3.426-2.856 5.52-3.428 6.28-.571.76-1.047 1.239-1.425 1.427a21.387 21.387 0 01-7.71 1.431c-2.667 0-5.901-1.334-9.707-4-3.805-2.666-7.754-6.328-11.847-10.992-4.093-4.665-8.709-11.184-13.85-19.558-5.137-8.374-10.467-18.271-15.987-29.691l-4.567-8.282c-2.855-5.328-6.755-13.086-11.704-23.267-4.952-10.185-9.329-20.037-13.134-29.554-1.521-3.997-3.806-7.04-6.851-9.134l-1.429-.859c-.95-.76-2.475-1.567-4.567-2.427a30.301 30.301 0 00-6.567-1.854l-78.229.568c-7.994 0-13.418 1.811-16.274 5.428l-1.143 1.711c-.571.953-.859 2.475-.859 4.57 0 2.094.571 4.664 1.714 7.707 11.42 26.84 23.839 52.725 37.257 77.659 13.418 24.934 25.078 45.019 34.973 60.237 9.897 15.229 19.985 29.602 30.264 43.112 10.279 13.515 17.083 22.176 20.412 25.981 3.333 3.812 5.951 6.662 7.854 8.565l7.139 6.851c4.568 4.569 11.276 10.041 20.127 16.416 8.853 6.379 18.654 12.659 29.408 18.85 10.756 6.181 23.269 11.225 37.546 15.126 14.275 3.905 28.169 5.472 41.684 4.716h32.834c6.659-.575 11.704-2.669 15.133-6.283l1.136-1.431c.764-1.136 1.479-2.901 2.139-5.276.668-2.379 1-5 1-7.851-.195-8.183.428-15.558 1.852-22.124 1.423-6.564 3.045-11.513 4.859-14.846 1.813-3.33 3.859-6.14 6.136-8.418 2.282-2.283 3.908-3.666 4.862-4.142.948-.479 1.705-.804 2.276-.999 4.568-1.522 9.944-.048 16.136 4.429 6.187 4.473 11.99 9.996 17.418 16.56 5.425 6.57 11.943 13.941 19.555 22.124 7.617 8.186 14.277 14.271 19.985 18.274l5.708 3.426c3.812 2.286 8.761 4.38 14.853 6.283 6.081 1.902 11.409 2.378 15.984 1.427l73.087-1.14c7.229 0 12.854-1.197 16.844-3.572 3.998-2.379 6.373-5 7.139-7.851.764-2.854.805-6.092.145-9.712-.677-3.611-1.344-6.136-2.008-8.563z' fill='%235082b9'/%3E%3C/svg%3E");
}
.narrow-container.central-container form {
    width: 50%;
    margin: 20px auto;
}
.narrow-container.central-container form .row .btn {
    margin-top: 60px;
}
.notification {
    height: 80px;
    line-height: 80px;
    color: #fff;
    padding: 0 30px;
    position: relative;
    font-size: 24px;
}
.notification.msgerror, .notification.msgsuccess {
    background: #93c35e;
}
.notification.msgerror {
    background: #cf4455;
}
.notification.msgerror:before, .notification.msgsuccess:before {
    font-family: 'Material Icons';
    content: "check" ;
    position: relative;
    color: #fff;
    font-size: 42px;
    float: left;
    margin: 0;
}
.notification.msgerror:before {
    content: "close";
}
.waiting {
    animation: waitingFrames linear 2s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    -webkit-animation: waitingFrames linear 2s;
    -webkit-animation-iteration-count: 1;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: waitingFrames linear 2s;
    -moz-animation-iteration-count: 1;
    -moz-transform-origin: 50% 50%;
    -o-animation: waitingFrames linear 2s;
    -o-animation-iteration-count: 1;
    -o-transform-origin: 50% 50%;
    -ms-animation: waitingFrames linear 2s;
    -ms-animation-iteration-count: 1;
    -ms-transform-origin: 50% 50%;
}
@keyframes waitingFrames {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes waitingFrames {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}
.user__arrow {
    display: none;
}
header .user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: -30px;
    font-size: 14px;
    position: relative;
    width: auto;
    flex-wrap: wrap;
    cursor: pointer;
}
header .user__arrow {
    display: block;
}
header .user__arrow:before {
    position: absolute;
    right: 0px;
    z-index: 10;
    transition: .3s all ease-in-out;
    top: 34%;
}
header .user__arrow:hover:before {
    color: var(--red);
}
header .user.is-active .user__arrow:before {
    transform: rotate(180deg);
}
.user {
    position: relative;
}
.header-box .user__messages {
    position: absolute;
    color: white;
    right: 0;
    margin: 0;
}
.user__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    color: #353e53;
    position: relative;
    overflow: hidden;
    width: 50px;
    margin: 0 25px;
}
.user__name img {
    position: relative;
    width: 50px;
    height: 50px;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    left: 0;
    border-radius: 100%;
}
.user__name:before {
    -webkit-transform: translate(0px,12px);
    -ms-transform: translate(0px,12px);
    transform: translate(0px,12px);
    font-size: 40px;
}
.with-shadow .user__name {
    border: none;
    text-decoration: none;
    /* pointer-events: none; */
}
.user__messages {
    margin-right: 20px;
    position: relative;
    text-decoration: none;
    color: #353e53;
}
.navbar-actions .btn.auth-login {
    padding: 0 0 1px 0;
    background: none;
    font-size: 20px;
    display: block;
    }
.theme-light .navbar-actions .btn.auth-login {
    color: #202020;
    border-color: #202020;
}

.auth-wrap .user__messages-count {
    color: var(--red);
}
.user__messages-count {
    position: absolute;
    top: -8px;
    right: -5px;
    font-size: 12px;
    font-weight: bold;
}
.user .user-menu {
    background: #fff;
    border-radius: 6px;
    padding: 0 16px;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,.5);
    box-shadow: 0 2px 5px rgba(0,0,0,.5);
    visibility: hidden;
    opacity: 0;
    z-index: 1000;
    /* -webkit-transform: translateX(-50%); */
    -ms-transform: translateX(-50%);
    /* transform: translateX(-50%); */
    visibility: hidden;
    transition: .3s all;
    /* height: 0; */
    position: absolute;
    right: 0;
    top: 40px;
}
.mainpage-header-wrapper .user-menu {
    display: none;
}
header .user.is-active .user-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
}
header .user .user-menu li {
    display: block;
    margin: 20px 0;
}
header .user .user-menu a {
}
.auth-separator{
        opacity: 1;
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        color: #fafafa;
        padding: 12px 0;
}
.auth-separator:after, .auth-separator:before {
    content: "";
    -ms-flex: 1 1;
    flex: 1 1;
    border-bottom: 1px solid #fafafa;
}
.auth-separator:not(:empty):after {
    margin-left: 16px;
}
.auth-separator:not(:empty):before {
    margin-right: 16px;
}
header .user .logout-btn {
    width: 20px;
    height: 20px;
    /* background: url(/img/logout-icon.svg) no-repeat 0 0px; */
    margin: 0;
    position: relative;
    padding: 0;
    float: right;
    border: 0;
    /* margin-left: 10px; */
}
/* switcher */
.form-control.switcher {
    position: relative;
    width: 26px;
    height: 14px;
    display: inline-block;
    margin: 0;
    cursor: pointer;
    border: 2px solid var(--red);
    border-radius: 13px;
    background: var(--red);
    z-index: 10;
    margin-right: auto;
    float: left;
}
.form-control.switcher:before {
    content: "";
    width: 12px;
    height: 12px;
    background: #fff;
    margin-left: -12px;
    position: absolute;
    top: 0;
    transition: all .3s;
    transform: translateX(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    border-radius: 100px;
}
.form-control.switcher.active {
    border: 2px solid var(--green);
    background: var(--green);
}
.form-control.switcher.active:before {
    margin-left: 0px;
    /* right: auto; */
}
.form-control.switcher-label {
    position: relative;
    top: -5px;
    margin-right: 8px;
}
.form-control.switcher + .switcher-label {
    margin-left: 5px;
}
.form-default fieldset .row label.radio {
    font-size: 20px;
    margin-right: 20px;
}
.btn-n, button {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: var(--red);
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    padding: 0 20px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    text-align: center;
    font-family: Inter, Arial, sans-serif, serif;
    font-weight: 600;
    border-radius: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    white-space: nowrap;
    text-transform: uppercase;
}
.theme-light .btn-n, .theme-light button {
    color: var(--white);
}
@media(hover: hover) {
    .btn-n:hover:not(.disabled), .btn-n:active:not(.disabled), .btn-n:focus:not(.disabled), btn:hover:not(.disabled), btn:active:not(.disabled), btn:focus:not(.disabled) {
        background: #a157ff;
        color: #fff;
    }
    .btn-n.white:hover:not(.disabled), .btn-n.white:active:not(.disabled), .btn-n.white:focus:not(.disabled), btn.white:hover:not(.disabled), btn.white:active:not(.disabled), btn.white:focus:not(.disabled) {
        background: #E8E8E8;
        color: #000;
    }
}
.btn-n.white, btn.white {
    text-decoration: none;
    position: relative;
    background-color: #FFF;
    color: #000;
    border: 1px solid #E8E8E8;
    background-image: none;
}
.btn-n.green, btn.green {
    text-decoration: none;
    position: relative;
    background-color: var(--green);
    color: #fff;
    border: 1px solid var(--green-hover);
}
.btn-n.green:hover, btn.green:hover {
    background-color: var(--green-hover);
}
.topmenu-container .btn-n.search:before {
    font-size: 24px;
    line-height: 33px;
    margin: 0;
    padding: 0;
    height: 30px;
    width: 50px;
}
.btn-n.big, btn.big {
    font-size: 18px;
    line-height: 50px;
    height: 50px;
    border-radius: 5px;
    padding-left: 50px;
    padding-right: 50px;
}
.btn-n.small, btn.small {
    font-size: 14px;
    line-height: 34px;
    height: 34px;
    border-radius: 5px;
    padding-left: 20px;
    padding-right: 20px;
}
.btn-n.light {
    font-weight: 400;
    font-size: 13px;
}
.btn-n.centered, btn.centered {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.form .row btn, form .row .btn-n {
    padding-left: 10px;
    padding-right: 10px;
}
form .row.btn-n-container {
    margin: 40px auto;
}
form btn, form .btn-n {
    display: block;
    text-align: center;
    margin: 0 auto;
    width: auto;
}
.btn-n-green {
    background: var(--green);
    border-bottom-color: var(--green-hover);
}
.btn-n-green:hover:not(.disabled) {
    background: var(--green-hover);
}
form btn[disabled="disabled"], .form .btn-n[disabled="disabled"], form btn.disabled, .form .btn-n.disabled {
    cursor: default;
    opacity: .5;
}
form btn.waiting, .form .btn-n.waiting {
    cursor: default;
    opacity: .85;
}
.back-btn{
    display: flex;
    align-items: center;
    text-decoration: none;
}
.back-btn:before{

}