:root {
    --main-color: #931919;
    --main-font-family: "Montserrat", sans-serif;
}
#motorfy-application-placement h2 {
    background: #f6f6f6 !important;
    border-radius: 6px;
    box-shadow: unset !important;
}
select,
p,
div,
label {
    -webkit-appearance: none;
    appearance: none;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-thumb {
    background-color: #931919;
    border-radius: 6px;
}

body::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

select::-webkit-scrollbar {
    width: 10px;
}

select::-webkit-scrollbar-thumb {
    background-color: #931919;
    border-radius: 6px;
}

select::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

*::selection {
    color: #fff;
    background-color: #931919;
}

.reveal {
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.7s ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

body,
ul,
h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
    padding: 0;
    font-family: var(--main-font-family);
}

input {
    border-radius: 0;
}

:focus {
    outline: none;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
}

.wrapper {
    width: 96%;
    margin: 0 2%;
}

.block {
    border-radius: 12px;
    background-color: #fff;
    margin-bottom: 14px;
    box-shadow: 0 1px 2px #0000007d;
    padding: 20px;
    box-sizing: border-box;
}

#loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--main-color);
    z-index: 1031;
}

.half {
    float: left;
    width: 50%;
}

.third-half {
    float: left;
    width: 30%;
}

.decor-img {
    display: inline-block;
    height: 42px;
    margin-bottom: -10px;
    margin-left: 10px;
}

section {
    padding: 100px 0 75px;
}

nav {
    float: left;
    width: 100%;
    height: 100px;
    position: relative;
    z-index: 100;
    background: #fff;
    box-shadow: 0 1px 1.5px #00000080, inset 0 -2px 0 #f7f7f7;
}

nav img {
    float: left;
    max-height: 20px;
    transition: 0.2s ease;
}

nav .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

nav .wrapper > div {
    width: fit-content;
    float: left;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#navigation_title {
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 375px;
    margin-right: auto;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #adadad;
    align-items: flex-start;
}

#navigation_title h1,
#navigation_title h2 {
    color: #979797;
    font-size: 13px;
    text-align: left;
    font-weight: 400;
}

#navigation_title h1 {
    font-weight: 600;
}

#navigation_title-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#navigation_title-main .image-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

#navigation_title-main .image-group img {
    max-height: unset;
    height: 40px;
}

#navigation_title-main .image-group span {
    width: 4px;
    height: 4px;
    border-radius: 100%;
    transition: 0.3s;
}

#navigation_title-main .image-group span.visible {
    background: #8f8f8f;
    transition: 0.3s;
}

nav a img:hover {
    transform: rotate(-2deg);
    transition: 0.2s ease;
}

nav #main_nav a.navigation-body-cars,
nav #main_nav a.txt-rotate {
    padding: 8px 10px;
    border-radius: 4px;
    color: #fff;
    background-color: var(--main-color);
    transition: background-color 0.3s;
}
nav #main_nav a:hover {
    background-color: #570d0d;
}

nav #main_nav p[data-id="comment_button"] {
    padding: 6px 10px;
    border: 2px solid var(--main-color);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}
nav #main_nav p:hover[data-id="comment_button"] {
    background-color: var(--main-color);
    color: #fff;
}

nav #main_nav i {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s ease;
}

nav #main_nav i.active {
    transform: rotate(90deg);
    transition: 0.3s ease;
}

nav #down_nav {
    display: none;
    position: absolute;
    top: 36px;
    flex-direction: column;
    align-items: flex-end;
    background-color: #181818;
    padding: 5px 10px;
    border-radius: 4px;
    gap: 3px;
    box-shadow: 0 0 5px #181818;
}

nav #down_nav.active {
    display: flex;
}

nav #down_nav a,
nav #down_nav p {
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    border-bottom: 2px solid transparent;
}

#mobile-navigation {
    width: 30px;
    height: 26px;
    margin: 0 15px;
    position: relative;
}

