
ul {
    margin: 0;
    padding: 0;
}
h1,h2,h3,p {margin:0;font-weight: normal;}
input, textarea, button {
    -webkit-border-radius:0;
    border-radius:0;
    padding: 0;
    outline: none;
    border: 0;
}
button, button:focus {
   outline: none;
   border: 0;
   background: none;
   cursor: pointer;
}
*,
*:before,
*:after {
    box-sizing: border-box;
}
a {
    text-decoration: underline;
    color: #214753;
    transition: .2s linear all;
}
a:active, a:focus, a:hover {
 outline: none;
 color: #214753;
 text-decoration: none;
}
.underline-none {
    text-decoration: none;
}
.underline-hover:hover{
    text-decoration: underline;
}
.clearfix {
   zoom:1;}
.clearfix:after {
   content: "";
   display: block;
   clear: both;
   height: 0;
}
.container {
    width: 1320px;
    margin: 0 auto;
}

/* #Helper classes
================================================== */
.left {
    float: left;
}
.right {
    float: right;
}
.d-flex {
  display: flex;
}
.flex-row {
  flex-direction: row ;
}

.flex-column {
  flex-direction: column ;
}

.flex-row-reverse {
  flex-direction: row-reverse ;
}

.flex-column-reverse {
  flex-direction: column-reverse ;
}

.flex-grow-0 {
  flex-grow: 0 ;
}

.flex-grow-1 {
  flex-grow: 1 ;
}

.flex-shrink-0 {
  flex-shrink: 0 ;
}

.flex-shrink-1 {
  flex-shrink: 1 ;
}

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

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

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

.justify-content-start {
  justify-content: flex-start ;
}

.justify-content-end {
  justify-content: flex-end ;
}

.justify-content-center {
  justify-content: center ;
}

.justify-content-between {
  justify-content: space-between ;
}

.justify-content-around {
  justify-content: space-around ;
}

.justify-content-evenly {
  justify-content: space-evenly ;
}

.align-items-start {
  align-items: flex-start ;
}

.align-items-end {
  align-items: flex-end ;
}

.align-items-center {
  align-items: center ;
}

.align-items-baseline {
  align-items: baseline ;
}

.align-items-stretch {
  align-items: stretch ;
}

.align-content-start {
  align-content: flex-start ;
}

.align-content-end {
  align-content: flex-end ;
}

.align-content-center {
  align-content: center ;
}

.align-content-between {
  align-content: space-between ;
}

.align-content-around {
  align-content: space-around ;
}

.align-content-stretch {
  align-content: stretch ;
}

.align-self-auto {
  align-self: auto ;
}

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

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

.align-self-center {
  align-self: center ;
}

.align-self-baseline {
  align-self: baseline ;
}

.align-self-stretch {
  align-self: stretch ;
}

.grid-autosize {
    --grid-max-col-count: 4;
    --grid-min-col-size: 280px;
    --grid-gap: .825rem;

    /* calculations, do not touch */
    --grid-col-size-calc: calc((100% - var(--grid-gap) * var(--grid-max-col-count)) / var(--grid-max-col-count));
    --grid-col-min-size-calc: min(100%, max(var(--grid-min-col-size), var(--grid-col-size-calc)));

    display: grid;
    gap: var(--grid-gap);
    /* to keep columns auto-fill */
    /* to stretch auto-fit */
    grid-template-columns: repeat(auto-fill, minmax(var(--grid-col-min-size-calc), 1fr));
}

.bold {
    font-weight: bold;
}
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.invisible {
    display: none;
}
.visible {
    display: block !important;
}
.center {
    text-align: center;
}
.pointer {
    cursor: pointer;
}
.w100 {
    width: 100%;
}
.green {
    color: #214753;
}
.mb20 {
    margin-bottom: 20px;
}
.mb10 {
    margin-bottom: 10px;
}
.rotate_180_deg {
    -webkit-transform: rotate(180deg) !important;
    transform: rotate(180deg) !important;
}
.upper {
    text-transform: uppercase;
}

.gsc_thin_scroll::-webkit-scrollbar {
    height: 5px;
    width: 3px;
}
.gsc_thin_scroll::-webkit-scrollbar-thumb {
    background: #214753;
    -webkit-border-radius: 5px;
}
.gsc_thin_scroll::-webkit-scrollbar-track {
    background: #EFF3F8;
}

