.dz-clickable-style {
    border: 1px dashed #ccc;
    width: 100%;
    height: 100%;
    background: #eee;
    color: #656565;
    padding: 50px;
    outline: none !important;
    font-weight: 100;
}

.dz-clickable-style:hover,
.dz-clickable-style:active {
    background: #1caca2 !important;
    color: #fff !important;
    outline: none !important;
}

.dz-preview {
    float: left;
    width: 100px;
    margin-top: 15px;
    margin-right: 10px;
    cursor: move;
}

.dz-progress {
    /* display:none; */
    /* padding:20px; */
    margin-top: 10px;
}

.dz-upload {
    display: block;
    background-color: red;
    height: 10px;
    width: 0%;
}

.dz-image {
    float: left;
    width: 80px;
    height: 80px;
    position: relative;
}

.dz-image img {
    float: left;
    position: relative;
    z-index: 1;
}

.dz-details {
    float: right;
    width: 90px;
    height: 80px;
    text-align: left;
}

.dz-size,
.dz-filename {
    color: #666;
    width: 90px;
    font-size: 13px;
}

.dz-filename {
    line-height: 16px;

}

.dz-filename span {
    word-wrap: break-word;
}

.dz-success-mark,
.dz-error-mark,
.dz-error-message {
    display: none;
}

.dz-image>img[data-dz-thumbnail=""] {
    background: url(/box/img/noimage_m.jpg) no-repeat #e8e8e8 -1px 12px;
    height: 80px;
    width: 80px;
}

.dz-remove {
    float: left;
    clear: left;
    color: #f66;
    margin-top: 5px;
    font-size: 14px;
}

.btn-dropzone {
    font-weight: 100;
    text-transform: uppercase;
    font-size: 20px;
}

.hover-underline:hover {
    text-decoration: underline;
}