#mobile-navigation > span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #3d3d3d;
    transform: rotate(0);
}

#mobile-navigation > span:first-child {
    top: 0;
}

#mobile-navigation.closed > span:first-child {
    animation: 0.5s menuIconFirstLineFromX;
}

#mobile-navigation > span:nth-child(2) {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
}

#mobile-navigation.closed,
#mobile-navigation.opened {
    transition: width 0.2s;
}

#mobile-navigation > span:nth-child(3) {
    bottom: 0;
}

#mobile-navigation.closed > span:nth-child(3) {
    animation: 0.5s menuIconLastLineFromX;
}

#mobile-navigation.opened > span {
    height: 2px;
}

#mobile-navigation.opened > span:first-child {
    top: calc(50% - 1px);
    transform: rotate(-45deg);
    animation: 0.5s menuIconFirstLineToX;
}

#mobile-navigation.opened > span:nth-child(2) {
    width: 0;
}

#mobile-navigation.opened > span:nth-child(3) {
    bottom: calc(50% - 1px);
    transform: rotate(45deg);
    animation: 0.5s menuIconLastLineToX;
}

@keyframes menuIconFirstLineToX {
    0% {
        top: 0;
        transform: rotate(0);
    }

    30% {
        top: calc(50% - 1px);
        transform: rotate(0);
    }

    100% {
        transform: rotate(-45deg);
    }
}

@keyframes menuIconLastLineToX {
    0% {
        bottom: 0;
        transform: rotate(0);
    }

    30% {
        bottom: calc(50% - 1px);
        transform: rotate(0);
    }

    100% {
        transform: rotate(45deg);
    }
}

@keyframes menuIconFirstLineFromX {
    0% {
        top: calc(50% - 1px);
        transform: rotate(-45deg);
    }

    30% {
        top: calc(50% - 1px);
        transform: rotate(0);
    }

    100% {
        top: 0;
    }
}

@keyframes menuIconLastLineFromX {
    0% {
        bottom: calc(50% - 1px);
        transform: rotate(45deg);
    }

    30% {
        bottom: calc(50% - 1px);
        transform: rotate(0);
    }

    100% {
        bottom: 0;
    }
}

#more_ul {
    display: block;
    width: 100%;
}

.language-select {
    display: flex;
    gap: 6px;
    float: left;
}
.language-select li {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    color: #000;
    cursor: pointer;
    transition: color 0.3s;
}
.language-select li a {
    color: #000;
}
.language-select li:hover a {
    color: var(--main-color);
}
.language-select li.active {
    background-color: var(--main-color);
    color: #fff;
    cursor: unset;
}
.language-select#main_nav-language {
    display: none;
}

#navigaion_filter {
    width: 100%;
    float: left;
    z-index: 3;
    position: absolute;
    top: 100px;
    background-color: #fff;
    padding-bottom: 10px;
    box-shadow: 0px 1px 4px 1px #ffffff96;
}

#navigaion_filter {
    display: none;
}

#navigaion_filter #navigaion_filter-bodys {
    display: flex;
    justify-content: space-between;
}

#navigaion_filter #navigaion_filter-bodys div {
    cursor: pointer;
}

#navigaion_filter #navigaion_filter-bodys div:hover img {
    top: -2px;
}

#navigaion_filter #navigaion_filter-bodys div img {
    width: 100px;
    position: relative;
    margin: 0;
    height: unset;
    max-height: unset;
}

#navigaion_filter #navigaion_filter-bodys div p {
    color: #202020;
    width: 100%;
    text-align: center;
    font-family: var(--main-font-family);
    font-size: 14px;
    position: relative;
}

footer {
    float: left;
    width: 100%;
    padding-top: 20px;
    background-color: #191919;
}

footer .wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 2px;
    align-items: center;
}

footer #footer_logo {
    display: block;
    width: 140px;
}

footer #footer_logo img {
    width: 100%;
}

footer .footer_item {
    width: 100%;
    float: left;
}