/* #Site styles
================================================== */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #214753;
    overflow-x: hidden;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(136, 152, 170, 0.15);
    z-index: 9999;
    width: 100%;
}
header .menu {
    height: 70px;
    font-size: 14px;
    font-weight: 600;
}
header .logo {
    height: 70px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
header .right-links a {
    float: left;
    height: 70px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 24px;
    transition: all .1s ease-in;
}
header .right-links a:last-of-type {
    margin-right: 0;
}
.noty-count {
    position: absolute;
    right: -7px;
    top: 0px;
    border-radius: 50%;
    background: #FFBB00;
    border: 1px solid #FFFFFF;
    text-align: center;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 10px;
    color: #214753;
    font-weight: 600;
}
.iphone_fix {
    overflow: hidden !important;
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #E7EDF6;
    padding: 20px;
    overflow: auto;
    overflow-x: hidden;
    transition: transform .2s ease-in-out;
    /*visibility: hidden;*/
    transform: translateX(-100%);
}
nav .container {
    background: #fff;
    padding-bottom: 28px;
}
nav.nav-open {
    transform: none;
    /*visibility: visible;*/
    box-shadow: 0px 0px 10px rgb(136 152 170 / 15%);
}
nav .nav-link {
    border-bottom: 1px solid #EBEEF3;
    color: #214753;
    padding: 10px 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    background: #fff;
    padding-left: 10px;
    min-height: 45px;
}
nav .nav-link:last-of-type {
    border: 0;
}
nav .nav-link img {
    margin-right: 10px;
}
nav .nav-link.new {
    background: #4BA9AF;
    border-radius: 3px;
    color: #fff;
    margin-bottom: 0 !important;
}
nav .nav-link.new img {
    margin-left: 10px;
}
nav .nav-title {
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 3px solid #E7EDF6;
    padding-bottom: 15px;
    margin-top: 20px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 10px;
}
nav .nav-title::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 15%;
    height: 3px;
    background: #FFBB00;
    content: "";
}
.info-panel-wrap {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #E7EDF6;
    transition: transform .2s ease-in-out;
    box-shadow: 0px 0px 10px rgb(136 152 170 / 15%);
    transform: translateX(100%);
}
.info-panel-wrap.noty-open {
    transform: none;
    /*visibility: visible;*/
    box-shadow: 0px 0px 10px rgb(136 152 170 / 15%);
}
.info-panel-wrap.msg-open {
    transform: none;
    /*visibility: visible;*/
    box-shadow: 0px 0px 10px rgb(136 152 170 / 15%);
}
.info-panel-wrap .white-background {
    background: #fff;
    height: calc(100vh - 100px);
    overflow: auto;
    overflow-x: hidden;
}
.info-panel-wrap.messages-panel .white-background {
    overflow: unset;
    overflow-x: visible;
}
.info-panel-wrap .white-background .top-bar {
    height: 70px;
    border-bottom: 3px solid #E7EDF6;
    position: relative;
    margin-bottom: 30px;
}
.info-panel-wrap .white-background .top-bar::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 543px;
    height: 3px;
    background: #FFBB00;
    content: "";
}
.info-panel-wrap .white-background .top-bar .title {
    text-transform: uppercase;
    font-weight: 600;
}
.info-panel-wrap .white-background .top-bar .links a {
    font-size: 14px;
    font-weight: 500;
    color: #214753;
    margin-left: 15px;
    text-decoration: none;
}
.info-panel-wrap .white-background .top-bar .links a.selected {
    color: #FFBB00;
}
.info-panel-wrap .back {
    height: 60px;
}
.noty-row {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #EBEEF3;
}
.noty-row[data-read="1"] {
    opacity: .6;
    transition: all 150ms ease-in;
}
.noty-row[data-read="1"]:hover {
    opacity: 1;
}
.noty-row:last-of-type {
    border: 0;
}
.noty-row .date {
    font-weight: 600;
    position: relative;
    border-bottom: 3px solid #E7EDF6;
    padding-bottom: 10px;
    margin-bottom: 18px;
}
.noty-row .date::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 174px;
    height: 3px;
    background: #FFBB00;
    content: "";
}
.noty-row .contractor {
    font-weight: 700;
    color: #4BA9AF;
    padding-left: 20px;
    margin-left: 20px;
    position: relative;
}
.noty-row .contractor::before {
    height: 30px;
    width: 1px;
    position: absolute;
    top: -6px;
    left: 0;
    background: #214753;
    content: "";
}
.noty-row .text p {
    margin-bottom: 15px;
}
.chats-box {
    float: left;
    width: 320px;
    cursor: pointer;
    height: calc(100vh - 242px);
    overflow: auto;
    padding-right: 10px;
}
.chat-box {
    height: 80px;
    border: 1px solid #E7EDF6;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
    transition: all .1s ease-in;
}
/* .chat-box:nth-child(2n+1) {
    background: #E7EDF6;
} */
.chat-box.selected-chat::after {
    position: absolute;
    top: 10px;
    left: 0;
    width: 2px;
    height: 60px;
    background: #FFBB00;
    border-radius: 4px;
    content: "";
}
.chat-box.selected-chat {
    background: #E7EDF6;
}
.chat-box.selected-chat .avatar {
    border: 1px solid #fff;
}
.chat-box.selected-chat .avatar img{
    opacity: 1;
}
/* .messages-panel:nth-child(2n+1) .avatar {
    border: 1px solid #fff;
} */
.messages-panel .avatar {
    width: 60px;
    height: 60px;
    background: #EFF3F8;
    border-radius: 20px;
    position: relative;
}
.messages-panel .avatar.is-admin {
    background: #fff;
    border: 1px solid #EFF3F8;
}
.messages-panel .avatar.is-admin img {
    opacity: 1;
}
.messages-panel .avatar .offline {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #F04E1F;
    border-radius: 50%;
}
.messages-panel .avatar .online {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #4BA9AF;
    border-radius: 50%;
}
.messages-panel .avatar img {
    opacity: 0.4;
    transition: all .1s ease-in;
}
.chat-box .text-part {
     width: calc(100% - 74px);
     padding-top: 9px
}
.chat-box .text-part .name {
    font-size: 14px;
    font-weight: 500;
}
.chat-box .text-part .time {
    font-size: 10px;
    color: #979797;
}
.chat-box .text-part .the-msg {
    font-size: 13px;
    margin-top: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.messages-box {
    float: right;
    width: calc(100% - 345px);
    height: calc(100vh - 287px);
    overflow: auto;
    overflow-x: hidden;
    padding-right: 10px;
}
.incoming-msg {
    margin-bottom: 15px;
}
.incoming-msg .msg {
    width: 392px;
    padding: 18px 14px;
    background: #EFF3F8;
    border-radius: 4px;
    margin-left: 20px;
}
.messages-box .name {
    font-size: 14px;
    font-weight: 500;
}
.messages-box .time {
    font-size: 10px;
    color: #979797;
}
.messages-box .text {
    font-size: 13px;
    line-height: 20px;
    margin-top: 8px;
}
.my-msg {
    margin-bottom: 15px;
}
.my-msg .msg {
    width: 392px;
    padding: 18px 14px;
    background: rgba(75, 169, 175, 0.22);
    border-radius: 4px;
}
.send-message {
    width: calc(100% - 345px);
    padding: 0 12px;
    background: #fff;
    height: 56px;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.send-message input {
    min-height: 35px;
    padding: 8px 12px 7px;
    height: 35px;
    outline: none;
    background: #f1f0f0;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 15px;
    color: #252829;
    width: calc(100% - 105px);
    border: 0;
}
main {
    margin-top: 70px;
}
.on-road-wrap {
    height: 568px;
    background: #FEB402;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
}
.on-road-wrap::after {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 987px;
    height: 100%;
    background: url(../img/big_mask.svg) no-repeat right center;
    background-size: 1514px;
    content: "";
}
.on-road-wrap .container {
    position: relative;
    z-index: 1;
}
.search {
    margin-top: 25px;
}
.search .s-input {
    height: 50px;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    color: #828282;
    font-weight: 500;
    padding-left: 15px;
    padding-right: 60px;
}
.search .s-submit {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    height: 50px;
    width: 50px;
}
.on-road {
    float: left;
    position: relative;
    width: 100%;
    margin-top: 30px;
    padding: 0 60px;
    min-height: 400px;
    background: url("../img/on_road_back.png") no-repeat center;
}
.on-road h1 {
    font-size: 64px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    margin-top: 51px;
    text-transform: uppercase;
}
.on-road h2 {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    margin-top: 10px;
    text-transform: uppercase;
}
.on-road .buttons {
    position: absolute;
    bottom: 33px;
    left: 0;
    width: 100%;
    padding: 0 60px;
    gap: 20px;
}
.on-road .buttons a {
    flex: 0 1 23.75%;
}
.on-road .buttons a .icon {
    float: left;
    width: 100px;
    background: #FEB402;
    height: 100%;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    transition: all .1s ease-in;
}
.on-road .buttons a .text {
    float: left;
    height: 100%;
    width: calc(100% - 100px);
    background: #fff;
    font-weight: 500;
    line-height: 20px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 10px;
}
.big-title {
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.grey-boxes-wrap {
    gap: 20px;
}
.grey-boxes-wrap .grey-box {
    flex: 0 1 15.4%;
    background: #E7EDF7;
    border-radius: 3px;
    min-height: 120px;
    padding: 10px 15px;
    position: relative;
}
.grey-boxes-wrap .grey-box .text {
    font-weight: 500;
    position: absolute;
    bottom: 20px;
    left: 15px;
    padding-right: 10px;
}
.yellow-sticker {
    position: absolute;
    top: 18px;
    right: 0;
    background: #FEB402;
    border-radius: 3px 0px 0px 3px;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    padding: 10px 0;
    width: 127px;
    text-align: center;
    line-height: 14px;
}
.red-sticker {
    position: absolute;
    top: 18px;
    right: 0;
    background: #F04E1F;
    border-radius: 3px 0px 0px 3px;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    padding: 10px 10px;
    text-align: center;
    line-height: 14px;
}
.road-safety-wrap {
    margin-bottom: 48px;
    margin-top: 42px;
}
.road-safety-wrap {
    gap: 20px;
}
.road-safety {
    flex: 0 0 66%;
    min-height: 374px;
    background: url(../img/safety_back.png) no-repeat center;
    background-size: cover;
    padding: 40px 25px 54px 25px;
}
.road-safety .buttons {
    margin-top: 40px;
    column-gap: 20px;
    row-gap: 40px;
}
.road-safety .buttons a {
    flex: 0 1 48.7%;
}
.road-safety .buttons a .icon {
    float: left;
    width: 100px;
    background: #214753;
    height: 100%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    transition: all .1s ease-in;
}
.road-safety .buttons a .text {
    float: left;
    height: 100%;
    width: calc(100% - 100px);
    background: #fff;
    font-weight: 500;
    line-height: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 21.5px 20px;
}
.index-banner {
    flex: 0 1 34%;
    min-height: 374px;
    background: #EBEEF3;
}
.index-banner h2 {
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    font-size: 16px;
    margin-top: 18px;
    margin-bottom: 15px;
}
.index-banner .banner {
    width: 300px;
    height: 250px;
    overflow: hidden;
    margin-bottom: 15px;
}
.your-ad-here {
    height: 41px;
    background: #CACED5;
    border-radius: 4px;
    font-weight: 500;
    color: #fff;
    padding: 0 20px;
}
.shop-section {
    overflow-x: auto;
    padding-bottom: 16px;
    padding-left: 5px;
    padding-top: 5px;
    margin-bottom: 46px;
}
.shop-section .scroll-innner {
    width: max-content;
}
.shop-box {
    width: 350px;
    float: left;
    margin-right: 22px;
    background: #FFFFFF;
    box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}
.shop-box:last-of-type {
    margin-right: 7px;
}
.shop-box img {
    height: 316px;
    width: 100%;
    object-fit: contain;
}
.shop-box .description {
    height: 120px;
    background: #E7EDF6;
    padding: 0 12px;
}
.shop-box .description p {
    float: left;
    width: 166px;
    font-weight: 500;
    line-height: 20px;
    height: 42px;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.green-btn {
    height: 41px;
    background: #214753;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #fff !important;
    padding: 0 10px;
    transition: all .1s ease-in;
}
.yellow-btn {
    height: 41px;
    background: #FFBB00;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #fff !important;
    padding: 0 22px;
    transition: all .1s ease-in;
}
.red-btn {
    height: 41px;
    background: #F04E1F;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #fff !important;
    padding: 0 10px;
    transition: all .1s ease-in;
}
.grey-btn {
    height: 41px;
    background: #CACED4;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #fff !important;
    padding: 0 10px;
    transition: all .1s ease-in;
}
.blue-btn {
    height: 41px;
    background: #4BA9AF;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    padding: 0 20px;
    transition: all .1s ease-in;
}
.btn-dropdown {
    position: absolute;
    top: 38px;
    left: 0;
    background: #214753;
    border-radius: 0 0 4px 4px;
    padding-top: 17px;
    width: 100%;
    z-index: 10;
}
.btn-dropdown a {
    color: #fff;
    float: left;
    clear: both;
    padding-left: 27px;
    margin-bottom: 15px;
    text-decoration: none;
}
.btn-dropdown a:hover {
    text-decoration: underline;
}
.long-box {
    min-height: 270px;
    box-shadow: 0px 0px 32px rgba(136, 152, 170, 0.15);
    border-radius: 0px 6px 6px 0px;
    margin-bottom: 30px;
}
.long-box .img-wrap {
    flex: 0 0 300px;
}
.long-box .img-wrap img {
    float: left;
    width: 300px;
    min-height: 270px;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}
.long-box .text-part {
    flex: 0 0 calc(100% - 300px);
    height: inherit;
    padding: 50px 30px 0 30px;
    position: relative;
}
.long-box .text-part .fixer {
    margin-bottom: 115px;
}
.long-box .medium-title {
    border-top: 3px solid #FFBB00;
    border-bottom: 3px solid #FFBB00;
    padding: 10px 0;
}
.long-box .medium-title span {
    width: calc(100% - 30px);
}
.long-box .text-part .address {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 13px;
}
.long-box .grey-panel-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-left: 30px;
}
.long-box .grey-panel {
    width: 100%;
    background: #E7EDF6;
    padding: 22px 28px 22px 13px;
    border-bottom-right-radius: 6px;
}
.medium-title {
    font-weight: 500;
    font-size: 24px;
    text-transform: uppercase;
}
.small-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.raiting img {
    margin-right: 3px;
}
.gap-holder {
    column-gap: 20px;
    row-gap: 34px;
}
.small-box {
    flex: 0 0 315px;
    background: #FFFFFF;
    box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    position: relative;
}
.small-box .img-wrap {
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.small-box .img-wrap .img {
    float: left;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: all .2s ease-in;
}
.small-box:hover .img-wrap .img {
    scale: 1.05;
}
.small-box:hover .title {
    color:#FFBB00;
}
.small-box:hover .title img {
    filter: brightness(0) saturate(100%) invert(69%) sepia(48%) saturate(1483%) hue-rotate(359deg) brightness(103%) contrast(107%);
}
.small-box .title {
    border-top: 3px solid #FFBB00;
    border-bottom: 3px solid #FFBB00;
    padding: 10px 0 10px 10px;
    font-weight: 700;
    margin-bottom: 8px;
    text-decoration: none;
}
.small-box .title span {
    width: calc(100% - 30px);
    /*
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;*/
}
.small-box .address {
    padding-left: 10px;
    margin-bottom: 15px;
    font-size: 13px;
}
.small-box .address span {
    width: calc(100% - 20px);
}
.small-box .raiting {
    padding: 0px 10px 0px 10px;
    width: 100%;
}
.small-box .raiting a {
    margin-left: auto;
}
.small-box .raiting a img{
    max-width:100%;
    max-height:40px; 
    object-fit:contain
}
.small-box .grey-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #E7EDF6;
    padding: 22px 11px 22px 11px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
}
.small-box .fixer {
    margin-bottom: 100px;
    width: 100%;
}
footer {
    background: #214753;
    padding: 50px 62px 53px 58px;
    margin-top: 80px;
}
footer .gap-holder {
    column-gap: 90px;
}
.f-column-big {
    flex: 0 0 472px;
}
.f-column-normal {
    flex: 0 0 322px;
}
.f-links {
    color: #EFF3F8 !important;
    margin-bottom: 20px;
    text-decoration: none;
    line-height: 20px;
}
.f-links:hover {
    text-decoration: underline;
}
.f-links:last-of-type {
    margin-bottom: 0;
}
footer .text {
    font-size: 12px;
    line-height: 15px;
    color: #EFF3F8;
    margin-top: 15px;
}
footer .feedback {
    text-transform: uppercase;
    color: #EFF3F8;
    line-height: 25px;
    margin-top: 44px;
    margin-bottom: 25px;
}
footer .heading {
    color: #EFF3F8;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}
footer .socials {
    margin-top: 25px;
}
footer .socials a {
    margin-right: 4px;
}
.bottom-footer {
    height: 40px;
    background: #FFBB00;
    font-size: 13px;
    color: #214753;
}
.bottom-footer a {
    margin-right: 20px;
    text-decoration: none;
}
.bottom-footer a:last-of-type {
    margin-right: 0;
}
.bottom-footer a:hover {
    text-decoration: underline;
}
.news-boxes-wrap {
    gap: 20px;
}
.news-boxes-wrap .n-row {
    flex: 0 0 50%;
}

/*============ NEWS BOXES STYLES FROM PREV DEVELOPMENT START ============*/
.n-row {
    margin-bottom: 44px;
    box-shadow: 0px 0px 32px rgba(136, 152, 170, 0.15);
    border-radius: 3px;
    height: min-content;
}
.n-title {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
}
.n-post-content {
    background: #FFFFFF;
    box-shadow: 0px 0px 32px rgba(136, 152, 170, 0.15);
    border-radius: 3px;
    padding: 13px 14px 0 14px;
}
.n-post-box .n-img-wrap {
   /* height: 254px; */
    background: rgb(37, 35, 36);
}
.n-post-box .video-container-top {
    height: 254px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.n-post-box .video-container-top iframe {
    height: 254px !important;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.n-post-box .n-img-wrap img {
    float: left;
    width: 100%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.n-post-box .text-sm {
    margin-bottom: 15px;
    line-height: 24px;
    text-decoration: none;
}
.n-post-box .text-sm:hover {
    color: #252829;
    text-decoration: none;
}
.n-post-box .n-post-bottom {
    border-top: 0.5px solid #D8D8D8;
    min-height: 39px;
}
.n-post-box .date {
    font-size: 10px;
    color: #252829;
    margin-top: 15px;
}
.date-new {
    font-size: 14px;
    color: #252829;
    margin-left: 7px;
    margin-top: 2px;
}
.n-post-box .n-post-text {
    font-size: 14px;
    line-height: 18px;
    margin-top: 10px;
}
.n-post-box .n-post-text p {
    float: left;
    width: 100%;
    margin-bottom: 15px;
}
.fb-like-icon {
    width: 18px;
    height: 19px;
    background: url(../img/like.svg) no-repeat center;
    background-size: 18px;
    margin-top: 10px;
    position: relative;
}
.fb-love-icon {
    width: 18px;
    height: 19px;
    background: url(../img/love.svg) no-repeat center;
    background-size: 18px;
    margin-top: 10px;
    position: relative;
}
.fb-care-icon {
    width: 18px;
    height: 19px;
    background: url(../img/care.svg) no-repeat center;
    background-size: 18px;
    margin-top: 10px;
    position: relative;
}
.fb-haha-icon {
    width: 18px;
    height: 19px;
    background: url(../img/haha.svg) no-repeat center;
    background-size: 18px;
    margin-top: 10px;
    position: relative;
}
.fb-wow-icon {
    width: 18px;
    height: 19px;
    background: url(../img/wow.svg) no-repeat center;
    background-size: 18px;
    margin-top: 10px;
    position: relative;
}
.fb-sad-icon {
    width: 18px;
    height: 19px;
    background: url(../img/sad.svg) no-repeat center;
    background-size: 18px;
    margin-top: 10px;
    position: relative;
}
.fb-angry-icon {
    width: 18px;
    height: 19px;
    background: url(../img/angry.svg) no-repeat center;
    background-size: 18px;
    margin-top: 10px;
    position: relative;
}
.reactions .like-num {
    margin-top: 9px;
    margin-left: 8px;
}
.reactions:hover .like-num {
    text-decoration: underline;
}
.like-section {
    border-top: 0.5px solid #D8D8D8;
    padding-top: 5px;
    padding-bottom: 5px;
}
.like-section .make-comment {
    background: url(../img/comment2.svg) no-repeat center left;
    background-size: 17px;
    padding-left: 24px;
    margin-left: 50px;
    font-size: 16px;
    text-decoration: none !important;
    height: 28px;
    line-height: 28px;
     -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.like-section .share-it {
    background: url(../img/share.svg) no-repeat center left;
    background-size: 17px;
    padding-left: 22px;
    margin-left: 50px;
    font-size: 16px;
    text-decoration: none !important;
    height: 28px;
    line-height: 28px;
     -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.like-section .like {
    background: url(../img/fb_like_s.svg) no-repeat center left;
    background-size: 16px;
    padding-left: 22px;
    font-size: 16px;
    text-decoration: none !important;
    height: 28px;
    line-height: 28px;
     -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.like-section .like:hover .reactions-round {
    display: block ;
    bottom: 25px;
}
.reactions-round {
    position: absolute;
    bottom: 5px;
    left: -12px;
    height: 47px;
    width: 322px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0px 2px 6px rgb(0 0 0 / 19%);
    display: none;

}
.reactions-round .fb-like-icon {
    width: 37px;
    height: 37px;
    background: url(../img/like.svg) no-repeat center;
    background-size: 37px;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 3px;
}
.reactions-round .fb-love-icon {
    width: 38px;
    height: 37px;
    background: url(../img/love.svg) no-repeat center;
    background-size: 37px;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 3px;
}
.reactions-round .fb-care-icon {
    width: 38px;
    height: 37px;
    background: url(../img/care.svg) no-repeat center;
    background-size: 37px;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 3px;
}
.reactions-round .fb-haha-icon {
    width: 38px;
    height: 37px;
    background: url(../img/haha.svg) no-repeat center;
    background-size: 37px;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 3px;
}
.reactions-round .fb-wow-icon {
    width: 38px;
    height: 37px;
    background: url(../img/wow.svg) no-repeat center;
    background-size: 37px;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 3px;
}
.reactions-round .fb-sad-icon {
    width: 38px;
    height: 37px;
    background: url(../img/sad.svg) no-repeat center;
    background-size: 37px;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 3px;
}
.reactions-round .fb-angry-icon {
    width: 38px;
    height: 37px;
    background: url(../img/angry.svg) no-repeat center;
    background-size: 37px;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 3px;
}
.reactions-round a:hover {
    transform: scale(1.2);
}
.comments-count {
    color: #252829;
    height: 24px;
    margin-top: 9px;
    line-height: 23px;
    text-decoration: none;
}
.comments-section .send-message {
    min-height: 35px;
    padding: 8px 12px 7px;
    height: auto;
    outline: none;
    background: #f1f0f0;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 15px;
    color: #252829;
    width: calc(100% - 105px);
    border: 0;
}
.comments-section .send-message[contenteditable]:empty::before {
    content: "Напишете коментар...";
    font-size: 15px;
    color: #252829;
}
.comments-section .send-message-wrap {
    border-top: 0.5px solid #D8D8D8;
    border-left: 0;
    border-right: 0;
    padding: 0;
    height: auto;
    margin-bottom: 10px;
}
.comments-section .outgoing-msg-inner {
    padding-left: 0;
}
.comments-section .outgoing-msg .msg {
    clear: both;
    padding: 8px 12px 8px;
}
.comments-section .outgoing-msg .msg .u-name {
    font-weight: bold;
    margin-bottom: 4px;
    clear: both;
    font-size: 16px;
}
.comments-section .outgoing-msg .date {
    margin-top: 0;
    padding-left: 12px;
}
.comments-section .answer {
    font-size: 13px;
    font-weight: bold;
    margin-left: 12px;
}
.comments-section .outgoing-msg-inner .send-message-wrap {
    border: 0;
    padding-left: 40px;
    margin-bottom: 0;
}
.comments-section .outgoing-msg-inner .send-message {
    margin-top: 5px;
}
.comments-section .outgoing-msg-inner .send-bnt {
    margin-top: 5px;
}
.comments-section .the-answer {
    padding-left: 40px;
    margin-top: 5px;
    position: relative;
}
.comments-section .the-answer-second {
    padding-left: 80px;
    margin-top: 5px;
}
.comments-section .the-answer .msg {
    position: relative;
}
.send-bnt {
    width: 90px;
    height: 35px;
    background: #214753;
    border-radius: 5px;
    background-size: 19px;
    border: 0;
    margin-top: 10px;
}
.like-num {
    color: #252829;
    height: 24px;
    line-height: 23px;
    margin-top: 9px;
}
.like-icon.active {
    background: url(../img/new_wall/heart_active.svg) no-repeat center;
}
.comment-icon {
    width: 24px;
    height: 24px;
    background: url(../img/new_wall/comments.svg) no-repeat center;
    margin-top: 9px
}
.violations-badge {
    position: absolute;
    width: 164px;
    height: 82px;
    top: -12px;
    right: -55px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: 0px 0px 32px rgba(136, 152, 170, 0.8);
}
.violations-badge::after {
    position: absolute;
    top: 22px;
    left: 56px;
    width: 50px;
    height: 50px;
    background: url(../img/scared.svg) no-repeat;
    background-size: 50px;
    content: "";
    transform: rotate(-45deg);
}
.jokes-badge {
    position: absolute;
    width: 164px;
    height: 82px;
    top: -12px;
    right: -55px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: 0px 0px 32px rgba(136, 152, 170, 0.8);
}
.jokes-badge::after {
    position: absolute;
    top: 22px;
    left: 56px;
    width: 50px;
    height: 50px;
    background: url(../img/laughing.svg) no-repeat;
    background-size: 50px;
    content: "";
    transform: rotate(-45deg);
}
.watch-video-badge {
    position: absolute;
    width: 164px;
    height: 82px;
    top: -12px;
    right: -55px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: 0px 0px 32px rgba(136, 152, 170, 0.8);
}
.watch-video-badge::after {
    position: absolute;
    top: 22px;
    left: 56px;
    width: 50px;
    height: 50px;
    background: url(../img/watch_video.svg) no-repeat;
    background-size: 50px;
    content: "";
    transform: rotate(-45deg);
}
.news-badge {
    position: absolute;
    width: 164px;
    height: 82px;
    top: -12px;
    right: -55px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: 0px 0px 32px rgba(136, 152, 170, 0.8);
}
.news-badge::after {
    position: absolute;
    top: 22px;
    left: 56px;
    width: 50px;
    height: 50px;
    background: url(../img/news2.svg) no-repeat;
    background-size: 50px;
    content: "";
    transform: rotate(-45deg);
}
/*============ NEWS BOXES STYLES FROM PREV DEVELOPMENT END ============*/

.back-panel {
    background: #E7EDF6;
}
.back-panel .back {
    min-height: 60px;
}
.user-cars-wrap .user-car {
    height: 50px;
    font-size: 12px;
    font-weight: 600;
    padding: 0 10px;
    margin-right: 7px;
    opacity: 0.5;
    text-decoration: none;
}
.user-cars-wrap .user-car:last-of-type {
    margin-right: 0;
}
.user-cars-wrap .user-car.selected {
    background: #FFBB00;
    border-radius: 10px;
    opacity: 1;
}
.search-tyres-wrap {
    min-height: 462px;
    background: url(../img/search_tyres_back.jpg) no-repeat center;
    background-size: cover;
    margin-bottom: 45px;
}
.search-tyres-wrap .search-by-size {
    flex: 0 0 838px;
    min-height: 462px;
    background: rgba(255, 255, 255, 0.85);
    position: relative;
}
.search-tyres-wrap .search-by-size::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(33, 71, 83, 0.6);
    transition: .2s linear all;
}
.search-tyres-wrap .search-by-size.active::after {
    opacity: 0;
    z-index: -1;
}
.search-tyres-wrap .inner-holder {
    padding: 25px 15px 50px 15px;
}
.search-tyres-wrap .search-by-size .tab-btn {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    height: 55px;
    background: #214753;
    width: 100%;
    pointer-events: none;
}
.search-tyres-wrap .search-by-size .text {
    margin-bottom: 63px;
}
.search-tyres-wrap .text {
    font-weight: 500;
}
.search-tyres-wrap .search-by-size .sizes-dropdowns {
    flex: 0 0 150px;
    padding-top: 30px;
}
.search-tyres-wrap .search-by-size .selects-wrap {
    margin-bottom: 22px;
}
.search-tyres-wrap .search-by-size .selects-wrap:last-of-type {
    margin-bottom: 0;
}
.search-tyres-wrap .search-by-size .select2-container--default .select2-selection--single {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 2px solid #FFBB00;
    background: none;
    border-radius: 0;
    height: 26px;
    box-shadow: none;
}
.search-tyres-wrap .search-by-size .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal;
    font-size: 14px;
    font-weight: 500;
    padding-left: 0;
}
.search-tyres-wrap .search-by-size .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 23px;
    top: -3px;
}
.search-tyres-wrap .search-by-size .select2-container--default .select2-selection--single .select2-selection__clear {
    margin-right: 6px;
    padding-top: 0;
}
.select2-results__option {
    font-size: 14px !important;
    font-weight: 500;
}
.search-tyres-wrap .search-by-size .checkboxes-wrap {
    flex: 1 0 370px;
    padding-top: 30px;
    margin-left: 42px;
}
.search-tyres-wrap .small-text {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.checkboxes {
    margin-right: 12px;
}
.checkboxes:last-of-type {
    margin-right: 0;
}
.checkbox {
    display: none;
}
.check-span {
    float: left;
    width: 20px;
    height: 20px;
    background: #fff;
    position: relative;
    margin-left: -30px;
    margin-top: 6px;
    box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}
.check-span::before {
    content: "";
    position: absolute;
    width: 25px;
    height: 19px;
    background: url(../img/check.svg) no-repeat center;
    background-size: 17px;
    top: 1px;
    left: -2px;
    opacity: 0;
}
.radio-span::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FFBB00;
    border-radius: 500px;
    top: 4px;
    left: 4px;
    opacity: 0;
}
.radio {
    display: none;
}
.radio-span {
    float: left;
    width: 20px;
    height: 20px;
    border: 1px solid #CAD1D7;
    background: #fff;
    position: relative;
    margin-left: -30px;
    margin-top: -1px;
    border-radius: 500px;
}
input.checkbox:checked+label .check-span::before {
    opacity: 1;
}
input.radio:checked+label .radio-span::before {
    opacity: 1;
}
.check-label {
    float: left;
    width: 100%;
    padding-left: 30px;
    box-sizing: border-box;
    cursor: pointer;
}
.radio-label {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 14px;
    padding-left: 30px;
    box-sizing: border-box;
    cursor: pointer;
    margin-bottom: 0;
    font-weight: 500;
}

.search-tyres-wrap .green-btn {
    width: 270px;
    height: 50px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 10px;
    margin-top: 50px;
    float: left;
}
.search-tyres-wrap .search-by-car {
    flex: 1 0 479px;
    min-height: 462px;
    background: rgba(255, 255, 255, 0.85);
    position: relative;
}
.search-tyres-wrap .search-by-car::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(33, 71, 83, 0.6);
    transition: .2s linear all;
}
.search-tyres-wrap .search-by-car.active::after {
    opacity: 0;
    z-index: -1;
}
.search-tyres-wrap .search-by-car .tab-btn {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #214753;
    height: 55px;
    background: #D9D9D9;
    width: 100%;
    pointer-events: none;
}
.search-tyres-wrap .search-by-car .text {
    margin-bottom: 30px;
}
.search-tyres-wrap .search-by-car .selects-holder {
    width: 380px;
    gap: 20px;
}
.search-tyres-wrap .search-by-car .selects-wrap {
    width: 180px;
}
.search-tyres-wrap .search-by-car .green-btn {
    margin-top: 74px;
}
.filters-wrap .filters {
    background: #E7EDF6;
    border-radius: 10px;
    padding: 22px 22px 33px 22px;
    margin-bottom: 27px;
}
.filters-wrap .filters .title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.filters-wrap .filters .price-text {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 18px;
}
.filters-wrap .filters .price-slider-value {
    height: 30px;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 0 10px;
    font-weight: 500;
    font-size: 14px;
    color: #214753;
}
.accordeon {
    box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    background: #fff;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}
.accordeon .top {
    width: 100%;
    padding: 15px 0;
    position: relative;
    cursor: pointer;
}
.accordeon .top .text {
    width: calc(100% - 57px);
    float: left;
    margin-left: 13px;
    font-weight: 500;
    font-size: 14px;
    color: #214753;
}
.accordeon .top .arr {
    position: absolute;
    top: 20px;
    right: 20px;
}
.accordeon .bottom {
    padding: 0 20px 20px 13px;
    width: 100%;
}
.filters-wrap .filters .checkboxes {
    clear: both;
    margin-bottom: 15px;
}
.filters-wrap .filters .checkboxes:last-of-type {
    margin-bottom: 0;
}
.filters-wrap .filters .check-span {
    background: #E7EDF6;
    border-radius: 3px;
    margin-top: -2px;
    box-shadow: none;
}
.filters-wrap .filters .check-label {
    font-weight: 500;
    font-size: 14px;
    color: #214753;
}
.filters-wrap .filters .calculator-btn {
    font-weight: 600;
    height: auto;
    border-radius: 10px;
    padding: 12px 10px;
    margin-top: 10px;
}
.banner {
    width: 300px;
    /* height: 250px; */
    background: #E7EDF6;
    margin-bottom: 20px;
}
.banners-wrap{
    margin-left: 1rem;
}
.tyres-container {
    flex: 0 0 calc(100% - 335px);
}
.tyres-container .tip {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 35px;
}
.sorting-options .results-txt {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}
.sorting-options .results-txt span:first-child {
    font-size: 20px;
    color: #FFBB00;
}
.tyres-container .small-box .img-wrap .img {
    object-fit: contain;
}
.tyres-container .small-box .red-sticker {
    right: auto;
    left: 0;
    top: 68px;
    border-radius: 0 3px 3px 0;
    text-align: left;
    text-transform: uppercase;
}
.tyres-container .small-box .title {
    padding: 18px 0 18px 10px;
}
.tyres-container .small-box .brand-logo {
    margin-bottom: 12px;
    margin-left: 10px;
}
.tyres-container .small-box .grey-panel .green-btn {
    text-transform: uppercase;
}
.tyres-container .small-box .grey-panel .price {
    margin-bottom: 22px;
}
.small-box .grey-panel .btns-wrap {
    gap: 10px;
}
.small-box .grey-panel .btns-wrap .yellow-btn {
    width: 50%;
}
.small-box .grey-panel .btns-wrap .green-btn {
    width: 50%;
}
.tyres-container .small-box .grey-panel .price .final-price {
    font-weight: 700;
    font-size: 24px;
    line-height: 22px;
    margin-left: 8px;
}
.tyres-container .small-box .grey-panel .price .old-price {
    color: #F04E1F;
    text-decoration: line-through;
    margin-left: 8px;
}
.tyres-container .small-box .fixer {
    margin-bottom: 145px;
}
.tyres-container .small-box .fixer ul {
    font-weight: 400;
    font-size: 13px;
    padding-left: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
}
.tyres-container .small-box .fixer ul li {
    margin-bottom: 5px;
}
.grades-wrap {
    margin-bottom: 15px;
    min-height: 30px;
}
.grades-wrap .grade {
    width: 33.3%;
    padding: 0 10px;
}

.grades-wrap .grade .grade-icon {
    width: 23px;
    height: 23px;
    background: url(../img/tyres_sprite.png) 0 0 no-repeat;
    position: relative;
    margin-right: 5px;
}

.grades-wrap .grade .grade-info-box {
    font-weight: 500;
    color: #fff;
    position: relative;
    width: 23px;
    height: 23px;
    line-height: 23px;
    text-align: center;
    background-color: #3f3f3f;
    border-color: #3f3f3f;
    font-size: 14px;
}

.grades-wrap .grade .grade-info-box:after {
    content: "";
    position: absolute;
    left: 100%;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 10px solid;
    border-color: inherit;
    border-top: 13px solid transparent;
    border-bottom: 10px solid transparent;
}

.grades-wrap .grade .grade-icon.traction {
    background-position-y: -23px;
}

.grades-wrap .grade .grade-icon.noise {
    background-position-y: -46px;
}
.grades-wrap .grade .grade-info-box.fe-type-A {
    background-color: #00a650;
    border-color: #00a650;
}

.grades-wrap .grade .grade-info-box.fe-type-B {
    background-color: #99ca3b;
    border-color: #99ca3b;
}

.grades-wrap .grade .grade-info-box.fe-type-C {
    background-color: #fef200;
    border-color: #fef200;
}

.grades-wrap .grade .grade-info-box.fe-type-D {
    background-color: #fdb813;
    border-color: #fdb813;
}

.grades-wrap .grade .grade-info-box.fe-type-E {
    background-color: #ee1c25;
    border-color: #ee1c25;
}

.grades-wrap .grade .grade-info-box.g-type-A {
    background-color: #0164b5;
    border-color: #0164b5;
}

.grades-wrap .grade .grade-info-box.g-type-B {
    background-color: #0080c7;
    border-color: #0080c7;
}

.grades-wrap .grade .grade-info-box.g-type-C {
    background-color: #48a6da;
    border-color: #48a6da;
}

.grades-wrap .grade .grade-info-box.g-type-D {
    background-color: #76bfea;
    border-color: #76bfea;
}

.grades-wrap .grade .grade-info-box.g-type-E {
    background-color: #aae0fc;
    border-color: #aae0fc;
}
.green-sticker {
    position: absolute;
    top: 18px;
    left: 0;
    background: #4BA9AF;
    border-radius: 0 3px 3px 0;
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 10px;
    font-weight: 600;
    font-size: 10px;
    color: #fff;
}
.green-sticker .devider {
    height: 28px;
    width: 1px;
    background: #fff;
    margin: 0 7px;
}
.load-more-wrap {
    margin-top: 45px;
}
.load-more-wrap .text {
    border-bottom: 3px solid #FFBB00;
    padding-bottom: 11px;
    margin-bottom: 15px;
}
.stores-wrap {
    margin-top: 24px;
    margin-bottom: 55px;
    box-shadow: 0px 0px 32px rgb(136 152 170 / 15%);
}
.stores-wrap .top-line {
    height: 45px;
    background: #E7EDF6;
    font-weight: 600;
    border-radius: 6px 6px 0 0;
}
.stores-wrap .col-big {
    flex: 0 0 25%;
    padding-right: 15px;
    padding-left: 15px;
    padding-block: 5px;
}
.stores-wrap .col-medium {
    flex: 0 0 16.666667%;
    padding-right: 15px;
    padding-left: 15px;
}
.stores-wrap .store-row {
    min-height: 100px;
    border-bottom: 3px solid #E7EDF6;
    position: relative;
}
.stores-wrap .store-row:last-of-type {
    border-radius: 0 0 6px 6px ;
}
.stores-wrap .store-row:last-of-type::after {
    display: none;
}
.stores-wrap .store-row::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 15%;
    height: 3px;
    background: #FFBB00;
    content: "";
}
.stores-wrap .col-big .green-btn {
    width: 200px;
    height: 57px;
    font-size: 20px;
    text-transform: uppercase;
}
.tyre-view-left {
    flex: 0 0 512px;
}
.tyre-view-left .img-wrap {
    float: left;
    width: 100%;
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 1px 5px 1px rgb(0 0 0 / 10%);
    border-radius: 3px;
    height: fit-content;
}
.tyre-view-left .img-wrap .img {
    float: left;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    width: 100%;
    height: 280px;
    object-fit: contain;
}
.tyre-view-left .red-sticker {
    right: auto;
    left: 0;
    top: 68px;
    border-radius: 0 3px 3px 0;
    text-align: left;
    text-transform: uppercase;
}
.tyres-label {
    width: 213px;
    height: 312px;
    position: relative;
    background: url(../img/tyres_label.jpg) left top no-repeat;
    margin-top: 10px;
}
.tyres-label .mark-name {
    position: absolute;
    top: 45px;
    left: 10px;
    font-size: 11px;
    font-weight: bold;
    height: 14px;
    overflow: hidden;
}
.tyres-label .tire-size {
    position: absolute;
    top: 65px;
    left: 10px;
    font-size: 11px;
    font-weight: normal;
}
.tyres-label .sign.a{top: 127px;}
.tyres-label .sign.b{top: 150px;}
.tyres-label .sign.c{top: 172px;}
.tyres-label .sign.d{top: 194px;}
.tyres-label .sign.e{top: 217px;}

.tyres-label .sign.fe {
    left: 76px;
}
.tyres-label .sign.su {
    left: 175px;
}
.tyres-label .sign {
    color: #fff;
    font-weight: bold;
    height: 21px;
    line-height: 21px;
    padding-right: 5px;
    position: absolute;
    text-align: right;
    top: 87px;
    width: 25px;
    background: url(../img/spec_arrow.png) right center no-repeat;
}
.tyres-label .noise {
    color: #000;
    font-size: 11px;
    font-weight: bold;
    height: 20px;
    line-height: 20px;
    position: absolute;
    left: 54px;
    top: 261px;
    overflow: hidden;
    width: 17px;
}
.tyre-view-right {
    flex: 0 1 960px;
}
.tyre-view-right .tab-btn {
    width: 50%;
    height: 45px;
    color: #214753;
    font-weight: 600;
    background: #E7EDF6;
}
.tyre-view-right .tab-btn:nth-child(1) {
    border-radius: 6px 0 0 0;
}
.tyre-view-right .tab-btn:nth-child(2) {
    border-radius: 0 6px 0 0;
}
.tyre-view-right .tab-btn.active-btn {
    background: #214753;
    color: #fff;
}
.tyre-view-right .tab-content {
    padding: 45px 0;
    box-shadow: 0px 0px 32px rgba(136, 152, 170, 0.15);
}
.tyre-view-right .tab-content .text {
    padding: 0 45px;
    line-height: 20px;
}
.tyre-view-right .tab-content .text p, .tyre-view-right .tab-content .text li {
    margin-bottom: 5px;
}
.tab-content {
    display: none;
}
.tab-content.active-tab {
    display: block;
}
.tyre-view-right .tab-content .description-row {
    padding: 8px;
}
.tyre-view-right .tab-content .description-row:nth-child(2n) {
    background: #E7EDF6;
}
.tyre-view-right .tab-content .description-row div:nth-child(1) {
    width: 35%;
    padding-right: 25px;
    text-align: right;
}
.tyre-view-right .tab-content .description-row div:nth-child(2) {
    width: 65%;
}
.tyre-view-right .tab-content .description-row div:nth-child(2n) {
    font-weight: 600;
}

.fade {
    transition: opacity 0.15s linear 0s;
}
.fade:not(.show) {
    opacity: 0;
}
.popup-wrap.show .popup {
    transform: none;
}
.popup-wrap {
    z-index: 10000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background: rgba(33, 71, 83, 0.8);
    display: none;
}
.popup-wrap .popup {
    position: relative;
    margin: 1.75rem;
    pointer-events: none;
    max-width: 985px;
    margin-right: auto;
    margin-left: auto;
    background: #FFFFFF;
    box-shadow: 0px 0px 6px 4px rgba(136, 152, 170, 0.05);
    border-radius: 10px;
    transform: translate(0px, -50px);
    transition: transform .3s ease-out;
}
.popup-wrap .close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
}
.popup-wrap .pop-content {
    pointer-events: auto;
    width: 100%;
    height: 100%;
    padding: 66px 45px 66px 45px;
}
.popup-wrap .pop-title {
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    border-bottom: 3px solid #E7EDF6;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.popup-wrap .pop-title::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 543px;
    height: 3px;
    background: #FFBB00;
    content: "";
}
.popup-wrap .select2-container--default .select2-selection--single, .popup-wrap .check-span, .garage-page .check-span, .profile-wrap .select2-container--default .select2-selection--single, .garage-page .select2-container--default .select2-selection--single, .profile-wrap .check-span {
    box-shadow: none;
    border: 0.5px solid #CAD1D7;
}
.location-popup .popup, .change-location-popup .popup, .send-query-popup .popup {
    width: 450px;
}
.location-popup .pop-title::after, .change-location-popup .pop-title::after, .send-query-popup .pop-title::after {
    width: 30%;
}
.form-group {
    width: 100%;
    column-gap: 25px;
    margin-bottom: 14px;
}
.form-group:last-of-type {
    margin-bottom: 0;
}
.form-group .form-element {
    width: 50%;
}
.form-group .form-element label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    padding-left: 10px;
}
.form-group .form-element input {
    font-size: 14px;
    font-weight: 500;
    background: #FFFFFF;
    border: 0.5px solid #CAD1D7;
    border-radius: 10px;
    padding: 0 10px;
    height: 50px;
}
.form-group .form-element select {
    font-size: 14px;
    font-weight: 500;
    background: #FFFFFF;
    border: 0.5px solid #CAD1D7;
    border-radius: 10px;
    padding: 0 10px;
    height: 50px;
}
.form-group .form-element label.radio-holder {
    float: left;
    width: calc(50% - 10px);
    margin-right: 10px;
    display: inline-flex;
}
.form-group .form-element label.radio-holder input {
    height: 15px;
    width: 15px;
}

.form-group.fuel-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}
.form-group.fuel-grid .form-element{
    width: 100%;
}
textarea {
    font-size: 14px;
    font-weight: 500;
    background: #FFFFFF;
    border: 0.5px solid #CAD1D7;
    border-radius: 10px;
    padding: 10px;
    height: 235px;
    min-height: 235px;
    max-height: 235px;
    resize: none;
}
.form-group .is-tel {
    position: relative;
}
.form-group .is-tel input {
    padding-left: 60px;
}
.form-group .is-tel::after {
    position: absolute;
    bottom: -1px;
    left: 19px;
    height: 50px;
    line-height: 50px;
    content: "+359";
    font-size: 14px;
    font-weight: 500;
    width: 38px;
}
.form-group_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: 20px;
}
.form-group_grid .form-element {
    width: auto;
}
.clients-feedback {
    margin-bottom: 65px;
}
.clients-feedback .give-feedback {
    height: 90px;
    border: 1px solid #E7EDF6;
    border-radius: 6px;
    padding: 0 28px;
    margin-bottom: 20px;
}
.clients-feedback .devider-text {
    position: relative;
    padding-left: 20px;
    margin-left: 20px;
}
.clients-feedback .devider-text::before {
    height: 30px;
    width: 1px;
    position: absolute;
    top: -6px;
    left: 0;
    background: #214753;
    content: "";
}
.clients-feedback .feedback-row {
    border-bottom: 1px solid #EBEEF3;
    margin-bottom: 30px;
    padding: 0 28px 20px 28px;
}
.clients-feedback .feedback-row .feedback-text {
    margin-top: 33px;
}
.services-wrap {
    position: relative;
    margin-top: 12px;
    border-top: 3px solid #E7EDF6;
}
.services-wrap::after {
    position: absolute;
    top: -3px;
    left: 0;
    width: 40%;
    height: 3px;
    background: #FFBB00;
    content: "";
}
.services-wrap .services-top-line {
    padding-bottom: 14px;
    border-bottom: 1px solid #E7EDF6;
    padding-left: 30px;
    margin-top: 25px;
    margin-bottom: 17px;
}
.view-object-top {
    padding: 25px 0 20px 0;
    border-bottom: 1px solid #E7EDF6;
}
.view-object-top .img {
    width: 148px;
    height: 148px;
    object-fit: contain;
    border-radius: 3px;
    box-shadow: 0px 1px 5px 1px rgb(0 0 0 / 10%);
    margin-right: 20px;
}
.view-object-top .car-img {
    width: 148px;
    position: relative;
    background: #E7EDF6;
    float: left;
    margin-right: 20px;
    border-radius: 3px;
    box-shadow: 0px 1px 5px 1px rgb(0 0 0 / 10%);
}
.view-object-top .car-img .green-sticker {
    height: 24px;
    text-transform: uppercase;
}
.view-object-top .car-img .img {
    margin-right: 0;
    float: left;
}
.view-object-top .address {
    margin-bottom: 15px;
    font-size: 13px;
}
.view-object-top .address span {
    width: calc(100% - 20px);
}
.object-navigation .container {
    height: 93px;
}
.object-navigation a {
    font-weight: 600;
    margin-right: 28px;
    padding-top: 7px;
    padding-bottom: 7px;
    text-decoration: none;
}
.object-navigation a:last-of-type {
    margin-right: 0;
}
.object-navigation a.active-btn {
    border-bottom: 3px solid #FFBB00;
}
.grey-background-container {
    padding-top: 10px;
    background: #E7EDF6;
    margin-bottom: -80px;
    padding-bottom: 47px;
}
.grey-background-container .tab-content {
    flex: 0 0 calc(100% - 335px);
}
.big-left-box {
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 6px 4px rgba(136, 152, 170, 0.05);
    border-radius: 6px;
    padding-bottom: 35px;
}
.big-left-box .header-row {
    padding-bottom: 14px;
    border-bottom: 1px solid #E7EDF6;
    padding-left: 20px;
    padding-top: 25px;
    margin-bottom: 19px;
    font-weight: 600;
    text-transform: uppercase;
}
.big-left-box .free-text {
    line-height: 20px;
    margin-bottom: 22px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
}
.big-left-box .info-row .free-text {
    padding-left: 0;
    padding-right: 0;
}
.big-left-box .info-row {
    position: relative;
    padding-top: 19px;
    margin-bottom: 19px;
    border-top: 3px solid #E7EDF6;
    padding-left: 20px;
    padding-right: 20px;
}
.big-left-box .info-row::after {
    position: absolute;
    top: -3px;
    left: 0;
    width: 148px;
    height: 3px;
    background: #FFBB00;
    content: "";
}
.big-left-box .gallery {
    font-size: 14px;
    font-weight: 500;
}
.big-left-box .gallery a {
    flex: 0 0 31.2%;
    text-decoration: none;
}
.big-left-box .accordeon {
    box-shadow: none;
    border: 0.5px solid #CAD1D7;
}
.big-left-box .accordeon-fix {
    padding: 0 20px;
}
.big-left-box .accordeon-fix .accordeon .free-text {
    padding-left: 0;
    padding-right: 0;
}
.big-left-box .accordeon-fix .accordeon .free-text:last-of-type {
    margin-bottom: 0 !important;
}
.tab-gallery .big-left-box .gallery {
    padding: 0 20px;
}
.tab-gallery .big-left-box .gallery a {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 4px;
    height: 200px;
}
.tab-gallery .big-left-box .gallery a img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.landing-top {
    height: 734px;
    background: url(../img/landing.webp) no-repeat center;
    background-size: cover;
    padding-top: 48px;
}
.landing-top .logo {
    background: #fff;
    border-radius: 50%;
    width: 187px;
    height: 187px;
    margin-bottom: 55px;
}
.landing-top .top-title {
    font-weight: 700;
    font-size: 64px;
    color: #fff;
    margin-bottom: 9px;
    text-transform: uppercase;
}
.landing-top .under-title {
    font-size: 36px;
    color: #fff;
    line-height: 38px;
    font-weight: 300;
    margin-bottom: 30px;
}
.landing-top .see-more {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.landing-stats {
    height: 210px;
    background: #4BA9AF;
    border-bottom: 10px solid #FFBB00;
    column-gap: 60px;
}
.landing-stats .numbers {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}
.landing-stats .text {
    color: #fff;
}
.about-platform {
    margin-top: 84px;
    min-height: 1060px;
    position: relative;
    margin-bottom: 80px;
}
.about-platform::after {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1203px;
    height: 1060px;
    background: url(../img/big_mask_grey.svg) no-repeat right center;
    background-size: 939px;
    content: "";
}
.about-platform .container {
    position: relative;
    z-index: 2;
}
.landing-title {
    font-weight: 600;
    font-size: 64px;
}
.landing-medium-text {
    font-size: 24px;
    line-height: 32px;
}
.landing-wrap .tabs-holder {
    flex: 0 0 315px;
}
.landing-wrap .tab-content .fixer {
    display: flex;
    gap: 90px;
}
.landing-wrap .tabs-holder button {
    min-height: 50px;
    gap: 18px;
    margin-bottom: 30px;
    width: 100%;
    border-radius: 4px;
}
.landing-wrap .tabs-holder button .icon {
    width: 70px;
    min-height: 50px;
    background: #214753;
    border-radius: 4px;
    flex-shrink: 0;
}
.landing-wrap .tabs-holder button .txt {
    font-weight: 600;
    min-height: 50px;
    color: #214753;
    text-align: left;
}
.landing-wrap .tabs-holder button.active-btn {
    background: #214753;
}
.landing-wrap .tabs-holder button.active-btn .txt {
    color: #fff;
}
.landing-wrap .image-holder {
    width: 317px;
    height: 642px;
    background: #E7EDF6;
    border: 2px solid #FFFFFF;
    border-radius: 30px;
    margin-top: 20px;
    flex-shrink: 0;
}
.landing-wrap .image-holder img {
    width: 317px;
    height: 642px;
    border-radius: 30px;
    object-fit: cover;
    margin-top: -20px;
    margin-left: -20px;
}
.landing-wrap .description {
    height: 642px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.landing-wrap .description p {
    margin-bottom: 10px;
}
.landing-wrap .partners-wrap {
    border-bottom: 10px solid #FFBB00;
    border-top: 10px solid #FFBB00;
    margin-bottom: 94px;
}
.landing-wrap .partners-wrap .title {
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    margin-top: 22px;
    margin-bottom: 45px;
}
.landing-wrap .partners-slider {
    margin-bottom: 42px;
    overflow: hidden;
}
.landing-wrap .partners-slider img {
    margin-right: 52px;
}
.landing-wrap .download-section .text-part {
    flex: 0 0 calc(100% - 673px);
}
.landing-wrap .download-section .text-part .title {
    font-weight: 600;
    font-size: 60px;
}
.landing-wrap .download-section .text-part .text {
    font-size: 24px;
    line-height: 32px;
    margin-top: 20px;
    margin-bottom: 35px;
}
.additional-benefits {
    background: #EFF3F8;
    margin-top: 120px;
    padding-top: 72px;
    margin-bottom: -80px;
    padding-bottom: 107px;
    position: relative;
    overflow: hidden;
}
.additional-benefits .container {
    position: relative;
    z-index: 2;
}
.additional-benefits::after {
    position: absolute;
    right: -119px;
    bottom: -164px;
    width: 869px;
    height: 869px;
    background: #FFFFFF;
    border: 10px solid #EFF3F8;
    border-radius: 50%;
    content: "";
}
.additional-benefits::before {
    position: absolute;
    right: -231px;
    bottom: -273px;
    width: 1085px;
    height: 1085px;
    background: #EFF3F8;
    border: 20px solid #FFFFFF;
    border-radius: 50%;
    content: "";
}
.additional-benefits .landing-title {
    position: relative;
}
.additional-benefits .landing-title::after {
    position: absolute;
    top: -23px;
    left: 104px;
    width: 249px;
    height: 249px;
    background: #fff;
    z-index: -1;
    border-radius: 50%;
    content: "";
}
.landing-wrap .additional-benefits .tabs-holder button.active-btn .txt {
    color: #fff;
}
.landing-wrap .additional-benefits .tabs-holder button.active-btn, .landing-wrap .additional-benefits .tabs-holder button .icon {
    background: #4BA9AF;
}
.landing-wrap .additional-benefits .tabs-holder button .txt {
    color: #4BA9AF;
}
.auth-wrap {
    min-height: 100vh;
    position: relative;
    float: left;
    width: 100%;
}
.auth-wrap::after {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(../img/big_mask_grey2.svg) no-repeat center;
    background-size: cover;
    content: "";
}
.auth-wrap .container {
    position: relative;
    z-index: 2;
}
.auth-wrap .inner-holder {
    width: 485px;
}
.auth-wrap .heading {
    font-weight: 600;
    border-bottom: 3px solid #FFBB00;
    padding-bottom: 15px;
    text-transform: uppercase;
    margin-bottom: 35px;
}
.fb-button {
    height: 50px;
    background: #32477A;
    border-radius: 10px;
    padding: 0 14px;
    font-weight: 500;
    font-size: 14px;
    color: #fff !important;
    text-decoration: none;
}
.google-button {
    height: 50px;
    background: #F54D43;
    border-radius: 10px;
    padding: 0 14px;
    font-weight: 500;
    font-size: 14px;
    color: #fff !important;
    text-decoration: none;
}
.auth-wrap .forgotten-pass {
    font-size: 10px;
    margin-top: 17px;
    display: block;
}
.auth-wrap .check-label, .profile-wrap .check-label {
    font-size: 10px;
    display: flex;
    align-items: center;
    text-align: left;
}
.auth-wrap .check-span, .profile-wrap .check-span {
    margin-top: 0;
    margin-right: 10px;
    border: 0.5px solid #CAD1D7;
    flex-shrink: 0;
}
.auth-wrap .check-span::before, .profile-wrap .check-span::before {
    background: url(../img/check.svg) no-repeat center;
    background-size: 15px;
    left: -3.5px;
}
.profile-wrap {
    padding-top: 25px;
}
.profile-wrap .left-links {
    flex: 0 0 165px;
}
.profile-wrap .left-links .title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}
.profile-wrap .left-links a {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    margin-bottom: 15px;
    text-transform: uppercase;
    float: left;
    width: 100%;
    transition: all .1s ease-in;
}
.profile-wrap .left-links a:hover {
    color: #FFBB00;
}
.profile-wrap .left-links a.active {
    color: #FFBB00;
}
.profile-wrap .right-content {
    flex: 0 0 calc(100% - 165px);
    margin-left: 30px;
}
.profile-wrap .top-bar {
    min-height: 70px;
    border-bottom: 3px solid #E7EDF6;
    position: relative;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: -18px;
}
.profile-wrap .top-bar::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 456px;
    height: 3px;
    background: #FFBB00;
    content: "";
}
.car-box {
    flex: 0 0 460px;
}
.car-box .img-wrap {
     float: left;
     width: 148px;
     position: relative;
     background: #E7EDF6;
     box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.1);
     border-radius: 3px;
}
.car-box .img-wrap img {
     width: 148px;
     height: 148px;
     object-fit: contain;
     float: left;
     box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.1);
     border-radius: 3px;
}
.car-box .img-wrap .green-sticker {
    height: 24px;
    text-transform: uppercase;
}
.car-box .right-part {
    width: calc(100% - 168px);
    float: right;
}
.car-box .right-part .big-title {
    text-transform: none;
}
.car-box .right-part ul {
    list-style: inside;
    margin-top: 15px;
    margin-bottom: 15px;
}
.car-box .right-part li {
    font-size: 13px;
    margin-bottom: 10px;
}
.car-box .box-heading, .violations-heading {
    position: relative;
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 3px solid #E7EDF6;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.car-box .box-heading::after, .violations-heading::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 174px;
    height: 3px;
    background: #FFBB00;
    content: "";
}
.violations-box {
    flex: 0 0 460px;
}
.violations-box .car-box {
    float: left;
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #E7EDF6;
}
.violations-box .car-box:last-of-type {
    border-bottom: 0;
}
.reg-plate {
    height: 32px;
    width: 160px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #000;
    margin-bottom: 15px;
}
.reg-plate .stars {
    width: 24px;
    height: 31px;
    background: url(../img/eu_stars.png) no-repeat center 3px #006beb;
    background-size: 12px;
    color: #fff;
    font-weight: 500;
    font-size: 10px;
    text-align: center;
    line-height: 48px;
}
.reg-plate .number {
    width: calc(100% - 24px);
    font-weight: bold;
    line-height: 31px;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
}
.drop-files {
    width: 100%;
    position: relative;
    height: 168px;
    color:#214753;
    background: #E7EDF6 !important;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0 30px;
}
.drop-files::after {
    position: absolute;
    top: 13px;
    left: 21px;
    width: calc(100% - 42px);
    height: calc(100% - 26px);
    border: 2px dashed #FFFFFF;
    border-radius: 10px;
    content: "";
}
.garage-top-bar {
    position: relative;
    border-bottom: 3px solid #E7EDF6;
}
.garage-top-bar::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 543px;
    height: 3px;
    background: #FFBB00;
    content: "";
}
.garage-top-bar .container {
    height: 93px;
}
.garage-top-bar .user-cars-wrap {
    width: calc(100% - 755px);
    overflow-x: auto;
    padding-bottom: 7px;
}
.garage-top-bar .user-cars-wrap .mobile-scroller {
    width: max-content;
}
.garage-page .form-group {
    margin-bottom: 24px;
}
.small-right-box-inner {
    width: 300px;
    background: #fff;
    box-shadow: 0px 0px 6px 4px rgb(136 152 170 / 5%);
    border-radius: 6px;
    margin-bottom: 30px;
}
.small-right-box-inner .header-row {
    padding-bottom: 14px;
    border-bottom: 1px solid #E7EDF6;
    padding-left: 20px;
    padding-top: 25px;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
}
.small-right-box-inner .description-row {
    font-size: 14px;
    padding: 8px;
}
.small-right-box-inner .description-row:nth-child(2n) {
    background: #E7EDF6;
}
.small-right-box-inner .events-box {
    margin-bottom: 20px;
    border-bottom: 1px solid #E7EDF6;
    padding: 0 20px 20px 20px;
}
.small-right-box-inner .events-box:last-of-type {
    border-bottom: 0;
    margin-bottom: 10px;
}
.events-box ul {
    list-style: inside;
    margin-top: 15px;
    margin-bottom: 15px;
}
.events-box li {
    font-size: 13px;
    margin-bottom: 10px;
}
.archived-wrap .car-box {
    flex: 0 0 26%;
    padding-bottom: 20px;
    border-bottom: 1px solid #E7EDF6;
}
.events-list .events-box {
    flex: 0 0 260px;
}
.trip-box {
    flex: 0 0 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #E7EDF6;
}
.trip-box .heading {
    position: relative;
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 3px solid #E7EDF6;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.trip-box .heading::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 174px;
    height: 3px;
    background: #FFBB00;
    content: "";
}
.trip-box .time-row {
    font-size: 13px;
    margin-bottom: 17px;
    background: #fff;
    position: relative;
    z-index: 2;
}
.trip-box .time-row:last-of-type {
    margin-bottom: 0;
}
.trip-box .trip-reason {
    padding-left: 67px;
    margin-bottom: 17px;
    font-size: 13px;
}
.trip-box .time-row-wrap::after {
    position: absolute;
    bottom: 0;
    left: 49px;
    border-left: 1px dashed #888888;
    height: 100%;
    content: "";
}
table {
    border: 0.5px solid #CAD1D7;
    margin: 15px 0;
    border-collapse: collapse;
    box-shadow: 0 0 1px rgb(0 0 0 / 13%), 0 1px 3px rgb(0 0 0 / 20%);
}
table td {
    padding: 10px 20px;
    border-bottom: 0.5px solid #CAD1D7;
    border-right: 0.5px solid #CAD1D7;
    font-size: 16px;
}
table th {
    padding: 20px;
    text-transform: uppercase;
}
table thead td {
    text-align: center;
    font-weight: 700;
    padding: 20px;
    text-transform: uppercase;
}
table tr:nth-of-type(odd) {
    background-color: #E7EDF6;
}
table tbody td:nth-of-type(odd) {
    text-align: center;
}
.news-view {
    margin-top: 45px;
}
.news-view h1 {
    border-bottom: 3px solid #E7EDF6;
    position: relative;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 15px;
    font-size: 16px;
}
.news-view h1::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 456px;
    height: 3px;
    background: #FFBB00;
    content: "";
}
.banner-970x70 {
    width: 970px;
    height: 70px;
    background: #E7EDF6;
    margin-bottom: 35px;
}
.news-view .news-content {
    flex: 0 0 calc(100% - 335px);
}
.news-view .news-content .main-img {
    border-radius: 3px;
    margin-bottom: 40px;
    width: 100%;
}
.news-view .news-content .news-descr{
    font-family:Verdana,Geneva,sans-serif;
}
.news-view .news-content .news-descr h1,
.news-view .news-content .news-descr h2,
.news-view .news-content .news-descr h3{
    font-weight: bold;
}
.news-view .news-content .news-descr p{
    margin-bottom: 1rem;
}
.news-view .news-content .news-descr .separator{
    height: auto;
}
.news-view .news-content .news-descr .separator::after{
    content: none;
}
.news-view .news-content .news-descr .separator::before{
    position: absolute;
    top: -5px;
    left: 0;
    width: 456px;
    height: 3px;
    background: #FFBB00;
    content: "";
}
.news-descr img {
    max-width: 100% !important;
}
.news-descr ul,
.news-descr ol {
    padding-inline-start: 2rem;
    margin-block: .5rem;
}
.news-view .news-right-panel {
   width: 300px;
}
.news-view .news-right-panel .box {
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0px 0px 6px 4px rgba(136, 152, 170, 0.05);
    border-radius: 6px;
    margin-bottom: 22px;
}
.news-view .news-right-panel .box h2 {
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E7EDF6;
    padding-left: 10px;
    text-transform: uppercase;
    margin-bottom: 12px;
    margin-top: 14px;
    width: 100%;
}
.news-view .news-right-panel .box h2 span {
    font-weight: 600;
    font-size: 36px;
    color: #FFBB00;
    margin-right: 6px;
}
.news-view .news-right-panel .box .hashtags {
    padding: 0 15px 20px 15px;
    gap: 5px;
    display: flex;
    flex-wrap: wrap;
}
.news-view .news-right-panel .box .hashtags a {
    font-size: 14px;
    text-decoration: none;
}
.news-view .news-right-panel .box .news-box {
    border-bottom: 1px solid #E7EDF6;
    gap: 10px;
    display: flex;
    padding: 0 10px 10px 10px;
    margin-bottom: 10px;
}
.news-view .news-right-panel .box .news-box:last-of-type {
    border: 0;
}
.news-view .news-right-panel .box .news-box img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 3px;
}
.news-view .news-right-panel .box .news-box .title {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    text-decoration: none;
}
.leaflets .tip {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 35px;
}
.leaflet-wrap {
    column-gap: 18px;
    row-gap: 30px;
}
.leaflet-box {
    box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    flex: 0 0 calc(50% - 9px);
    overflow: hidden;
}
.leaflet-box img {
    width: 100%;
    border-radius: 3px 3px 0 0;
    transition: all .2s ease-in;
}
.leaflet-box:hover img {
    scale: 1.05;
}
.leaflet-box:hover .title {
    color: #FFBB00;
}
.leaflet-box .title {
    border-top: 3px solid #FFBB00;
    border-bottom: 3px solid #FFBB00;
    padding: 10px 0 10px 20px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 12px;
    display: flex;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .1s ease-in;
}
.leaflet-view {
    box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    padding: 15px;
}
.leaflet-view iframe {
    width: 100% !important;
    height: 560px !important;
}
.faq-row {
    box-shadow: 0px 0px 6px 4px rgba(136, 152, 170, 0.05);
    border-radius: 6px;
    padding: 0 30px;
    margin-bottom: 40px;
}
.faq-row h2 {
    font-weight: 600;
    cursor: pointer;
    padding: 22px 0;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 24px;
}
.faq-row .faq-content {
    border-top: 1px solid #E7EDF6;
    padding: 20px 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}
