@font-face {
    font-family: logobrands;
    src: url("/media/fonts/logobrands.woff") format("woff"), url("/media/fonts/logobrands.ttf") format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("/media/fonts/fa-regular-400.eot");
    src: url("/media/fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("/media/fonts/fa-regular-400.woff") format("woff"), url("/media/fonts/fa-regular-400.ttf") format("truetype"), url("/media/fonts/fa-regular-400.svg#fontawesome") format("svg");
}

@font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("/media/fonts/fa-solid-900.eot");
    src: url("/media/fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("/media/fonts/fa-solid-900.woff") format("woff"), url("/media/fonts/fa-solid-900.ttf") format("truetype"), url("/media/fonts/fa-solid-900.svg#fontawesome") format("svg");
}


/* FLEX */

/* flexbox libruary */

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.justify-content-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.align-items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.align-items-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.align-items-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.align-self-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.align-self-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.align-self-center {
    -ms-flex-item-align: center;
    align-self: center;
}

.align-self-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
}

.align-self-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.align-content-start {
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.align-content-end {
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

.align-content-center {
    -ms-flex-line-pack: center;
    align-content: center;
}

.align-content-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.align-content-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}



.loading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999999999;
    background: #ffffff8c url(/media/static/load.gif) center center no-repeat;
    background-size: 100px;
}



/**
 * Bullets
 */
.mss-bullets .mss-selectors-container {
    align-items: center;
}

.mss-selectors-horizontal .mss-bullets .mss-selectors-container {
    max-width: 100%;
}

.mss-selectors-vertical .mss-bullets .mss-selectors-container {
    max-height: 100%;
}

.mss-selectors-right .mss-bullets .mss-selectors-container,
.mss-selectors-bottom .mss-bullets .mss-selectors-container {
    flex-wrap: wrap;
}

.mss-selectors-top .mss-bullets .mss-selectors-container,
.mss-selectors-left .mss-bullets .mss-selectors-container {
    flex-wrap: wrap-reverse;
}


.mss-selectors-horizontal .mss-bullets {
    width: 100%;
    height: 40px;
    min-height: 24px;
}

.mss-selectors-vertical .mss-bullets {
    min-width: 24px;
    width: 40px;
    /*height: 100%;*/
}

.mss-bullets .mss-selector {
    width: 14px;
    height: 14px;
    border-radius: 8px;
    background: none repeat scroll 0 0 #aaa;
    margin: 2px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    text-indent: 9999px;
    vertical-align: middle;
}

.mss-bullets .mss-selector:after {
    width: 8px;
    height: 8px;
    border: 1px solid transparent;
    border-radius: 8px;
    margin: 3px;
    content: '';
    position: relative;
    display: block;
    text-indent: 9999px;
    background: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.mss-bullets .mss-selector-active:hover:after,
.mss-bullets .mss-selector-active:after {
    content: "";
    background: #fff !important;
    border-color: transparent;
}

.mss-bullets .mss-selector:hover:after {
    content: "";
    background: #555 !important;
    border-color: transparent;
}

.MagicSlideshow.mss-bullets-inside {
    padding: 0px !important;
}

.MagicSlideshow.mss-bullets-inside.mss-selectors-top.mss-bullets-left .mss-bullets .mss-selectors-wrapper,
.MagicSlideshow.mss-bullets-inside.mss-selectors-bottom.mss-bullets-left .mss-bullets .mss-selectors-wrapper {
    padding-left: 10px;
    text-align: left !important;
}

.MagicSlideshow.mss-bullets-inside.mss-selectors-top.mss-bullets-right .mss-bullets .mss-selectors-wrapper,
.MagicSlideshow.mss-bullets-inside.mss-selectors-bottom.mss-bullets-right .mss-bullets .mss-selectors-wrapper {
    padding-right: 10px;
    text-align: right !important;
}

.MagicSlideshow.mss-bullets-inside.mss-selectors-left.mss-bullets-top .mss-bullets .mss-selectors-wrapper,
.MagicSlideshow.mss-bullets-inside.mss-selectors-right.mss-bullets-top .mss-bullets .mss-selectors-wrapper {
    padding-top: 10px;
}

.MagicSlideshow.mss-bullets-inside.mss-selectors-left.mss-bullets-top .mss-bullets .mss-selectors-container,
.MagicSlideshow.mss-bullets-inside.mss-selectors-right.mss-bullets-top .mss-bullets .mss-selectors-container {
    vertical-align: top !important;
}

.MagicSlideshow.mss-bullets-inside.mss-selectors-left.mss-bullets-bottom .mss-bullets .mss-selectors-wrapper,
.MagicSlideshow.mss-bullets-inside.mss-selectors-right.mss-bullets-bottom .mss-bullets .mss-selectors-wrapper {
    padding-bottom: 10px;
}

.MagicSlideshow.mss-bullets-inside.mss-selectors-left.mss-bullets-bottom .mss-bullets .mss-selectors-container,
.MagicSlideshow.mss-bullets-inside.mss-selectors-right.mss-bullets-bottom .mss-bullets .mss-selectors-container {
    vertical-align: bottom !important;
}

.MagicSlideshow.mss-bullets-inside.mss-selectors-bottom .mss-slider {
    bottom: 0px !important;
}

.MagicSlideshow.mss-bullets-inside.mss-selectors-top .mss-slider {
    top: 0px !important;
}

.MagicSlideshow.mss-bullets-inside.mss-selectors-left .mss-slider {
    left: 0px !important;
}

.MagicSlideshow.mss-bullets-inside.mss-selectors-right .mss-slider {
    right: 0px !important;
}

/**
 * Thumbnails
 */

.mss-selectors-horizontal .mss-thumbnails .mss-selectors-container {
    padding: 8px 0;
    justify-content: start;
}

.mss-selectors-vertical .mss-thumbnails .mss-selectors-container {
    padding: 0 8px;
}

.mss-thumbnails .mss-selector {
    opacity: .6;
}

.mss-selectors-horizontal .mss-thumbnails .mss-selector {
    margin: 0 5px;
}

.mss-selectors-vertical .mss-thumbnails .mss-selector {
    margin: 5px 0;
}

.mss-thumbnails .mss-selector-active {
    opacity: 1;
}

.mss-selector-empty {
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.9);
}

/**
 * Caption
 */
.mss-caption {
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 50;
    position: absolute;
    display: block;
}

.mss-caption > span {
    font-size: 14px;
    height: auto;
    background: rgba(255, 255, 255, 0.7);
    color: #222;
    text-align: left;
    line-height: 1.4;
    padding: 3px 8px;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: .7;
    width: 100%;
    z-index: 100;
}

.mss-caption-title {
    font-size: 125%;
    display: block;
}

.mss-caption a {
    color: #222;
}

.mss-caption a:visited {
    color: #444;
}

.mss-caption a:hover {
    color: #000;
}

/**
 * Buttons
 */
.mss-buttons-wrapper {
    z-index: 300;
}

.mobile-magic .mss-buttons-wrapper {
    opacity: 0;
    pointer-events: none;
}

@keyframes controls-wrapper-hide {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        pointer-events: none;
    }
}

.mobile-magic .mss-buttons-wrapper.mss-show {
    pointer-events: auto;

    position: absolute; /* just for ios */
    top: 0; /* just for ios */
    right: 0; /* just for ios */
    bottom: 0; /* just for ios */
    left: 0; /* just for ios */

    animation-name: controls-wrapper-hide;
    animation-delay: 2s;
    animation-duration: .5s;
    animation-direction: normal;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
    animation-iteration-count: 1;
}

.mobile-magic .mss-buttons-curtain {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 900;
    position: absolute;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.3);
}

.mss-button {
    cursor: pointer;
    z-index: 1000;
    position: absolute;
    display: block;
    opacity: 1;
    background-repeat: no-repeat;
    background-color: transparent !important;
    background-image: none !important;
    border: 0;
    border-radius: 0;
    -webkit-transition: opacity .3s linear;
    transition: opacity .3s linear;
}

.mss-desktop .mss-button {
    opacity: 0;
}

.mss-desktop .mss-slider:hover .mss-button {
    opacity: .6;
}

.mss-desktop .mss-slider:hover .mss-button:hover,
.mss-desktop .mss-selectors:hover .mss-button:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}

.mss-button-hidden {
    opacity: 0 !important;
    filter: alpha(opacity=0) !important;
}

.mss-selectors .mss-button {
    position: relative;
    display: inline-block;
}

.mss-button-play,
.mss-button-fullscreen {
    z-index: 2000;
    font-size: 100%;
}

.mss-horizontal .mss-slider .mss-arrow-prev:before,
.mss-selectors-horizontal .mss-selectors .mss-arrow-prev:before,
.mss-horizontal .mss-slider .mss-arrow-next:before,
.mss-selectors-horizontal .mss-selectors .mss-arrow-next:before,
.mss-vertical .mss-slider .mss-arrow-prev:before,
.mss-selectors-vertical .mss-selectors .mss-arrow-prev:before,
.mss-vertical .mss-slider .mss-arrow-next:before,
.mss-selectors-vertical .mss-selectors .mss-arrow-next:before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    border-width: 4px;
    border-style: solid;
    border-bottom: none;
    border-right: none;
    -webkit-transform-origin: top left;
    transform-origin: top left;
}