footer .error {
    border: 1px solid #ff37376b !important;
    background: #efefef !important;
}

footer h3 {
    float: left;
    width: 100%;
    color: #fff;
    font-family: var(--main-font-family);
    box-sizing: border-box;
    font-size: 20px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

footer h3 .decor-img {
    height: 36px;
    margin-bottom: -9px;
    margin-left: 12px;
}

footer p {
    float: left;
    width: 100%;
    color: #fff;
    line-height: 30px;
    font-family: var(--main-font-family);
    font-size: 16px;
    margin-bottom: 10px;
}

footer #footer_forum {
    float: left;
    width: 100%;
    color: var(--main-color);
    font-size: 16px;
    font-family: var(--main-font-family);
    cursor: pointer;
}

footer #footer_forum i {
    margin-left: 10px;
    transition: 0.2s ease;
}

footer #footer_forum.active i {
    transform: rotate(-180deg);
    transition: 0.2s ease;
}

footer #footer_sub-forum {
    display: none;
    flex-direction: column;
    row-gap: 5px;
    float: left;
    width: 100%;
    border-radius: 8px;
    padding: 10px;
    box-sizing: border-box;
    width: fit-content;
}

footer #additional-links #footer_sub-forum a {
    color: #fff;
}

footer #footer_sub-forum.active {
    display: flex;
}

footer .success {
    display: none;
    float: left;
    width: 100%;
    line-height: 30px;
    font-family: var(--main-font-family);
    background: #41cb4a;
    color: #000;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

#footer-contact-list,
#footer-contact-list li {
    float: left;
    width: 100%;
}

#footer-contact-list li {
    color: #bbb;
    font-size: 14px;
    font-family: var(--main-font-family);
    line-height: 24px;
}

#footer-social-media {
    float: left;
    width: 100%;
}

#footer-social-media li {
    float: left;
}

#footer-social-media a {
    float: left;
    width: 30px;
    height: 30px;
    background: #202020;
    color: #bbb;
    border-radius: 90px;
    font-size: 18px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer-social-media li i {
    font-size: 16px;
}

#additional-links {
    float: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 2px;
}

#additional-links li {
    float: left;
    width: 100%;
}

#additional-links li a {
    float: left;
    width: fit-content;
    color: var(--main-color);
    font-size: 14px;
    font-family: var(--main-font-family);
}

#additional-links li a:hover {
    text-decoration: underline;
}

#footer-workdays {
    float: left;
    width: 100%;
}

#footer-workdays li {
    float: left;
    width: 100%;
    margin-bottom: 3px;
}

#footer-workdays li span {
    float: left;
    width: 40px;
    height: 40px;
    background: #bbb;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    font-size: 14px;
    font-family: var(--main-font-family);
}

#footer-workdays li p {
    float: left;
    color: #fff;
    margin-left: 36px;
    font-family: var(--main-font-family);
    font-size: 17px;
    margin-top: 8px;
}

.contact-form {
    float: left;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    float: left;
    width: 90%;
    margin-right: 10%;
    margin-bottom: 14px;
    color: #979797;
    background: transparent;
    border: none;
    border-bottom: 1px solid #3e3e3e;
    padding: 10px 20px;
    box-sizing: border-box;
    font-family: var(--main-font-family);
    font-size: 15px;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    float: left;
    background: var(--main-color);
    border: 2px solid transparent;
    border-radius: 3px;
    padding: 12px 33px;
    font-family: var(--main-font-family);
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.contact-form button:hover {
    color: var(--main-color);
    background-color: #fff;
    border-color: var(--main-color);
    transition: 0.3s;
}

#footer-bot {
    float: left;
    width: 100%;
    padding: 15px 0;
    background: #181818;
}

#footer-bot .wrapper {
    display: grid;
    grid-template-columns: 1fr 130px;
    align-items: center;
}

#footer-bot span {
    float: left;
    text-align: center;
    color: #bbb;
    font-family: Tahoma, Arial;
    font-size: 11px;
}

