:root {
    --primary-bg-color: #FFFFFF;
    --brand-color: #05141f;
    --dark-color: #05141f;
    --meta-color: #a3a3a2;
    --accent-color-red: #e81c26;
}
@font-face{
    font-family: 'KiaSignature';
	src: url(../fonts/KiaSignature-Regular.eot);
	src: url(../fonts/KiaSignature-Regular.eot?#iefix) format('embedded-opentype'),
		url(../fonts/KiaSignature-Regular.woff2) format('woff2'),
		url(../fonts/KiaSignature-Regular.ttf) format('truetype'),
		url(../fonts/KiaSignature-Regular.svg#HelveticaNeue-UltraLight) format('svg');
    font-style:normal;
    font-weight:400
}
@font-face{
    font-family: 'KiaSignature';
	src: url(../fonts/KiaSignature-Bold.eot);
	src: url(../fonts/KiaSignature-Bold.eot?#iefix) format('embedded-opentype'),
		url(../fonts/KiaSignature-Bold.woff2) format('woff2'),
		url(../fonts/KiaSignature-Bold.ttf) format('truetype'),
		url(../fonts/KiaSignature-Bold.svg#HelveticaNeue-UltraLight) format('svg');
    font-style:normal;
    font-weight:600
}

body {
    background-color: var( --primary-bg-color );
    font-weight: 400;
    font-family: "KiaSignature", sans-serif;
    line-height: 1.2;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
acronym {
    cursor: pointer;
    color: var( --dark-color );
    text-decoration: underline;
    font-weight: 600;
}
h1, .h1 {
    font-weight: 600;
}
.container {
    max-width: 1080px;
}
.stop {
    touch-action: none;
    overflow: hidden;
}
.hidden {
    display: none;
}
.btn {
    text-decoration: none;
    padding: 0.5rem 2rem;
    font-size: 1.125rem;
    border: none;
}
a.btn {
    display: inline-block;
    text-align: center;
}
.btn[disabled=disabled], .btn:disabled {
    opacity: 0.6;
    pointer-events: none;
}
.btn.btn-light {
    color: var( --dark-color );
    background-color: #FFFFFF;
}
.btn.btn-dark {
    color: #fff;
    background-color: var( --dark-color );
}
.btn.btn-round {
    border-radius: 1.2rem;
}

.btn.btn-lg {
    padding: 0.7rem 3rem;
    border-radius: 1.4rem;
}
.btn.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn.btn-full-width {
    width: 100%;
}

.btn.btn-border {
    border: solid 1px var( --dark-color );
}
.btn.btn-dark.btn-border {
    border: solid 1px #fff;
}
.btn.spinner {
    position: relative;
    color: rgba( 255,255,255,0.4);
    padding-right: 40px;
}
.btn.btn-light.spinner {
    color: rgba( 0,0,0,0.4);
}
.spinner:after {
    content: "";
    position: absolute;
    right: 5px;
    top: 6px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    border-left: 2px solid #ffffff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}
.btn-light.spinner:after {
    border-top: 2px solid rgba(0, 0, 0, 0.4);
    border-right: 2px solid rgba(0, 0, 0, 0.4);
    border-bottom: 2px solid rgba(0, 0, 0, 0.4);
    border-left: 2px solid var( --dark-color );
    top: 8px;
    right: 8px;
}
@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


.ml-auto {
    margin-left: auto;
}

.button-back {
    padding: 40px 0;
}
.button-back .btn {
    font-weight: 600;
}

.input-container {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
input[type=text],
input[type=date],
input[type=password],
input[type=email] {
    box-sizing: border-box;
    padding: 0.7rem 1rem;
    max-width: 100%;
    width: 100%;
    border: solid 1px var( --dark-color );
}
input.error,
select.error,
.input-vin-container.error::before {
    border: solid 1px #f00;
}
p.error {
    color: #f00;
}
textarea {
    box-sizing: border-box;
    padding: 0.7rem 1rem;
    width: 100%;
    border: solid 1px var( --dark-color );
    min-height: 200px;
}
.textarea-container {
    position: relative;
}
.textarea-counter {
    font-size: 0.8em;
    position: absolute;
    bottom: -5px;
    right: 10px;
    background-color: #fff;
    padding: 3px;
}
select {
    box-sizing: border-box;
    padding: 0.7rem 1rem;
    max-width: 100%;
    width: 100%;
    border: solid 1px var( --dark-color );
}

.input-vin-container {
    position: relative;
    z-index: 10;
    margin-bottom: 0;
}
.input-vin-container::before {
    content:'';
    position: absolute;
    display: block;
    border: solid 1px var( --dark-color );
    width: 100%;
    height: 3.4rem;
    z-index: -1;
}
.input-vin-container > span.label {
    display: inline-block;
    margin-right: 20px;
    padding-left: 20px;
    padding-top: 15px;
}
.input-vin-container > div {
    display: inline-block;
    vertical-align: top;
}
.input-vin-container input {
    background-color: transparent;
    border: none;
    display: inline-block;
    border-bottom: solid 2px #aaa;
    max-width: 26px;
    margin-left: 6px;
    margin-right: 6px;
    padding: 5px 2px;
    margin-top: 5px;
    text-align: center;
    padding-bottom: 0;
}
.input-vin-dropdown {
    border: solid 1px var( --dark-color );
    border-top: none;
    padding: 1rem;
    padding-bottom: 0;
    font-size: 0.85rem;
}
.input-vin-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 8rem;
    overflow-y: auto;
    padding-bottom: 1rem;
}
.input-vin-dropdown ul li {
    margin: 5px 0;
    cursor: pointer;
}
.input-vin-dropdown ul li.used-vin {
    opacity: 0.7;
}

.spacer {
    width: 100%;
    display: block;
}
.spacer.v-1rem {
    height: 1rem;
}
.spacer.v-2rem {
    height: 2rem;
}
.spacer.v-3rem {
    height: 3rem;
}
.spacer.v-4rem {
    height: 4rem;
}
.spacer.v-6rem {
    height: 6rem;
}

.confirm-bg {
    background-color: rgba( 0, 0, 0, 0.2 );
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.confirm {
    background-color: #fff;
    border: solid 1px var( --dark-color );
    box-shadow: 12px 12px 15px rgba( 0,0,0,0.2 );
    padding: 2rem;
    max-width: 90%;
}

/*
.input-vin-container input {
    padding-left: 5rem;
    letter-spacing: 1.85rem;
    background-color: transparent;
    border: none;
    width: calc( 100% + 9rem );
    max-width: none;
}
.input-vin-container input:focus{
    outline: none;
}

.input-vin-container > div > span {
    display: inline-block;
    border-bottom: solid 2px #aaa;
    width: 1rem;
    margin-left: 0.72rem;
    margin-right: 0.72rem;
}*/

.component .main {
    padding-bottom: 4rem;
}

.page-header {
    position: relative;
    min-height: 240px;
    background-color: var( --dark-color );
    background-repeat: no-repeat;
    background-size: 50% auto;
    background-position: right top;
    padding-top: 120px;
    padding-left: 12px;
    padding-right: 12px;
    /* Phase 5 we are not it, html is not removed on every page in case we need in the future */
    display: none; 
}

.page-header > * {
    position: relative;
}
/*
.page-header:before {
    content: "";
    background-color: rgba( 0,0,0,0.3);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
*/
.page-header h1,
.page-header .h1 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.dashboard .page-header,
.login .page-header {
    background-image: url( ../images/dashboard-bg.jpg );
}
.create-delivery .page-header,
.completed-delivery .page-header {
    background-image: url( ../images/create-delivery-bg.jpg );
}
.glossary .page-header,
.online-delivery .page-header,
.offline-delivery .page-header {
    background-image: url( ../images/complete-delivery-bg.jpg );
}
.reports .page-header-wrapper {
    background-color: var( --dark-color );
}

.page-header .btn {
    font-weight: 600;
}
.page-header-tabs {
}
.page-header-tabs .row {
    margin-left: -1px; 
    margin-right: -1px; 
    flex-wrap: nowrap;
}
.page-header-tabs .col {
    padding-left: 1px; 
    padding-right: 1px; 
}
.page-header-tabs .btn.btn-light {
    display: block;
    width: 100%;
    color: var( --dark-color );
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
    background-color: transparent;
}


.page-header-tabs .btn.selected {
    color: #ffffff;
    background-color: var( --dark-color );
}
.page-description {
    padding: 0;
}
.page-description-wrapper {
    color: var( --dark-color );
    
    font-weight: 600;
    margin-top: 20px;
    border: solid 1px var( --dark-color );
    background-color: #f9f9f9;
}
.page-description .col span {
    font-size: 0.8em;
    font-weight: 400;
    color: #707070;
}
.page-title {
    position: relative;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    font-size: 1.25rem;
    font-weight: 600;
}
.page-title p {
    max-width: 56%;
    margin-left: auto;
    margin-right: auto;
}

.page-content {
    padding: 20px 80px;
}
.dashboard .page-content {
    padding-top: 0;
    padding-bottom: 0;
}
.login .page-content {
    padding-top: 4rem;
}

.page-footer {
    /*background-color: var( --dark-color );*/
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.create-delivery-form .page-footer {
    margin-left: -15px;
    margin-right: -15px;
}
.page-footer a {
    margin-right: 2rem;
}
.page-footer button {
    margin-right: 2rem;
}


/***********************************
 * Header
 ***********************************/
.App-menu {
    display: none;
}

.header {
    position: relative;
    background-color: var( --dark-color );
    width: 100%;
    flex: none;
    z-index: 11;
}
.header h1 {
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 0;
}
.App-header {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    padding-left: 68px;
    padding-right: 68px;
}

.App-site-logo {
    position: relative;
    width: 84px;
    height: 20px;
    background-image: url(../images/kia-logo.svg);
    background-position: center;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.App-site-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.App-header-greetings {
    position: absolute;
    color: #fff;
    font-weight: 700;
    top: 85px;
    font-size: 0.9rem;
}
.App-header-greetings span {
    text-transform: uppercase;
}

/***********************************
 * Hamburger
 ***********************************/
.App-hamburger {
    cursor: pointer;
    width: 32px;
    height: 20px;
    position: relative;
}
.hamburger {
    width: 30px;
    z-index: 1;
    height: 2px;
    position: absolute;
    transition: all .3s cubic-bezier(.17,.67,.3,1.33);
    backface-visibility: hidden;
    display: block;
    top: 50%;
    transform: translateY( -50% );
    background-color: #fff;
}
.hamburger:before, .hamburger:after {
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    transition: all .25s;
    z-index: 1;
    background-color: #fff;
    
}
.hamburger:before {
    top: 8px;
}
.hamburger:after {
    top: -8px;
}


/***********************************
 * Close Menu
 ***********************************/
.App-close-menu {
    cursor: pointer;
    width: 32px;
    height: 28px;
    position: absolute;
    left: 0px;
    z-index: 3;
}
.App-close-menu .close-menu::after, 
.App-close-menu .close-menu::before {
    display: block;
    content: "";
    width: 24px;
    height: 2px;
    background: var( --dark-color );
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}
.App-close-menu .close-menu::before {
    transform: translate( -50%, -50%) rotate(-45deg);
}
.App-close-menu .close-menu::after {
    transform: translate( -50%, -50%) rotate(45deg);
}

/***********************************
 * Menu
 ***********************************/
.App-menu {
    position: absolute;
    display: none;
    top: 0;
    left: -12px;
    right: 0;
    bottom: 0;
    width: 40%;
    height: 100vh;
    background-color: #fff;
    border-left: solid 1px var( --dark-color );
    border-right: solid 1px var( --dark-color );
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 60px;
    z-index: 2;
}
.App-menu.open {
    display: block;
}

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.main-menu ul a {
    text-decoration: none;
    color: var( --dark-color );
	line-height:40px;
}
.main-menu ul a:hover {
    text-decoration: underline;
}
.App-menu-footer {
    border-top: solid 1px #9EA1A2;
    margin-top: 20px;
    padding-top: 20px;
}
.language-selector ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.language-selector ul li {
    margin-right: 20px;
    cursor: pointer;
}
.language-selector ul li:hover,
.language-selector ul li.current {
    text-decoration: underline;
}
.logout-link {
    margin-top: 3rem;
}
.logout-link a {
    color: var( --dark-color );
    text-decoration: none;
}
.logout-link a:hover {
    text-decoration: underline;
}

/***********************************
 * Dashboard Delivery
 ***********************************/
.search-container {
    padding: 28px 50px;
    padding-bottom: 0;
}
.search {
    padding: 0;
    display: flex;
    margin-left: -12px;
    margin-right: -12px;
}
.search > * {
    margin-left: 12px;
    margin-right: 12px;
}
.input-type-vin,
.input-type-vin input[type=search] {
    height: 100%;
}
.input-type-vin input[type=search],
.date-search input[type=search],
.search input[type=search] {
    display: block;
    width: 100%;
    border: none;
    background: none;
    background-color: #fff;
    border: solid 1px var( --dark-color );
    padding: 6px 15px;
    font-size: 12px;
    padding-left: 30px;
    background-image: url( ../images/search-icon.svg );
    background-position: 8px center;
    background-size: auto 16px;
    background-repeat: no-repeat;
    min-height: 38px;
}
.date-search .btn.btn-dark,
.search .btn.btn-dark {
    border: solid 1px var( --dark-color );
    transition: all 0.3s;
}
.date-search .btn.btn-dark {
    padding: 6px 15px;
    font-size: 0.9rem;
    margin-bottom: 5px;
    width: 100%;
}
.date-search .input-type-date input {
    padding: 2px 5px;
}
.date-search .btn.btn-dark:hover,
.search .btn.btn-dark:hover {
    color: var( --dark-color );
    background-color: #fff;
}
.button-search {
    width: 100%;
}
.input-type-text {
    display: flex;
    margin-top: 5px;
}
.input-type-text.ssi_score span {
    width: 25%;
}
.input-type-text.ssi_score input {
    width: 50%;
    padding: 4px 15px;
}
.button-new-delivery {
    position: relative;
    display: inline-block;
    margin-top: 28px;
}

.deliveries-filters-container {
    padding: 28px 50px;
    padding-top: 0;
}
.deliveries-filters-container hr {
    border-top: solid 1px #707070;
}

.deliveries-filters-buttons {
    gap: 10px;
    display: flex;
}


.btn-filter {
    min-width: 150px;
    border-radius: 8px;
    font-size: 0.85em;
    position: relative;
}

.btn-filter::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 12px;
    top: 50%;
    right: 10px;
    transform: translateY( -50% );
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
}
.btn-filter.asc::after {
    background-image: url(../images/arrow-line-down.svg);
    transform: translateY( -50% ) rotate(180deg);
}
.btn-filter.desc::after {
    background-image: url(../images/arrow-line-down.svg);
    transform: translateY( -50% ) rotate(0);
}
.btn-filter.dropdown-toggle {
    height: 100%;
}
.btn-filter.dropdown-toggle::after {
    width: 12px;
    height: 16px;
    background-image: url(../images/dropdown-arrow.svg);
}


/***********************************
 * REPORTS MENU DROPDOWN
 ***********************************/
.dropdown-menu-container {
    position: relative;
    width: 300px;
}
.dropdown-menu-container .btn {
    width: 100%;
    position: relative;
}
.dropdown-menu-container .btn.dropdown-menu-toggle {
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.dropdown-menu-container .btn.dropdown-menu-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY( -50% );
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    width: 12px;
    height: 16px;
    background-image: url(../images/dropdown-arrow.svg);
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
}
.dropdown-menu-container.open .btn.dropdown-menu-toggle::after {
    transform: translateY( -50% ) rotate(180deg);
}

.dropdown-menu-wrapper {
    position: absolute;
    top: calc( 100% );
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 0;
    transition: all 0.3s;
    z-index: 10;
}
.dropdown-menu-container .dropdown-menu {
    border: solid 1px var(--dark-color);
    background-color: #ffffff;
    color: var(--bs-body-color);
}

.dropdown-menu-container .dropdown-menu-scroll {
    width: 100%;
    overflow: auto;
    max-height: 305px;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.dropdown-menu-container .dropdown-menu-scroll li {
    border-top: solid 1px var(--dark-color);
}
.dropdown-menu-container .dropdown-menu-scroll li:first-child {
    border: none;
}
.dropdown-menu-container .dropdown-menu-scroll li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--brand-color);
    transition: background-color 0.3s;
}
.dropdown-menu-container .dropdown-menu-scroll li a:hover {
    background-color: #EBEBEB;
}
.dropdown-menu-container .dropdown-menu-scroll li span {
    display: block;
    padding: 10px 15px;
    background-color: #EBEBEB;
}

/***********************************
 * FILTER DROPDOWNS
 ***********************************/
.dropdown-container {
    position: relative;
}

.dropdown-wrapper {
    position: absolute;
    top: calc( 100% + 20px );
    left: 0;
    width: 200%;
    max-width: 360px;
    overflow: hidden;
    height: 0;
    transition: all 0.3s;
    z-index: 10;
}
.dropdown-container .dropdown {
    padding: 20px;
    border: solid 1px var(--dark-color);
    background-color: #ffffff;
    color: var(--bs-body-color);
}
.dropdown-container .dropdown .close-dropdown {
    cursor: pointer;
    width: 32px;
    height: 28px;
    position: absolute;
    top: 10px;
    right: 5px;
    z-index: 3;
}
.dropdown-container .dropdown .close-dropdown::after, 
.dropdown-container .dropdown .close-dropdown::before {
    display: block;
    content: "";
    width: 24px;
    height: 2px;
    background: var( --dark-color );
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}
.dropdown-container .dropdown .close-dropdown::before {
    transform: translate( -50%, -50%) rotate(-45deg);
}
.dropdown-container .dropdown .close-dropdown::after {
    transform: translate( -50%, -50%) rotate(45deg);
}


.dropdown-container .dropdown-scroll {
    width: 100%;
    overflow: auto;
    max-height: 205px;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 20px;
}
.dropdown-container .dropdown-item {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    cursor: pointer;
    display: block;
}
.dropdown-container .dropdown-item input[type="checkbox"] {
    padding: 0 !important;
    position: relative;
    display: inline-block;
    border-radius: 100%;
    width: 15px;
    height: 15px;
    -webkit-appearance: none;
    margin-right: 10px;
}
.dropdown-container .dropdown-item input::before {
    display: table;
    width: 100%;
    height: 100%;
    border: solid 1px #A3A3A3;
    border-radius: 3px;
    background: #fff;
    content: '';
    -webkit-transition: background-color 20ms ease-in-out;
    transition: background-color 20ms ease-in-out;
    cursor: pointer;
}
.dropdown-container .dropdown-item input::after {
    -webkit-transition: opacity 0.05s ease-in-out;
    transition: opacity 0.05s ease-in-out;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 33%;
    left: 25%;
    display: table;
    width: 8px;
    height: 4px;
    border: 1px solid #fff;
        border-top-color: rgb(255, 255, 255);
        border-top-style: solid;
        border-top-width: 1px;
        border-right-color: rgb(255, 255, 255);
        border-right-style: solid;
        border-right-width: 1px;
    border-top: 0;
    border-right: 0;
    content: '';
    opacity: 0;
}
.dropdown-container .dropdown-item input:checked::before {
    background: #565656;
}
.dropdown-container .dropdown-item input:checked::after {
    opacity: 1;
}

.dropdown-container .dropdown .btn {
    width: 100%;
}

.deliveries-reset-filters {
    color: var(--dark-color);
    font-weight: bold;
    position: relative;
    font-size: 0.85em;
    padding-left: 30px;
    background-image: url(../images/reset-icon-new.svg);
    background-repeat: no-repeat;
    background-size: auto 16px;
    background-position: left center;
    margin-left: 20px;
    cursor: pointer;
    align-self: center;
    text-decoration: underline;
}

.dropdown-container .dropdown-scroll p {
    margin-bottom: 0;
}

/*
.button-new-delivery:before, .button-new-delivery:after {
    display: block;
    content: "";
    width: 16px;
    height: 2px;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY( -50% );
    transition: all .25s;
    z-index: 1;
    background-color: var( --dark-color );
}
.button-new-delivery:before {

}
.button-new-delivery:after {

    transform: translateY( -50% ) rotate( 90deg );
}
*/

.delivery .container {
    border: solid 1px var( --dark-color );
    border-top: none;
    padding-left: 80px;
    padding-right: 80px;
}
.past-deliveries .delivery .container {

}
.delivery .row {
    align-items: flex-start;
    padding-top: 15px;
    padding-bottom: 15px;
}
.delivery .row .col > div {
    margin-top: 0.3em;
    margin-bottom: 0.3em;
}

.delivery .btn {
    border-radius: 0;
    font-size: 0.75rem;
    border: solid 1px var( --dark-color );
    padding: 0.4rem 0.5rem;
    padding-top: 0.5rem;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
    display: block;
    width: 100%;
    margin: 0;
    text-align: left;
}
.delivery .btn.btn-light:hover {
    background-color: #b7b7b7;
}
.delivery .btn a {
    text-decoration: none;
    line-height: 1;
}
.delivery .btn.btn-dark {
    position: relative;
    text-align: center;
}
.delivery .btn.btn-dark a {
    color: #fff;
}
.delivery .btn.btn-light a {
    color: var( --dark-color );
}
.delivery-actions-dropdown-container {
    position: relative;
}
.delivery-actions-dropdown-container .btn {
    text-align: left !important;
}
.delivery-actions-dropdown {
    position: absolute;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.3s;
    z-index: 2;
}
.delivery-actions-dropdown .btn {
    border-top: none;
    padding: 0;
}
.delivery-actions-dropdown .btn a {
    display: block;
    padding: 0.4rem 0.5rem;
}
.delivery-actions-dropdown button:first-child {
    border: solid 1px var( --dark-color );
}

.arrow-down {
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY( -50% );
    right: 5px;
    width: 13px;
    z-index: 2;
    transition: all .25s ease;
}
.arrow-down::after, 
.arrow-down::before {
    display: block;
    content: "";
    width: 8px;
    height: 1px;
    background: #ffffff;
    position: absolute;
}
.arrow-down::before {
    top: 0;
    right: 0;
    transform: rotate(-50deg);
}
.arrow-down::after {
    left: 0;
    transform: rotate(50deg);
}
.delivery .delivery-actions-dropdown-container.open .arrow-down {
    transform: rotate(180deg);
}


/***********************************
 * Create/New Delivery
 ***********************************/
.create-delivery-form {
    border: solid 1px var(--dark-color);
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 40px;
}
.create-delivery .page-content {
    padding: 0;
    font-size: 1.2em;
    line-height: 1.6em;
}
.input-vin-description {
    font-size: 0.85em;
    padding: 20px 40px;
}
.input-vin-description p {
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 600;
}

/***********************************
 * Online Delivery
 ***********************************/

.page-description.delivery-info,
.online-delivery .page-description {
    font-size: 1.125rem;
    font-weight: 400;
    padding: 28px 50px;
}
.page-description.delivery-info h3,
.online-delivery .page-description h3 {
    font-size: 1.125rem;
    font-weight: 600;
}
.page-description.delivery-info p,
.online-delivery .page-description p {
    font-size: 1.125rem;
    margin-bottom: 0.3em;
}
.page-description.delivery-info p:last-child,
.online-delivery .page-description p:last-child {
    margin-bottom: 0;
}
.delivery-specification-container {
    border-bottom: solid 1px #b7b7b7;
    margin-top: 1rem;
    padding: 0;
}
.delivery-specification {
    padding: 20px 80px;
}
.delivery-specification h3 {
    font-size: 1.25rem;
    font-weight: bold;
}
.delivery-specification .subtitle-items {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.checkbox label {
    display: flex;
    margin-top: 0.8em;
    margin-bottom: 0.8em;
    align-items: center;
}
.checkbox label span {
    flex-shrink: 2;
}
.checkbox label input[type="checkbox"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    appearance: none;
    /* For iOS < 15 to remove gradient background */
    background-color: #fff;
    /* Not removed via appearance */
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 28px;
    height: 28px;
    border: solid 2px #707070;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
    margin-right: 20px;
    flex: 0 1 28px;
}
.checkbox label input[type="checkbox"]::before {
    content: "";
    width: 0.85em;
    height: 0.85em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #707070;
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.checkbox label input[type="checkbox"]:checked::before {
    transform: scale(1);
}
.checkbox .checkbox-required {
    margin-left: 5px;
    display: inline-block;
    font-size: 1.5em;
}
.bullets ul {
    padding-left: 4rem;
}
.bullets ul li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.delivery-user-data {
    padding: 20px 80px;
}
.delivery-signatures {
    padding: 20px 80px;
}
.delivery-signatures .signature-container {
    transition: all 0.3s;
    z-index: 10;
}
.delivery-signatures .signature-container.active {
    position: fixed;
    background-color: rgba( 0,0,0,0.4 );
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: flex-start;
    display: flex;
    justify-content: center;
    padding-left: 12px;
    padding-right: 12px;
}
.delivery-signatures .signature {
    position: relative;
    background: #fff;
    border: solid 1px var( --dark-color );
}
.delivery-signatures .signature-container.active .signature {

}
.delivery-signatures .signature-container-spacer {
    height: 150px;
    display: none;
    width: 100%;
}
.delivery-signatures .signature-container-spacer.visible {
    display: block;
}

.delivery-signatures .signature canvas {
    
    width: 100%;
}
.delivery-signatures .signature {
    position: relative;
}
.delivery-signatures .signature .clear-signature {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 5px;
    left: 5px;
    cursor: pointer;
    background-image: url( ../images/eraser.svg );
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.delivery-signatures .signature .close-signature {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 5px;
    right: 5px;
    cursor: pointer;
    display: none;
}
.delivery-signatures .signature .close-signature::after, 
.delivery-signatures .signature .close-signature::before {
    display: block;
    content: "";
    width: 24px;
    height: 2px;
    background: var( --dark-color );
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}
.delivery-signatures .signature .close-signature::before {
    transform: translate( -50%, -50%) rotate(-45deg);
}
.delivery-signatures .signature .close-signature::after {
    transform: translate( -50%, -50%) rotate(45deg);
}


.confirm-consent-checkbox label {
    align-items: flex-start;
}
.confirm-consent-checkbox.checkbox label input[type="checkbox"] {
    flex: 1 1 36px;
}
.confirm-consent-checkbox.checkbox label span {
    flex-grow: 0;
    flex-shrink: 3;
}


/***********************************
 * Offline Delivery
 ***********************************/
.offline-delivery .page-description {
    font-size: 1.25rem;
    font-weight: 400;
    padding: 28px 50px;
}
.offline-delivery .page-description h3 {
    font-size: 1.125rem;
    font-weight: 600;
}
.offline-delivery .page-description p {
    font-size: 1.125rem;
    margin-bottom: 0.3em;
}
.offline-delivery .page-description p:last-child {
    margin-bottom: 0;
}
.offline-delivery .btn {
    margin-right: 20px;
}

.offline_checklist_upload {
    display: inline-block;
    cursor: pointer;
}
.offline_checklist_upload input {
    display: none;
}


.edit-delivery-popup {
    background-color: rgba( 0,0,0,0.45 );
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;

}

.delivery-popup-content {
    max-width: 700px;
    background-color: #fff;
    position: relative;
}
.delivery-popup-content h3 {
    color: #fff;
    background-color: var( --dark-color );
    padding: 0.5em 1em;
}
.delivery-popup-content-inner {
    padding: 2em;
}
.edit-delivery-button {
    margin-top: 2rem;
}
.delivery-popup-content .input-vin-wrapper {
    position: relative;
}
.delivery-popup-content .input-vin-container > span.label {
    padding-top: 20px;
}
.delivery-popup-content .input-vin-container > div {
    margin-top: 10px;
}

.delivery-popup-content .input-vin-dropdown {
    background-color: #fff;
    position: absolute;
    top: calc( 100% + 12px );
    width: 100%;
}

.edit-delivery-popup-close {
    cursor: pointer;
    width: 32px;
    height: 28px;
    position: absolute;
    z-index: 3;
    top: 16px;
    right: 10px;
}
.edit-delivery-popup-close::after, 
.edit-delivery-popup-close::before {
    display: block;
    content: "";
    width: 24px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}
.edit-delivery-popup-close::before {
    transform: translate( -50%, -50%) rotate(-45deg);
}
.edit-delivery-popup-close::after {
    transform: translate( -50%, -50%) rotate(45deg);
}


/***********************************
 * Past Deliveries
 ***********************************/
.date-search > div {
}
.input-type-date {
    position: relative;
    border: solid 1px var( --dark-color );
    background-color: #fff;
    min-height: 30px;
    margin-top: 5px;
}
.input-type-date span {
    display: flex;
    align-items: center;
    position: absolute;
    top: 1px;
    left: 1px;
    padding-left: 5px;
    min-width: 70%;
    pointer-events: none;
    padding-top: 6px;
    padding-bottom: 6px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.input-type-date input {
    display: block;
    width: 100%;
    color: transparent;
    border-radius: 0;
    padding: 10px 1rem;
    background-color: transparent;
    min-height: 30px;
    border: none;
}

.follow-up-checkbox label {
    align-items: flex-start;
}
.follow-up-checkbox label input[type="checkbox"] {
    flex: 0 1 24px;
    margin-right: 10px;
    width: 20px;
    height: 20px;
}
.follow-up-checkbox span {
    flex-grow: 0;
    flex-shrink: 3;
    font-size: 0.7em;
}

/***********************************
 * Completed Delivery
 ***********************************/
.completed-delivery .page-content {
    padding-top: 3rem;
}
.completed-delivery .page-content h3 {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1em;
}
.completed-delivery .page-content h3 {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1em;
}
.return-dashboard-button {
    margin-top: 3rem;
}
.signature-image {
    border: solid 1px var( --dark-color );
}
.signature-image img {
    max-width: 100%;
}

.customer-checklist-image{
    border: solid 1px var( --dark-color );
}
.customer-checklist-image img {
    max-width: 100%;
}

.customer-checklist-content {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.customer-checklist-content .row {
    align-items: center;
}



/*********************************************
* POPUP
**********************************************/
.popup-bg {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	padding: 20px;
	z-index: 10;
}
.popup {
	position: absolute;
	top: 80px;
	left: 20px;
	right: 20px;
	background-color: #fff;
	color: #2C2C2C;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
.popup .popup-inner {
	padding: 30px;
	padding-bottom: 20px;
    padding-top: 0;
}
.popup .close-popup {
	display: block;
	position: absolute;
	right: 20px;
	top: 10px;
	background: none;
	border: none;
	width: 30px;
	height: 30px;
    border: solid 1px var( --dark-color );
}
.popup .close-popup::after, 
.popup .close-popup::before {
    display: block;
    content: "";
    width: 20px;
    height: 2px;
    background: var( --dark-color );
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}
.popup .close-popup::before {
    transform: translate( -50%, -50%) rotate(-45deg);
}
.popup .close-popup::after {
    transform: translate( -50%, -50%) rotate(45deg);
}


.popup h3 {
	font-size: 1.2rem;
	padding: 10px 30px;
	padding-top: 40px;
	font-weight: bold;
}
.popup img {
	max-width: 100%;
	height: auto;
	margin-bottom: 15px;
}

.video-container {
	position: relative;
    width: 100%;
	padding-bottom: 50%;
	padding-top: 25px;
	height: 0;
	margin-bottom: 10px;
}
.glossary .video-container {
    padding-bottom: 55%;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video-player-wrapper {
	display: flex;
	justify-content: left;
}



/*********************************************
* GLOSSARY
**********************************************/
.glossary-item .container {
    border-bottom: solid 1px #707070;
    padding: 1em 30px;
}
.glossary-item h3 {
    font-size: 1.1rem;
    padding: 1em 0;
    margin: 0;
    font-weight: 400;
    position: relative;
    cursor: pointer;
    padding-right: 30px;
}
.glossary-item.open h3 {
    font-weight: 600;
}

.glossary-item h3 .toggle {
	display: block;
	position: absolute;
	right: 0;
	top: 10px;
	background: none;
	border: none;
	width: 30px;
	height: 30px;
}
.glossary-item h3 .toggle::after, 
.glossary-item h3 .toggle::before {
    display: block;
    content: "";
    width: 16px;
    height: 2px;
    background: var( --dark-color );
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50%, -50%);
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}
.glossary-item h3 .toggle::after {
    transform: translate( -50%, -50%) rotate(90deg);
}

.glossary-item.open h3 .toggle::after {
    width: 0;
}



.glossary-item .glossary-content {
    overflow-y: hidden;
    height: 0;
    transition: all 0.2s;
    line-height: 1.5;
}

.glossary-item.open .glossary-content .video-container {
    margin-bottom: 0.5em;
}

.glossary-ranges ul {
    list-style: none;
    padding: 1rem;
    margin: 0;
    display: flex;
    justify-content: space-evenly;
    text-transform: uppercase;
}
.glossary-ranges ul li {
    cursor: pointer;
    border-left: solid 1px #0D0D0D;
    width: 14.2857%;
    text-align: center;
}
.glossary-ranges ul li:first-child {
    border: none;
}



/*********************************************
* VIDEOS
**********************************************/
.videos-items {
    margin-top: 2rem;
    margin-bottom: 4rem;
}
.video-item {
    margin-bottom: 2rem;
}
.video-item h3 {
    font-size: 1rem;
}
.video-item .video-checkbox {
    margin-top: 1rem;
    margin-bottom: 0.3rem;
}
.video-item hr {
    margin-top: 0;
}



/*********************************************
* SHARE
**********************************************/
.send-to-customer-content {
    overflow: hidden;
}
.send-to-customer-buttons {
    display: flex;
    margin: 0; 
}
.glossary .send-to-customer-buttons {
    flex-wrap: nowrap;
    justify-content: space-between;
}
.videos .send-to-customer-buttons {
    flex-wrap: wrap;
}
.send-to-customer-buttons > * {
    padding: 0.5rem 4rem;
    font-size: 0.85em;
    cursor: pointer;
}
.glossary .send-to-customer-buttons .btn-square {
    font-size: 0.85em;
    padding: 0.5rem 1rem;
}

.videos .send-to-customer-buttons > .btn-round {
    font-size: 1.125em;
    padding: 0.5rem 2rem;
}


.page-footer .btn-round {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
}
.glossary .page-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.glossary .page-footer .btn-round {
    font-size: 1.125em;
    padding: 0.5rem 2rem;
}


/********************************
 * Share Button
 ********************************/
 .App-share {
    position: absolute;
    top: 0;
    right: 0;
    width: 17px;
    height: 17px;
    background-image: url( ../images/honda-share-icon.svg );
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    cursor: pointer;
}
.App-share span {
    position: absolute;
    top: 20px;
    right: -10px;
    font-size: 12px;
    line-height: 1;
}

.App-share-popup-bg {
    background-color: rgba(0,0,0,0.60);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 12;
}
.App-share-popup {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    padding: 25px;
    background-color: #ffffff;
}
.App.Theme-honda .App-share-popup {
    background-color: var( --primary-honda-bg-color);
}
.App.Theme-acura .App-share-popup {
    background-color: var( --primary-acura-bg-color);
}

.App-share-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    z-index: 2;
    cursor: pointer;
    border: solid 1px var( --dark-color );
}
.App-share-popup-close::after, 
.App-share-popup-close::before {
    display: block;
    content: "";
    width: 20px;
    height: 1px;
    background: var( --dark-color );
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}
.App-share-popup-close::before {
    transform: translate( -50%, -50%) rotate(-50deg);
}
.App-share-popup-close::after {
    transform: translate( -50%, -50%) rotate(50deg);
}


.App-share-popup-title {
}
.App-share-popup-form-error {
    color: #f00;
    margin-bottom: 20px;
}

.App-share-popup-title h2 {
    border-bottom: solid 1px var( --text-honda-color );
    font-size: 1.4rem;
}
.App-share-popup-content {
    min-height: 80px;
    max-height: calc( 100vh - 130px - 110px );
    overflow-y: auto;
}
.App-share-popup-content button {
    transition: opacity 0.3s;
}
.App-share-popup-content button.share-email,
.App-share-popup-content button.share-sms {
    display: block !important;
    width: 80% !important;
    margin-left: auto;
    margin-right: auto;
    padding-right: 80px;
    margin-top: 25px;
    margin-bottom: 25px;
}
.App-share-popup-content button.share-email {
    background-size: auto 14px;
    background-position: 80% center;
    background-repeat: no-repeat;
}
.App-share-popup-content button.share-sms {
    background-size: auto 17px;
    background-position: 80% center;
    background-repeat: no-repeat;
}


.App-share-popup-content-form {
}
.App-share-popup-form-title h3 {
    font-size: 1rem;
    background-size: auto 17px;
    background-position: left center;
    background-repeat: no-repeat;
}
.App-share-popup-form-title.email h3 {
    background-image: url( ../images/email-icon.svg );
}
.App-share-popup-form-title.sms h3 {
    background-image: url( ../images/sms-icon.svg );
}

.App-share-popup-input {
    margin-bottom: 1.2rem;
}
.App-share-popup-input label {
    display: block;
    font-size: 0.85em;
    margin-bottom: 0.5rem;
}
.App-share-popup-input select,
.App-share-popup-input input {
    background: none;
    border: solid 1px var( --dark-color );
    display: block;
    width: 100%;
    padding: 5px 10px;
    font-size: 0.85em;
}
.App-share-popup-input select {
    width: auto;
    font-size: 0.85em;
    min-width: 30%;
}
.App-share-popup-input textarea {
    min-height: auto;
    height: 120px;
}
.App-share-popup-input .phone-input {
    display: flex;
    align-items: center;
}
.App-share-popup-input .phone-input span {
    margin-right: 15px;
}

.App-share-popup-content-actions {
    display: flex;
    justify-content: space-between;
}
.App-share-popup-content-actions button {
    padding: 4px 10px;
    min-width: 120px;
    font-size: 14px;
}

.App-share-form-legal p {
    padding-left: 20px;
    text-indent: -20px;
    font-size: 0.8em;
}


/********************************
 * Shares Content
 ********************************/
.shared-article-back-lang-container a {
    color: var( --dark-color );
}
.topic-subtopic-content-logo {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.topic-subtopic-content-logo img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    height: auto;
}
.shared-article-back-lang-container {
    display: flex;
    justify-content: space-between;
}
.topic-subtopic-content-wrapper h2 {
    text-transform: uppercase;
    font-size: 1.6rem;
    margin-top: 2rem;
}
.topic-subtopic-content {
    border-bottom: solid 1px #707070;
    padding-bottom: 2rem;
}

.shared li,
.shared p {
    line-height: 1.6;
}
.shared-article-back {
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.pagination {
    display: block;
}
.pagination .container {
    border: solid 1px var( --dark-color );
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: none;
}
.pagination ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination ul li a {
    border: solid 1px var( --dark-color );
    background-color:var( --dark-color );
    color: #fff;
    margin-left: 6px;
    margin-right: 6px;
    padding: 0.4em 0.5em;
    min-width: 2rem;
    text-decoration: none;
    display: inline-block;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination ul li a.current {
    background-color:#fff;
    color: var( --dark-color );
}


/********************************
 * Reports
 ********************************/
.page.reports {
    padding-top: 40px;
}
.report-header-container {
    margin-top: 1rem;
}
.report-tabs {
    display: flex;
    border-bottom: solid 1px #707070;
}
.report-tabs .btn {
    padding: 1rem 0.5rem;
}
.report-tabs .btn {
    background-color: #ffffff;
    padding: 0.7rem 1.5rem;
}
.report-tabs .btn.selected {
    background-color: var(--dark-color);
    color: #ffffff;
}

.report-filtering {
    display: flex;
}

.report h3 {
    text-align: center;
}
.report p {
    font-size: 0.85em;
    text-align: center;
}

.reports .page-header-tabs .btn.btn-light {
    font-size: 0.9rem;
    padding: 1rem 0.5rem;
}

.reports .container.page-content {
    padding: 20px 20px;
}

.report table {
    margin-left: auto;
    margin-right: auto;
    border-top: solid 1px var( --dark-color );
    border-left: solid 1px var( --dark-color );
}
.report th,
.report td {
    padding: 0.4em 0.4em;
    font-size: 0.8rem;
    border-bottom: solid 1px var( --dark-color );
    border-right: solid 1px var( --dark-color );
}
.report table.stats tr:nth-child(even) {
    background-color: rgba( 0, 0, 0, 0.15 );
}
.report table.stats tr:hover,
.report tr:hover {
    background-color: rgba( 0, 0, 0, 0.80 );
}
.report tr:hover th,
.report tr:hover td {
    color: #fff;
}
.report tr th.asc,
.report tr th.desc {
    position: relative;
    padding-right: 20px;
    cursor: pointer;
}
.report tr th.asc:after,
.report tr th.desc:after {
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    background-image: url(../images/arrow-order-down.svg);
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    top: 6px;
    right: 2px;
    transition: all 0.3s;
    transform: rotate( 180deg );
}
.report tr th.desc:after {
    transform: rotate( 0 );
}
.report tr:hover th.asc:after,
.report tr:hover th.desc:after {
    background-image: url(../images/arrow-order-down-white.svg);
}


.report table.stats th.order {
    cursor: pointer;
    position: relative;
}
.report table.stats th.order:after {
    content: "↕";
    display: inline-block;
}
table.delivery-summary {
    width: 100%;
}
table.delivery-summary tbody > tr > td.openable,
table.delivery-summary tbody > tr > th {
    padding: 0.8em 0.4em;
    padding-right: 30px;
}
table.delivery-summary tbody > tr > td.openable:after,
table.delivery-summary tbody > tr > th:after {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 11px;
    background-image: url(../images/arrow-left.svg);
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    top: 10px;
    right: 10px;
    transition: all 0.3s;
}
table.delivery-summary tbody > tr > td.openable.open:after,
table.delivery-summary tbody > tr > th.open:after {
    transform: rotate( 90deg );
}
table.delivery-summary tbody > tr > td.openable,
table.delivery-summary tbody > tr > th {
    cursor: pointer;
    position: relative;
}
table.delivery-summary.ssi-summary tbody > tr > th.dealership:after {
    display: none;
}


.report-filtering > div {
    display: flex;
}

.report-filtering .btn {
    margin-right: 1rem;
}
.report-filtering .select-dealers {
    min-width: 200px;
}

.reports .pagination {
    margin-top: 2rem;
}
.report-note {
    margin-top: 15px;
    text-align: left !important;
}



/********************************
 * Edelivery Kia Connect
 ********************************/
.kia-connect-popup {
    background-color: rgba( 0,0,0,0.45 );
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
}

.kia-connect-popup-content {
    min-width: 300px;
    max-width: 850px;
    max-height: 90vh;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    padding-bottom: 2em;
}
.kia-connect-popup-content h3 {
    color: #fff;
    background-color: var( --dark-color );
    padding: 0.5em 1em;
    margin: 0;
}
.kia-connect-popup-content-inner {
    padding: 2em;
    padding-bottom: 0;
    overflow-y: auto;
    max-height: 70vh;
}
.kia-connect-popup .kia-connect-popup-content-inner .loading > * {
    opacity: 0.2;
    pointer-events: none;
}
.kia-connect-popup-button {
    margin-top: 2rem;
}

.kia-connect-popup-close {
    cursor: pointer;
    width: 32px;
    height: 28px;
    position: absolute;
    z-index: 3;
    top: 16px;
    right: 10px;
}
.kia-connect-popup-close::after, 
.kia-connect-popup-close::before {
    display: block;
    content: "";
    width: 24px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}
.kia-connect-popup-close::before {
    transform: translate( -50%, -50%) rotate(-45deg);
}
.kia-connect-popup-close::after {
    transform: translate( -50%, -50%) rotate(45deg);
}



/********************************
 * Confirm New Delivery Popup
 ********************************/
.confirm-new-delivery-popup {
    background-color: rgba( 0,0,0,0.45 );
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    z-index: 11;
}
.confirm-new-delivery-popup-content {
    min-width: 500px;
    max-width: 700px;
    background-color: #F8F8F8;
    position: relative;
}
.confirm-new-delivery-popup-content h3 {
    padding: 1em 48px;
    font-size: 1.25rem;
}
.confirm-new-delivery-popup-content h4 {
    font-size: 1.1875rem;
}
.confirm-new-delivery-popup-content-inner {
    margin: 0 48px;
    margin-bottom: 0;
    padding: 1.5em;
    border: solid 1px var( --dark-color );
    background-color: #fff;
}
.confirm-new-delivery-popup-content-inner > * {
    margin-bottom: 0;
}
.confirm-new-delivery-popup-close {
    cursor: pointer;
    width: 48px;
    height: 48px;
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    border: solid 1px var( --dark-color );
}
.confirm-new-delivery-popup-close::after, 
.confirm-new-delivery-popup-close::before {
    display: block;
    content: "";
    width: 24px;
    height: 2px;
    background-color: var(--dark-color);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}
.confirm-new-delivery-popup-close::before {
    transform: translate( -50%, -50%) rotate(-45deg);
}
.confirm-new-delivery-popup-close::after {
    transform: translate( -50%, -50%) rotate(45deg);
}

.confirm-new-delivery-popup-footer {
    padding: 2rem 48px;
}
.confirm-new-delivery-popup-footer > * {
    margin-right: 20px;
}


/********************************
 * Toggle Switch
 ********************************/
.toggle {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.toggle label {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 24px;
    margin-left: 15px;
    margin-right: 15px;
}
/* Hide default HTML checkbox */
.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.toggle .slider {
    position: absolute;
    cursor: pointer;
    border-radius: 24px;
    border: solid 1px var( --dark-color );
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: .4s;
    transition: .4s;
}
.toggle .slider:before {
    position: absolute;
    content: "";
    border-radius: 50%;
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 3px;
    background-color: var( --dark-color );
    -webkit-transition: .4s;
    transition: .4s;
}
.toggle input:checked + .slider {
    background-color: #EBEBEB;
}

.toggle input:focus + .slider {
    box-shadow: 0 0 1px var(--dark-color);
}
.toggle input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}


/********************************
 * Preloader
 ********************************/
 .atwm-ajax-preloader {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50%,-50%);
    z-index: 2;
}
.sk-fading-circle {
    width: 40px;
    height: 40px;
}

.sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.sk-fading-circle .sk-circle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #333;
    border-radius: 100%;
    -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
            animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}
.sk-fading-circle .sk-circle2 {
-webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
        transform: rotate(30deg);
}
.sk-fading-circle .sk-circle3 {
-webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
        transform: rotate(60deg);
}
.sk-fading-circle .sk-circle4 {
-webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
        transform: rotate(90deg);
}
.sk-fading-circle .sk-circle5 {
-webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
        transform: rotate(120deg);
}
.sk-fading-circle .sk-circle6 {
-webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
        transform: rotate(150deg);
}
.sk-fading-circle .sk-circle7 {
-webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
        transform: rotate(180deg);
}
.sk-fading-circle .sk-circle8 {
-webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
        transform: rotate(210deg);
}
.sk-fading-circle .sk-circle9 {
-webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
        transform: rotate(240deg);
}
.sk-fading-circle .sk-circle10 {
-webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
        transform: rotate(270deg);
}
.sk-fading-circle .sk-circle11 {
-webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
        transform: rotate(300deg); 
}
.sk-fading-circle .sk-circle12 {
-webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
        transform: rotate(330deg); 
}
.sk-fading-circle .sk-circle2:before {
-webkit-animation-delay: -1.1s;
        animation-delay: -1.1s; 
}
.sk-fading-circle .sk-circle3:before {
-webkit-animation-delay: -1s;
        animation-delay: -1s; 
}
.sk-fading-circle .sk-circle4:before {
-webkit-animation-delay: -0.9s;
        animation-delay: -0.9s; 
}
.sk-fading-circle .sk-circle5:before {
-webkit-animation-delay: -0.8s;
        animation-delay: -0.8s; 
}
.sk-fading-circle .sk-circle6:before {
-webkit-animation-delay: -0.7s;
        animation-delay: -0.7s; 
}
.sk-fading-circle .sk-circle7:before {
-webkit-animation-delay: -0.6s;
        animation-delay: -0.6s; 
}
.sk-fading-circle .sk-circle8:before {
-webkit-animation-delay: -0.5s;
        animation-delay: -0.5s; 
}
.sk-fading-circle .sk-circle9:before {
-webkit-animation-delay: -0.4s;
        animation-delay: -0.4s;
}
.sk-fading-circle .sk-circle10:before {
-webkit-animation-delay: -0.3s;
        animation-delay: -0.3s;
}
.sk-fading-circle .sk-circle11:before {
-webkit-animation-delay: -0.2s;
        animation-delay: -0.2s;
}
.sk-fading-circle .sk-circle12:before {
-webkit-animation-delay: -0.1s;
        animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
    0%, 39%, 100% { opacity: 0; }
    40% { opacity: 1; }
}

@keyframes sk-circleFadeDelay {
    0%, 39%, 100% { opacity: 0; }
    40% { opacity: 1; } 
}