.mss-selectors-horizontal .mss-selectors .mss-arrow-prev:before,
.mss-selectors-horizontal .mss-selectors .mss-arrow-next:before,
.mss-selectors-vertical .mss-selectors .mss-arrow-prev:before,
.mss-selectors-vertical .mss-selectors .mss-arrow-next:before {
    width: 15px;
    height: 15px;
}

.mss-horizontal .mss-slider .mss-arrow-prev:before,
.mss-selectors-horizontal .mss-selectors .mss-arrow-prev:before {
    left: 25%;
    -webkit-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
}

.mss-horizontal .mss-slider .mss-arrow-next:before,
.mss-selectors-horizontal .mss-selectors .mss-arrow-next:before {
    left: 75%;
    -webkit-transform: rotateZ(135deg);
    transform: rotateZ(135deg);
}

.mss-vertical .mss-slider .mss-arrow-prev:before,
.mss-selectors-vertical .mss-selectors .mss-arrow-prev:before {
    top: 30%;
    left: 50%;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.mss-vertical .mss-slider .mss-arrow-next:before,
.mss-selectors-vertical .mss-selectors .mss-arrow-next:before {
    top: 70%;
    -webkit-transform: rotateZ(-135deg);
    transform: rotateZ(-135deg);
}


.mss-state-play:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border-color: transparent;
    border-style: solid;
    border-width: 25px;
    border-top-width: 15px;
    border-bottom-width: 15px;
    -webkit-transform: translate(-20%, -50%);
    transform: translate(-20%, -50%);
}