.faq-row .plus, .faq-row .minus {
    margin-left: 70px;
}
.faq-buttons a {
    height: 45px;
    background: #E7EDF6;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    width: 50%;
    text-align: center;
    text-decoration: none;
}
.faq-buttons a.active {
    background: #214753;
    color: #fff;
}
.law-box {
    flex: 0 0 calc(50% - 10px);
    background: #E7EDF7;
    border-radius: 3px;
    font-weight: 500;
    padding: 15px 15px 30px 15px;
    text-decoration: none;
}
.send-query {
    background: #E7EDF6;
    padding: 22px;
}
.b-objects-row {
    background: #E7EDF6;
    padding:20px;
    margin-bottom: 20px;
}
.b-objects-row:last-of-type {
    margin-bottom: 0;
    border-radius: 0 0 10px 10px;
}
.show-pass {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: 50px;
    height: 54px;
    background: url(../img/visibility-light-grey-off-icon.svg) no-repeat center;
    background-size: 31px;
}
.show-pass.view-pass {
    background: url(../img/visibility-icon.svg) no-repeat center;
    background-size: 31px;
}
.promos-holder {
    margin-bottom: 60px;
}
.promos-holder h2 {
    padding-bottom: 15px;
    border-bottom: 1px solid #E7EDF6;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding-left: 20px;
    margin-bottom: 25px;
}
.promos-holder .inner {
    gap: 30px;
    padding: 0 20px;
}
.promos-holder .promo-box {
    flex: 0 1 23.2%;
    min-height: 264px;
    background: #E7EDF6;
    border-radius: 10px;
    padding: 12px 20px 0 20px;
    position: relative;
}
.promos-holder .promo-box .buttons-holder {
    position: absolute;
    bottom: 20px;
    padding: 0 20px;
    width: 100%;
    left: 0;
}
.promos-holder .promo-box .title {
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 20px;
}
.promos-holder .promo-box ul {
    list-style: outside;
    padding-left: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.promos-holder .promo-box li {
    font-size: 13px;
    margin-bottom: 10px;
}
.gtp-objects {
    overflow-x: auto;
    padding-bottom: 16px;
    margin-top: 8px;
    margin-bottom: 50px;
}
.gtp-objects .scroll-innner {
    width: max-content;
    gap: 20px;
}
.gtp-objects a {
    line-height: 16px;
    padding: 10px 15px;
    height: 60px;
    background: #E7EDF6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.gtp-objects a.current {
    background: #214753;
    color: #fff;
}
.select-date .left-arr {
    width: 50px;
    height: 50px;
    background: #E7EDF6;
    border: 0.5px solid #CAD1D7;
    border-radius: 10px 0px 0px 10px;
}
.select-date .right-arr {
    width: 50px;
    height: 50px;
    background: #E7EDF6;
    border: 0.5px solid #CAD1D7;
    border-radius: 0  10px 10px 0;
}
.select-date .right-arr img {
    transform: rotate(-180deg);
}
.select-date input {
    width: 360px;
    height: 50px;
    border-top: 0.5px solid #CAD1D7;
    border-bottom: 0.5px solid #CAD1D7;
    padding: 0 20px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}
.schedule-wrap {
    margin-top: 20px;
    margin-bottom: 30px;
}
.tab-schedule .select-date-wrap{
    position: sticky;
    top: 70px;
    z-index: 1000;
    background: #fff;
}
.schedule-wrap .header-row-sch {
    height: 60px;
    background: #E7EDF6;
    border-radius: 10px 10px 0px 0px;
    border-top: 1px solid #CAD1D7;
}
.schedule-wrap .header-row-sch.desktop {
    position: sticky;
    top: 120px;
    z-index: 1000;
}
.schedule-wrap .header-row-sch .col {
    flex: 0 1 100%;
    padding: 0 10px;
    border-right: 1px solid #CAD1D7;
}
.schedule-wrap .header-row-sch .col span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 14px;
    font-weight: 500;
}
.schedule-wrap .header-row-sch .col:first-of-type {
    flex: 0 0 90px;
    border-left: 1px solid #CAD1D7;
    border-top-left-radius: 10px;
}
.schedule-wrap .header-row-sch .col:last-of-type {
    border-top-right-radius: 10px;
}
.schedule-wrap .content-row {
    border-bottom: 1px solid #CAD1D7;
}
.schedule-wrap .content-row:last-of-type {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.schedule-wrap .content-row:last-of-type .col:first-of-type {
    border-bottom-left-radius: 10px;
}
.schedule-wrap .content-row:last-of-type .col:last-of-type {
    border-bottom-right-radius: 10px;
}
.schedule-wrap .content-row .col:first-of-type {
    flex: 0 0 90px;
    border-left: 1px solid #CAD1D7;
    padding: 15px 0 0 10px;
}
.schedule-wrap .content-row .col {
    flex: 0 1 100%;
    border-right: 1px solid #CAD1D7;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    min-height: 86px;
    padding: 10px 15px 10px 20px;
}
.schedule-wrap .content-row .col .inner {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.schedule-wrap .content-row .col.free {
    background: rgba(71, 198, 60, 0.5);
}

.schedule-wrap .content-row .col.free::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5px;
    background: #47C63C;
    content: "";
}
.make-appointment .schedule-wrap .content-row .col.free {
    background: rgba(71, 198, 60, 0.3);
}
.schedule-wrap .content-row .col.reserved {
    background: rgba(250, 0, 0, 0.31);
}
.schedule-wrap .content-row .col.reserved::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5px;
    background: #FA0000;
    content: "";
}