#footer-bot span b {
    color: #fff;
}

#footer-bot p {
    float: left;
    color: #8b8b8b;
    font-size: 11px;
    text-align: center;
}

#footer-bot ul li a {
    float: left;
    color: #bbb;
    margin: 0 5px;
    padding: 0 10px;
    text-decoration: underline;
    font-size: 11px;
}

#breadcrumbs {
    float: left;
    width: 100%;
    margin: 10px 0;
    box-sizing: border-box;
}

#breadcrumbs div {
    float: left;
    margin: 0 4px;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--main-font-family);
}

#breadcrumbs .divider {
    color: #000;
}

#cookies {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 99;
    text-align: center;
    background: #1d1d1b;
    padding: 15px 0;
}

#cookies p {
    display: inline-block;
    color: #fff;
    font-family: tahoma, "Open sans";
    font-size: 15px;
}

#cookies p a {
    color: #ff8282;
}

#cookies button {
    display: inline-block;
    margin-left: 20px;
    border: none;
    background: var(--main-color);
    color: #fff;
    padding: 7px 20px;
}

#breadcrumbs div a span {
    color: var(--main-color);
}

#application-steps font {
    color: #000;
}

.policy {
    display: none;
    float: left;
    width: 100%;
    text-align: center;
    line-height: 1.5;
    font-size: 14px;
    background-color: #fff;
}

.policy.popup {
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #9b9b9bd1;
    backdrop-filter: blur(5px);
}

.policy.popup .wrapper {
    padding: 30px 4%;
    margin: 0 20px;
    max-width: 900px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    animation-name: fadeIn;
    animation-duration: 0.5s;
    height: 90%;
    overflow-y: scroll;
}

.policy .close {
    display: none;
}

.policy.popup .close {
    display: inline-block;
    position: absolute;
    top: 6px;
    right: 10px;
    font-size: 35px;
    cursor: pointer;
}

.policy.popup .close:hover {
    color: #ff3837;
}

#calculation-example_href {
    width: 100%;
    text-align: center;
    color: #878787;
    text-decoration: underline #fff;
    cursor: pointer;
    transition: 0.3s;
}

#calculation-example_href:hover {
    color: #fff;
    transition: 0.3s;
}

#calculation-example {
    display: none;
    float: left;
    width: 100%;
    text-align: center;
    line-height: 1.5;
    font-size: 13px;
    background-color: #fff;
}

#calculation-example.popup {
    position: fixed;
    z-index: 11;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #9b9b9bd1;
    backdrop-filter: blur(5px);
}

#calculation-example.popup .wrapper {
    padding: 35px 4%;
    margin: 0 20px;
    max-width: 900px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    animation-name: fadeIn;
    animation-duration: 0.5s;
}

#calculation-example .close {
    display: none;
}

#calculation-example.popup .close {
    display: inline-block;
    position: absolute;
    top: 6px;
    right: 10px;
    font-size: 35px;
    cursor: pointer;
}

#calculation-example.popup .close:hover {
    color: #ff3837;
}

#up_button {
    position: fixed;
    right: 15px;
    bottom: 2%;
    cursor: pointer;
    z-index: 10;
}

#up_button i {
    float: right;
    color: #fff;
    background: var(--main-color);
    font-size: 30px;
    padding: 8px;
    border-radius: 90px;
    z-index: 11;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

#up_button i:hover {
    box-shadow: 0px 0px 10px #2c2c2c;
    filter: brightness(0.8);
}

.popup-form {
    display: none;
    text-align: center;
    line-height: 1.5;
    font-size: 13px;
    background-color: #fff;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 101;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
    column-gap: 15px;
    background: #9b9b9bd1;
    backdrop-filter: blur(5px);
}

.popup-form.show {
    display: flex;
}

