.hidden {
    visibility: hidden;
}

.none-display {
    display: none;
}

.show-error {
    display: block;
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.vehicle-container{
    background-color: #2c2c2c;
    position: relative;
    padding: 70px;
    margin-top: -40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.vehicle-container {
    background-color: #2c2c2c;
    position: relative;
    padding: 80px;
    margin-top: -40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.vehicle-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            #fff,
            #fff 20px,
            transparent 20px,
            transparent 40px);
    z-index: 1;
}

.animate::before {
    animation: moveLine 1s linear infinite;
}

@keyframes moveLine {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 40px;
    }
}

.plates-container {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin-bottom: 70px;
    margin-top: -40px;
    z-index: 1;
}

.blue-plate {
    position: relative;
    background: linear-gradient(180deg,
            #0076CE 0%,
            #1E90FF 50%,
            #0076CE 100%);
    height: 60px;
    width: 60px;
    border-radius: 5px;
    box-shadow: -2px 2px 2px rgba(0, 0, 0, 0.3);
}

.blue-plate.left {
    position: relative;
    left: 93px;
}

.blue-plate.right {
    position: relative;
    right: 93px;
}

.plate-indent {
    position: absolute;
    background-color: #ffffff;
    width: 2px;
    top: calc(50% - 7.5px);
    height: 15px;
    border-radius: 1px;
    box-shadow: inset -2px 2px 2px rgba(0, 0, 0, 0.3);
}

.plate-indent.left {
    left: 1px;
}

.plate-indent.right {
    right: 1px;
}


@media (min-width: 200px) {

    .plates-container {
        margin-bottom: 28px;
    }

    .blue-plate {
        height: 24px;
        width: 24px;
        border-radius: 2px;
        box-shadow: -0.8px 0.8px 0.8px rgba(0, 0, 0, 0.3);
    }

    .blue-plate.left {
        left: 37.2px;
    }

    .blue-plate.right {
        right: 37.2px;
    }

    .plate-indent {
        width: 0.8px;
        height: 6px;
        top:calc(50% - 3px);
        border-radius: 0.4px;
        box-shadow: inset -0.8px 0.8px 0.8px rgba(0, 0, 0, 0.3);
    }

    .plate-indent.left {
        left: 0.4px;
    }

    .plate-indent.right {
        right: 0.4px;
    }

    .car-pic {
        height: auto;
        width: 72px;
        z-index: 1;
    }

    .car-percentage-bl {
        position: relative;
        right: 30px;
        bottom: 70px;
    }

    .car-percentage-br {
        position: relative;
        left: 32px;
        bottom: 70px;
    }

    .car-percentage-fr {
        position: relative;
        left: 32px;
        top: 74px;
    }

    .car-percentage-fl {
        position: relative;
        right: 30px;
        top: 74px;
    }

    .tr-l {
        width: 45px;
    }
}

@media (min-width: 400px) {

    .plates-container {
        margin-bottom: 42px;
    }

    .blue-plate {
        height: 36px;
        width: 36px;
        border-radius: 3px;
        box-shadow: -1.2px 1.2px 1.2px rgba(0, 0, 0, 0.3);
    }

    .blue-plate.left {
        left: 55.8px;
    }

    .blue-plate.right {
        right: 55.8px;
    }

    .plate-indent {
        width: 1.2px;
        height: 9px;
        top: calc(50% - 4.5px);
        border-radius: 0.6px;
        box-shadow: inset -1.2px 1.2px 1.2px rgba(0, 0, 0, 0.3);
    }

    .plate-indent.left {
        left: 0.6px;
    }

    .plate-indent.right {
        right: 0.6px;
    }

    .car-pic {
        height: auto;
        width: 108px;
        z-index: 1;
    }

    .car-percentage-bl {
        position: relative;
        right: 45px;
        bottom: 105px;
    }

    .car-percentage-br {
        position: relative;
        left: 48px;
        bottom: 105px;
    }

    .car-percentage-fr {
        position: relative;
        left: 48px;
        top: 111px;
    }

    .car-percentage-fl {
        position: relative;
        right: 45px;
        top: 111px;
    }

    .tr-l {
        width: 50px;
    }
}


@media (min-width: 700px) {
    .plates-container {
        margin-bottom: 63px;
    }

    .blue-plate {
        height: 54px;
        width: 54px;
        border-radius: 4.5px;
        box-shadow: -1.8px 1.8px 1.8px rgba(0, 0, 0, 0.3);
    }

    .blue-plate.left {
        left: 83.7px;
    }

    .blue-plate.right {
        right: 83.7px;
    }

    .plate-indent {
        width: 1.8px;
        height: 13.5px;
        top: calc(50% - 6.75px);
        border-radius: 0.9px;
        box-shadow: inset -1.8px 1.8px 1.8px rgba(0, 0, 0, 0.3);
    }

    .plate-indent.left {
        left: 0.9px;
    }

    .plate-indent.right {
        right: 0.9px;
    }

    .car-pic {
        height: auto;
        width: 162px;
        z-index: 1;
    }

    .car-percentage-bl {
        position: relative;
        right: 67.5px;
        bottom: 157.5px;
    }

    .car-percentage-br {
        position: relative;
        left: 72px;
        bottom: 157.5px;
    }

    .car-percentage-fr {
        position: relative;
        left: 72px;
        top: 166.5px;
    }

    .car-percentage-fl {
        position: relative;
        right: 67.5px;
        top: 166.5px;
    }

    .tr-l {
        width: 70px;
    }
}

@media (min-width: 1200px) {
    .plates-container {
        margin-bottom: 70px;
    }

    .blue-plate {
        height: 60px;
        width: 60px;
        border-radius: 5px;
        box-shadow: -2px 2px 2px rgba(0, 0, 0, 0.3);
    }

    .blue-plate.left {
        left: 93px;
    }

    .blue-plate.right {
        right: 93px;
    }

    .plate-indent {
        width: 2px;
        height: 15px;
        top: calc(50% - 7.5px);
        border-radius: 1px;
        box-shadow: inset -2px 2px 2px rgba(0, 0, 0, 0.3);
    }

    .plate-indent.left {
        left: 1px;
    }

    .plate-indent.right {
        right: 1px;
    }

    .car-pic {
        height: auto;
        width: 180px;
        z-index: 1;
    }

    .car-percentage-bl {
        position: relative;
        right: 75px;
        bottom: 175px;
    }

    .car-percentage-br {
        position: relative;
        left: 80px;
        bottom: 175px;
    }

    .car-percentage-fr {
        position: relative;
        left: 80px;
        top: 185px;
    }

    .car-percentage-fl {
        position: relative;
        right: 75px;
        top: 185px;
    }

    .tr-l {
        width: 100px;
    }
}

@media (min-width: 1400px) {
    .plates-container {
        margin-bottom: 81.2px;
    }

    .blue-plate {
        height: 69.6px;
        width: 69.6px;
        border-radius: 5.8px;
        box-shadow: -2.32px 2.32px 2.32px rgba(0, 0, 0, 0.3);
    }

    .blue-plate.left {
        left: 107.88px;
    }

    .blue-plate.right {
        right: 107.88px;
    }

    .plate-indent {
        width: 2.32px;
        height: 17.4px;
        top: calc(50% - 8.7px);
        border-radius: 1.16px;
        box-shadow: inset -2.32px 2.32px 2.32px rgba(0, 0, 0, 0.3);
    }

    .plate-indent.left {
        left: 1.16px;
    }

    .plate-indent.right {
        right: 1.16px;
    }

    .car-pic {
        height: auto;
        width: 208.8px;
        z-index: 1;
    }

    .car-percentage-bl {
        position: relative;
        right: 87px;
        bottom: 203.75px;
    }

    .car-percentage-br {
        position: relative;
        left: 92.8px;
        bottom: 203.75px;
    }

    .car-percentage-fr {
        position: relative;
        left: 92.8px;
        top: 214.8px;
    }

    .car-percentage-fl {
        position: relative;
        right: 87px;
        top: 214.8px;
    }
    .tr-l {
        width: 100px;
    }
}

@media (min-width: 1700px) {
    .plates-container {
        margin-bottom: 98.87px;
    }

    .blue-plate {
        height: 84.6px;
        width: 84.6px;
        border-radius: 7.05px;
        box-shadow: -2.82px 2.82px 2.82px rgba(0, 0, 0, 0.3);
    }

    .blue-plate.left {
        left: 131.13px;
    }

    .blue-plate.right {
        right: 131.13px;
    }

    .plate-indent {
        width: 2.82px;
        height: 21.15px;
        top: calc(50% - 10.575px);
        border-radius: 1.41px;
        box-shadow: inset -2.82px 2.82px 2.82px rgba(0, 0, 0, 0.3);
    }

    .plate-indent.left {
        left: 1.41px;
    }

    .plate-indent.right {
        right: 1.41px;
    }

    .car-pic {
        height: auto;
        width: 254.58px;
        z-index: 1;
    }

    .car-percentage-bl {
        position: relative;
        right: 105.75px;
        bottom: 246.75px;
    }

    .car-percentage-br {
        position: relative;
        left: 112.8px;
        bottom: 246.75px;
    }

    .car-percentage-fr {
        position: relative;
        left: 112.8px;
        top: 260.85px;
    }

    .car-percentage-fl {
        position: relative;
        right: 105.75px;
        top: 260.85px;
    }

    .tr-l {
        width: 100px;
    }
}

@media (min-width: 1900px) {
    .plates-container {
        margin-bottom: 110.6px;
    }

    .blue-plate {
        height: 94.8px;
        width: 94.8px;
        border-radius: 7.9px;
        box-shadow: -3.16px 3.16px 3.16px rgba(0, 0, 0, 0.3);
    }

    .blue-plate.left {
        left: 146.94px;
    }

    .blue-plate.right {
        right: 146.94px;
    }

    .plate-indent {
        width: 3.16px;
        height: 23.7px;
        top: calc(50% - 11.85px);
        border-radius: 1.58px;
        box-shadow: inset -3.16px 3.16px 3.16px rgba(0, 0, 0, 0.3);
    }

    .plate-indent.left {
        left: 1.58px;
    }

    .plate-indent.right {
        right: 1.58px;
    }

    .car-pic {
        height: auto;
        width: 284.4px;
        z-index: 1;
    }

    .car-percentage-bl {
        position: relative;
        right: 118.5px;
        bottom: 276.5px;
    }

    .car-percentage-br {
        position: relative;
        left: 126.4px;
        bottom: 276.5px;
    }

    .car-percentage-fr {
        position: relative;
        left: 126.4px;
        top: 292.3px;
    }

    .car-percentage-fl {
        position: relative;
        right: 118.5px;
        top: 292.3px;
    }

    .tr-l {
        width: 100px;
    }
}

@media (min-width: 2200px) {
    .plates-container {
        margin-bottom: 133px;
    }

    .blue-plate {
        height: 114px;
        width: 114px;
        border-radius: 9.5px;
        box-shadow: -3.8px 3.8px 3.8px rgba(0, 0, 0, 0.3);
    }

    .blue-plate.left {
        left: 176.7px;
    }

    .blue-plate.right {
        right: 176.7px;
    }

    .plate-indent {
        width: 3.8px;
        height: 28.5px;
        top: calc(50% - 14.25px);
        border-radius: 1.9px;
        box-shadow: inset -3.8px 3.8px 3.8px rgba(0, 0, 0, 0.3);
    }

    .plate-indent.left {
        left: 1.9px;
    }

    .plate-indent.right {
        right: 1.9px;
    }

    .car-pic {
        height: auto;
        width: 342px;
        z-index: 1;
    }

    .car-percentage-bl {
        position: relative;
        right: 142.5px;
        bottom: 332.5px;
    }

    .car-percentage-br {
        position: relative;
        left: 152px;
        bottom: 332.5px;
    }

    .car-percentage-fr {
        position: relative;
        left: 152px;
        top: 351.5px;
    }

    .car-percentage-fl {
        position: relative;
        right: 142.5px;
        top: 351.5px;
    }

    .tr-l {
        width: 100px;
    }
}

.alleft {
    align-items: start;
    height: 275px;
}

.allright {
    align-items: end;
    height: 275px;
}

.trfl{
    right: -240px;
    top:    110px;

}
.trfr{
    left: -240px;
top: 110px;
}
.trrl{
right: -240px;
bottom: -24px;
}
.trrr{
    left: -240px;
    bottom: -24px;
}

.percentage {
    white-space: nowrap;
    color: #ffffff;
}

.percentage:after {
    content: ' %';
    font-size: small;
}

.tire-status {
    border-radius: 5px;
    z-index: 4;
}

.rotate-car {
    rotate: 90deg;
    position: absolute;
    top: 180px;
}

@media (max-width: 770px) {
    .car-result {
        overflow-x: scroll;
    }

}


.icon-margin-top-for-front {
    margin-top: 100px;
}

.icon-margin-top-for-back {
    margin-top: 22px;
}

.toast-title, .toast-message {
    text-shadow: black 1px 1px 9px;
}

table tbody tr td.text-bold:after {
    content: ' :';
}

form[action="/lab/submit-test"] {
    height: 600px;
    padding-right: 10px;
    overflow-x: hidden;
    overflow-y: scroll;
}

html ::-webkit-scrollbar {
    width: 12px;
    border-radius: 45px;
}

html ::-webkit-scrollbar-track {
    background: #FFFFFF8E;
    box-shadow: inset 0 0 6px #A1A1A1FF;
    border-radius: 45px;

}

html ::-webkit-scrollbar-thumb {
    background: rgba(101, 101, 101, 0.46);
    border-radius: 45px;
}

#data-table_filter label {
    width: 100% !important;
    display: inline-flex;
    align-items: center;
}

#data-table_filter label input {
    width: 100% !important;
    height: 38px;
}

.dark-mode .select2-container--bootstrap4 .select2-selection {
    border-color: #6c757d;
    background-color: #343a40;

}

.dark-mode .select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
    color: #fff;
}

td.active.end-date.available {
    background-color: #f34545 !important;
}
.brand-link .brand-image{
  margin-top: -12px !important;  
  margin-bottom: -11px !important;
  max-height: 68.5px;
  margin-right: unset !important;
  margin-left: unset !important;
}
