﻿:root {
    --black: #000;
    --white: #FFFFFF;
    --gray: #e9e7e1;
    --gray-border: #ccc;
    --hover-dark: #d2c7be;
    --hover-light: #e9e7e1;
    --hover-border-light: #9d8c83;
    --hover-color-light: #9d8c83;
    --primary: #1a1b1b;
}

/* Typography Start */

@font-face {
    font-family: 'DS Automobiles Pro';
    src: url('../fonts/specific/DSAutomobilesPro-ExtraboldItalic.woff2') format('woff2'), url('../fonts/specific/DSAutomobilesPro-ExtraboldItalic.woff') format('woff'), url('../fonts/specific/DSAutomobilesPro-ExtraboldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'DS Automobiles Pro';
    src: url('../fonts/specific/DSAutomobilesPro-Regular.woff2') format('woff2'), url('../fonts/specific/DSAutomobilesPro-Regular.woff') format('woff'), url('../fonts/specific/DSAutomobilesPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DS Automobiles Pro';
    src: url('../fonts/specific/DSAutomobilesPro-Italic.woff2') format('woff2'), url('../fonts/specific/DSAutomobilesPro-Italic.woff') format('woff'), url('../fonts/specific/DSAutomobilesPro-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'DS Automobiles Pro';
    src: url('../fonts/specific/DSAutomobilesPro-Extrabold.woff2') format('woff2'), url('../fonts/specific/DSAutomobilesPro-Extrabold.woff') format('woff'), url('../fonts/specific/DSAutomobilesPro-Extrabold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DS Automobiles Pro';
    src: url('../fonts/specific/DSAutomobilesPro-Light.woff2') format('woff2'), url('../fonts/specific/DSAutomobilesPro-Light.woff') format('woff'), url('../fonts/specific/DSAutomobilesPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DS Automobiles Pro';
    src: url('../fonts/specific/DSAutomobilesPro-LightItalic.woff2') format('woff2'), url('../fonts/specific/DSAutomobilesPro-LightItalic.woff') format('woff'), url('../fonts/specific/DSAutomobilesPro-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'DS Automobiles Pro';
    src: url('../fonts/specific/DSAutomobilesPro-BoldItalic.woff2') format('woff2'), url('../fonts/specific/DSAutomobilesPro-BoldItalic.woff') format('woff'), url('../fonts/specific/DSAutomobilesPro-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'DS Automobiles Pro';
    src: url('../fonts/specific/DSAutomobilesPro-Bold.woff2') format('woff2'), url('../fonts/specific/DSAutomobilesPro-Bold.woff') format('woff'), url('../fonts/specific/DSAutomobilesPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html, body, p, span {
    font-family: 'DS Automobiles Pro', sans-serif !important;
    font-weight: normal;
    font-style: normal;
}

h1:not(.mb-0) {
    color: var(--black);
}

h1, h2, h3, h4 {
    font-family: 'DS Automobiles Pro', sans-serif !important;
    font-weight: bold;
    font-style: normal;
}

.btn, .btn-inverse, .btn-common {
    font-family: 'DS Automobiles Pro', sans-serif !important;
    font-weight: normal;
    font-style: normal;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.headline {
    font-weight: 300;
/*    line-height: 4rem;
    font-size: 4rem;*/
}

.headline.mb-0 {
    font-weight: 700;
}

.text-container p span {
    font-weight: 400;
    font-size: 1rem !important;
    line-height: 1.375rem;
    letter-spacing: .015625rem;
}

@media (min-width: 1024px) {
    .headline.mb-0 {
        font-size: 3.5rem;
    }
}

/* Typography End */

/* Input Fields */

.form-group label {
    font-size: .875rem;
    line-height: 1rem;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    padding-bottom: 0;
}

.form-group {
    text-align: left;
}

.form-control {
    appearance: none;
    background-color: var(--white);
    border-color: var(--gray-border);
    border-radius: 0;
    border-style: solid;
    border-width: .0625rem;
    box-shadow: 0 .0625rem .125rem rgba(0, 0, 0, .1019607843) inset;
    box-sizing: border-box;
    color: rgba(0, 0, 0, .7019607843);
    display: block;
    font-family: inherit;
    font-size: 1rem;
    height: 2.4375rem;
    margin: 0;
    padding: 0;
    padding-left: 0.5rem;
    width: 100%;
}

/* Input Fields */

/* Navbar Start */

.headerLogo {
    max-width: 80px;
}

.onsiteLogo {
    max-width: 160px;
    margin-top: 4rem;
}

.navbar {
    background-color: var(--black);
}

.navbar-nav {
    color: var(--white);
}

/* Navbar End*/

/* Footer Start */

footer {
    background-color: var(--gray);
    color: var(--black);
}

footer .footer-social a i,
footer .footer-social a:hover i {
    color: var(--black) !important;
}

.footer-social a:hover {
    color: var(--black);
}

.social-icon {
    filter: none;
}

.footer-list li a {
    color: var(--black);
}

.footer-list li a:hover {
    text-decoration: none;
    color: inherit;
}

.social-icon:hover {
    filter: none;
}

/* Footer End */

/* Buttons Start */

.btn {
    height: 3rem;
    padding: 0 1.5rem;
    border-radius: 1.5rem;
    letter-spacing: .018125rem;
    text-align: center;
    border: 0;
    font-size: 1rem;
}

.btn-common {
    border: 0;
    background-color: var(--primary);
    color: var(--white);
}

.btn-common:hover {
    background-color: var(--hover-color-light);
    color: var(--white);
}

.btn-inverse {
    background-color: var(--white);
    color: var(--black);
}

.btn-inverse:hover {
    background-color: var(--hover-dark);
    color: var(--black);
}

:not(.btn-check) + .btn:active {
    background-color: var(--hover-color-light);
    color: var(--white);
}

#cph_Content_pnl_BookingWrapper .slot-wrapper:hover, 
#cph_Content_pnl_BookingWrapper .slot-wrapper.selected {
    background-color: var(--hover-light);
    color: var(--hover-color-light);
}

/* Buttons End */

/* States Start */

.spinner {
    color: var(--primary);
}

.carousel-item > .row {
    justify-content: center;
}

.bh-sl-container .bh-sl-loc-list .list-focus {
    border-color: var(--black);
}

#cph_Content_pnl_BookingWrapper .car-card.active {
    border-color: var(--black);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

#cph_Content_pnl_BookingWrapper .selected-indicator {
    color: var(--black);
}

#cph_Content_pnl_BookingWrapper .car-card:hover {
    border-color: var(--black);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

/* States End */