.make-appointment .schedule-wrap .content-row .col.reserved {  
    background: rgba(240, 78, 31, 0.3);
}
.make-appointment .schedule-wrap .content-row .col.reserved::after {
    background: #F04E1F;
}

.schedule-wrap .content-row .col.malfunction {
    background: rgba(33, 71, 83, 0.5);
}
.schedule-wrap .content-row .col.malfunction::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5px;
    background: #214753;
    content: "";
}

.schedule-wrap .content-row .col[data-type="2"],
.schedule-wrap .content-row .col[data-agu="1"],
.schedule-wrap .content-row .col[data-agu="2"] {
    background: rgba(150, 68, 255, 0.8);
}
.schedule-wrap .content-row .col[data-type="2"],
.schedule-wrap .content-row .col[data-agu="2"] {
    background: repeating-linear-gradient(
        45deg, 
        rgba(150, 68, 255, 0.5), 
        rgba(150, 68, 255, 0.5) 20px, 
        rgba(150, 68, 255, 1) 20px, 
        rgba(150, 68, 255, 1) 40px
    );
}

.schedule-wrap .content-row .col[data-status="5"] {
    background: rgba(255, 187, 0, 0.5);
}
.schedule-wrap .content-row .col[data-status="5"]::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5px;
    background: #FFBB00;
    content: "";
}