.popup-form.show .wrapper {
    padding: 35px 40px;
    margin: 0 20px;
    width: 100%;
    max-width: 360px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    animation-name: fadeIn;
    animation-duration: 0.5s;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.popup-form.show[data-id="comment"] .wrapper {
    padding: 35px 20px;
}

.popup-form h5 b {
    font-family: var(--main-font-family);
    font-size: 20px;
    line-height: 20px;
    color: #161616;
}

.popup-form h5 span {
    font-size: 12px;
    color: #7b7b7b;
    line-height: 14px;
    display: block;
    margin-top: 10px;
}

.popup-form .form-control {
    width: 100%;
    float: left;
    display: flex;
    flex-direction: column;
}

.popup-form[data-id="comment"] .form-control {
    flex-direction: row;
}

.popup-form .form-control label {
    font-weight: 600;
    font-family: var(--main-font-family);
    text-align: left;
    font-size: 16px;
    color: #232323;
}

.popup-form[data-id="comment"] .form-control label {
    cursor: pointer;
    padding: 1px 10px 1px 7px;
}

.popup-form .form-control input,
.popup-form .form-control textarea {
    border: 1px solid #8b8b8b;
    padding: 8px 16px;
    box-sizing: border-box;
    border-radius: 4px;
    width: 100%;
    font-family: var(--main-font-family);
    background: linear-gradient(
        42deg,
        rgba(254, 254, 254, 1) 0%,
        rgb(239 239 239) 45%,
        rgb(247 247 247) 70%
    );
}

.popup-form[data-id="comment"] .form-control input {
    width: fit-content;
}

.popup-form .form-control textarea {
    width: 100%;
    padding: 4px;
}

.popup-form .form-control input.captcha {
    background-repeat: no-repeat;
    background-position: right center;
    box-shadow: inset 20px -5px 20px 0px #f3f3f3;
}

.popup-form .form-control input:hover,
.popup-form .form-control input:focus {
    box-shadow: 0px 1px 7px 2px #0000002b;
    transition: 0.3s ease-in-out;
}

.popup-form[data-id="comment"] .form-control input:hover,
.popup-form[data-id="comment"] .form-control input:focus {
    box-shadow: unset;
    transition: 0.3s ease-in-out;
}

.popup-form button {
    width: fit-content;
    padding: 12px 34px;
    background: #ff4b4b;
    color: #fff;
    border: unset;
    border-radius: 4px;
    font-size: 18px;
}

.popup-form button:hover {
    background-color: #fc6d6d;
}

.popup-form .close {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='4 4 16 16'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.227 4.227a.774.774 0 0 1 1.095 0L12 10.905l6.678-6.678a.774.774 0 1 1 1.095 1.095L13.095 12l6.678 6.678a.774.774 0 1 1-1.095 1.095L12 13.095l-6.678 6.678a.774.774 0 1 1-1.095-1.095L10.905 12 4.227 5.322a.774.774 0 0 1 0-1.095Z' /%3E%3C/svg%3E")
        center no-repeat;
    display: block;
    position: absolute;
    top: 6px;
    right: 6px;
    cursor: pointer;
    padding: 18px;
    background-size: 20px;
    transform: rotate(0deg);
    transition: all 0.2s;
}

.popup-form .close:hover {
    transform: rotate(90deg);
    transition: all 0.2s;
}

.popup-form.show {
    display: flex;
}

.popup-form .form-control-msg {
    display: none;
    width: 100%;
    transition: margin 0.5s ease, padding 0.5s ease, max-height 0.5s ease;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    padding: 10px 30px;
    box-sizing: border-box;
    background: #d56161;
    border-radius: 4px;
    color: #fff;
    font-family: var(--main-font-family);
    box-shadow: 0 0 6px 1px #cb000059;
}

.popup-form .error,
.popup-form .error input {
    background: #f5e8e8 !important;
    border-color: #ff000042 !important;
    box-shadow: 0px 0px 10px 0px #ff000069 !important;
    animation: swing 0.6s ease;
}

.popup-form .tabs {
    display: flex;
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 1px 0 rgba(224, 24, 24, 0.15),
        0 6px 12px 0 rgba(224, 24, 24, 0.15);
    padding: 8px;
    border-radius: 99px;
    margin: 10px 0 20px;
}

.popup-form .tabs * {
    z-index: 2;
}

.popup-form input[type="radio"] {
    display: none;
}

.popup-form .tab {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 100px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 99px;
    cursor: pointer;
    transition: color 0.15s ease-in;
    font-family: var(--main-font-family);
}

.popup-form input[type="radio"]:checked + label {
    color: #ff4b4b;
}

.popup-form input[id="radio-1"]:checked ~ .glider {
    transform: translateX(0);
}

.popup-form input[id="radio-2"]:checked ~ .glider {
    transform: translateX(100%);
}

.popup-form input[id="radio-3"]:checked ~ .glider {
    transform: translateX(200%);
}

.popup-form .glider {
    position: absolute;
    display: flex;
    height: 30px;
    width: 100px;
    background-color: #f9e6e6;
    z-index: 1;
    border-radius: 99px;
    transition: 0.25s ease-out;
}

.eitem-btn > .eitem-wrapper {
    margin: 0 0 20px !important;
    width: 100% !important;
    background: #c62122 linear-gradient(25deg, #c62122 33%, #ff4b4b) !important;
    border: unset !important;
}

.eitem-btn > .eitem-wrapper:hover {
    background: #ff4b4b !important;
}

.eitem-module-short-form .eitem-application button[type="submit"] {
    background: #c62122 linear-gradient(25deg, #c62122 33%, #ff4b4b) !important;
}

.eitem-module-short-form .eitem-application button[type="submit"]:hover {
    background: #ff4b4b !important;
}

@keyframes swing {
    15% {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }

    30% {
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }

    40% {
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }

    50% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }

    65% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

#loading-circle {
    width: 100%;
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #931919;
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#main-nav-container {
    height: unset;
}

