.toastify{padding:12px 20px;color:#fff;display:inline-block;box-shadow:0 3px 6px -1px rgba(0,0,0,.12),0 10px 36px -4px rgba(77,96,232,.3);background:-webkit-linear-gradient(315deg,#73a5ff,#5477f5);background:linear-gradient(135deg,#73a5ff,#5477f5);position:fixed;opacity:0;transition:all .4s cubic-bezier(.215, .61, .355, 1);border-radius:2px;cursor:pointer;text-decoration:none;max-width:calc(50% - 20px);z-index:2147483647}.toastify.on{opacity:1}.toast-close{background:0 0;border:0;color:#fff;cursor:pointer;font-family:inherit;font-size:1em;opacity:.4;padding:0 5px}.toastify-right{right:15px}.toastify-left{left:15px}.toastify-top{top:-150px}.toastify-bottom{bottom:-150px}.toastify-rounded{border-radius:25px}.toastify-avatar{width:1.5em;height:1.5em;margin:-7px 5px;border-radius:2px}.toastify-center{margin-left:auto;margin-right:auto;left:0;right:0;max-width:fit-content;max-width:-moz-fit-content}@media only screen and (max-width:360px){.toastify-left,.toastify-right{margin-left:auto;margin-right:auto;left:0;right:0;max-width:fit-content}}

:root {
    --bg-color: #F5F5F5;
    --text-black: #111111;
    --text-grey: #606060;
    --text-light-grey: #969696;
    --xpel-green: #3DD098;
    --xpel-blue: #009AC9;
    --xpel-red: #DE5A5A;
    --border-color: #D9D9D9;
}

/*--common--*/

html {
    margin: 0;
    padding: 0;
    border: 0;
}

body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
nav, section {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, dialog,
footer, header, menu, nav, section {
    display: block;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: "";
}

blockquote, q {
    quotes: "" "";
}

a img {
    border: none;
}

input:focus {
    outline: none;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-black);
    background-color: var(--bg-color);
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/*-Containers-*/

.main {
    position: relative;
    width: 100%;
    padding: 80px 0 0;
}

/*-Header-*/

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    justify-content: space-between;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 80px;
    padding: 8px 24px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.logo {
    display: block;
    padding-right: 24px;
}

.logo img {
    height: 64px;
    width: auto;
    display: block;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 920px) {
    .main {
        padding: 72px 0 0;
    }

    header {
        height: 72px;
        padding: 8px 10px 8px 20px;
    }

    .logo {
        padding-right: 0;
    }

    .logo img {
        height: 56px;
    }

}

/*-Form-*/
.form-container {
    width: 100%;
    max-width: 800px;
}

.from-header {
    width: 100%;
    display: none;
    flex-direction: row;
    padding: 0 0 24px;
}

.form-title {
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
}

.search-form, .search-form--wrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.close_btn {
    cursor: pointer;
    display: block;
    flex: none;
    width: 40px;
    height: 40px;
    background: url("../img/close_icon.svg") no-repeat center center transparent;
    background-size: 16px 16px;
    margin: 0;
    padding: 0;
    border: 0;
}

.search-btn-wrap {
    display: none;
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 100%;
    padding: 0 20px;
}

#show-search-btn {
    cursor: pointer;
    width: 100%;
    height: 56px;
    border-radius: 16px;
    margin: 0;
    padding: 0;
    border: none;
    background-color: var(--xpel-green);
    font-size: 17px;
    font-weight: 500;
    line-height: 56px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}


@media screen and (max-width: 920px) {
    .search-btn-wrap {
        display: block;

    }

    .form-container {
        display: flex;
        max-width: unset;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 72px;
        left: -100%;
        z-index: 1;
        height: calc(100vh - 72px);
        padding: 24px 20px 40px;
        border-top: var(--border-color) solid 1px;
        background-color: #FFFFFF;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .form-container.visible {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .from-header {
        display: flex;
        flex: none;
    }

    .search-form {
        height: 100%;
        flex-direction: column;
        justify-content: space-between;
        gap: unset;
        overflow: auto;
    }

    .search-form--wrap {
        flex-direction: column;
        gap: 12px;
        height: 100%;
        flex: auto;
        overflow: auto;
    }
}

.infoInput {
    position: relative;
    width: 100%;
    height: 56px;
    border-radius: 16px;
    background-color: var(--bg-color);
    overflow: hidden;
}

.label {
    display: block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.infoInput .label {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    padding: 10px 20px 0;
    color: var(--text-grey);
}

.infoInput input {
    display: block;
    width: 100%;
    height: 56px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-black);
    border: none;
    outline: none;
    background-color: transparent;
    padding: 22px 20px 0;
    margin: 0;
}

.infoInput select {
    background: url("../img/expandableDown.svg") no-repeat right 20px center transparent;
    background-size: 10px 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-black);
    width: 100%;
    height: 56px;
    padding: 22px 40px 0 20px;
    transition: box-shadow 0.3s ease-in-out;
}