.mss-state-pause:before,
.mss-state-pause:after {
    content: "";
    top: 20%;
    width: 16%;
    height: 60%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.mss-state-pause:before {
    left: 35%;
}

.mss-state-pause:after {
    left: 65%;
}

.mss-button-fullscreen-enter:before,
.mss-button-fullscreen-enter:after,
.mss-button-fullscreen-exit:before,
.mss-button-fullscreen-exit:after {
    content: "";
    position: absolute;
    width: 28px;
    height: 4px;
    border-style: solid;
    border-width: 0 9px;
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    box-sizing: border-box;
}

.mss-button-fullscreen-exit:before,
.mss-button-fullscreen-exit:after {
    width: 36px;
    box-sizing: inherit;
}

.mss-button-fullscreen-enter:before,
.mss-button-fullscreen-exit:before {
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
    transform: rotate(45deg) translate(-50%, -50%);
}

.mss-button-fullscreen-enter:after,
.mss-button-fullscreen-exit:after {
    -webkit-transform: rotate(-45deg) translate(-50%, -50%);
    transform: rotate(-45deg) translate(-50%, -50%);
}

.mss-button-fullscreen-enter .mss-button-element,
.mss-button-fullscreen-exit .mss-button-element {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.mss-button-fullscreen-enter .mss-button-element:before,
.mss-button-fullscreen-enter .mss-button-element:after,
.mss-button-fullscreen-exit .mss-button-element:before,
.mss-button-fullscreen-exit .mss-button-element:after {
    content: "";
    position: absolute;
    width: 28px;
    height: 0;
    border-style: solid;
    border-top-color: transparent;
    border-bottom-color: transparent;
    box-sizing: border-box;
}

.mss-button-fullscreen-exit .mss-button-element:before,
.mss-button-fullscreen-exit .mss-button-element:after {
    width: 24px;
}

.mss-button-fullscreen-enter .mss-button-element:before,
.mss-button-fullscreen-enter .mss-button-element:after {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.mss-button-fullscreen-enter .mss-button-element:before {
    top: 25%;
    border-width: 0 10px 10px;
}

.mss-button-fullscreen-enter .mss-button-element:after {
    top: 58%;
    border-width: 10px 10px 0;
}

.mss-button-fullscreen-exit .mss-button-element:before,
.mss-button-fullscreen-exit .mss-button-element:after {
    top: 50%;
    border-width: 8px;
}

.mss-button-fullscreen-exit .mss-button-element:before {
    -webkit-transform: translate(-50%, -50%) rotateZ(45deg);
    transform: translate(-50%, -50%) rotateZ(45deg);
}

.mss-button-fullscreen-exit .mss-button-element:after {
    -webkit-transform: translate(-50%, -50%) rotateZ(-45deg);
    transform: translate(-50%, -50%) rotateZ(-45deg);
}

/**
 * Fullscreen button
 */
.mss-button-fullscreen {
    top: 0;
    right: 0;
    width: 56px;
    height: 56px;
}

/**
 * Play/Pause button
 */
.mss-button-play {
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    display: none;
}

/**
 * Slider arrows
 */

.mss-horizontal .mss-arrows-pair {
    top: 0;
    width: 60px;
    height: 100%;
}

.mss-vertical .mss-arrows-pair {
    left: 0;
    width: 100%;
    height: 60px;
}


.mss-horizontal .mss-slider .mss-arrow-prev,
.mss-selectors-horizontal .mss-selectors .mss-arrow-prev {
    left: 0;
}

.mss-horizontal .mss-slider .mss-arrow-next,
.mss-selectors-horizontal .mss-selectors .mss-arrow-next {
    right: 0;
}

.mss-vertical .mss-slider .mss-arrow-prev,
.mss-selectors-vertical .mss-selectors .mss-arrow-prev {
    top: 0;
}

.mss-vertical .mss-slider .mss-arrow-next,
.mss-selectors-vertical .mss-selectors .mss-arrow-next {
    bottom: 0;
}


/**
 * Selectors arrows
 */
.mss-selectors .mss-button {
    opacity: 0.6;
}

.mss-selectors-horizontal .mss-selectors .mss-button {
    width: 30px;
    min-width: 30px;
    display: none;
}

.mss-selectors-vertical .mss-selectors .mss-button {
    height: 30px;
    width: 100%;
    top: auto;
    left: 0;
    margin-left: auto;
}

/**
  * ie
  */
.lt-ie10-magic .mss-button:before,
.lt-ie10-magic .mss-button-fullscreen-enter:before,
.lt-ie10-magic .mss-button-fullscreen-exit:before {
    color: #ccc;
}

.mss-horizontal .mss-slider .mss-arrow-prev:before,
.mss-selectors-horizontal .mss-selectors .mss-arrow-prev:before,
.mss-horizontal .mss-slider .mss-arrow-next:before,
.mss-selectors-horizontal .mss-selectors .mss-arrow-next:before,
.mss-vertical .mss-slider .mss-arrow-prev:before,
.mss-selectors-vertical .mss-selectors .mss-arrow-prev:before,
.mss-vertical .mss-slider .mss-arrow-next:before,
.mss-selectors-vertical .mss-selectors .mss-arrow-next:before {
    border-color: rgba(180, 180, 180, .75);
}

.mss-state-play:before {
    border-left-color: rgba(180, 180, 180, .75);
}

.mss-state-pause:before,
.mss-state-pause:after {
    background-color: rgba(180, 180, 180, .75);
}

.mss-button-fullscreen-enter:before,
.mss-button-fullscreen-enter:after,
.mss-button-fullscreen-exit:before,
.mss-button-fullscreen-exit:after {
    border-color: rgba(180, 180, 180, .75);
}

.mss-button-fullscreen-enter .mss-button-element:before,
.mss-button-fullscreen-enter .mss-button-element:after,
.mss-button-fullscreen-exit .mss-button-element:before,
.mss-button-fullscreen-exit .mss-button-element:after {
    border-left-color: rgba(180, 180, 180, .75);
    border-right-color: rgba(180, 180, 180, .75);
}

.mobile-magic .mss-button-play {
    display: block;
}

/**
 * Miscellaneous
 */
.mss-content-slide {
    background-color: #f3f3f3;
    padding: 6px 10px;
}

.mss-fullscreen {
    background: #00000063;
}

.mss-fullscreen .mss-selectors {
    opacity: .8;
}

.mss-fullscreen .mss-message {
    font-size: 18px;
    color: #fff;
    background-color: #000;
    border-color: #ccc;
    top: 15px;
}

/**
 * Miscellaneous
 */
.mss-loader {
    width: 42px;
    height: 42px;
    top: 50%;
    left: 50%;
    margin: -21px 0 0 -21px;
    opacity: 1;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.mss-loader:before {
    content: "";
    top: 50%;
    left: 50%;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    position: absolute;
    box-sizing: border-box;
    border: 2px solid white;
    margin: -17px 0 0 -17px;
    border-left-color: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: magicslideshow-loading 1.5s infinite linear;
    animation: magicslideshow-loading 1.5s infinite linear;
}

@-webkit-keyframes magicslideshow-loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes spin-loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.mss-message {
    color: #000;
    background-color: #FFFFFF;
    background-image: none;
    border: 1px solid #AAAAAA;
    font-size: 10px;
    padding: 6px;
    display: block;
    overflow: hidden;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 33%;
    left: 33%;
    z-index: 100;
    border-collapse: separate;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
}

.mss-desktop .MagicSlideshow .mss-slide:hover .mss-wrapper-timer {
    opacity: 1;
}

.mss-wrapper-timer {
    opacity: 0;
    -webkit-transition: opacity .3s linear;
    transition: opacity .3s linear;
}

.mss-desktop .mss-slider:hover .mss-wrapper-timer {
    opacity: 1;
}

.mss-wrapper-timer {
    height: 5px;
    z-index: 1000;
}

.mss-wrapper-timer .mss-progress-line {
    background-color: red;
    background: linear-gradient(to right, #FFDAB9, #FF0000);
}


/**
 * Tooltip
 */
.mss-bullets-preview-thumbnail {
    height: 80px;
    border: 5px solid;
    border-radius: 5px;
    z-index: 42;
    pointer-events: none;
}

.mss-direction-top .mss-bullets-preview-arrow {
    bottom: -9px;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.mss-direction-bottom .mss-bullets-preview-arrow {
    top: -9px;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.mss-feedback-animation {
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-top: -20px;
    margin-left: -20px;
    border-radius: 50%;
    z-index: 9999999999;
    position: absolute;
    background-color: #000000;
    opacity: 0.5;
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.mss-feedback-animation.mss-hide {
    display: none;
}

.mss-feedback-animation:before {
    content: '';
    top: 50%;
    left: 50%;
    position: absolute;
    border-style: solid;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}

.mss-feedback-animation.mss-play:before {
    width: 12px;
    height: 16px;
    border-top-width: 8px;
    border-top-color: transparent;
    border-left-width: 12px;
    border-left-color: rgba(255, 255, 255, 0.8);
    border-bottom-width: 8px;
    border-bottom-color: transparent;
    border-right-width: 0px;
    margin-left: 1px;
}

.mss-feedback-animation.mss-pause:before {
    width: 15px;
    height: 16px;
    border-width: 5px;
    border-top-width: 0px;
    border-bottom-width: 0px;
    border-color: rgba(255, 255, 255, 0.8);
}

.mss-feedback-animation.mss-play,
.mss-feedback-animation.mss-pause {
    opacity: 0;
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
    -webkit-transition: opacity .8s linear, transform .8s linear;
    transition: opacity .8s linear, transform .8s linear;
}

.MagicSlideshow .mss-slide .mss-slide-button,
.MagicSlideshow .mss-slide .mss-slide-button:hover {
    text-decoration: none !important;
    cursor: pointer;
}

.MagicSlideshow .mss-slide .mss-slide-button:visited {
    color: inherit;
}

.MagicSlideshow .mss-slide a.mss-slide-button p {
    margin: 0 !important;
}

.MagicSlideshow.mss-control-bar .mss-button-play,
.mss-fullscreen.mss-control-bar .mss-button-play {
    display: block;
}

.MagicSlideshow.mss-control-bar .mss-buttons-wrapper,
.mss-fullscreen.mss-control-bar .mss-buttons-wrapper {
    left: 50%;
    bottom: 10%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    background-color: rgba(0, 0, 0, 0.6);
    height: 56px;
    position: absolute;
    display: inline-block;
    border-radius: 5px;
    -webkit-transition: opacity .3s linear;
    transition: opacity .3s linear;
    line-height: 100%;
    opacity: 0;
    filter: alpha(opacity=0);
}

.mss-desktop.mss-fullscreen.mss-control-bar .mss-buttons-wrapper {
    opacity: 1;
    filter: alpha(opacity=1);
}

.mss-fullscreen.mss-control-bar .mss-buttons-wrapper {
    left: 0px;
    bottom: 0px;
    width: 100%;
    transform: none;
    -webkit-transform: none;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 100px;
}

.mss-desktop.mss-fullscreen.mss-control-bar .mss-buttons-wrapper {
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    bottom: 10%;
    height: 56px;
    width: auto;
}

.mss-desktop.MagicSlideshow.mss-control-bar .mss-slider:hover .mss-buttons-wrapper,
.mss-desktop.mss-fullscreen.mss-control-bar .mss-slider:hover .mss-buttons-wrapper {
    opacity: 1;
    filter: alpha(opacity=100);
}

.MagicSlideshow.mss-control-bar .mss-buttons-wrapper .mss-button,
.mss-fullscreen.mss-control-bar .mss-buttons-wrapper .mss-button {
    top: 0;
    position: relative !important;
    float: left;
    display: inline-block;
    opacity: 0.6;
    filter: alpha(opacity=60);
    width: 56px;
    height: 56px;
}

.MagicSlideshow.mss-control-bar .mss-button-play,
.mss-fullscreen.mss-control-bar .mss-button-play {
    top: auto;
    left: auto;
    margin: 0;
}


.MagicSlideshow.mss-arrows-slide .mss-arrows-pair {
    opacity: 0.6;
    transition: transform .3s linear;
    -webkit-transition: -webkit-transform .3s linear;
}

.MagicSlideshow.mss-horizontal.mss-arrows-slide .mss-arrow-prev {
    transform: translate(-100%, 0%);
    -webkit-transform: translate(-100%, 0%);
}

.MagicSlideshow.mss-horizontal.mss-arrows-slide .mss-arrow-next {
    transform: translate(100%, 0%);
    -webkit-transform: translate(100%, 0%);
}

.MagicSlideshow.mss-vertical.mss-arrows-slide .mss-arrow-prev {
    transform: translate(0%, -100%);
    -webkit-transform: translate(0%, 0%);
}

.MagicSlideshow.mss-vertical.mss-arrows-slide .mss-arrow-next {
    transform: translate(0%, 100%);
    -webkit-transform: translate(0%, 100%);
}

.MagicSlideshow.mss-arrows-slide:hover .mss-arrow-prev,
.MagicSlideshow.mss-arrows-slide:hover .mss-arrow-next {
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
}

.mss-horizontal .mss-slider .mss-arrow-prev:before,
.mss-selectors-horizontal .mss-selectors .mss-arrow-prev:before,
.mss-horizontal .mss-slider .mss-arrow-next:before,
.mss-selectors-horizontal .mss-selectors .mss-arrow-next:before,
.mss-vertical .mss-slider .mss-arrow-prev:before,
.mss-selectors-vertical .mss-selectors .mss-arrow-prev:before,
.mss-vertical .mss-slider .mss-arrow-next:before,
.mss-selectors-vertical .mss-selectors .mss-arrow-next:before {
    /*border-color: white;*/
    border-color: rgba(180, 180, 180, .75) !important;
}


.mobile-magic .mss-horizontal .mss-slider .mss-arrow-prev:before,
.mobile-magic .mss-selectors-horizontal .mss-selectors .mss-arrow-prev:before,
.mobile-magic .mss-horizontal .mss-slider .mss-arrow-next:before,
.mobile-magic .mss-selectors-horizontal .mss-selectors .mss-arrow-next:before,
.mobile-magic .mss-vertical .mss-slider .mss-arrow-prev:before,
.mobile-magic .mss-selectors-vertical .mss-selectors .mss-arrow-prev:before,
.mobile-magic .mss-vertical .mss-slider .mss-arrow-next:before,
.mobile-magic .mss-selectors-vertical .mss-selectors .mss-arrow-next:before {
    border-color: white !important;
}

.mss-state-play:before {
    /*border-left-color: white;*/
    border-left-color: rgba(180, 180, 180, .75) !important;
}

.mobile-magic .mss-state-play:before {
    border-left-color: white !important;
}

.mss-state-pause:before,
.mss-state-pause:after {
    /*background-color: white;*/
    background-color: rgba(180, 180, 180, .75) !important;
}

.mobile-magic .mss-state-pause:before,
.mobile-magic .mss-state-pause:after {
    background-color: white !important;
}

.mss-button-fullscreen-enter:before,
.mss-button-fullscreen-enter:after,
.mss-button-fullscreen-exit:before,
.mss-button-fullscreen-exit:after {
    /*border-color: white;*/
    border-color: rgba(180, 180, 180, .75) !important;
}

.mobile-magic .mss-button-fullscreen-enter:before,
.mobile-magic .mss-button-fullscreen-enter:after,
.mobile-magic .mss-button-fullscreen-exit:before,
.mobile-magic .mss-button-fullscreen-exit:after {
    border-color: white !important;
}

.mss-button-fullscreen-enter .mss-button-element:before,
.mss-button-fullscreen-enter .mss-button-element:after,
.mss-button-fullscreen-exit .mss-button-element:before,
.mss-button-fullscreen-exit .mss-button-element:after {
    /*border-left-color: white;*/
    /*border-right-color: white;*/
    border-left-color: rgba(180, 180, 180, .75) !important;
    border-right-color: rgba(180, 180, 180, .75) !important;
}

.mobile-magic .mss-button-fullscreen-enter .mss-button-element:before,
.mobile-magic .mss-button-fullscreen-enter .mss-button-element:after,
.mobile-magic .mss-button-fullscreen-exit .mss-button-element:before,
.mobile-magic .mss-button-fullscreen-exit .mss-button-element:after {
    border-left-color: white !important;
    border-right-color: white !important;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

footer,
header,
main,
section {
    display: block;
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
    background: transparent;
    color: #333333;
}

b {
    font-weight: 700;
}

strong {
    font-weight: 900;
}

img {
    border: 0;
    max-width: 100%;
}

svg:not(:root) {
    overflow: hidden;
}

input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

a {
    color: #000;
    text-decoration: none;
}

ul, li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

input:hover, input:active, input:focus, textarea:hover, textarea:active, textarea:focus {
    outline: none;
    box-shadow: none;
}

textarea {
    overflow: auto;
}

* {
    box-sizing: border-box;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.button, .button_xs, button {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

body {
    height: 100%;
    font-family: Roboto, sans-serif;
    color: #000;
    line-height: 1;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    background: #fff;
    font-weight: 300;
}

.center {
    text-align: center !important;
}
.left {
    text-align: left !important;
}
.right {
    text-align: right !important;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.button, .button_xs, .button_md {
    line-height: 44px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    letter-spacing: 1.2px;
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
}

.button_xs {
    line-height: 30px;
    padding-left: 15px;
    padding-right: 15px;
    text-transform: inherit;
    letter-spacing: unset;
    font-size: 13px;
    font-weight: 300;
}

.button_md {
    line-height: 36px;
    letter-spacing: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.button_gray {
    color: #fff;
    background: #3a3e3e;
}
.button_green {
    color: #fff;
    background: #178e17;
}
.button_green:hover {
    background: #126812;
}

.button_bordered_gray {
    color: #3a3e3e;
    border: 1px solid #3a3e3e;
}

.button_transparent {
    color: #3a3e3e;
    border: none;
}

.button_gold {
    color: #fff;
    background: #d1ba81;
}

.button_gold:hover{
    background: #806f46;
}

.button_bordered_gold {
    color: #fff;
    border: 1px solid #d1ba81;
}
.button_bordered_gold:hover {
    border: 1px solid #806f46;
}

.button_bordered_gold_black {
    color: #000;
    border: 1px solid #d1ba81;
}
.button_bordered_gold_black:hover {
    border: 1px solid #806f46;
}

.button_yellow {
    background: #ffea00;
    color: #000;
}

.button_yellow i {
    margin-right: 5px;
}

header {
    z-index: 1111;
}

.arrow_bottom_white, .arrow_bottom_black {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.arrow_bottom_white:after, .arrow_bottom_black:after {
    content: '';
    display: block;
    height: 5px;
    width: 10px;
    background-size: 100% !important;
    margin-left: 5px;
}

.arrow_bottom_black:after {
    background: url(/media/static/icons/arrow-down-black.svg) center;
}

.arrow_bottom_white:after {
    background: url(/media/static/icons/arrow-down-white.svg) center;
}

.bold{
    font-weight: 700;
}

.far {
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}

.fa,
.fas {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}


span.msg,
span.choose {
    color: #555;
    padding: 5px 0 10px;
    display: inherit
}
.catalog_left .select2-container, .service_form_form .select2-container{
    width: 100% !important;
}
.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 46px;
    user-select: none;
    -webkit-user-select: none
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 15px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.select2-container .select2-selection--single .select2-selection__clear {
    position: relative
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px
}

.select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline-block;
    overflow: hidden;
    padding-left: 8px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.select2-container .select2-search--inline {
    float: left
}


.select2-container .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 5px;
    padding: 0
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

.select2-dropdown {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051
}

.select2-results {
    display: block
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0
}

.select2-results__option {
    padding: 15px;
    font-size: 14px;
}

.select2-results__option[aria-selected] {
    cursor: pointer
}

.select2-container--open .select2-dropdown {
    left: 0
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-search--dropdown {
    padding: 4px
}

.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    height: 40px;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

.select2-search--dropdown.select2-search--hide {
    display: none
}

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0)
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important
}

.select2-container--default .select2-selection--single {
    background-color: #ececec;
    border: 1px solid #aaa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 46px
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999
}

.select2-container--default .select2-selection--single .select2-selection__arrow i {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: all .3s ease-in-out;
    line-height: 20px;
    margin-right: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left
}


.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px
}

.select2-container--open .select2-selection__arrow i {
    transform: rotate(-90deg);
}

.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    list-style: none
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
    padding: 1px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #333
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
    float: right
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid black 1px;
    outline: 0
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto
}

.select2-container--default .select2-results__option[role=group] {
    padding: 0
}

.select2-container--default .select2-results__option[aria-disabled=true] {
    color: #999
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #ddd
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #5897fb;
    color: white
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px
}

.select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 4px;
    outline: 0;
    background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
    background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
    background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)
}

.select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 46px
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
    background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
    background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left: 1px;
    right: auto
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
    background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
    background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
    background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
    background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)
}

.select2-container--classic .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0
}

.select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #555
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    float: right;
    margin-left: 5px;
    margin-right: auto
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0
}

.select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
    box-shadow: none
}

.select2-container--classic .select2-dropdown {
    background-color: #fff;
    border: 1px solid transparent
}

.select2-container--classic .select2-dropdown--above {
    border-bottom: none
}

.select2-container--classic .select2-dropdown--below {
    border-top: none
}

.select2-container--classic .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto
}

.select2-container--classic .select2-results__option[role=group] {
    padding: 0
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
    color: grey
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
    background-color: #3875d7;
    color: #fff
}

.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb
}

.service_form .select, .service_form .input_wrap {
    margin-bottom: 20px;
}


.service_form_image {
    width: 600px;
}


footer {
    margin-top: 30px;
    padding: 0 0 30px 0;
    background: #3a3e3e;
}

.container_fluid {
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
}

.footer_logo img {
    height: 30px;
}

.footer_logo a {
    margin-bottom: 20px;
}

.footer_logo_titles {
    color: #fff;
    margin-left: 10px;
}

.footer_logo_titles h2 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 900;
}

.footer_logo_titles span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-top: 5px;
}