#navigation_profile {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 100px;
    margin-left: 20px;
    cursor: pointer;
    position: relative;
    top: 14px;
}

#navigation_profile img {
    width: 100%;
    object-fit: contain;
    border-radius: 100px;
    max-height: unset;
    height: 100%;
}

#admin-navigation-label {
    float: left;
    position: relative;
    top: 14px;
}

#admin-navigation-label b {
    color: var(--main-color);
}

#admin-navigation {
    position: relative;
}

#admin-navigation-main {
    display: none;
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    width: 240px;
    left: -140px;
    background-color: #fff;
    top: 44px;
    border-radius: 6px;
    padding: 20px;
    box-sizing: border-box;
    gap: 14px;
    box-shadow: 0 0 1px #575757;
}

#admin-navigation-main.active {
    display: flex;
}

#admin-navigation a {
    display: grid;
    grid-template-columns: 34px 1fr;
    font-family: var(--main-font-family);
    color: #000;
    font-size: 15px;
    line-height: 14px;
    border-bottom: 1px solid transparent;
    align-items: center;
    width: 100%;
    padding: 6px 0;
}

#admin-navigation a i {
    font-size: 18px;
}

#admin-navigation a:hover {
    color: #b71c1c;
}

#admin-navigation a.master {
    color: #dd9208;
}

#admin-navigation .sub_ul {
    float: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#admin-navigation ul #exit {
    background: #e45c5c;
}


@media screen and (max-width: 600px) {
	#elizings-fixed-widget img { width: 150px; }
}
#elizings-fixed-widget {
    position: fixed;
    right: 2px;
    bottom: 0;
    cursor: pointer;
    z-index: 10;
	filter: drop-shadow(0 0 0 #0000);
	transition: 0.2s ease;
}
#elizings-fixed-widget:hover {
    filter: drop-shadow(-2px 8px 3px #0006);
}