.schedule-wrap .content-row .col[data-status="4"] {
    background: rgba(1, 164, 255, 0.8);
}
.schedule-wrap .content-row .col[data-status="4"][data-agu="2"] {
    background: repeating-linear-gradient(
        45deg, 
        rgba(150, 68, 255, 0.0), 
        rgba(150, 68, 255, 0.0) 20px, 
        rgba(150, 68, 255, 1) 20px, 
        rgba(150, 68, 255, 1) 40px
    );
    background-color: rgba(1, 164, 255, 0.8);
}

.schedule-wrap .content-row .col[data-status="4"]::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5px;
    background: #01A4FF;
    content: "";
}
.schedule-wrap .content-row .col[data-status="6"] {
    background: rgba(253, 255, 0, 0.8);
}
.schedule-wrap .content-row .col[data-status="6"]::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5px;
    background: rgb(230 230 0);
    content: "";
}

.schedule-wrap .content-row .col.gas {
    background: rgba(173, 110, 253, 0.5);
}
.schedule-wrap .content-row .col.gas::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5px;
    background: #AD6EFD;
    content: "";
}

.schedule-wrap .content-row .col.not-showed-up {
    background: rgba(255, 187, 0, 0.5);
}
.schedule-wrap .content-row .col.not-showed-up::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5px;
    background: #FFBB00;
    content: "";
}