.footer_logo a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer_copywrite {
    margin-top: 40px;
    text-align: center;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}

.footer_social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.footer_social img {
    height: 30px;
}

.footer_social a {
    margin: 0;
    margin-right: 15px;
}

.footer_links a {
    color: #fff;
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
    line-height: 1.3;
}

.footer_links a:first-child {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}

footer .inner {
    display: block;
}

footer .inner > div {
    width: 100%;
    text-align: center;
}

footer .inner > div:last-child {
    padding: 0;
}

.footer_logo_links a {
    color: #fff !important;
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
}

.menu_burger {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    margin-left: 15px;
    padding: 25px 15px;
    margin-right: -15px;
}

.menu_burger span {
    height: 3px;
    width: 30px;
    background: #fff;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    position: relative;
    margin-bottom: 6px;
}

.menu_burger span:last-child {
    margin: 0;
}

.mobile_active .menu_burger span:first-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-bottom: 0 !important;
}

.mobile_active .menu_burger span:nth-child(2) {
    display: none;
}

.mobile_active .menu_burger span:last-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 3px;
}

header {
    background: #3a3e3e;
    z-index: 1000;
    width: 100%;
    top: 0;
}

header .inner {
    height: 70px;
}

header {
    background: #3a3e3e;
}

.header_currency {
    font-size: 12px;
    color: #fff;
    margin-right: auto;
}

.header_currency li {
    display: flex;
}

.header_currency li:after {
    content: '';
    margin-right: 10px;
    margin-left: 10px;
    display: block;
    width: 1px;
    background: #686a6b;
}

.header_currency li:last-child:after {
    display: none;
}

.not_found {
    margin-top: 30px;
    color: #3a3e3e;
}

.not_found .inner {
    padding: 100px 0;
}

.not_found h1 {
    font-size: 100px;
}

.not_found h2 {
    margin-bottom: 20px;

}

.height {
    min-height: calc(100vh - 500px);
}

.breadcrumbs {
    margin: 20px 0;
    display: none;
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
}

.breadcrumbs ul a {
    font-size: 14px;
    font-weight: 400;
}

.breadcrumbs ul a:after {
    content: "\203a";
    color: #3a3e3e;
    font-size: 13px;
    position: relative;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    right: 0;
    top: -1px;
}

.breadcrumbs ul li:last-child a:after {
    display: none;
}

.catalog {
    margin-top: 20px;
}

.catalog .section_title, .services .section_title, .about .section_title, .contacts .section_title {
    margin-top: 0;
}

.catalog .inner > .flex {
    min-height: 100vh;
    position: relative;
    margin-right: -15px;
    margin-left: -15px;
}

.catalog_filter {
    margin-right: 20px;
    display: none;
    width: 350px;
}

.catalog_filter input {
    height: 46px;
    background: #ececec;
    border: 1px solid #ccc;
    color: #000;
    font-size: 14px;
    padding: 20px;
}

.catalog_cars {
    flex: 1;
    background: #fff;
}

.mobile_filter, .mobile_sort {
    line-height: 54px;
    width: 54px;
    text-align: center;
    border-right: 1px solid #ccc;
}

.mobile_sort {
    border-right: none;
    margin: 0;
}

.catalog_filter_title, .catalog_cars_title {
    padding: 20px;
    background: #3a3e3e;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    display: flex;
}

.catalog_cars_title {
    padding: 0;
}

.catalog_cars_title > span {
    margin-left: 20px;
}

.catalog_filter_body {
    background: #fff;
    padding: 15px;
}

.catalog_cars_found {
    font-weight: 400;
    font-size: 16px;
    margin: 30px;
}

.catalog_cars_results {
    display: flex;
    flex-wrap: wrap;
}

.catalog_cars_results .car_card {
    width: 100%;
    margin-bottom: 20px;
}

.catalog_cars_title .select .select_menu {
    position: absolute;
    background: rgb(58, 62, 62);
    width: 300px;
    display: none;
    right: 0;
    z-index: 101;
}

.catalog_cars_title .select .select_menu li {
    padding: 15px;
    cursor: pointer;
}

.catalog_cars_title .select .select_menu li:hover {
    background: #222;
}