.infoInput select::-ms-expand {
    display: none;
}

.infoInput select option {
    font-size: 15px;
}

.infoInput input::-webkit-input-placeholder,
.infoInput input:-ms-input-placeholder,
.infoInput input:-ms-input-placeholder,
.infoInput input:-ms-input-placeholder {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-black);
    font-style: normal;
}

.infoInput input::placeholder {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-black);
    font-style: normal;
    opacity: 1;
}

.formSubmit {
    flex: none;
    display: block;
    width: 56px;
    height: 56px;
    background: url("../img/search_icon.svg") no-repeat center center transparent;
    background-size: 20px 20px;
    cursor: pointer;
    border: none;
    outline: none;
    overflow: hidden;
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    text-indent: -10000px;
    margin: 0;
    padding: 0;
    transition: opacity 0.2s ease-in-out;
}

@media screen and (max-width: 920px) {
    .infoInput {
        flex: none;
    }

    .infoInput {
        height: 64px;
    }

    .infoInput input {
        height: 64px;
        font-size: 18px;
        font-weight: 500;
        padding: 24px 16px 0;
    }

    .infoInput select {
        font-size: 18px;
        font-weight: 500;
        height: 64px;
        padding: 24px 36px 0 16px;
    }

    .infoInput .label {
        font-size: 13px;
        line-height: 13px;
        padding: 11px 16px 0;
    }

    .infoInput input::-webkit-input-placeholder,
    .infoInput input:-ms-input-placeholder,
    .infoInput input:-ms-input-placeholder,
    .infoInput input:-ms-input-placeholder,
    .infoInput input::placeholder {
        font-size: 18px;
        font-weight: 500;

    }

    .formSubmit {
        width: 100%;
        height: 56px;
        background: none var(--xpel-blue);
        background-size: unset;
        text-indent: unset;
        transition: unset;
        border-radius: 16px;
    }
}

.switch-view {
    display: flex;
    flex-direction: row;
    padding-left: 24px;
}

#switch-map-view, #switch-list-view {
    cursor: pointer;
    display: block;
    width: 48px;
    height: 48px;
    border: none;
    background-color: transparent;
    margin: 0;
    padding: 0;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

#switch-map-view {
    background: url("../img/map_icon.svg") no-repeat center center transparent;
    background-size: 22px 20px;
}

#switch-list-view {
    background: url("../img/list_icon.svg") no-repeat center center transparent;
    background-size: 20px 20px;
}

#switch-map-view.active, #switch-list-view.active {
    opacity: 0.3;
}

.page_content {
    position: relative;
    display: none;
    width: 100%;
    min-width: 320px;
    overflow: auto;
}

.page_content.active {
    display: block;
}

/*Map view*/

#map-view, #list-view {
    height: calc(100vh - 80px);
}

#map-view iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.bubble {
    cursor: pointer;
    position: relative;
    z-index: 1;
    font-size: 0;
    background: #009AC9;
    border-radius: 8px;
    padding: 8px 16px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
}

.bubble--active {
    background: #FFFFFF;
}

.bubble--visited {
    background: #D2D2D2;
}

.bubble > span {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    padding-left: 6px;
}

.bubble--active > span {
    color: #009AC9;
}

.bubble--visited > span {
    color: #111111;
}

.bubble > svg {
    display: inline-block;
    vertical-align: middle;
}

.bubble--active > svg path {
    fill: #009AC9;
}

.bubble--visited > svg path {
    fill: #111111;
}

.bubble:after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    z-index: 1;
    border-style: solid;
    border-width: 12px 8px 0 8px;
    border-color: #009AC9 transparent transparent transparent;
    bottom: -12px;
    left: 50%;
    margin-left: -8px;
}

.bubble--active:after {
    border-color: #FFFFFF transparent transparent transparent;
}

.bubble--visited:after {
    border-color: #D2D2D2 transparent transparent transparent;
}