.schedule-wrap .content-row .col.passed {
    background: rgba(75, 169, 175, 0.5);
}
.schedule-wrap .content-row .col.passed::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5px;
    background: #4BA9AF;
    content: "";
}

.schedule-wrap .content-row .col[data-type="2"]::after,
.schedule-wrap .content-row .col[data-agu="1"]::after,
.schedule-wrap .content-row .col[data-agu="2"]::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5px;
    background: #9644FF;
    content: "";
}
.schedule-wrap .content-row .col[data-type="3"]::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 8px;
    content: "";
    background-image: linear-gradient(45deg, #000 25%, transparent 25%), 
        linear-gradient(135deg, #000 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #000 75%),
        linear-gradient(135deg, transparent 75%, #000 75%);
    background-size: 8px 8px;
    background-position: 0 0, 4px 0, 4px -4px, 0px 4px;
    background-color: #fff;
}
.schedule-wrap .content-row .col[data-type="4"]::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 8px;
    background: #ffe200;
    content: "";
}
.schedule-wrap .content-row .col[data-type="5"]::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 8px;
    content: "";
    background-size: 8px 8px;
    background-position: 0 0, 4px 0, 4px -4px, 0px 4px;
    background-color: #fff;
    background: repeating-linear-gradient(45deg, rgba(200, 0, 0, 0.5), rgba(200, 0, 0, 0.5) 4px, #FFF 4px, #FFF 8px);
}
.schedule-wrap .content-row .col[data-type="6"]::after,
.schedule-wrap .content-row .col[data-euro="1"]::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 8px;
    background: #214753;
    content: "";
}