.catalog_cars_title .select span, .catalog_cars_title .select .fa-chevron-left {
    display: none;
}

.catalog_cars_title .select {
    position: relative;
    margin-left: auto;
    text-transform: initial;
    font-weight: 400;
    width: 54px;
    background: #3a3e3e;
    color: #fff;
    border: none;
    border-left: 1px solid #ccc;
}

.catalog_cars_title .select .select_name {
    line-height: 54px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    cursor: pointer;

}

.select .fa-chevron-left {
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;

}

.select.active .fa-chevron-left {
    transform: rotate(-90deg);
}

.catalog_filter_item {
    border-bottom: 1px solid #e6e4e4;
}

.catalog_filter_item:last-child {
    border: none;
}

.catalog_filter_item_title {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px 0;
    color: #3a3e3e;
}

.catalog_filter_item_body {
    display: none;
}

.catalog_filter_item_title i {
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.catalog_filter_item_title.active i {
    transform: rotate(180deg);
}

.catalog_filter_body .select {
    width: 100%;
    background-color: #ececec;
}

.input_checkbox {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 15px;
    height: 25px;
    display: flex;
    align-items: center;
    color: #3a3e3e;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;

}

.input_checkbox:hover {
    opacity: 0.6;
}

.input_checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.input_checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #ececec;
}

.input_checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

.input_checkbox input:checked ~ .checkmark {
    background-color: #d0ba81;
}

.input_checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.input_checkbox input:checked ~ .checkmark:after {
    display: block;
}

.input_checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.col-2 > * {
    width: calc(50% - 5px) !important;
}

.col-2 > *:last-child {
    margin-left: auto;
}

.service_form_form {
    margin-top: 40px;
    margin-bottom: 20px;
}

.service_form_form > * {
    margin-bottom: 15px;
    width: 100%;
}

.box {
    padding: 20px 15px;
    background: #fff;
}

.catalog_filter_title i {
    display: block;
}
.pagination{
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination a, .pagination p {
    display: block;
    background: #d0ba81;
    line-height: 40px;
    width: 40px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    font-size: 14px;
    margin: 0 5px;
}

.pagination p {
    background: #3a3e3e;
}

.pagination div {
    margin-right: 10px;
    margin-left: 10px;
}

.car_info {
    flex: 1;
    overflow: hidden;
}

.car_buy {
    width: 100%;
    background: #fff;
}

:not(:root):fullscreen::backdrop {
    background-color: rgba(0, 0, 0, 0.3);
}

.car_body {
    display: block;
    margin-bottom: 30px;
}

.car {
    margin-bottom: 40px;
}

.car .container {
    padding: 0;
}

.car h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.4;
}

.overflow {
    overflow: hidden;
}

.car_buy_top {
    background: #3a3e3e;
}
.car_buy_top .button {
    margin-top: 20px;
}
.car_buy_top .car_dealer{
    background: #fff;
    margin-top: 20px;
    padding: 15px;
}
.car_buy_bottom {
    background: #fff;
    padding-bottom: 0 !important;
    margin-bottom: 30px;
}

.car_buy_bottom iframe {
    width: calc(100% + 30px) !important;
    border: 0;
    margin-top: 20px;
    margin-left: -15px
}

.car_buy .car_buy_top {
    display: none;
}

.car_info .car_buy_top {
    display: block;
}

.car h2 {
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 900;
}

.car_info_data_description {
    line-height: 1.8;
    font-weight: 300;
    font-size: 14px;
}

.gold {
    color: #d1ba81 !important;
}

.social_share {
    display: flex;
    align-items: center;
}

.social_share img {
    margin-left: 5px;
    margin-right: 5px;
    height: 30px;
}
.car_info_data .car-param {
    display: block;
    width: 100%;
}

.car_info_data .car-param:nth-child(2n) {
    padding-right: 0;
}

.car_info_data .car-param span:last-child {
    margin-left: auto;
}

.car_info_data .car-param .inner {
    border-bottom: 1px solid #e6e4e4;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.car_info_data .car_card_params {
    padding: 0 15px 15px;
    border: none;
}


.car_general_info div {
    margin-bottom: 15px;
}

.car_general_info p {
    color: #333;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.cars_new .car_card, .cars_top .car_card, .sers_sold .car_card {
    width: 100%;
}

.sers_sold {
    position: relative;
}

.cars_top {
    margin-bottom: 50px;
}

.cars_top .section_title, .cars_new .section_title {
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: left;
}

.car_buy_map {
    margin-top: 15px;
    display: block;
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: 30px;
}




.font-size-13 {
    font-size: 13px;
}

body {
    -webkit-transition: margin-left .3s ease-in-out;
    transition: margin-left .3s ease-in-out;
    padding-top: 70px;
    background: #f8f8f8;
}

.mobile_active .mobile_menu {
    right: 0;
}

.mobile_active body {
    margin-left: calc(-100% + 60px);
}

html.mobile_active:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9;
    background: #0000006e;
}

.mobile_menu_lang {

}

.mobile_menu_lang a {
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    padding: 15px 10px;
    font-weight: 400;
    display: block;
}

.ua .mobile_menu_lang_ua, .ru .mobile_menu_lang_ru, .en .mobile_menu_lang_en {
    font-weight: 900;
    color: #d1ba81;
}

.mobile_menu_links {
    flex: 1;
    overflow-y: auto;
}

.mobile_menu_links a {
    padding: 20px 25px;
    display: block;
    border-bottom: 1px solid #666666;
    color: #fff;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #00000094;
    z-index: 99999;
    height: 100vh;
    overflow: auto;
}

.modal.active {
    display: block;
}

.modal_inner {
    width: 600px;
    max-width: 100%;
    padding: 50px 30px;
    background: #3a3e3e;
    margin: 50px auto;
    position: relative;
}

.modal_close {
    position: absolute;
    top: 15px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
}

.modal_body h3 {
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.modal_body h3 a {
    color: #fff;
}

.modal_body p {
    color: #fff;
    line-height: 1.5;
    margin-bottom: 15px;
}

.input_wrap input {
    padding: 15px;
    height: 46px;
    font-size: 14px;
    width: 100%;
    border: 1px solid #999;
}

.input_wrap textarea {
    padding: 15px;
    font-size: 14px;
    width: 100%;
    line-height: 1.5;
    resize: none;
    font-weight: 300;
}

.mobile_menu_right {
    width: 60px;
    border-left: 1px solid #666;
}

.mobile_menu_social a {
    display: block;
    padding: 10px 0;
    text-align: center;
}

.mobile_menu_social img {
    height: 25px;
}

.hidden {
    display: none !important;
}

.catalog_filter.active {
    position: fixed;
    display: block;
    margin: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    top: 70px;
    bottom: 0;
    overflow-x: auto;
    border-top: 1px solid #ccc;
}

.catalog_filter_button_wrap {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    padding: 10px;
    background: #fff;
}

.catalog_filter.active .catalog_filter_button_wrap {
    display: block;
}

.catalog_filter.active .catalog_filter_body {
    padding-bottom: 70px;
}

.error_wrap {
    position: relative;
}

.error {
    position: absolute;
    bottom: -15px;
    font-size: 12px;
    left: 0;
    color: #fff;
    z-index: 1;
    background: red;
    width: 100%;
    display: block;
    padding: 2px 5px;
    font-weight: 400;
    text-align: left;
}

.status_green, .status_blue, .status_red {
    line-height: 1.4;
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 12px;
    text-align: center;
    display: inline-block;
}

.status_green {
    background: #d1ead1;
    color: #48904d;
}

.status_red {
    background: #f5cfca;
    color: #b96f6b;
}

.status_blue {
    background: #47b4ea;
    color: #fff;
}

.vertical_align_top {
    vertical-align: top;
}

@-webkit-keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }
    15% {
        opacity: 1;
        top: 50%;
    }
    50% {
        opacity: 0;
        top: 50%;
    }
    100% {
        opacity: 0;
        top: 29%;
    }
}

@-moz-keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }
    15% {
        opacity: 1;
        top: 50%;
    }
    50% {
        opacity: 0;
        top: 50%;
    }
    100% {
        opacity: 0;
        top: 29%;
    }
}

@keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }
    15% {
        opacity: 1;
        top: 50%;
    }
    50% {
        opacity: 0;
        top: 50%;
    }
    100% {
        opacity: 0;
        top: 29%;
    }
}

.scroll-btn {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 0;
}