.loader-wrapper-overlay {
    display: flex;
    padding-top: 1rem;
    background: rgb(255 255 255 / 50%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #214753;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

/* .loader-overlay {
    display: flex;
    padding-top: 1rem;
    background: rgb(255 255 255 / 50%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.loader-overlay::after {
    content: '';
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #214753;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.relative-for-loader {
    position: relative !important;
} */

.loader-overlay {
    --_loaderMainColor: #214753;
    --_loaderSecondaryColor: #FFF;
    --_loaderOverlayColor: rgb(255 255 255 / 50%);
    display: grid;
    place-content: center;
    padding-top: 1rem;
    background: var(--_loaderOverlayColor);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 99999;
    top: 0;
    left: 0;
    border-radius: 10px;
    grid-template-areas: 'stack';
}

.loader-overlay::after {
    content: '';
    grid-area: stack;
    place-self: center;
    width: 48px;
    height: 48px;
    border: 5px solid var(--_loaderSecondaryColor);
    border-bottom-color: var(--_loaderMainColor);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.relative-for-loader {
    position: relative !important;
}

.loader-overlay .counter {
    grid-area: stack;
    place-self: center;
    font-size: 14px;
    color: var(--_loaderMainColor);
    font-weight: bold;
}

.loader-overlay .operation-text {
    font-size: 16px;
    color: var(--_loaderMainColor);
    text-align: center;
    animation: loader-pulse 2.5s ease-in-out infinite;
}

@keyframes loader-pulse {
    0% {
        opacity: 0.6;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }

    100% {
        opacity: 0.6;
        transform: scale(0.98);
    }
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.accordeon-non {
    border: 0.5px solid #CAD1D7;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}

.accordeon-non .top {
    width: 100%;
    padding: 15px 0;
    position: relative;
}

.accordeon-non .top .text {
    width: calc(100% - 57px);
    float: left;
    margin-left: 13px;
    font-weight: 500;
    font-size: 14px;
    color: #214753;
}

.accordeon-non .top .arr {
    position: absolute;
    top: 20px;
    right: 20px;
}

.accordeon-non .bottom {
    padding: 0 20px 20px 13px;
    width: 100%;
}

.compare-bar-right {
    position: fixed;
    top: 100px;
    right: 10px;
    width: 200px;
    background: #fff;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 35%), 0 2px 2px 0 rgb(0 0 0 / 24%);
    border-radius: 6px;
    padding: 10px;
    z-index: 600;
}

.compare-row {
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    position: relative;
    padding: 10px;
    margin-bottom: 10px;
}

.compare-row:last-of-type {
    margin-bottom: 0;
}

.compare-row .img-wrap {
    height: 73px;
    overflow: hidden;
    margin-top: 5px;
}

.compare-row .img-wrap img {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.compare-row .delete-prod {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    border-radius: 3px;
    background: url(../img/close_circle.svg) no-repeat center;
}

.compare-row .delete-prod:hover {
    transform: scale(1.1);
}

.compare-final {
    border-radius: 6px;
    background: #1caca2;
    color: #fff !important;
    text-decoration: none;
    text-align: center;
    height: 30px;
    line-height: 30px;
    margin-top: 10px;
}

.compare-table {
    table-layout: fixed;
}

.compare-table .season-type {
    position: relative;
    float: left;
    width: 100%;
}

.compare-table .tips {
    color: #077ad9;
    border: 1px solid #b6b4b6;
    border-radius: 3px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    padding: 3px 5px;
    margin-left: 5px;
}

.compare-table .image-wrap {
    height: 120px;
    overflow: hidden;
}

.compare-table .image-wrap img {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.compare-table .grades-wrap .grade {
    width: 100%;
}

.disabled-input {
    opacity: .5;
}

/* @media screen and (max-width: 980px) {
    .compare-bar-right {
        top: 0;
        right: 0;
        width: 100%;
        z-index: 1006;
        border-radius: 0;
    }

    .compare-bar-right .prod-name {
        font-size: 11px;
        height: 27px;
        overflow: hidden;
    }

    .compare-bar-right .compare-final {
        width: 127px !important;
        position: relative;
        float: left;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        margin-top: 0;
        font-size: 15px;
        height: 25px;
        line-height: 25px;
    }

    .compare-row {
        width: 32% !important;
        margin-right: 2%;
        padding: 5px;
    }

    .compare-row:last-of-type {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .compare-row .img-wrap {
        height: 28px;
    }

    .tire-photo {
        max-width: 100% !important;
    }

    .mobie-view-compare-fix {
        padding-top: 74px;
    }

    .compare-btn {
        bottom: 73px;
        right: 0;
        height: 35px;
        line-height: 35px;
    }

    .compare-btn .icon {
        margin-top: 4px;
        margin-right: 5px;
    }
} */

.landing-wrap .green-btn:hover,
.landing-wrap .green-btn:focus {
    background: #FFBB00;
}

.landing-wrap .yellow-btn:hover,
.landing-wrap .yellow-btn:focus {
    background: #214753;
}

/* header .nav-link img {
    filter: brightness(0) saturate(100%) invert(69%) sepia(48%) saturate(1483%) hue-rotate(359deg) brightness(103%) contrast(107%);
} */

nav .nav-link:hover,
nav .nav-link:focus {
    color: #FFBB00;
}

nav .nav-link:hover img,
nav .nav-link:focus img {
    filter: brightness(0) saturate(100%) invert(69%) sepia(48%) saturate(1483%) hue-rotate(359deg) brightness(103%) contrast(107%);
}

header .menu:hover {
    color: #FFBB00;
}

header .menu:hover img {
    filter: brightness(0) saturate(100%) invert(69%) sepia(48%) saturate(1483%) hue-rotate(359deg) brightness(103%) contrast(107%);
}

.road-safety .buttons a:hover .icon,
.road-safety .buttons a:focus .icon {
    background: #4BA9AF;
}

.on-road .buttons a:hover .icon,
.on-road .buttons a:focus .icon {
    background: #214753;
}

.road-safety .buttons a:hover,
.road-safety .buttons a:focus {
    scale: 1.05;
}

.on-road .buttons a:hover,
.on-road .buttons a:focus {
    scale: 1.05;
}


.green-btn:hover,
.green-btn:focus,
.send-bnt:hover,
.send-bnt:focus,
.grey-btn:hover,
.grey-btn:focus {
    background: #4BA9AF;
}

.yellow-btn:hover,
.yellow-btn:focus,
.red-btn:hover,
.red-btn:focus {
    background: #214753;
}

.blue-btn:hover,
.your-ad-here:hover,
.your-ad-here:focus {
    background: #214753;
    color: white;
}

.grey-boxes-wrap .grey-box:hover,
.grey-boxes-wrap .grey-box:focus {
    scale: 1.05;
}

#appendHtml .see-more {
    transition: scale .1s ease-in;
}

#appendHtml .see-more:hover,
#appendHtml .see-more:focus {
    cursor: pointer;
    filter: brightness(0) saturate(100%) invert(23%) sepia(8%) saturate(2795%) hue-rotate(148deg) brightness(96%) contrast(90%);
    scale: 1.05;
}

footer .socials a:hover,
footer .socials a:focus {
    filter: brightness(1.3);
}

.services-wrap .change-location {
    transition: all .1s ease-in;
}

.services-wrap .change-location:hover,
.services-wrap .change-location:focus {
    color: #4BA9AF;
}

.services-wrap .change-location:hover img,
.services-wrap .change-location:focus img {
    filter: brightness(0) saturate(100%) invert(56%) sepia(79%) saturate(281%) hue-rotate(135deg) brightness(91%) contrast(88%);
}

.partners-wrap .bullet-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1rem;
    font-size: 18px;
    font-weight: 500;
}

.mobile-left-links {
    overflow-x: auto;
    height: 90px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 500;
    gap: 10px;
    border-bottom: 1px solid #E7EDF6;
}

.mobile-left-links a.selected {
    background: #FFBB00;
    border-radius: 10px;
    opacity: 1;
    padding: 5px;
}

header .right-links a:hover {
    color: #FFBB00;
}

header .right-links a:hover img {
    filter: brightness(0) saturate(100%) invert(69%) sepia(48%) saturate(1483%) hue-rotate(359deg) brightness(103%) contrast(107%);
}


.news-right-panel a {
    transition: all .1s ease-in;
}

.news-right-panel a:hover {
    color: #FFBB00;
}

.news-right-panel a img {
    transition: all .1s ease-in;
}

.news-right-panel a:hover img {
    scale: 1.05;
}

.search .s-submit img {
    transition: all 0.1s ease-in;
}

.search .s-submit:hover img {
    filter: brightness(0) saturate(100%) invert(23%) sepia(8%) saturate(2795%) hue-rotate(148deg) brightness(96%) contrast(90%);
    scale: 1.05;
}

.search .s-input:focus {
    animation: pulse-main 0.5s 1;
}

.user-cars-wrap .user-car:hover {
    opacity: 1;
}

ul.pagination {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: .5rem;
    align-items: center;
    justify-content: center;
    list-style: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

ul.pagination>li.page-item {
    width: 2.5em;
    height: 2.5em;
    border-radius: .5em;
    background-color: #214753;
    transition: all .1s ease-in;
    font-weight: 500;
}

ul.pagination>li.page-item a {
    color: #fff;
    font-weight: 500;
    width: 100%;
    height: 100%;
    display: grid;
    justify-content: center;
    align-content: center;
    text-decoration: none;
}

ul.pagination>li.page-item a[rel='next'] {
    border-radius: .5em;
    background: url(../img/arrow_slider_next.svg) no-repeat center #214753;
}

ul.pagination>li.page-item a[rel='prev'] {
    border-radius: .5em;

    background: url(../img/arrow_slider_prev.svg) no-repeat center #214753;
}

ul.pagination>li.page-item a[rel='next']:hover {
    background: url(../img/arrow_slider_next.svg) no-repeat center #4BA9AF;
}

ul.pagination>li.page-item a[rel='prev']:hover {
    background: url(../img/arrow_slider_prev.svg) no-repeat center #4BA9AF;
}

ul.pagination>li.page-item:hover {
    background-color: #4BA9AF;
}

ul.pagination>li.page-item.active {
    background-color: #4BA9AF;
    display: grid;
    justify-content: center;
    align-content: center;
}

ul.pagination>li.page-item.disabled {
    display: none;
}

.chat-box:hover {
    scale: 1.02;
}

.chat-box:hover .avatar img {
    opacity: 1;
}

.banner>.small-box .fixer {
    margin-bottom: 8px;
}

.banner>.small-box .grey-panel {
    position: relative;
}



.banner .small-box .img-wrap .img {
    object-fit: contain;
}

.banner .small-box .red-sticker {
    right: auto;
    left: 0;
    top: 68px;
    border-radius: 0 3px 3px 0;
    text-align: left;
    text-transform: uppercase;
}

.banner .small-box .title {
    padding: 18px 0 18px 10px;
}

.banner .small-box .brand-logo {
    margin-bottom: 12px;
    margin-left: 10px;
}

.banner .small-box .grey-panel .green-btn {
    text-transform: uppercase;
}

.banner .small-box .grey-panel .price {
    margin-bottom: 22px;
}

.banner .small-box .grey-panel .price .final-price {
    font-weight: 700;
    font-size: 24px;
    line-height: 22px;
    margin-left: 8px;
}

.banner .small-box .grey-panel .price .old-price {
    color: #F04E1F;
    text-decoration: line-through;
    margin-left: 8px;
}

.banner .small-box .fixer ul {
    font-weight: 400;
    font-size: 13px;
    padding-left: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
}

.banner .small-box .fixer ul li {
    margin-bottom: 5px;
}

.shop-section.gsc_thin_scroll .scroll-innner {
    display: flex;
    gap: 1rem;
}

.shop-section.gsc_thin_scroll .banner {
    height: auto;
    width: 260px;
    margin: 0;
}

.shop-section.gsc_thin_scroll .banner .small-box .title {
    min-height: 80px;
}

.shop-section.gsc_thin_scroll .banner .small-box .fixer {
    flex-grow: 1;
}

.shop-section.gsc_thin_scroll .banner .small-box {
    height: 100%;
}

.feedback-btn {
    position: fixed;
    right: 10px;
    bottom: 15px;
    z-index: 1000;
    /* padding: 5px 10px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-radius: 6px;*/
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .35), 0 2px 2px 0 rgba(0, 0, 0, .24);
}

.feedback-btn .icon {
    width: 25px;
    height: 25px;
    background: url("../img/feedback_buble.svg") no-repeat;
    background-size: 25px;
    z-index: 2;
    position: relative;
}

.feedback-btn .text {
    color: #fff;
    margin-left: 10px;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

#app-loader img {
    -webkit-animation: rotate 1.85s;
    animation: rotate 1.85s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

@-webkit-keyframes rotate {
    100% {
        -ms-transform: rotateY(360deg);
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

@keyframes rotate {
    100% {
        -ms-transform: rotateY(360deg);
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

.news-view .title-div {
    border-bottom: 3px solid #E7EDF6;
    position: relative;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 15px;
    font-size: 16px;
}

.news-view .title-div::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 456px;
    height: 3px;
    background: #FFBB00;
    content: "";
}

.top-bar.heading-section {
    margin-top: 45px;
    border-bottom: 3px solid #E7EDF6;
    position: relative;
    margin-bottom: 25px;
    text-transform: uppercase;

    padding-bottom: 15px;
    font-size: 16px;
}

.top-bar.heading-section::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 456px;
    height: 3px;
    background: #FFBB00;
    content: "";
}

.top-bar h1 {
    font-size: 16px;
    font-weight: 600;
}

.list-box {
    float: left;
    width: 100%;
    border-bottom: 1px solid #dcdcdc;
    position: relative;
    padding: 10px;
    display: table;
    width: 100%;
    background: #fff;
    border-radius: 5px;
}

.list-box .display-cell {
    display: table-cell;
    vertical-align: middle;
    padding: 0 3px;
}

.list-box .smaller-txt {
    font-size: 12px;
    opacity: 0.6;
    display: block;
    margin-bottom: 5px;
    line-height: 19px;
}

.place-info .smaller-txt {
    margin-top: 5px;
    margin-bottom: 0;
    line-height: 14px;
    height: 14px;
    overflow: hidden;
}

.list-box .tumb {
    width: 50px;
    height: 50px;
    overflow: hidden;
    float: left;
    margin-right: 10px;
    padding: 0;
}

@keyframes dotsAnimation {

    0%,
    20% {
        content: ".";
    }

    40%,
    60% {
        content: ".. ";
    }

    80%,
    100% {
        content: "...";
    }
}

.incoming-msg {
    transition: all 350ms ease-in;
}

.wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease-out;
}

.wrapper.is-open {
    grid-template-rows: 1fr;
}

.inner {
    overflow: hidden;
}

.text-dots::after {
    content: "";
    display: inline-block;
    height: 25px;
    font-size: 24px;
    animation: dotsAnimation 2s infinite;
    white-space: nowrap;
}


.check-container-title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem;
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, #FFBB00 30%, #E7EDF6 30%) 1;
    box-sizing: border-box;
    padding-bottom: .75em;
    margin-bottom: 1.5rem;
}

.check-container {
    min-height: 50px;
    border-bottom: 1px solid #EBEEF3;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.check-date-not-found {
    color: #F04E1F;
}

.check-loader {
    width: 1em;
    height: 1em;
    border-top-color: #eee;
    border-left-color: #eee;
    border-right-color: #eee;
}

.vignette-card {
    font-weight: normal;
    display: grid;
    gap: .5rem;
}

.vignette-card[data-status="1"] span[data-select="status"] {
    color: #47C63C;
    font-weight: bold;
}

.vignette-card[data-status="2"] span[data-select="status"] {
    color: #FFBB00;
    font-weight: bold;
}