@media screen and (min-width: 900px) {
    .wrapper {
        width: 900px;
        margin: 0 auto;
    }
    nav .wrapper > div {
        flex-direction: column-reverse;
        align-items: end;
        gap: 10px;
    }

    #loading-bar {
        height: 3px;
    }

    nav #main_nav {
        display: flex;
        flex-direction: row;
        gap: 20px;
        align-items: center;
        justify-content: flex-end;
        position: relative;
    }

    [vite-node] [ERR_LOAD_URL] jquery body > nav > div > div:nth-child(3) {
        position: relative;
        top: -12px;
    }

    nav ul {
        display: block;
    }

    #navigation_title-main .image-group img {
        width: auto;
    }

    nav img {
        max-height: 30px;
        width: 140px;
    }

    nav #nav_ul_special {
        display: flex;
    }

    nav #main_nav i {
        display: block;
    }

    #mobile-navigation {
        display: none;
    }

    footer p {
        min-height: 120px;
        margin-bottom: 25px;
    }

    footer h3 {
        font-size: 26px;
        margin-bottom: 20px;
        height: 40px;
    }

    footer .wrapper {
        display: grid;
        grid-template-columns: 2fr 2fr 4fr;
        column-gap: 20px;
    }
}

@media screen and (min-width: 1200px) {
    .wrapper {
        width: 1200px;
        margin: 0 auto;
    }

    nav img {
        width: auto;
    }

    footer .wrapper {
        column-gap: 40px;
    }

    #footer-bot span {
        width: unset;
        text-align: unset;
        margin-bottom: unset;
    }
}

@media screen and (max-width: 1200px) {
    #navigation_title {
        max-width: 220px;
    }
}

@media screen and (max-width: 900px) {
    #admin-navigation-main {
        left: -200px;
        top: 30px;
    }

    nav {
        height: 70px;
    }

    nav .wrapper > div {
        margin-left: auto;
    }

    nav #main_nav {
        width: 100%;
        float: left;
        display: flex;
        position: relative;
        position: fixed;
        top: -200%;
        background: #fff;
        height: calc(100% - 72px);
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 26px;
        left: 0;
    }

    nav #main_nav[data-id="forum_nav"] {
        display: block;
        position: relative;
        top: unset;
        left: unset;
        text-align: right;
    }

    nav #main_nav p[data-id="comment_button"] {
        position: relative;
        bottom: unset;
        right: unset;
        font-size: 14px;
    }

    nav #main_nav.active {
        padding-top: 30px;
        top: 72px;
    }

    nav #down_nav {
        display: flex;
        flex-direction: column;
        position: relative;
        align-items: center;
        background: transparent;
        gap: 20px;
        padding: unset;
        top: unset;
        box-shadow: unset;
    }

    nav #main_nav a,
    nav #down_nav a {
        font-weight: normal;
        font-size: 17px;
    }
    nav #main_nav .navigation-body-cars,
    nav #main_nav .txt-rotate,
    nav #main_nav p {
        max-width: 300px;
        box-sizing: border-box;
        width: 100% !important;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .language-select {
        display: none;
    }

    .language-select#main_nav-language {
        display: flex;
        gap: 10px;
    }

    #navigation_title {
        padding: unset;
        margin-left: 5px;
        border-left: unset;
    }

    #navigation_title h1,
    #navigation_title h2 {
        display: none;
    }

    #navigation_title-main .image-group span {
        display: none;
    }

    .popup-form.show .wrapper {
        padding: 25px 35px;
        gap: 10px;
    }

    .popup-form .form-control label {
        font-size: 14px;
    }

    .popup-form .form-control input {
        padding: 6px 12px;
    }

    #breadcrumbs {
        padding: 5px;
    }

    #breadcrumbs div {
        margin: 0 5px;
        line-height: 28px;
        font-size: 12px;
    }

    footer .wrapper,
    #footer > div > div:nth-child(1) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column: 1/3;
    }

    footer #footer_logo {
        display: block;
        width: 100px;
    }

    #footer-bot .wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #navigation_profile {
        margin: 0 10px;
        top: unset;
    }

    #admin-navigation-label {
        display: none;
    }

    #up_button i {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
}