.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *:active,
.scroll-btn > *.active {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.scroll-btn .mouse {
    position: relative;
    display: block;
    width: 30px;
    height: 45px;
    margin: 0 auto 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid white;
    border-radius: 23px;
}

.scroll-btn .mouse > * {
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: white;
    border-radius: 50%;
    -webkit-animation: ani-mouse 2.5s linear infinite;
    -moz-animation: ani-mouse 2.5s linear infinite;
    animation: ani-mouse 2.5s linear infinite;
}

.contacts_box {
    margin-bottom: 20px;
}

.contacts_box h2 {
    margin-bottom: 20px;
}

.contacts_box iframe {
    max-width: 100%;
}

.contacts_item i {
    color: #d1ba81;
    font-size: 20px;
    margin-right: 5px;
}

.contacts_item {
    display: block;
    margin-bottom: 15px;
}

.contacts_item span {
    line-height: 1.4;
    text-align: right;
    display: inline-block;
}

.contacts_form {
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.contacts_form h2 {
    margin-bottom: 15px;
}

.service_banner {
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    margin-bottom: 50px;
}

.service_banner:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background: #3b3f3fbf;
}

.service_banner .container {
    position: relative;
    padding: 100px 15px;
}

.service_banner h1 {
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d1ba81;
    display: inline-block;
}

.service_banner h2 {
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 30px;
}

.service_banner a {
    font-size: 30px;
    color: #d1ba81;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.service_banner p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.4;
}

.service_banner_form {
    max-width: 500px;
    margin: 20px auto 0;
}

.services_carousel h3 {
    line-height: 1.5;
    margin-bottom: 20px;
}

.services_carousel span {
    color: #d1ba81;
}

.services_carousel_item {
    text-align: center;
}

.services_carousel img {
    height: 150px;
    margin-bottom: 25px;
}

.services_carousel p {
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 20px;
}

.services_carousel {
    margin-bottom: 30px;
}

.services_carousel .section_title {
    margin-bottom: 0;
}

.services_carousel_list {
    padding-top: 50px;
    position: relative;
}

.services_carousel .owl-stage {
    justify-content: space-between;
}

.service_section_3 {
    background: #000;
}

.services_carousel_list .owl-nav {
    top: 10px;
    right: calc(50% - 40px);
}

.service_section_3 h2 {
    color: #fff;
}

.service_form .section_sub_title {
    color: #fff;
}

.service_scheme_step_item {
    width: 100%;
    margin-bottom: 22px;
    position: relative;
    background: #fff;
    border-radius: 6px 6px 0 0;
    border-bottom: 0 solid #fdae00;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    top: 0;
}

.service_scheme {
    background-color: #f7f7f7;
    margin-bottom: 30px;
}

.service_scheme h3 {
    color: #d1ba81;
}

.service_scheme_step_item .inner {
    padding: 25px 34px 34px;
}

.service_scheme_steps {
    margin-top: 30px;
}

.service_scheme_step_item strong, .service_scheme_step_item a {
    cursor: pointer;
    font-weight: 600;
    color: #000;
}

.service_scheme_step_item p {
    clear: both;
    padding-top: 13px;
    line-height: 24px;
    color: #797979;
}

.service_wa {
    padding: 100px 15px;
    background: #3a3e3e;
}

.service_wa .section_title {
    margin-top: 0;
    color: #fff;
    line-height: 1.4;
    text-align: center;
}

.green {
    color: #4bb04f;
}

.service_wa_check {
    text-align: center;
}

.service_wa_check p {
    color: #fff;
    line-height: 1.3;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;

}

.service_wa_check h3 {
    font-size: 20px;
    color: #3a3e3e;
    line-height: 1.3;
    margin-bottom: 20px;
}

.service_wa_number {
    margin-top: 20px;
    font-size: 24px;
    color: #fff;
    line-height: 1.4;
    text-align: center;
}

.service_wa_number a {
    font-weight: 500;
    display: block;
}

.service_about p {
    color: #797979;
    line-height: 1.5;
    margin-bottom: 15px;
}
.detailing_services {
    margin-top: -50px;
    margin-bottom: 50px;
    padding-top: 50px;
    background: #fff;
}
.detailing_services .inner{
    position: relative;
    overflow: hidden;
}
.detailing_services_item {
    padding: 100px 25px;
    color: #fff;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    margin: 0 3px 6px 3px;
    text-align: center;
    width: 100%;
}

.detailing_services_list{
    padding-top: 50px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.detailing_services_item h3 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.detailing_services_item p {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 200;
    line-height: 1.7;
}

.detailing_advantages .section_sub_title {
    margin-bottom: 30px;
    font-size: 16px;
    text-align: center;
}

.detailing_advantages p {
    line-height: 2;
}

.contacts_maps {
    flex-direction: column;
}

.lg-thumb-item {
    display: flex !important;
    align-items: center;
}

.lg-thumb-item img {
    height: auto !important;
}

.lg-backdrop {
    background: #000c !important;
}

.service_contact {
    background: url(/media/static/services/contact_bg.jpg) center;
    background-size: cover !important;
    position: relative;
    color: #fff;
}

.service_contact:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background: #3b3f3fbf;
}

.service_contact .container {
    position: relative;
    padding: 130px 0;
    width: 700px;
    max-width: 100%;
}

.service_contact h2 {
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d1ba81;
    display: inline-block;
}

.service_contact p {
    margin-bottom: 30px;
}

.service_contact a {
    font-size: 30px;
    color: #d1ba81;
    font-weight: 600;
    display: block;
    margin-bottom: 30px;
}

.footer_contacts {
    display: none;
    background: #323535;
    padding: 40px 0;
}

.footer_contacts img {
    height: 40px;
    margin-right: 10px;
}

.footer_contacts_address {
    display: flex;
    align-items: center;
}

.footer_contacts_address a {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: left;
}

.footer_contacts_address a:last-child {
    margin: 0;
}

.service_how {
    margin-bottom: 50px;
}

.section_sub_title {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    line-height: 1.6;
}

.service_how_steps {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    justify-content: center;
}

.service_how_steps_3 .service_how_step {
    width: 100%;
}

.service_how_step {
    width: 100%;
    padding: 15px;
    background: #3a3e3e;
    text-align: center;
    margin-bottom: 0;
    border: 2px solid #f8f8f8;
}

.service_how_step_title {
    color: #d1ba81;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.service_how_step_text {
    color: #FFFFFF;
    line-height: 1.5;
    font-size: 18px;
}

.service_advantages {
    margin-bottom: 50px;
}

.service_advantages_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service_advantages_item {
    width: 100%;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 30px;
}

.service_advantages_item img, .service_advantages_item svg {
    height: 100px;
    margin-bottom: 20px;
}

.service_advantages_item h3 {
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service_advantages_item p {
    line-height: 1.56;
}

.text * {
    line-height: 1.8;
    margin-bottom: 20px;
}

.text ul {
    margin-left: 20px;
    padding-left: 20px;
}

.text ul li {
    list-style-type: square;
}

.text ul li::marker {
    height: 10px;
    width: 10px;
}

.popular_brands {
    display: none;
    margin-top: 20px;
    background: #fff;
    margin-right: 20px;
    width: 350px;
}

.popular_brands a {
    margin-right: 10px;
    margin-bottom: 10px;
}

.service_numbers {
    margin-bottom: 50px;
}

.service_number {
    display: flex;
    margin-bottom: 20px;
    width: 100%;
    align-items: center;
}

.service_number:before {
    content: '';
    background: url(/media/static/icons/exclamation.svg) no-repeat center;
    width: 30px;
    height: 30px;
    display: block;
    background-size: 100%;
    margin-right: 10px;
}

.service_number h4 {
    font-size: 16px;
    line-height: 1.4;
}

.service_number p {
    margin-bottom: 10px;
    line-height: 1.4;
}
.services_examples{
    margin-bottom: 50px;
}
.service_numbers_list {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

.service_cost_list_item {
    width: 100%;
    text-align: center;
    padding: 0 5px;
}
.service_cost_lists{
    justify-content: center;
}
.service_cost_list_item img {
    margin-bottom: 15px;
}

.service_cost_list_item h4 {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.service_cost_list_item p {
    margin-bottom: 15px;
    display: block;
}

.service_cost_list_item .button, .service_cost_list_item .button_xs {
    width: 200px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.service_cost_list_item .button_gold {
    font-size: 16px;
    width: 150px;
}

.service_cost {
    padding: 50px 0;
    background: #f7f7f7;
    margin-bottom: 50px;
}

.service_seo {
    margin-bottom: 50px;
}

.cars_top .car_card {
    width: 100%;
    margin-bottom: 20px;
}

.service_seo h2 {
    margin-bottom: 40px;
}

.service_seo h3 {
    margin-bottom: 40px;
    font-size: 20px;
}

.service_seo p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.detailing_portfolio {
    margin-bottom: 50px;
}
.detailing_portfolio_list{
    overflow: hidden;
    position: relative;
    padding-top: 50px;
}
.detailing_portfolio_list .owl-nav{
    top: 0;
}
.detailing_portfolio_info{
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 30px;
}
.detailing_portfolio_item{
    margin: 0 5px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.detailing_portfolio_item_image{
    height: 250px;
}
.detailing_portfolio_item_image img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.detailing_portfolio_item_info{
    padding: 30px;
    background: #3a3e3e;
    color: #fff;
    flex: 1;
}
.detailing_portfolio_item h3{
    margin-bottom: 20px;
    line-height: 1.3;
    font-size: 16px;
}
.detailing_form .service_form_form > * {
    margin: 0 auto 15px;
}
.service_form_image p{
    color: #fff;
    margin-bottom: 10px;
    font-size: 12px;
}
.service_form_image input{
    position: relative;
    height: 40px;
    width: 200px;
    cursor: pointer;
    border: none;
    display: block;
}
.service_form_image input:before{
    content: 'Выберите фото';
    background: #fff url(/media/static/photo_camera_gray.svg);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-size: 50px !important;
    background-repeat: no-repeat !important;
    background-position: right !important;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    line-height: 40px;
    padding-left: 15px;
    color: #131313;
}
.service_form_image{
    text-align: left;
}

.acticles_top{
    display: flex;
    flex-direction: column;
}
.acticles_top_image{
    flex: 1;
    padding-top: 66%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 7px;
}
.acticles_top_info{
    width: 100%;
    margin: 30px 0;
}
.acticles_top_title{
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.articles_list {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
}

.articles_list article {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.article_image {
    width: 100%;
    padding-top: 66%;
    display: block;
    border-radius: 7px;
    overflow: hidden;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.article_info {
    height: 100%;
    margin: 0;
    color: #000;
    display: block;
    background: #fff;
    position: relative;
}

.article_info_about {
    padding: 20px;
}
.article_category{
    color: #2ea8fd;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.article_title {
    font-size: 18px;
    display: block;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 20px;
}
.article_author{
    font-size: 12px;
    font-weight: 400;
}
.article_views{
    color: #818181;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
}
.article_views img {
    margin-right: 5px;
}
.article_description {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.article_date {
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

.article_top {
    margin-bottom: 40px;
    margin-top: 30px;
}

.article_top_image {
    width: 500px;
    overflow: hidden;
    max-width: 40%;
}

.article_top_image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.article_top_info {
    flex: 1;
    padding: 0 30px;
    color: #000;
    line-height: 1.5;
}

.article_top_info p {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

.article_top_info_date {
    margin-top: 15px;
    color: #999;
    font-size: 13px !important;
}

.article {
    padding-top: 30px;
    background: #fff;
    margin: 0;
    padding-bottom: 30px;
}

.article_item_general {
    width: 900px;
    margin: auto;
    max-width: 100%;
}

.article_item_author {
    margin-right: 20px;
    font-weight: 400;
    font-size: 15px;
}

time, .time {
    color: #818181;
    margin-right: 20px;
    font-size: 15px;
}

.article_item_category, .article_item_views {
    font-size: 15px;
}

.article_item_views {
    color: #818181;
    display: flex;
    align-items: center;
}

.article_item_views img {
    margin-right: 7px;
}

.article_item_title {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
}
.article_item_image {
    width: 100%;
    padding-top: 66%;
    display: block;
    border-radius: 7px;
    overflow: hidden;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    margin-bottom: 30px;
}
.article_item_share {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.article_item_share a {
    margin: 5px;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    transition: .3s ease;
    padding: 7px 10px;
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
}
.article_item_share_fb {
    background-color: #3b5998;
    border-color: #3b5998;
}
.article_item_share_pt {
    background-color: #bd081c;
}
.article_item_share_tw {
    background-color: #55acee;
    border-color: #55acee;
}
.article_item_share_tg {
    background-color: #54a9eb;
}
.article_item_share a svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    stroke: none;
    vertical-align: middle;
}

.article_item_text {
    line-height: 1.7;
    font-size: 18px;
    width: 900px;
    max-width: 100%;
    margin: 0 auto 30px auto;
}
.article_item_text p{
    margin-bottom: 15px;
}
.article_item_text a{
    font-weight: 600;
    color: red;
}
.article_item_text figure{
    margin: 0 0 15px;
    text-align: center;
    line-height: 1;
}
.reviews .container{
    max-width: 1200px;
}
.reviews_list{
    display: flex;
    flex-wrap: wrap;

}

.reviews_item{
    width: 100%;
    padding: 15px;
    background: #fff;
    margin-bottom: 14px;
}
.review_image{
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.review_image img {
    max-height: 100%;
}

.review_date{
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #8c8c8c;
}

.review_title {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 900;
}

.review_description {
    line-height: 1.8;
}

.dropdown {
    position: relative;
    display: inline-block;
}


.dropdown i{
    margin-left: 5px;
    font-size: 14px;
}

.dropdown_content {
    top: -100px;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 0 16px 0 #00000033;
    z-index: -1;
    margin-top: -10px;
}

.dropdown:hover .dropdown_content {
    top: 100%;
    z-index: 99;
}

.dropdown_content a{
    color: #3a3e3e;
    font-size: 15px;
    display: block;
    font-weight: 400;
    padding: 15px;
    background-color: #fff;
    transition: background-color .3s ease;
}

.dropdown_content a:hover{
    background-color: #f4efe2;
}

.review_form{
    margin: 30px auto 0;
    padding: 15px;
    background: #fff;
}

.review_form .align-items-center{
    flex-direction: column;
}

.review_form .input_wrap{
    margin-right: 0;
}


.review_form h2{
    margin-bottom: 20px;
}

.lg-outer{
    z-index: 999999!important;
}
.car_video{
    position: relative;
    cursor: pointer;
}
.car_video:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #13131380 url(/media/static/icons/play.svg) no-repeat center;
    z-index: 2;
    background-size: 70px;
}

.login_page{
    background: url(/media/static/dealer/login.jpg);
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    margin-bottom: -50px;
}

.login_page:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
}
.login_form {
    position: relative;
    padding: 50px 20px;
    max-width: 500px;
    background: #fff;
    margin: 50px auto 100px;
    border-radius: 10px;
    overflow: hidden;
}

.login_form.loading:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffffe6 url(/media/static/gif.jpeg) no-repeat center;
    background-size: 100px;
    z-index: 9;
}

.login_form h1 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d1ba81;
}

.login_form h1 span:first-child{
    border-right: 1px solid #000;
    margin-right: 15px;
    padding-right: 15px;
}
.login_form h1 span{
    cursor: pointer;
}
.login_form h1 span:last-child{
    color: #999;
}

.login_form .input_wrap input::placeholder{
    font-size: 14px;
}
.login_form .input_wrap input{
    border: 1px solid #e0e3e4;
    line-height: 23px;
    padding: 12px;
    color: #414042;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 1px 0 0 #fff;
    overflow: hidden;
    border-radius: 1px;
    font-size: 16px;
    height: 49px;
}

.login_form .input_wrap label{
    margin-bottom: 5px;
    display: block;
    font-size: 15px;
}

.login_form .button_wrap .button{
    min-width: 150px;
    margin-right: 15px;
}

.login_form_recovery_link{
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.login_fb_button, .login_gm_button {
    border: 1px solid #1876f2;
    line-height: 23px;
    padding: 12px 15px 12px 70px;
    color: #1876f2;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    transition: all .3s ease;
    font-weight: 400;
}

.login_fb_button:hover, .login_gm_button:hover {
    border: 1px solid #083065;
    color: #083065;
}


.login_fb_button{
    margin-bottom: 20px;
    background: url(/media/static/icons/login/facebook.svg) no-repeat;
    background-size: 20px;
    background-position: 25px center;
}

.login_gm_button{
    background: url(/media/static/icons/login/google.svg) no-repeat;
    background-size: 20px;
    background-position: 25px center;
}
.button_wrap{
    margin-bottom: 20px;
}
.login_form_login{
    display: none;
}
.login_form_login.active{
    display: block;
}
.login_form_recover {
    display: none;
}
.login_form_recover.active{
    display: block;
}
.login_form_recover a{
    font-weight: 500;
}
.login_form_register {
    display: none;
}
.login_form_register.active{
    display: block;
}
.login_form h1 span.active{
    color: #000;
}
.login_form h1 span{
    color: #999;
}

.add_auto .container {
    max-width: 1000px;
}
.add_auto h3 {
    margin-bottom: 15px;
}
.add_auto .input_wrap label, .add_auto .input_image label {
    display: block;
    margin-bottom: 15px;
}
.input_image{
    margin-bottom: 20px;
}
.add_auto .input_wrap .select2-container {
    width: 100% !important;
}
.img_item {
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    height: 100px;
    width: 100px;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border: 1px solid #ccc;
}
.img_item.active {
    background: url(/media/static/loading1.gif);
    cursor: unset;
}
.remove_image, .remove_image_add {
    display: none;
    position: absolute;
    top: -10px;
    right: -10px;
    left: auto;
    height: 30px;
    width: 30px;
    cursor: pointer;
    background: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDUwIDUwIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MCA1MDsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSI1MTJweCIgaGVpZ2h0PSI1MTJweCI+CjxjaXJjbGUgc3R5bGU9ImZpbGw6I0Q3NUE0QTsiIGN4PSIyNSIgY3k9IjI1IiByPSIyNSIvPgo8cG9seWxpbmUgc3R5bGU9ImZpbGw6bm9uZTtzdHJva2U6I0ZGRkZGRjtzdHJva2Utd2lkdGg6MjtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxMDsiIHBvaW50cz0iMTYsMzQgMjUsMjUgMzQsMTYgICAiLz4KPHBvbHlsaW5lIHN0eWxlPSJmaWxsOm5vbmU7c3Ryb2tlOiNGRkZGRkY7c3Ryb2tlLXdpZHRoOjI7c3Ryb2tlLWxpbmVjYXA6cm91bmQ7c3Ryb2tlLW1pdGVybGltaXQ6MTA7IiBwb2ludHM9IjE2LDE2IDI1LDI1IDM0LDM0ICAgIi8+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=);
    background-size: 100%;
    z-index: 999;
}

.active .remove_image, .active .remove_image_add {
    display: block !important;
}
.input_video{
    display: none;
}

.input_video.active {
    display: block;
}

.input_video p{
    font-size: 12px;
    margin-top: 5px;
}
#files {
    position: relative;
    height: 100%;
    width: 100%;
    cursor: pointer;
    border: none;
}

#files:before {
    content: '';
    background: #fff url(/media/static/icons/photo_camera_gray.svg);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.dealerConfirm{
    font-weight: 600;
    cursor: pointer;
}
.account_confirm{
    min-height: 600px;
}
.account_confirm .container{
    max-width: 600px;
}

.account_confirm .inner{
    padding: 50px 0;
}
.account_recover{
    min-height: 600px;
}
.account_recover .container{
    max-width: 600px;
}

.account_recover .inner{
    padding: 50px 0;
}
.account_recover h3{
    margin-bottom: 20px;
}

.modal .login_form{
    margin: 0;
    width: 100%;
}

.yellow{
    color: #d0a216 !important;
}
.red{
    color: red !important;
}
.car_status{
    padding: 20px;
    margin-bottom: 20px;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.car_status_red{
    background: #ffe8e5;
}

.car_status_yellow{
    background: #fffae5;
}

.car_make_models{
    display: none;
}
.car_make_models_list{
    display: flex;
    flex-wrap: wrap;
}

.car_make_models h3{
    margin-bottom: 20px;
}
.car_make_models a{
    width: 33.3333%;
    padding: 5px 0;
    font-weight: 400;
}
.car_dealer{
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
}
.car_dealer_general{
    margin-bottom: 15px;
    display: flex;
}

.car_dealer_registered{
    font-size: 16px;
    margin-bottom: 20px;
}
.car_dealer_phone{
    font-weight: 900;
    font-size: 20px;
    color: #3c9806;
}
.car_dealer_city{
    margin-bottom: 10px;
}
.car_dealer_image {
    height: 50px;
    width: 50px;
    object-fit: cover;
    object-position: center;
    margin-right: 15px;
    border-radius: 50%;
}
.car_dealer_name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
.service_request_btn{
    width: 100%;
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
}

body, html{
    margin: 0!important;
    padding: 0!important;
    font-family: 'Roboto', sans-serif;
}
.admin_right .container {
    max-width: 1000px;
}

.section_title {
    margin-bottom: 30px;
}

.input_wrap label, .input_image label {
    display: block;
    margin-bottom: 15px;
}

.add_car h3 {
    margin-bottom: 15px;
}

.add_car {
    flex: 1;
}

.add_car_info {
    margin-top: -50px;
    margin-bottom: -50px;
    margin-left: 50px;
    width: 350px;
}

blockquote {
    border-left: 5px solid #666;
    padding: 15px 15px 15px 30px;
    margin: 15px 25px;
    font-style: italic;
}

.red {
    color: red;
}

.admin_login h1 {
    font-size: 18px;
    margin-bottom: 20px;
}

.admin_login_form {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px;
    background: #fff;
    max-width: 100%;
}

.admin_login {
    background: #999;
    padding: 100px 0;
    text-align: center;
    min-height: 100vh;
}

.admin_login h1 {
    font-size: 18px;
    margin-bottom: 20px;
}

.nf {
    z-index: 999999;
    padding: 30px;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 4px 0px rgba(186, 202, 210, 0.2), 0px 13px 18px 0px rgba(186, 202, 210, 0.18);
    width: 500px;
    max-width: 100%;
    margin-bottom: 24px;
    position: fixed;
    top: 0;
    left: calc(50% - 250px);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    transform: translateY(-150px);
    font-size: 14px;
    text-align: center;
    line-height: 1.8;
}

.nf img {
    cursor: pointer;

}

.nf_active {
    transform: translateY(5px);
}

.nf_green {
    background-color: #4a9a3f;
}

.nf_yellow {
    background-color: #ffa340;
}

.nf_red {
    background-color: darkred;
}

.remove_image, .remove_image_add {
    display: none;
    position: absolute;
    top: -10px;
    right: -10px;
    left: auto;
    height: 30px;
    width: 30px;
    cursor: pointer;
    background: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDUwIDUwIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MCA1MDsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSI1MTJweCIgaGVpZ2h0PSI1MTJweCI+CjxjaXJjbGUgc3R5bGU9ImZpbGw6I0Q3NUE0QTsiIGN4PSIyNSIgY3k9IjI1IiByPSIyNSIvPgo8cG9seWxpbmUgc3R5bGU9ImZpbGw6bm9uZTtzdHJva2U6I0ZGRkZGRjtzdHJva2Utd2lkdGg6MjtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxMDsiIHBvaW50cz0iMTYsMzQgMjUsMjUgMzQsMTYgICAiLz4KPHBvbHlsaW5lIHN0eWxlPSJmaWxsOm5vbmU7c3Ryb2tlOiNGRkZGRkY7c3Ryb2tlLXdpZHRoOjI7c3Ryb2tlLWxpbmVjYXA6cm91bmQ7c3Ryb2tlLW1pdGVybGltaXQ6MTA7IiBwb2ludHM9IjE2LDE2IDI1LDI1IDM0LDM0ICAgIi8+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=);
    background-size: 100%;
    z-index: 999;
}

.active .remove_image, .active .remove_image_add {
    display: block !important;
}

.img_item {
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    height: 100px;
    width: 100px;
    background: #fff url(/media/photo_camera_gray.svg);
    background-size: 100% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border: 1px solid #ccc;
}
#files, #file {
    position: relative;
    height: 100%;
    width: 100%;
    cursor: pointer;
    border: none;
}
.input_image{
    margin-bottom: 25px;
}
#files:before, #file:before {
    content: '';
    background: #fff url(/media/photo_camera_gray.svg);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.img_item.active {
    background: url(/media/loading.gif);
    cursor: unset;
}

.img_item_error{
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #fff;
    background: red;
    display: block;
    text-align: center;
    line-height: 1.5;
    padding: 5px;
    font-size: 10px;
}
.admin{
    display: flex;
    flex: 1;
}
.admin_left {
    display: none;
    width: 350px;
    background: #3a3e3e;
    padding: 0 15px;
}
.mobile_active .admin_left{
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
}

.admin_left a {
    display: flex;
    padding: 15px 10px;
    color: #fff;
    border-bottom: 1px solid #666;
}

.admin_left li:last-child a {
    border: none;
}

.admin_right {
    flex: 1;
    margin: 15px;
    min-height: 600px;
    overflow-y: hidden;
    overflow-x: auto;
}

footer {
    margin: 0;
}

table {
    margin-top: 30px;
    width: 100%;
}


th, td {
    padding: 10px;
    text-align: left;
}

th {
    text-transform: uppercase;
    border-bottom: 2px solid #111;
}

.table_image {
    width: 135px;
}

.table_actions {
    text-align: right;
    font-size: 20px;
    display: table-cell;
}

.table_actions .button_xs:first-child{
    margin-right: 5px;
}
.admin_left i {
    margin-right: 7px;
}

.admin_filters_filters a {
    margin-right: 10px;
}

.button_gold.current {
    background: #333;
}
@media only screen and (max-width: 1400px) {
    .add_car_info {
        display: none;
    }
}
.input_wrap input {
    padding: 15px;
    height: 46px;
    font-size: 14px;
    width: 100%;
    border: 1px solid #999;
}
.input_wrap {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}
.gold{
    color: #d1ba81;
}
* {
    box-sizing: border-box;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}
.button, .button_xs, button{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.button_gold {
    color: #fff;
    background: #d1ba81;
}

.button_bordered_black {
    color: #333;
    background: #fff;
    border: 1px solid #333 !important;
}


.right{
    text-align: right;
}
button, .button_xs {
    line-height: 44px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
    letter-spacing: 1.2px;
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
}

.button_xs {
    line-height: 30px;
    letter-spacing: 1px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 10px;
}
.section_title {
    margin-top: 0 !important;
}
.sold {
    position: relative;
}
.sold:before{
    content: '';
    display: block;
    background: url(https://wac.ge/media/static/sold.png?v=2) no-repeat center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: auto 100%;
    z-index: 100;
}

.count{
    min-width: 20px;
    background: red;
    font-size: 10px;
    padding: 0 5px;
    color: #fff;
    height: 20px;
    line-height: 20px;
    border-radius: 10px;
    z-index: 99;
    text-align: center;
    margin-left: 10px;
}
.status_red{
    background: red;
    color: #fff;
}
.admin_search{
    display: flex;
    align-items: center;
}

.admin_search input {
    flex: 1;
}
.input_wrap .select2-container{
    width: 100% !important;
}

.dropdown:before{
    content: '';
    position: absolute;
    right: 15px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
    top: 20px;
    transition: all 0.3s ease-in-out;
}
.dropdown_active:before{
    transform: rotate(90deg);
}
.admin_left li {
    position: relative;
    width: 100%;
}
.dropdown i{
    font-size: inherit;
    margin-left: 0;
    margin-right: 7px;
}
.dropdown_wrap{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.dropdown_active .dropdown_wrap{
    max-height: 300px;
}

.dropdown_wrap a{
    padding-left: 32px;
}
.header_contacts {
    line-height: 50px;
}


header .inner{
    position: relative;
    z-index: 9999;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0 15px;
}

.header--menu_btn {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    display: flex;
}

.header--menu_btn svg {
    margin: auto;
    width: 40px;
    height: 40px;
    fill: #fff;
}

.header--menu_btn_close {
    display: none;
}

.mobile_active .header--menu_btn_open {
    display: none;
}
.mobile_active .header--menu_btn_close {
    display: block;
}


header .container_fluid{
    padding: 0;
}

.header--menu_website a{
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}