.schedule-wrap .green-btn {
    height: 30px;
    font-size: 12px;
    justify-content: center;
    width: 100%;
}
.schedule-wrap .marker {
    position: absolute;
    background: #FFFFFF;
    border-radius: 3px 0px 0px 3px;
    position: absolute;
    top: 6px;
    right: 0;
    width: 22px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .schedule-scroller {
    height: 521px;
    overflow: auto;
} */
.schedule-legend {
    gap: 15px;
    font-weight: 500;
    font-size: 14px;
}
.schedule-legend .circle-free {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #47C63C;
    margin-right: 6px;
}
.schedule-legend .circle-passed {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(1, 164, 255, 0.8);
    margin-right: 6px;
}
.schedule-legend .circle-reserved {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #F04E1F;
    margin-right: 6px;
}
.schedule-legend .circle-gas {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #AD6EFD;
    margin-right: 6px;
}
.schedule-legend .circle-malfunction {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #214753;
    margin-right: 6px;
}
.schedule-legend .circle-not-showed-up {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #FFBB00;
    margin-right: 6px;
}
.schedule-legend .circle-rejected {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(253,255,0);
    margin-right: 6px;
}
.schedule-legend .circle-taxi {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 6px;
    background-image: linear-gradient(45deg, #000 25%, transparent 25%), 
        linear-gradient(135deg, #000 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #000 75%),
        linear-gradient(135deg, transparent 75%, #000 75%);
    background-size: 8px 8px;
    background-position: 0 0, 4px 0, 4px -4px, 0px 4px;
    background-color: #fff;
}
.schedule-not-activated {
    position: relative;
}
.schedule-not-activated::after {
    position: absolute;
    top: 0;
    right: 55px;
    width: 817px;
    height: 725px;
    background: url(../img/big_mask_grey3.svg) no-repeat right center;
    background-size: 817px;
    content: "";
}
.schedule-not-activated .text-part {
    flex: 0 1 100%;
    padding-top: 100px;
    position: relative;
    z-index: 2;
}
.schedule-not-activated .text-part h2 {
    font-size: 32px;
    font-weight: 600;
}
.schedule-not-activated .text-part h2 span {
    font-weight: 700;
    color: #4BA9AF;
}
.schedule-not-activated .text-part .tip {
    margin-top: 40px;
    line-height: 20px;
    margin-bottom: 20px;
}
.schedule-not-activated .text-part ul {
    margin-top: 30px;
    padding-left: 30px;
}
.schedule-not-activated .text-part li {
    margin-bottom: 10px;
}
.schedule-yellow-box {
    background: #FFBB00;
    padding-bottom: 37px;
    position: relative;
    z-index: 5;
    margin-top: 30px;
    min-height: 382px;
}
.schedule-yellow-box .logo {
    background: #fff;
    border-radius: 50%;
    width: 152px;
    height: 152px;
    margin-top: -55px;
}
.schedule-yellow-box h2 {
    font-weight: 700;
    font-size: 36px;
    margin-top: 33px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
}
.schedule-yellow-box .text {
    padding: 0 280px;
}

.make-appointment .schedule-wrap .header-row-sch .col:first-of-type {
    flex: 0 0 100%;
}
.make-appointment .schedule-wrap .content-row .col .inner {
    justify-content: space-between;
    flex-wrap: nowrap;
}
.make-appointment .schedule-wrap .content-row .col .inner .green-btn {
    width: 120px;
}
.make-appointment .schedule-wrap .content-row .col:first-of-type {
    padding-top: 0;
}
.make-appointment .schedule-wrap .content-row .col:first-of-type div {
    align-items: center;
    height: 100%;
}
.make-appointment .schedule-wrap .content-row .col {
    border-bottom: 1px solid #fff;
}

.table-wrap {
    margin-top: 18px;
    margin-bottom: 50px;
}
.table-wrap table {
    width: 100%;
    border-radius: 10px;
    border: 0;
    table-layout: fixed;
}
.table-wrap table th {
    background: #FFBB00;
    text-transform: none;
    font-weight: 500;
    font-size: 14px;
    border-right: 1px solid #CAD1D7;
    padding: 20px 5px;
}
.table-wrap table td {
    padding: 20px 5px;
    font-weight: 500;
    font-size: 12px;
    word-wrap: break-word;
    text-align: center;
}
.table-wrap table th:first-of-type {
    border-top-left-radius: 10px;
}
.table-wrap table th:last-of-type {
    border-top-right-radius: 10px;
    border-right: 0;
}
.table-wrap table tr:last-of-type td:first-of-type {
    border-bottom-left-radius: 10px;
}
.table-wrap table tr:last-of-type td:last-of-type {
    border-bottom-left-radius: 10px;
}
.separator {
    width: 100%;
    height: 3px;
    background: #E7EDF6;
    position: relative;
    margin: 30px 0;
}
.separator::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 456px;
    height: 3px;
    background: #FFBB00;
    content: "";
}
.table-wrap.on-road-edit-table th {
    background: #4BA9AF;
    color: #fff;
}
.pulse-main{
    animation: pulse-main 1.2s 3;
}
.pulse-secondary{
    animation: pulse-secondary 1.2s 3;
}
@-webkit-keyframes pulse-main {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(33, 71, 83, 0.6);
    }
    70% {
        -webkit-box-shadow: 0 0 19px 19px rgba(33, 71, 83, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(33, 71, 83, 0);
    }
}
@keyframes pulse-main {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(33, 71, 83, 0.6);
        box-shadow: 0 0 0 0 rgba(33, 71, 83, 0.6);
    }
    70% {
        -moz-box-shadow: 0 0 19px 19px rgba(33, 71, 83, 0);
        box-shadow: 0 0 19px 19px rgba(33, 71, 83, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(33, 71, 83, 0);
        box-shadow: 0 0 0 0  rgba(33, 71, 83, 0);
    }
}
@-webkit-keyframes pulse-secondary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 187, 0, 0.6);
    }
    70% {
        -webkit-box-shadow: 0 0 19px 19px rgba(255, 187, 0, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 187, 0, 0);
    }
}
@keyframes pulse-secondary {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 187, 0, 0.6);
        box-shadow: 0 0 0 0 rgba(255, 187, 0, 0.6);
    }
    70% {
        -moz-box-shadow: 0 0 19px 19px rgba(255, 187, 0, 0);
        box-shadow: 0 0 19px 19px rgba(255, 187, 0, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 187, 0, 0);
        box-shadow: 0 0 0 0  rgba(255, 187, 0, 0);
    }
}
.sitemap-container h2 {
    margin: 0;
    padding: 20px;
}
.sitemap-container {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap:1rem;
}
.sitemap-container .big-left-box {
    margin-bottom: 1rem;
    padding-bottom: 10px;
}
.sitemap-container .big-left-box .info-row{
    margin-bottom: 0;
}
.sitemap-container ul {
    list-style: none;
}
.sitemap-container ul li a{
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
}
.sitemap-container ul li a:hover{
    text-decoration: underline;
}
.sitemap-container ul li{
    margin-bottom: 10px;
}
ul.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 0;
    list-style: none;
}
ul.breadcrumbs li.active {
    color: #4BA9AF;
    text-decoration: none;
}
ul.breadcrumbs li a {
    color: #214753;
    text-decoration: none;
}
.for-mobile ul.breadcrumbs li a {
    font-size: 12px;
}
ul.breadcrumbs li:not(.active) a:hover {
    color: #4BA9AF;
    text-decoration: underline;
}
ul.breadcrumbs li:not(:first-child)::before {
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    color: #214753;
    content: "|";
}