.vehicle-info {
    position: fixed;
    bottom: 0;
    right: -100%;
    z-index: 5;
    padding: 32px 24px 24px;
    height: calc(100vh - 80px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.vehicle-info.visible {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.vehicle-info--content {
    display: flex;
    flex-direction: column;
    width: 384px;
    height: 100%;
    padding: 32px 0 0;
    background-color: #FFFFFF;
    border-radius: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.vehicle-info--top {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: none;
    padding: 0 32px;
}

.vehicle-info--heading {
    width: 100%;
    font-size: 32px;
    font-weight: 700;
}

.vehicle-info--status {
    flex: none;
    font-size: 14px;
    padding: 2px 32px 32px;
}

.status-available {
    font-weight: 700;
    color: var(--xpel-green);
}

.status-unavailable {
    font-weight: 700;
    color: var(--xpel-red);
}

.vehicle-info--list {
    height: 100%;
    padding: 0 32px;
    overflow: auto;
}

.vehicle-info--list-item {
    display: flex;
    flex-direction: row;
    padding: 14px 0;
    border-bottom: var(--border-color) solid 1px;
}

.label {
    flex: none;
    text-align: left;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-grey);
}

.value {
    width: 100%;
    text-align: right;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-black);
}

.vehicle-info--btn-wrap {
    width: 100%;
    flex: none;
    padding: 16px 32px 40px;
}

.vehicle-info--contact-btn {
    cursor: pointer;
    width: 100%;
    height: 56px;
    border-radius: 16px;
    margin: 0;
    padding: 0;
    border: none;
    background-color: var(--xpel-blue);
    font-size: 17px;
    font-weight: 500;
    line-height: 56px;
    text-align: center;
    color: #FFFFFF;
}

@media screen and (max-width: 920px) {
    .page_content {
        height: calc(100vh - 72px);
    }

    .vehicle-info {
        padding: 0;
        width: 100%;
        height: calc(100vh - 272px);
        max-height: 640px;
    }

    .vehicle-info--content {
        width: 100%;
        border-radius: 32px 32px 0 0;
    }

    .vehicle-info--top, .vehicle-info--list {
        padding: 0 20px;
    }

    .vehicle-info--status {
        padding: 2px 20px 32px;
    }

    .vehicle-info--btn-wrap {
        padding: 12px 20px 40px;
    }

}

/*list view*/

#list-view {
    padding: 40px 40px 0;
}

.table-scroll {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: auto;
    height: 100%;
}

.table-scroll table {
    width: 100%;
    min-width: 1160px;
    margin: auto;
    border-collapse: collapse;
    border-spacing: 0;
}

.table-wrap {
    position: relative;
}

.table-scroll th,
.table-scroll td {
    padding: 16px 20px;
    border: none;
    font-size: 15px;
    text-align: left;
    vertical-align: middle;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.table-scroll tbody tr:nth-child(even), .table-scroll tbody tr:nth-child(even) > th {
    background-color: var(--bg-color);
}

.table-scroll tbody tr:nth-child(odd), .table-scroll tbody tr:nth-child(odd) > th {
    background-color: #EFEFEF;
}

.table-scroll tr td:last-child {
    width: 1%;
    white-space: nowrap;
}

.table-scroll th {
    white-space: nowrap;
}

.table-scroll thead th {
    background: var(--bg-color);
    font-weight: 600;
    color: var(--text-black);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding: 0 20px 24px;
}

.table-scroll tbody td {
    color: var(--text-grey);
}

.table-scroll td span {
    display: block;
    white-space: nowrap;
}

.contact-btn {
    cursor: pointer;
    margin: 0;
    padding: 16px;
    border: none;
    outline: none;
    background-color: var(--xpel-green);
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    color: #FFFFFF;
    border-radius: 8px;
    transition: opacity 0.3s ease-in-out;
}

.table-scroll tfoot,
.table-scroll tfoot th,
.table-scroll tfoot td {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 4;
}

th:first-child {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 2;
    font-weight: 600;
}

thead th:first-child,
tfoot th:first-child {
    z-index: 5;
}

@media screen and (max-width: 920px) {

    #list-view {
        padding: 24px 0 112px;
    }
}


@media screen and (min-width: 920px) {
    .formSubmit:hover, #switch-map-view:hover, #switch-list-view:hover,
    .close_btn:hover, .contact-btn:hover {
        opacity: 0.6;
    }

    #switch-map-view.active:hover, #switch-list-view.active:hover {
        opacity: 0.3;
    }

    #hide-search-btn {
        display: none;
    }
}

.mapWrap{
    position: relative;
    flex: auto;
    width: 100%;
    height: 100%;
}

.mapWrap iframe{
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.search-message--wrap{
    width: 100%;
    max-width: 520px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    padding: 0 20px;
}

.search-message{
    width: 100%;
    padding: 24px;
    border-radius: 24px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0,0,0,0.24);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4em;
    color: var(--text-grey);
}

.search-message--top{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: var(--border-color) solid 1px;
    margin-bottom: 16px;
}

.search-message--heading{
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    color: var(--xpel-red);
}

.search-empty{
    width: 100%;
    max-width: 480px;
    padding: 40px 16px 64px;
    margin: auto;
}

.search-empty img{
    display: block;
    margin: 0 auto 24px;
    padding: 0;
}

.search-empty--title{
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 8px;
}

.search-empty--text{
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6em;
    color: var(--text-grey);
    text-align: center;
}