.car-parts .yellow-banner {
    background-color: #FFBB00;
    min-height: 3rem;
    color: #214753;
    text-align: center;
    font-family: Montserrat;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    padding: .5rem 0rem;
}

.car-parts .img-container img {
    max-width: 407px;
}

.car-parts .text {
    color: #214753;
    font-family: Montserrat;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.25rem;
    margin-top: 1.5rem;
}

.car-parts form {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.car-parts .form-element {
    gap: 5px;
    grid-column: span 4;
}

.car-parts .checkboxes {
    grid-column: span 8;
}

.car-parts .form-element.description {
    grid-column: span 7;
}

.car-parts .form-element.description textarea {
    max-height: unset;
    height: auto;
    flex-grow: 1;
}

.car-parts .form-element.upload {
    grid-column: span 5;
}

.car-parts .form-element input {
    font-size: 14px;
    font-weight: 500;
    background: #FFFFFF;
    border: 0.5px solid #CAD1D7;
    border-radius: 10px;
    padding: 0 10px;
    height: 50px;
}

.car-parts .form-element .description {
    grid-column: span 7;
}

.upload-preview {
    grid-column: span 12;
    grid-row: 4;
    overflow-x: scroll;
    margin-bottom: .5rem;
}

.car-parts .remove-button {
    margin: .25rem;
    color: #214753;
    cursor: pointer;
    transition: all 100ms ease-in;
}

.car-parts .remove-button:hover {
    color: firebrick;
    font-weight: 700;
}
.author-card--wrapper {
    box-shadow: 0px 0px 6px 4px rgba(136, 152, 170, 0.05);
    border-radius: .5rem;
    padding-block: .3rem;
    display: flex;
    flex-wrap: wrap;
}

.author-card__image-container {
    padding-inline: .5rem;
    border-right: 1px solid #E7EDF6;
}

.author-card__image {
    width: 4rem;
    height: 4rem !important;
    object-fit: cover;
}

.author-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-inline: .5rem;
}

.author-card__name {
    margin-bottom: 0;
    font-weight: bold;
}

.author-card__date,
.author-card__reading-time {
    font-size: .8rem;
    display: flex;
    align-items: center;
    gap: .2em;
}

.author-card__icon {
    width: 1.2em;
    height: 1.2em;
    object-fit: contain;
}

.section-heading {
    border-bottom: 3px solid #E7EDF6;
    position: relative;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 15px;
    font-size: 16px;
}

.section-heading::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50%;
    max-width: 456px;
    height: 3px;
    background: #FFBB00;
    content: "";
}

.grid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    grid-auto-rows: 7.5rem;
    gap: .5em;
}
.expandable-grid {
    display:grid;
    grid-template-rows:0fr;
    transition: grid-template-rows 150ms ease-in;
}
.expandable-grid > .expandable-grid_child {
    overflow:hidden;
    grid-row: 1 / span 2;
}
.expandable-grid--open{
    grid-template-rows:1fr;
}
.yellow-hover:hover{
    color: #FFBB00;
}
.tab-content-new.service-holder .form-group{
    flex-wrap:wrap;
    gap:20px;
}