/* HTML: <div class="loader"></div> */
.loader {
    width: 20px;
    --b: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 1px;
    background: conic-gradient(#0000 10%, #004a9b) content-box;
    -webkit-mask: repeating-conic-gradient(#0000 0deg, #000 1deg 20deg, #0000 21deg 36deg),
    radial-gradient(farthest-side, #0000 calc(100% - var(--b) - 1px), #000 calc(100% - var(--b)));
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
    animation: l4 1s infinite steps(10);
}

@keyframes l4 {
    to {
        transform: rotate(1turn)
    }
}


body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #1E1E1E;
    font-size: 16px;
    font-weight: 400;
}

div, span, input, select, textarea {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

[data-edit-text] {
    transition: 0.25s;
    display: inline-block;
    cursor: pointer;
}


[data-edit-text]:hover {
    transform: scale(1.2);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    margin: 0 auto;
    width: 1370px;
    /* color: #003d62; */
    /* padding-top: 25px; */
}

::placeholder {
    color: #bbbbbb;
    opacity: 1;
    text-transform: none !important;
}

:-ms-input-placeholder {
    color: #bbbbbb;
    text-transform: none !important;
}

::-ms-input-placeholder {
    color: #bbbbbb;
    text-transform: none !important;
}


#cookie-consent {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 15;
    padding: 5px 7px;
    opacity: 0;
    transition: 0.3s;
    background-color: #003d62;
    color: #fff;
    font-size: 85%;
}

#cookie-consent.shown {
    opacity: 1;
}

#cookie-consent .content {
    display: flex;
    padding: 10px;
    align-items: center;
}

#cookie-consent .content .text {
    display: flex;
    align-items: center;
    width: calc(100% - 140px);
    font-size: 106%;
    padding-right: 15px;
}

#cookie-consent .content .text img.cookie {
    width: 25px;
    margin-right: 10px;
}

#cookie-consent .content .text a {
    transition: 0.3s;
    font-weight: 600;
    display: inline-block;
    font-weight: 500;
}

#cookie-consent .content .text a:hover {

    text-decoration: underline;
}

#cookie-consent .content .button {

}

#cookie-consent .content .button .btn {
    transition: 0.3s;
    text-align: center;
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 13px;
    border-radius: 61px;
    font-size: 99%;
    width: 140px;
    cursor: pointer;
    border: 1px solid #fff;
}

#cookie-consent .content .button .btn:hover {
    background-color: #3a7bce;
    color: #fff;
}

header .gray.active .hamburger.close {
    display: none;
}

header {

}

header .demo-row {
    background-color: #2baa6d;
    color: #fff;
    text-align: center;
    padding: 7px;
    font-size: 82%;
}

header .demo-row .demo-frame {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 5px solid #2baa6d;
    z-index: 1000;
    pointer-events: none;
}

header .white {
    padding: 12px 0;
}

header .white .columns {
    display: flex;
    align-items: center;
}

header .white .columns .column {
    display: flex;
    align-items: center;
    width: 50%;
    justify-content: flex-end;
}

header .white .columns .column > a {
    display: flex;
    align-items: center;
}

header .white .columns .column:first-child {
    justify-content: flex-start;
}

header .white .columns .column:last-child {

}

header .white .columns .column img.logo {
    height: 44px;
    max-width: 100%;
}

header .white .language {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-right: 1px solid #004a9b;
    margin-right: 12px;
    padding-right: 12px;
}

header .white .language .value {
    font-size: 93%;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #003d62;
}

header .white .language:hover .value {
    color: #2baa6d;
}

header .white .language .value img.flag {
    margin-right: 6px;
    width: 22px;
    height: 22px;
}

header .white .language .arrow {
    display: flex;
    align-items: center;
    margin-left: 3px;
}

header .white .language .arrow img {

    width: 8px;
}

.white .login {
    margin-right: 10px;
    display: flex;
    align-items: center;
    font-size: 80%;
}

header .white .login.no-right-border {
    margin-right: 0;
}

header .white .login > a {
    display: flex;
    align-items: center;
}

header .white .login > a > img {
    width: 14px;
    margin-right: 4px;
}

header .white .login:after {
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    margin-left: 10px;
    border-right: 1px solid #ddd;
}

header .white .login.no-right-border:after {
    display: none;
}

header .white .currency {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

header .white .currency .value {

    text-transform: none !important;

    font-size: 93%;

    display: flex;

    align-items: center;

    font-weight: 500;

    color: #003d62;
}

header .white .currency:hover .value {
    color: #2baa6d;
}

header .white .currency .arrow {
    display: flex;
    align-items: center;
    margin-left: 3px;
}

header .white .currency .arrow img {

    width: 8px;
}

header .white .language .language-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background-color: #fff;
    white-space: nowrap;
    z-index: 10;
    /* border: 1px solid #ddd; */
    padding: 8px 12px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    display: flex;
    flex-wrap: wrap;
    width: 140px;
    box-shadow: 6px 2px 20px 6px rgb(0 0 0 / 12%);
}

header .white .language .language-dropdown > hr {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
}

header .white .language .language-dropdown .language-dropdown-item {
    padding: 7px 4px;
    display: flex;
    align-items: center;
    font-size: 76%;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

header .white .language .language-dropdown .language-dropdown-item:hover {
    color: #2baa6d;
}

header .white .language .language-dropdown .language-dropdown-item:last-child {
    border-bottom: none;
}

header .white .language .language-dropdown .language-dropdown-item.currency-dd {
    width: 100%;
}

header .white .language .language-dropdown .language-dropdown-item.active {
    font-weight: 600;
    pointer-events: none;
}

header .white .language .language-dropdown .language-dropdown-item img {
    width: 22px;
    height: 22px;
    margin-right: 8px;
}

header .white .language.shown .language-dropdown {
    visibility: visible;
    opacity: 1;
}

header .white .language.shown .language-dropdown .lang-code {
    background-color: #cfddec;
    margin-right: 8px;
    padding: 3px 6px;
    color: #004a9b;
    border-radius: 4px;
}

header .white .currency .currency-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background-color: #fff;
    white-space: nowrap;
    z-index: 10;
    /* border: 1px solid #ddd; */
    padding: 5px 6px;
    border-radius: 11px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 6px 2px 20px 6px rgb(0 0 0 / 12%);
}

header .white .currency.shown .currency-dropdown {
    visibility: visible;
    opacity: 1;
}

header .white .currency .currency-dropdown .currency-dropdown-item {
    padding: 7px 4px;
    display: flex;
    align-items: center;
    font-size: 76%;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

header .white .currency .currency-dropdown .currency-dropdown-item:hover {
    color: #2baa6d;
}

header .white .currency .currency-dropdown .currency-dropdown-item:last-child {
    border-bottom: none;
}

header .white .currency .currency-dropdown .currency-dropdown-item.active {
    font-weight: 600;
    pointer-events: none;
}

header .gray {
    background-color: #004a9b; /* display: flex; */
    color: #fff;
}

header .gray .hamburger {
    display: none;
    font-weight: 500;
    align-items: center;
}

header .gray .home-icon-mobile {
    display: none;
}

header .gray.active .hamburger {
    display: none;
}

header .gray.active .hamburger.close {
    display: flex;
}

header .gray .menu-items {
    display: flex;
    align-items: center;
}

header .gray .half {
    display: flex;
    align-items: center;
}

header .gray .half .left {
    width: calc(100% - 120px);
    display: flex;
    align-items: center;
}

header .gray .half .right {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header .gray .menu-item {
    display: block;
    padding: 23px 0;
    margin-right: 21px;
    transition: 0.25s;
    text-transform: uppercase;
    font-size: 90%;
}

header .gray .menu-item.home {
    margin-bottom: -5px;
}

header .gray .menu-item:hover {
    text-decoration: underline;
}

header .gray .menu-item:last-child {
    margin-right: 0;
}

header .gray .menu-items .home-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 17px;
    width: 30px;
    height: 29px;
}

header .gray .cart {
    display: flex;
    align-items: center;
    transition: 0.3s;

    background.c:
; /* background-color: #2baa6d; *//* height: 72px; *//* padding: 0 14px; */
    box-sizing: border-box;
}

header .gray .cart:hover {
    text-decoration: underline;
}

header .gray .cart:hover .icon {

}

header .gray .cart .icon { /* position: relative; */
    margin-right: 9px; /* top: 2px; */
    display: flex;
    align-items: center;
    position: relative;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .gray .cart .icon img {

    width: 21px;

    display: block;
}


header .gray .cart .icon .number {
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -9px;
    background-color: #2baa6d;
    top: -5px;
    color: #fff;
    border-radius: 50%;
    font-size: 80%;
    font-weight: 600;
}

header .gray .cart .text {

    display: flex;

    align-items: center;

    text-transform: uppercase;

    font-weight: 500;

    font-size: 89%;
}

.breadcrumbs {
    font-size: 89%;
    color: #003d62;
    padding-top: 15px;
}

.breadcrumbs a {

    font-weight: 500;
}

.breadcrumbs img {

    width: 15px;

    position: relative;

    top: 1px;

    margin-right: 2px;
}

footer {

}

footer .gray { /* background-color: #F1F1F1; *//* padding: 60px 0; */
}

footer .gray .columns {
    display: flex;
}

footer .gray .columns .column {
    width: 25%;
    padding-right: 25px;
}

footer .gray .columns .column .title {
    color: #1C5DB0;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-size: 90%;
}

footer .gray .columns .column .menu-item {
    display: flex;
    align-items: center;
    margin-bottom: 19px;
    font-size: 90%;
    transition: 0.25s;
}

footer .gray .columns .column .menu-item:hover {
    color: #1C5DB0;
}

footer .gray .columns .column .menu-item:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    /* background-color: red; */
    background-image: url(/assets/images/chevron-right.svg);
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 4px;
}

footer .white {
    padding: 47px 0;
    padding-top: 14px;
}


footer .white .logos {
    margin-bottom: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
}


footer .white .logos img {

    width: 280px;
}


footer .white .copyright {
    text-align: center;
    font-weight: 400;
    color: #345b77;
}

footer .slim-footer {
    border-top: 1px solid #345b776e;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    padding-top: 34px;
}


footer .slim-footer .menu-item {
    margin: 0 18px;
    margin-bottom: 18px;
    color: #345b77;
}

.main-page {
    padding-top: 27px;
    padding-bottom: 59px;
}

.main-page .status-message-row {
    background-color: #ffefd5;
    padding: 10px;
    margin: 0 3px;
    margin-bottom: 30px;
    margin-top: -10px;
}

.main-page .status-message-row div {
    display: flex;
    align-items: center;
}

.main-page .status-message-row div img {
    margin-right: 7px;
}

.main-page h1.intro {
    font-size: 90%;
    font-weight: 600;
    margin: 0 3px;
    margin-bottom: 36px;
}

.main-page .info {
    font-size: 90%; /* font-weight: 300; */
}

.main-page .info p {
    margin-bottom: 23px;
}

.main-page .info p strong {
    display: flex;
    align-items: center;
}

.main-page .info p strong .chevron {
    margin-left: 6px;
    transition: 0.25s;
}

.main-page .info strong[data-show-huf-table] {
    cursor: pointer;
}

.main-page .info strong[data-show-huf-table].active .chevron {
    transform: rotate(-180deg);
}

.main-page .info .huf-table {
    display: none;
}

.main-page .info .exchange-rate-info {
    background-color: #F1F1F1;
    padding: 9px;
    border-top: 1px solid #1C5DB0;
}

.main-page .info .huf-table table {
    width: 100%;
    border-collapse: collapse;
}

.main-page .info .huf-table table td,
.main-page .info .huf-table table th {
    text-align: left;
    padding: 10px;
    width: 20%;
}

.main-page .info .huf-table table th {
    background-color: #3a7bce;
    color: #fff;
}

.main-page .info .huf-table table td {
    border-bottom: 1px solid #e7e7e7;
}

.main-page .info .huf-table table tr:last-child td {
    border-bottom: none;
}


.vignettes .headline {
    display: flex;
    margin-bottom: 2px;
}

.vignettes .headline .column {
    width: 20%;
    background-color: #004a9b30;
    text-align: center;
    padding: 9px; /* border-bottom: 1px solid #1C5DB0; */
    margin: 0 1px;
    color: #345B77;
    text-transform: uppercase; /* font-weight: 700; *//* font-size: 90%; */
}


.vignettes .headline .column.empty {
    background-color: transparent;
    border: none;
}

.vignettes .headline .column:nth-child(2) {
    border-top-left-radius: 10px;
}

.vignettes .headline .column:last-child {
    border-top-right-radius: 10px;
}


.vignettes .row {
    display: flex;
}

.vignettes .row .column {
    width: 20%;
    padding: 16px;
    background-color: #004a9b12;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.vignettes.countries .row .column {
    margin: 0 10px;
}

.vignettes.countries .row .column:first-child {
    margin-left: auto;
}

.vignettes.countries .row .column:last-child {
    margin-right: auto;
}

.vignettes.vehicle-categories .row .column {
    margin: 0 10px;
}

.vignettes.vehicle-categories .row .column:first-child {
    margin-left: auto;
}

.vignettes.vehicle-categories .row .column:last-child {
    margin-right: auto;
}

.vignettes.vehicle-categories .row .column:hover .btn {
    background-color: #004a9b;
}

.vignettes.vignette-periods .row .column:hover .btn {
    background-color: #004a9b;
}

.vignettes .row .column.blue {
    color: #345b77;
    background-color: #cfddec;
}

.vignettes .row .column.blue .images-and-code {
    display: flex;
}

.vignettes .row .column.blue .images-and-code img.horizontal {
    display: none;
}

.vignettes .row .column.blue .images-and-code .image {
    width: 50%;
}

.vignettes .row .column.blue .images-and-code .image img {

}

.vignettes .row .column.blue .images-and-code .code {
    width: 50%;
    font-size: 280%;
    line-height: 33px;
    text-align: right;
    opacity: 0.7;
    font-weight: 300;
}

.vignettes .row .column.blue .name {
    font-size: 95%;
    text-align: center; /* margin-top: 19px; */
    font-weight: 700;
    text-transform: uppercase;
}

.vignettes .row .column .name-and-price {

}

.vignettes .row:nth-child(2) .column.blue {
    border-top-left-radius: 10px;
}

.vignettes .row:last-child .column.blue {
    border-bottom-left-radius: 10px;
}


.vignettes .row .column .name-and-price {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 14px;
    flex-grow: 1;
}

.vignettes .row .column .name-and-price .name {
    width: 50%;
    font-size: 90%;
}

.vignettes .row .column .name-and-price .name > div {

}

.vignettes .row .column .name-and-price .vehicle-icon {
    display: none;
}

.vignettes .row .column .name-and-price .price {
    width: 50%;
    text-align: right;
    font-weight: 700;
    color: #004a9b;
}

.vignettes .row .column .add-to-cart { /* flex-grow: 1; */
}

/*
.vignettes .row .column .add-to-cart .btn {
*/
.btn {
    background-color: #2baa6d;
    color: #fff; /* display: block; */
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 7px;
    box-sizing: border-box;
    border-radius: 44px;
    font-size: 90%;
    transition: 0.3s; /* font-size: 0; */
    white-space: nowrap;
    border: 0;
}

.vignettes .row .column .add-to-cart .btn img {
    margin-right: 7px;
    width: 26px;
}

.main-page .latest-news {
    padding-top: 10px;
}

.main-page .latest-news h2 {
    font-weight: 500;
    font-size: 130%;
    margin-bottom: 30px;
}

.main-page .latest-news .lead {
    font-size: 90%;
}

.dropdown {
    position: relative;
}

.dropdown .noborder .dropdown-input {
    border: none;
}

.dropdown .dropdown-input {
    display: flex;
    background-color: #fff;
    border-radius: 6px;
    align-items: center;
    height: 42px;
    cursor: pointer; /* border: 1px solid #1C5DB0; */
    transition: 0.3s;
}

.dropdown.shown .dropdown-input {

}

.dropdown .dropdown-input.no-icon .icon {
    display: none;
}

.dropdown .dropdown-input.no-icon .value {
    padding-left: 15px;
    width: calc(100% - 40px);
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.dropdown .dropdown-input .value .placeholder {
    color: #bbbbbb
}

.dropdown.dark-placeholder .dropdown-input .value .placeholder {
    color: inherit;
    font-weight: 400;
}

.dropdown .dropdown-input .icon {
    width: 40px;
    justify-content: center;
    display: flex;
}

.dropdown .dropdown-input .icon img {
    width: 20px;
}

.dropdown .dropdown-input .value {
    width: calc(100% - 80px); /* border: 1px solid #DFDEDE; */
    display: flex;
    align-items: center
}

.dropdown .dropdown-input .arrow {
    width: 40px;
    display: flex;
    justify-content: center;
}

.dropdown.shown .dropdown-input .arrow img {
    transform: rotate(180deg);
}

.dropdown .dropdown-input .arrow img {
    width: 13px; /* transition: 0.3s; */
}

.dropdown .values {
    position: absolute; /* visibility: hidden; */
    background-color: #fff;
    z-index: 1;
    width: 100%;
    top: calc(100% + 2px); /* border: 1px solid #dfdede; */
    border-radius: 7px;
    overflow-y: auto;
    max-height: 220px; /* overflow: hidden; */
    padding: 8px 0; /* box-shadow: 1px 1px 20px rgb(0 0 0 / 0%); */
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    transform: translateY(-6px);
    box-shadow: 6px 2px 20px 6px rgb(0 0 0 / 12%);
}

.dropdown .values .item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 17px;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown .values .item.selected {
    font-weight: 600;
}

.dropdown .values .item:hover {
    background-color: #F9F9F9;
}

.dropdown.multiselect .values .item {
    display: flex;
    align-items: center;
}

.dropdown.multiselect .values .item .item-checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    opacity: 0;
    transition: 0.25s;
}

.dropdown.multiselect .values .item.selected .item-checkmark {
    opacity: 1;
}

.dropdown.multiselect .values .item .item-text {
    display: flex;
    align-items: center;
    width: calc(100% - 30px);
}

.dropdown .dropdown-input .flag {
    width: 22px;
    margin-right: 8px;
}

.dropdown .values .item .flag {
    width: 22px;
    margin-right: 8px;
}

.dropdown.shown .values {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* INPUT ROW */

.input-row {
    margin-bottom: 29px;
    width: 100%;
}

.input-row .input-box {
    position: relative;
}

.input-row .input-box .checkmark-circle {
    position: absolute;
    right: 12px;
    top: 50%;
    width: 20px;
    height: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%);
    visibility: hidden;
    transition: 0.3s;
    display: none;
}

.input-row .input-box.checked .checkmark-circle {
    opacity: 1;
    visibility: visible;
}

input[data-licence-plate-input] {
    text-transform: uppercase;
}

.input-row .input-box .checkmark-circle img {
    width: 20px;
}


.input-row .input-box .error-circle {
    position: absolute;
    right: 12px;
    top: 50%;
    width: 20px;
    height: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%);
    visibility: hidden;
    transition: 0.3s;
}

.input-row .input-box.error .error-circle {
    opacity: 1;
    visibility: visible;
}

.input-row .input-box .error-circle img {
    width: 20px;
}


.input-row input,
.custom-dropdown,
ul.custom-dropdown-menu .search input {
    transition: border-color 0.3s;
    box-sizing: border-box;
    width: 100%;
    display: block;
    padding: 9px 11px;
    outline: none;
    border: 1px solid #fff;
    border-radius: 6px; /* font-size: 19px; */
    font-size: 16px; /* border: none; */
}

.input-row.error input {
    border-color: #D13D3D !important;
}

.input-box.input-row.error {
    margin-bottom: 0;
}

.input-row > label {
    display: block;
    display: flex;
    align-items: center;
    margin-bottom: 7px; /* font-size: 95%; *//* padding-left: 5px; */
    font-weight: 600;
    font-size: 90%;
}

.input-row > label .light {
    font-weight: 400;
    margin-left: 5px;
    font-size: 90%;
}

.input-row > label > img {
    margin-right: 6px;
    width: 6px;
}

.input-row .error-message {
    color: #D13D3D;
    font-weight: 400;
    font-size: 83%;
    padding-top: 5px;
    padding-left: 6px;
    display: none;
}

.input-row.error .error-message {
    display: block;
}

.input-row.error .dropdown .dropdown-input {
    border-color: #D13D3D;
}

.input-row.error .date-input {
    border-color: #D13D3D;
}

.input-row input:focus {
    border-color: #3a7bce;
}

.date-input {
    display: flex;
    background-color: #fff;
    border-radius: 6px;
    align-items: center;
    height: 45px;
    cursor: pointer;
    /* border: 1px solid #1C5DB0; */
    transition: 0.3s;
    height: 42px;
}

.date-input.shown {

}

.date-input .value {
    padding-left: 16px;
    font-weight: 400;
    font-size: 16px;
}

.date-input .value .placeholder {
    color: #bbbbbb;
}

.date-input .calendar {
    position: absolute;
    background-color: #fff;
    padding: 12px;
    z-index: 5;
    border-radius: 6px;
    top: calc(100% + 4px);
    cursor: default;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-11px);
    box-shadow: 6px 2px 20px 6px rgb(0 0 0 / 12%);
}

.date-input.shown .calendar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.date-input .calendar .header {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.date-input .calendar .header .prev {
    width: 30px;
    cursor: pointer;
    text-align: center;
    font-size: 151%;
}

.date-input .calendar .header .prev img {
    transform: rotate(90deg);
    position: relative;
    top: 2px;
    left: 2px;
}

.date-input .calendar .header .next {
    width: 30px;
    cursor: pointer;
    text-align: center;
    font-size: 151%;
}

.date-input .calendar .header .next img {
    transform: rotate(270deg);
    position: relative;
    top: 2px;
}

.date-input .calendar .header .month {
    width: calc(100% - 60px);
    text-align: center;
    font-weight: 600;
    color: #004a9b;
}

.date-input .calendar table {
    border-collapse: collapse;
}

.date-input .calendar table tr {

    /* border-bottom: 1px solid #ddd; */
}

.date-input .calendar table th {
    padding: 7px;
    font-weight: 400; /* border-bottom: 1px solid #ddd; */
    text-align: center; /* border-top: 1px solid #ddd; */
    border-bottom: 1px solid #004a9b;
    font-weight: 600; /* margin-bottom: 45px; */
}

.date-input .calendar table td { /* display: flex; */
    text-align: center; /* padding: 3px; */
}

.date-input .calendar table .day {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 36px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* background-color: #d9d9d9; */
    cursor: pointer;
    border-radius: 500%;
}

.date-input .calendar table .day {
    /* border: 1px solid #ddd; */
}

.date-input .calendar table .day.non-selectable {
    cursor: not-allowed;
    pointer-events: none;
}

.date-input .calendar table td:hover {
    cursor: not-allowed;
}

.date-input .calendar table .day.non-selectable:after {
    /* content: "ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â"; */
    display: block;
    color: red;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    font-size: 48px;
    font-weight: 200;
}

.date-input .calendar td.other-month .day {
    color: #9a9a9a;
}

.date-input .calendar table td.today .day {
    background-color: #f1f1f1;
    font-weight: 600;
}

.date-input .calendar table td.today .day {
    color: #000;
}

.date-input .calendar table td:hover .day {
    background-color: #345b77;
    color: #fff;
}

.date-input .calendar table td.selected .day {
    background-color: #004a9b;
    color: #fff;
    font-weight: 400;
}

.date-input .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    left: 12px;
}

.date-input .icon img {
    width: 20px;
}

.add-to-cart-page {
    padding-top: 32px;
    padding-bottom: 140px;
}

.add-to-cart-page .licence-plate-row {
    margin-bottom: 37px;
    display: none;
}

.add-to-cart-page h1.title {
    text-align: left;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 150%;
    color: #345b77;
    border-left: 3px solid #2baa6d; /* padding-bottom: 14px; */
    padding-left: 10px;
    text-transform: uppercase;
}

.add-to-cart-page .box {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 40px;
}

.add-to-cart-page .box .back-row {
    margin-bottom: 35px;
    font-size: 94%;
}

.add-to-cart-page .box .back-row a {
    color: #3a7bce;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    border: 1px solid #3a7bce;
    border-radius: 6px;
    padding: 4px 12px;
}

.add-to-cart-page .box .back-row a:hover {
    transition: 0.3s;
    border-color: #1C5DB0;
    color: #1C5DB0;
}

.add-to-cart-page .box .back-row a img {
    margin-right: 7px;
    width: 8px;
}

.add-to-cart-page .box .headline {
    display: flex;
    align-items: center; /* width: calc(100% - 120px); *//* margin-bottom: 17px; */
    background-color: #004a9b30;
    padding: 14px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.add-to-cart-page .box .headline .vignette {
    display: flex;
    align-items: center;
    width: calc(100% - 120px);
}

.add-to-cart-page .box .headline .vignette .icon {
    margin-right: 15px;
    width: 47px;
    display: block;
    float: left;
}

.add-to-cart-page .box .headline .vignette .name {
    color: #1C5DB0;
    font-weight: 500;
    border-right: 1px solid #1C5DB0;
    padding-right: 12px;
    margin-right: 13px;
}


.add-to-cart-page .box .headline .vignette .period {
    font-weight: 800;
}

.add-to-cart-page .box .headline .price {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.price-tag {
    color: #fff;
    padding: 6px 11px;
    font-weight: 500; /* margin-left: 15px; */
    /*font-size: 76%;*/
    background-color: #345b77;
    border-radius: 6px;
}

.add-to-cart-page .box .content {
    padding: 50px; /* border-top: 1px solid #1C5DB0; */
    background-color: #004a9b12;
    margin-top: 2px;
}

.add-to-cart-page .box .content .description {
    font-size: 90%;
    margin-bottom: 35px;
}

.add-to-cart-page .box .content .input-and-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}


.add-to-cart-page .box .content .input-and-info > .column {
    width: 100%; /* padding-right: 41px; */
}

.add-to-cart-page .box .content .input-and-info > .column > .info {
    display: flex;
    align-items: center;
    font-size: 90%; /* justify-content: center; *//* border-bottom: 1px solid #ddd; *//* padding-bottom: 15px; */
    padding-left: 17px;
}

.add-to-cart-page .box .content .input-and-info > .column > .info img {
    margin-right: 12px;
    width: 19px;
}

.add-to-cart-page .licence-plate {
    border: 1px solid #345b773b; /* border: 1px solid #2baa6d; */
    border-radius: 11px;
    padding: 25px; /* margin-bottom: 29px; *//* margin-top: 29px; *//* background-color: #fff; *//* background-color: #cfddec; */
}

.add-to-cart-page .licence-plate .caption {
    text-align: center;
    font-weight: 600;
    font-size: 80%;
    margin-bottom: 15px;
    display: none;
}

.add-to-cart-page .licence-plate .plate {
    background-color: #fff;
    display: flex;
    width: 240px;
    align-items: center;
    border: 1px solid #1C5DB0; /* border-radius: 11px; */
    overflow: hidden;
    margin: 0 auto;
    border: none !important;
}

.add-to-cart-page .licence-plate .plate .left {
    background-color: #396eb1;
    color: #fff;
    width: 40px;
    padding: 5px;
}

.add-to-cart-page .licence-plate .plate .left .stars {
    text-align: center;
}

.add-to-cart-page .licence-plate .plate .left .stars img {

}

.add-to-cart-page .licence-plate .plate.eu {
    border: 1px solid #636363;
}

.add-to-cart-page .licence-plate .plate.eu .left {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #353535;
}

.add-to-cart-page .licence-plate .plate.eu .left .stars {
    display: none;
}

.add-to-cart-page .licence-plate .plate.eu .left .code {
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart-page .licence-plate .plate .left .code {
    text-align: center;
}

.add-to-cart-page .licence-plate .plate .right { /* display: flex; */
    width: calc(100% - 40px);
    align-items: center; /* text-align: center; */
    letter-spacing: 3px;
    font-size: 132%;
    text-align: center;
    font-family: monospace;
}

.add-to-cart-page .end-date {
    display: none;
    font-size: 110%;
    border: 1px solid #345b773b;
    border-radius: 7px;
    padding: 15px;
}

.add-to-cart-page .button-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.add-to-cart-page .button-row .btn {
    transition: 0.25s;
    background-color: #2baa6d;
    color: #fff;
    padding: 13px;
    border: none;
    border-radius: 61px;
    font-size: 100%;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    width: 360px;
    max-width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-row .btn.back-btn {

    background-color: transparent;
    color: #345b77;
    border: 1px solid #345b77;
    margin-right: 15px;
    /* width: 160px; */
}


.add-to-cart-page .button-row .btn img {
    margin-left: 6px;
}

.empty-cart {
    padding-top: 32px;
    padding-bottom: 140px;
}


.empty-cart h1.title {
    text-align: left;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 150%;
    color: #345b77;
    border-left: 3px solid #2baa6d; /* padding-bottom: 14px; */
    padding-left: 10px;
    text-transform: uppercase;
}

.empty-cart .box { /* border: 2px dashed #ddd; */
    padding: 70px;
    background-color: #004a9b12;
    border-radius: 17px;
}

.empty-cart .box .text {
    text-align: center;
    font-size: 102%;
}

.empty-cart .box .button-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.empty-cart .box .button-row .btn {
    transition: 0.3s;
    background-color: #2baa6d;
    color: #fff;
    padding: 13px 23px;
    border: none;
    border-radius: 61px;
    font-size: 96%;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    max-width: 100%;
    cursor: pointer; /* border:1px solid #3A7BCE; */
    display: flex;
    align-items: center;
}

.empty-cart .box .button-row .btn:hover {
    /* color:#3A7BCE; */
    background-color: #004a9b;
}

.empty-cart .box .button-row .btn img {
    width: 25px;
    margin-right: 5px;
}

.cart-page {
    padding-top: 32px;
    padding-bottom: 140px;
}

.cart-page h1.title {
    text-align: left;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 150%;
    color: #345b77;
    border-left: 3px solid #2baa6d; /* padding-bottom: 14px; */
    padding-left: 10px;
    text-transform: uppercase;
}


.cart-page .box { /* max-width: 920px; */
    margin: 0 auto;
    width: 100%;
    margin-bottom: 40px;
}


.cart-page .box .headline {
    display: flex;
    align-items: center; /* width: calc(100% - 120px); */
    margin-bottom: 2px;
    background-color: #004a9b30;
    padding: 14px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.cart-page .box .headline .vignette {
    display: flex;
    align-items: center;
    width: calc(100% - 300px);
}

.cart-page .box .headline .vignette .icon {
    margin-right: 15px;
    width: 47px;
}

.cart-page .box .headline .vignette .name {
    color: #004a9b;
    font-weight: 500;
    border-right: 1px solid #1C5DB0;
    padding-right: 12px;
    margin-right: 13px;
}

.cart-page .box .headline .vignette .name strong {

}

.cart-page .box .headline .vignette .period {
    font-weight: 800;
}

.cart-page .box .headline .actions {
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 90%;
}


.cart-page .box .content {
    padding: 30px; /* border-top: 1px solid #1C5DB0; */
    background-color: #004a9b12;
}

.cart-page .box .content .description {
    font-size: 90%;
    margin-bottom: 25px; /* background-color: #004a9b12; */
    font-style: italic;
}


.cart-page .box .headline .actions .action {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.cart-page .box .headline .actions .action.edit {
    margin-right: 16px;
    cursor: pointer;
    color: #004a9b; /* font-weight: 500; */
}


.cart-page .box .headline .actions .action.delete {
    color: #d30505;
    cursor: pointer;
}

.cart-page .box .headline .actions .action img {
    margin-right: 5px;
    height: 16px;
}

.cart-page .plate-value {
    margin: auto;
}

.cart-page .plate {
    background-color: #fff;
    display: flex; /* width: 200px; */
    align-items: center; /* border: 1px solid #1C5DB0; *//* border-radius: 11px; */
    overflow: hidden; /* margin: 0 auto; */
}

.cart-page .plate .left {
    background-color: #396eb1;
    color: #fff;
    width: 50px;
    padding: 3px;
}

.cart-page .plate .left .stars {
    text-align: center;
    height: 15px;
}

.cart-page .plate .left .stars img {
    width: 15px;
}

.cart-page .plate .left .code {
    text-align: center;
    line-height: 13px;
    font-size: 120%;
}

.cart-page .plate .right { /* display: flex; *//* width: calc(100% - 40px); */
    align-items: center; /* text-align: center; *//* letter-spacing: 3px; */
    font-size: 160%;
    text-align: center;
    padding: 0 29px;
    font-family: monospace;
}

.cart-page .column.validity,
.cart-page .column.validity .name,
.cart-page .column.validity .value,
.cart-page .column.country,
.cart-page .column.country .name,
.cart-page .column.country .value,
.cart-page .column.extra,
.cart-page .column.extra .name,
.cart-page .column.extra .value {
    display: block !important;
    width: 100% !important;
}

.cart-page .column.extra .cart-extra-products {

}

.cart-page .column.extra .cart-extra-products .extra-product {
    margin: 5px;
    padding: 8px;
}

.cart-page .column.extra .cart-price-tag {
    color: #fff;
    font-weight: 500;
    background-color: #345b77;
    border-radius: 6px;
    padding: 10px;
    display: block;
    width: fit-content;
}

.cart-page .data .column .name {
    font-weight: 400!important;
}

.cart-page .data .column .value {
    font-weight: 600;
}

.cart-page .button-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.cart-page .button-row .btn {
    background-color: #2baa6d;
    transition: 0.3s;
    border: 1px solid #2baa6d;
    color: #fff;
    padding: 13px 23px; /* border: none; */
    border-radius: 81px;
    font-size: 100%;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    max-width: 100%;
    cursor: pointer;
    margin: 0 9px;
    display: flex;
    align-items: center;
}


.cart-page .button-row .btn img {
    margin-left: 7px;
}

.cart-page .button-row .btn.secondary {
    transition: 0.3s;
    border: 1px solid #345b77;
    color: #345b77;
    background-color: transparent;
}

.cart-page .button-row .btn.secondary:hover {
    border-color: #1C5DB0;
    color: #1C5DB0;
}

.cart-page .data {
    display: flex;
    flex-wrap: wrap;
}

.cart-page .data .column {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #dddddda8;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    font-size: 88%;
}

.cart-page .data .column:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cart-page .data .column > .name {
    font-weight: 600;
    /* margin-bottom: 13px; */
    /* padding-right: 10px; */
    width: 222px;
    color: #345b77;
}

.cart-page .data .column > .value {
    display: flex;
    justify-content: start;
}

.delete-from-cart {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 38%);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.delete-from-cart .delete-modal {
    background-color: #fff;
    border-radius: 9px;
    width: 350px;
    max-width: calc(100% - 30px);
    padding: 18px;
    position: relative;
    box-shadow: 0 0 17px #0000001c; /* display: none; */
}

.delete-from-cart .delete-modal .close {
    transition: 0.25s;
    position: absolute;
    top: -32px;
    right: 4px;
    cursor: pointer;
}

.delete-from-cart .delete-modal .close:hover {
    transform: scale(1.05);
}

.delete-from-cart .delete-modal .close img {
    width: 16px;
}

.delete-from-cart .delete-modal .vignette {
    color: #1C5DB0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.delete-from-cart .delete-modal .vignette .icon {
    height: 20px;
    margin-right: 8px;
}

.delete-from-cart .delete-modal .vignette .name {
    font-weight: 500;
    border-right: 1px solid #c7c7c7;
    padding-right: 9px;
    margin-right: 10px;
    font-size: 90%;
}

.delete-from-cart .delete-modal .vignette .name strong {

}

.delete-from-cart .delete-modal .vignette .period {
    font-size: 90%;
}

.delete-from-cart .delete-modal .question {
    font-weight: 600;
    text-align: center;
    font-size: 90%;
    margin-bottom: 30px;
}

.delete-from-cart .delete-modal .button-row {
    display: flex;
}

.delete-from-cart .delete-modal .button-row { /* font-size: 80%; */
}

.delete-from-cart .delete-modal .button-row .btn {
    transition: 0.3s;
    width: 50%;
    background-color: #d30505;
    color: #fff;
    border-radius: 71px;
    padding: 7px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #d30505;
    font-size: 85%;
    padding: 11px 34px;
    font-weight: 400;
}

.delete-from-cart .delete-modal .button-row .btn:hover {
    /* border-color: #D13D3D; */
    /* background-color: transparent; */
    /* color: #D13D3D; */
}

.delete-from-cart .delete-modal .button-row .btn.secondary {
    margin-right: 16px;
    background-color: transparent;
    color: #345b77;
    border: 1px solid #345b77;
    transition: 0.3s;
    font-weight: 400;
}

.delete-from-cart .delete-modal .button-row .btn.secondary:hover {
    /* color: #fff; */
    /* background-color: #3A7BCE; */
}

.custom-checkbox { /* transition:0.3s; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    position: relative; /* border: 1px solid #DFDEDE; */
    border-radius: 6px;
    cursor: pointer;
    cursor: pointer;
    border: 1px solid #1C5DB0;
    background-color: #fff;
}

.custom-checkbox:hover {
    border-color: #29BDFF;
}

.custom-checkbox.checked {
    background-color: #2baa6d;
    border-color: #2baa6d;
}

.custom-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.01;
    box-sizing: border-box;
    padding: 0;
    margin: 0; /* pointer-events: none; */
    cursor: pointer;
    background-color: red; /* width: 15px; *//* height: 15px; */
}

.custom-checkbox .checkmark {
    width: 10px;
    transform: scale(0);
    /* transition: 0.3s; */
}

.custom-checkbox.checked .checkmark {
    transform: scale(1);
}

.customer-data {
    padding-top: 32px;
    padding-bottom: 90px;
}

.customer-data h1.title {
    text-align: left;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 150%;
    color: #345b77;
    border-left: 3px solid #2baa6d; /* padding-bottom: 14px; */
    padding-left: 10px;
    text-transform: uppercase;
}

.customer-data .back-row {
    margin-bottom: 35px;
    font-size: 94%;
}

.customer-data .back-row a {
    color: #3a7bce;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    border: 1px solid #3a7bce;
    border-radius: 6px;
    padding: 4px 12px;
    transition: 0.3s;
}

.customer-data .back-row a:hover {
    color: #1C5DB0;
    border-color: #1C5DB0;
}

.customer-data .back-row a img {
    margin-right: 7px;
    width: 8px;
}

.customer-data .section {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 57px;
    max-width: 100%;
}

.customer-data .section .section-title {
    display: flex;
    align-items: center;
    display: flex;
    align-items: center;
    /* width: calc(100% - 120px); */
    margin-bottom: 2px;
    background-color: #004a9b30;
    padding: 14px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.customer-data .section-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.customer-data .section-spinner img {
    width: 70px;
}

.customer-data .section .section-title .left {
    font-weight: 800;
    color: #004a9b;
    font-size: 138%; /* margin-bottom: 12px; */
    width: 50%;
    text-transform: uppercase;
    font-size: 15px;
}

.customer-data .section .section-title .right {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    font-size: 80%;
}

.customer-data .section .content { /* background-color: #F1F1F1; */
    background-color: #F1F1F1;
    padding: 30px;
}

.customer-data .section .content .half {
    display: flex;
}

.customer-data .section .content .half .column {
    width: 50%;
}

.customer-data .section .content .half .column.zip {
    width: 230px;
}

.customer-data .section .content .half .column.city {
    width: calc(100% - 254px);
}

.customer-data .section .content .half .column.company-name {
    width: calc(100% - 236px);
}

.customer-data .section .content .half .column.vat-number {
    width: 234px;
}

.customer-data .radio-group {

}

.customer-data .radio-group .row {
    display: flex;
    margin-bottom: 26px;
    cursor: pointer;
    align-items: center;
}

.customer-data .radio-group .row .radio-column { /* width: 20px; *//* height: 20px; */
    display: flex; /* background-color: #fff; */
    width: 35px;
    align-items: center;
    display: flex;
    align-items: center;
}

.customer-data .radio-group .row .radio-column .radio-button {
    width: 22px;
    height: 22px;
    background-color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #3a7bce;
}

.customer-data .radio-group .row .radio-column .radio-button:hover {
    border-color: #29BDFF;
}

.customer-data .radio-group .row .radio-column .radio-button .circle {
    background-color: #2baa6d;
    width: 17px;
    height: 17px;
    border-radius: 5px;
    display: none;
}

.customer-data .radio-group .row .radio-column .radio-button.active {
    background-color: #2baa6d;
    border: 0;
}

.customer-data .radio-group .row .radio-column .radio-button.active .circle { /* width: 20px; *//* height: 20px; */
    display: block;
    background-image: url("/assets/images/checkmark-white.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px;
}

.customer-data .radio-group .row .text-column { /* display: inline-flex; */
    align-items: center;
    width: calc(100% - 50px);
}

.customer-data .radio-group .row .text-column strong {
    margin-right: 5px;
}

.customer-data .radio-group .row .text-column img {
    margin-left: 8px;
    position: relative;
    top: 7px;
}

.customer-data .invoice-data {
    margin-top: 40px;
}

.button-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.customer-data .button-row .btn {
    transition: 0.3s;
    background-color: #2baa6d;
    color: #fff;
    padding: 13px 34px;
    border: none;
    font-size: 100%;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    max-width: 100%;
    cursor: pointer;
    width: 360px;
    min-width: 360px;
    border-radius: 70px;
}

.button-row.top .btn {
    margin-top: 0;
    margin-bottom: 35px;
}

.customer-data .button-row .btn img {

}

.customer-data .delete-from-cart .button-row {
    margin: 0;
}

.customer-data .button-row .btn.pay {
    background-color: #2baa6d;
    width: 300px;
    max-width: 100%;
}

.customer-data .section .content .half .column:first-child {
    margin-right: 40px;
}

.customer-data .button-row .btn.secondary {
    transition: 0.3s;
    border: 1px solid #3A7BCE;
    color: #3A7BCE;
    background-color: transparent;
    font-size: 85%;
    padding: 11px 34px;
}

.customer-data .button-row .btn.secondary:hover {
    border-color: #1C5DB0;
    color: #1C5DB0;
}

.checkbox-row {
    display: flex;
    align-items: center;
}

.checkbox-row .text {
    padding-left: 13px;
    width: calc(100% - 25px);
}


.checkbox-row .text .badge {
    background-color: #fff;
    display: inline-flex;
    border-radius: 16px;
    padding: 3px 7px;
    font-weight: 600;
    color: #3A7BCE;
    font-size: 81%;
    margin-left: 3px;
}

.customer-data .action {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #1C5DB0;
    cursor: pointer;
    font-weight: 600;
}

.customer-data .action img {
    margin-right: 5px;
    width: 17px;
}

.customer-data .lock {
    margin-right: 5px;
}

.customer-data .agreement {
    margin: 0 auto;
    margin-bottom: 57px;
    max-width: 100%;
}

.customer-data .agreement a {
    color: #3A7BCE;
}

.customer-data .customer-data-row {
    /* background-color: #ddd; */
    display: flex;
    border-bottom: 2px solid #E4E4E4;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.customer-data .customer-data-row .name {
    width: 200px;
    font-weight: 300;
}

.customer-data .customer-data-row .value {
    width: calc(100% - 200px);
    font-weight: 600;
}

.customer-data .customer-data-row .value strong {
    font-weight: 600;
}

.customer-data .customer-data-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.customer-data .radio-group .row:last-child {
    margin-bottom: 0;
}

.customer-data .vignette-item {
    border-bottom: 2px solid #E4E4E4;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.customer-data .vignette-item .name-and-price {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.customer-data .vignette-item .name-and-price .name {
    font-weight: 700; /* width: 50%; */
    color: #004a9b;
}

.customer-data .vignette-item .name-and-price .price { /* width: 50%; */
    display: flex;
    justify-content: flex-end;
}

.customer-data .vignette-item .name-and-price .price-tag {
    font-size: 80%;
    margin-left: 15px;
    text-wrap-mode: nowrap;
}

.customer-data .vignette-item.no-last-border:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.customer-data .vignette-item .properties {

}

.customer-data .vignette-item .properties .prop {
    display: flex; /* align-items: center; */
    margin-bottom: 9px;
    align-items: start;
}


.customer-data .vignette-item .properties .prop .name {
    width: 200px;
    display: flex;
    align-items: center;
    padding-left: 0;
    font-size: 90%;
    font-weight: 300;
}

.customer-data .vignette-item .properties .prop .value {
    width: calc(100% - 200px);
    font-size: 90%;
    font-weight: 600;
}

.customer-data .vignette-item .properties .prop .value strong {

}

.customer-data .vignette-item .properties .prop .name .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: #3A7BCE;
    display: none;
}

.customer-data .vignette-item .properties .prop .blue {
    color: #1C5DB0;
}

.customer-data .subtotal {
    border-bottom: 2px solid #E4E4E4;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.customer-data .subtotal .row {
    display: flex;
    align-items: center;
    font-size: 90%;
    margin-bottom: 3px;
}

.customer-data .subtotal .row .name {
    width: calc(100% - 130px);
    text-align: right;
}

.customer-data .subtotal .row .price { /* color: #3a7bce; */
    width: 120px;
    text-align: right;
    font-weight: 600;
}

.customer-data .total {
    display: flex;
    align-items: center;
    font-size: 115%;
    font-weight: 700;
}

.customer-data .total .name {
    width: calc(100% - 130px);
    text-align: right;
}

.customer-data .total .price {
    color: #2baa6d;
    width: 215px;
    text-align: right;
    font-size: 200%;
    text-wrap: nowrap;
}

.product-page {
    padding-top: 50px;
    padding-bottom: 170px;
}

.product-page .photo-and-details {
    display: flex;
}

.product-page .photo-and-details .photo {
    width: 320px;
}

.product-page .photo-and-details .photo img {
    width: 100%;
}

.product-page .photo-and-details .details {
    width: calc(100% - 320px);
    padding-left: 40px;
}

.product-page .photo-and-details .details h1.name {
    margin-top: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 12px;
    margin-bottom: 41px;
    color: #1C5DB0;
}

.product-page .photo-and-details .details h1.name .icon {
    display: none;
}

.product-page .photo-and-details .details .description {
    margin-bottom: 50px;
}

.product-page .photo-and-details .details .categories {
    display: flex;
    margin-bottom: 20px;
}

.product-page .photo-and-details .details .left {
    width: 270px;
}

.product-page .photo-and-details .details .right {
    width: auto;
    padding-top: 31px;
    padding-left: 26px;
}

.product-page .photo-and-details .details .right .price-tag {
    display: none;
    background-image: url(/assets/images/price-tag.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    color: #fff;
    padding: 4px 20px;
    padding-right: 11px;
    font-weight: 600;
}


.product-page .photo-and-details .details .button-row {
    display: none;
}

.product-page .photo-and-details .details .button-row .btn {
    transition: 0.3s;
    background-color: #2BAA6D;
    color: #fff; /* display: block; */
    display: flex; /* width: 100%; */
    align-items: center;
    justify-content: center;
    padding: 7px;
    box-sizing: border-box;
    border-radius: 11px;
    font-size: 90%; /* width: 240px; */
    padding: 12px 31px;
}

.product-page .photo-and-details .details .button-row .btn:hover {
    background-color: #1C5DB0;
}

.product-page .photo-and-details .details .button-row .btn img {
    margin-right: 10px;
}

.product-page .photo-and-details .category-description {
    margin-bottom: 35px;
    display: none;
}

.product-page .photo-and-details .category-description strong {
    font-weight: 600;
}

.static-page {
    padding-top: 28px;
    padding-bottom: 80px;
}

.static-page h1.title {
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 150%;
    color: #345b77;
    border-left: 3px solid #2baa6d;
    /* padding-bottom: 14px; */
    padding-left: 10px;
    text-transform: uppercase;
}

.static-page .article-wrapper {
    width: 1200px;
    margin: 0 auto;
    max-width: 100%;
}

.static-page.article-mode h1.title {
    margin-bottom: 10px;
}

.static-page.article-mode .article-details {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    color: #444;
    font-size: 90%;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.static-page.article-mode .article-details .news-category {
    background-color: #f1f1f1;
    color: #004baa;
    /* color: #fff; */
    border-radius: 5px;
    font-size: 90%;
    padding: 1px 5px;
    margin-left: 12px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.static-page.article-mode .article-details .news-category:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 40%;
    background-color: #3a7bce;
    margin-right: 5px;
    transition: 0.3s;
}

.static-page.article-mode .back-row {
    margin-bottom: 20px;
}

.static-page.article-mode .back-row a {
    color: #3a7bce;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    border: 1px solid #3a7bce;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 91%;
}

.static-page.article-mode .back-row a img {
    margin-right: 5px;
}

.static-page.article-mode .article-details .news-category:hover {
    background-color: #004caa;
    color: #fff;
}

.static-page.article-mode .article-details .news-category:hover:before {
    background-color: #fff;
}

.static-page .static-page-content a {
    color: #004a9b !important;
    text-decoration: underline;
}

.static-page .static-page-content img {
    max-width: 100%;
}

.static-page .static-page-content table {
    width: 100%;
}

.static-page .static-page-content table td,
.static-page .static-page-content table th {
    padding: 8px;
}

.static-page .q-and-a {
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.static-page .q-and-a .q {
    background-color: #1C5DB0;
    color: #fff;
    padding: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.static-page .q-and-a .q:hover {
    background-color: #2f71c5;
}

.static-page .q-and-a .q:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url(/assets/images/down.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
    top: 2px;
    margin-right: 7px;
    transition: 0.3s;
}

.static-page .q-and-a.shown .q:before {
    transform: rotate(180deg);
}

.static-page .q-and-a .a {
    display: none;
    padding: 15px;
}

.static-page .q-and-a.shown .a {
    display: block;
}

/* NEWS PAGE */

.news-page {
    padding-top: 32px;
    padding-bottom: 140px;
}

.news-page h1.title {
    color: #1C5DB0;
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
}

.news-page .news-list {
    display: flex;
}

.news-page .news-list .next-prev {
    text-align: center;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-page .news-list .next-prev a {
    margin: 0 10px;
    color: #3a7bce;
    display: inline-flex;
    align-items: center;
}

.news-page .news-list .next-prev a:first-child img {
    margin-right: 4px;
    width: 8px;
}

.news-page .news-list .next-prev a:last-child img {
    margin-left: 4px;
    width: 8px;
}

.news-page .news-list .next-prev a.inactive {
    pointer-events: none;
    opacity: 0.4;
    display: none;
}


.news-page .news-list .right-column {
    width: 300px;
    /* background-color: #F1F1F1; */
    padding-left: 30px;
    border-left: 1px solid #ddd;
    padding-top: 0;
}

.news-page .news-list .left-column {
    width: calc(100% - 300px);
    padding-right: 30px;
}

.news-page .right-column .section-title {
    /* background-color: #F1F1F1; */
    margin: 0 3px;
    /* color: #1C5DB0; */
    font-weight: 700;
    width: 100%;
    font-size: 109%;
    margin-bottom: 17px;
}

.news-page .right-column .news-category {
    /* background-color: #F1F1F1; */
    margin: 0 3px;
    width: 100%;
    margin-bottom: 8px;
    background-color: #f1f1f1;
    border-radius: 4px;
    font-size: 90%;
    padding: 1px 5px;
    /* margin-left: 8px; */
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    font-weight: 400;
    color: #1c5db0;
    width: auto;
    margin-left: 0;
    margin-right: 8px;
    transition: 0.3s;
}

.news-page .right-column .news-category:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 40%;
    background-color: #3a7bce;
    margin-right: 5px;
    transition: 0.3s;
}

.news-page .right-column .news-category:hover {
    background-color: #1c5db0;
    color: #fff;
}

.news-page .right-column .news-category.selected {
    font-weight: 600;
    color: #1E1E1E;
    pointer-events: none;
}


.news-page .right-column .news-category:hover:before {
    background-color: #fff;
}


.news-page .right-column .news-category.selected:before {
    /*background-color: #000011;*/
}

.article {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #ddd;
    margin-bottom: 34px;
    padding-bottom: 34px;
    /* background-color: #f1f1f1; */
}

.article .details-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 86%;
}

.article .details-row .news-category {
    color: #1C5DB0;
    background-color: #f1f1f1;
    border-radius: 4px;
    font-weight: 500;
    font-size: 90%;
    padding: 1px 5px;
    margin-left: 8px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.article .details-row .news-category:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 40%;
    background-color: #3a7bce;
    margin-right: 3px;
    transition: 0.3s;
}

.article .details-row .news-category:hover {
    background-color: #1C5DB0;
    color: #fff;
}

.article .details-row .news-category:hover:before {
    background-color: #fff !important;
}

.article a.read-more {
    /* color: #3a7bce; */
    margin-left: 8px;
    font-size: 86%;
    text-decoration: underline;
}

.article a.read-more:hover {
    text-decoration: none;
}

.article:last-child {
    border-bottom: none;
}

.article .photo-column {
    width: 200px;
    height: 130px;
    border: 1px solid #ddd;
    padding: 4px;
    /* background-color: #f1f1f1; */
    transition: 0.3s;
}

.article .photo-column:hover {
    border-color: #1C5DB0;
}

.article .text-column {
    width: calc(100% - 200px);
    padding-left: 25px;
}

.article .text-column h2 {
    margin: 0;
    font-size: 122%;
    font-weight: 600;
    margin-bottom: 4px;
}

.article .text-column h2 a {
    transition: 0.3s;
}

.article .text-column h2 a:hover {
    color: #1C5DB0;
}

.article .photo-column .image-container {
    width: 100%;
    height: 100%;
    padding-bottom: 50%;
    position: relative;
    /* border: 1px solid #1c5db0; */
}

.article .photo-column .image-container img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border: 1px solid #1c5db0; */
}


/* LOGIN PAGE */

.login-page {
    padding-top: 32px;
    padding-bottom: 140px;
}

.login-page .box.success {
    /* border-top: 1px solid #47cb54; */
}

.login-page .box.success .text {
    /* color: #47cb54; */
    margin-bottom: 0;
}

.login-page .box .checkmark-row {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.login-page .box .checkmark-row img {
    width: 35px;
}

.login-page .title {
    text-align: center;
    color: #1C5DB0;
    text-align: center;
    margin-top: 0;
    margin-bottom: 51px;
}

.login-page .box {
    max-width: 650px;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 80px;
    background-color: #F1F1F1;
    padding: 50px;
    border-top: 1px solid #1C5DB0;
}

.login-page .box > .text {
    margin-bottom: 33px;
    font-size: 90%;
}

.login-page .button-row {
    display: flex;
    justify-content: center;
}

.login-page .button-row button {
    transition: 0.3s;
    background-color: #3A7BCE;
    color: #fff;
    padding: 9px 21px;
    border: none;
    border-radius: 11px;
    font-size: 100%;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    /* width: 190px; */
    max-width: 100%;
    cursor: pointer;
    border: 1px solid #3A7BCE;
    min-width: 150px;
}

.login-page .button-row button:hover {
    color: #3A7BCE;
    background-color: transparent;
}

.login-link-page {
    padding-top: 32px;
    padding-bottom: 140px;
}

.login-link-page .loader {
    margin: 0 auto;
    width: 500px;
    max-width: 100%;
    text-align: center;
    padding: 15px;
}

.login-link-page .loader .title {
    color: #1C5DB0;
    font-weight: 700;
    font-size: 120%;
    margin-bottom: 24px;
}

.login-link-page .loader img {
    width: 100px;
}

.profile-page {

}

.profile-page h1 {
    margin-bottom: 10px !important;
}

.profile-page .email-row {
    text-align: center;
    font-size: 90%;
    margin-bottom: 45px;
}

.profile-page .email-row a {
    color: #3a7bce;
}


.profile-page .profile-orders {
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
}

.profile-page .profile-orders .table-header {
    display: flex;
    font-weight: 600;
    background-color: #F1F1F1;
    text-align: center;
    /* padding: 9px; */
    border-bottom: 1px solid #1C5DB0;
    color: #1C5DB0;
    text-transform: uppercase;
    text-align: center;
    font-size: 80%;
}

.profile-page .profile-orders .table-header > div {
    padding: 10px;
}

.profile-page .profile-orders .table-header > div:nth-child(1) {
    width: 24%;
}

.profile-page .profile-orders .table-header > div:nth-child(2) {
    width: 48%;
}

.profile-page .profile-orders .table-header > div:nth-child(3) {
    width: 24%;
}

.profile-page .profile-orders .table-header > div:nth-child(4) {
    width: 4%;
}

.profile-page .profile-orders .rows {

}

.profile-page .profile-orders .rows > .row {
    display: flex;
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    width: 100%;
    transition: 0.3s;
}

.profile-page .profile-orders .rows > .row > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-page .profile-orders .rows > .row > div:nth-child(1) {
    width: 24%;
}

.profile-page .profile-orders .rows > .row > div:nth-child(2) {
    width: 48%;
}

.profile-page .profile-orders .rows > .row > div:nth-child(3) {
    width: 24%;
}

.profile-page .profile-orders .rows > .row > div:nth-child(4) {
    width: 4%;
}

.profile-page .profile-orders .rows > .row .nr-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-page .profile-orders .rows > .row .nr {
    width: 22px;
    height: 19px;
    background-color: #1C5DB0;
    color: #fff;
    border-radius: 50px;
    font-size: 70%;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 4px;
    transition: 0.3s;
    margin-left: 5px;
}

.profile-page .profile-orders .row-content {
    font-size: 85%;
    padding: 20px;
    border: 1px solid #1C5DB0;
    display: none;
}

.profile-page .profile-orders .rows > .row .chevron {
    transition: 0.25s;
    width: 12px;
}

.profile-page .profile-orders .rows > .row:hover {
    background-color: #F1F1F1;
    cursor: pointer;
}


.profile-page .profile-orders .row-content .section {
    margin-bottom: 20px;
}

.profile-page .profile-orders .row-content .section .content {
    padding: 20px;
}

.profile-page .profile-orders .row-content .section-title {
    font-size: 80%;
}

.profile-page .profile-orders .row-content .section-title .left {
    font-weight: 700;
}

.profile-page .profile-orders .rows > .row.active {
    background-color: #1C5DB0;
    color: #fff;
    border-bottom-color: #1C5DB0;
}

.profile-page .profile-orders .rows > .row.active .nr {
    background-color: #fff;
    color: #1C5DB0;
}

.profile-page .profile-orders .rows > .row.active .chevron {
    transform: rotate(180deg);
    filter: brightness(0) invert(1);
}

.profile-page .profile-orders .rows > .row.active + .row-content {
    display: block;
}

.profile-page .next-prev {
    text-align: center;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-page .next-prev a {
    margin: 0 10px;
    color: #3a7bce;
    display: inline-flex;
    align-items: center;
}

.profile-page .next-prev a:first-child img {
    margin-right: 4px;
    width: 8px;
}

.profile-page .next-prev a:last-child img {
    margin-left: 4px;
    width: 8px;
}

.profile-page .next-prev a.inactive {
    pointer-events: none;
    opacity: 0.4;
    display: none;
}

/* VALIDITY PAGE */

.validity-page {
    padding-top: 32px;
    padding-bottom: 140px;
}

.validity-page .extra-info {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    font-size: 84%;
}

.validity-page .box.success {
    /* border-top: 1px solid #47cb54; */
}

.validity-page .box.success .text {
    /* color: #47cb54; */
    /* margin-bottom: 0; */
}

.validity-page .box .checkmark-row {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.validity-page .box .checkmark-row img {
    width: 35px;
}

.validity-page .title {
    text-align: center;
    color: #1C5DB0;
    text-align: center;
    margin-top: 0;
    margin-bottom: 51px;
}

.validity-page .box {
    max-width: 650px;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 80px;
    background-color: #F1F1F1;
    padding: 50px;
    border-top: 1px solid #1C5DB0;
}

.validity-page .box > .text {
    margin-bottom: 33px;
    font-size: 90%;
}

.validity-page .button-row {
    display: flex;
    justify-content: center;
}

.validity-page .button-row button {
    transition: 0.3s;
    background-color: #3A7BCE;
    color: #fff;
    padding: 9px 21px;
    border: none;
    border-radius: 11px;
    font-size: 100%;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    /* width: 190px; */
    max-width: 100%;
    cursor: pointer;
    border: 1px solid #3A7BCE;
    min-width: 150px;
}

.validity-page .button-row button:hover {
    color: #3A7BCE;
    background-color: transparent;
}

.validity-page .checkbox-row {
    display: flex;
    align-items: center;
}

.validity-page .checkbox-row .text {
    padding-left: 13px;
    width: calc(100% - 25px);
    font-size: 85%;
}

.validity-page .checkbox-row .text a {
    color: #1C5DB0;
    font-weight: 400;
}

@media (max-width: 1400px) {
    .container {
        width: 1140px;
    }

    body {
        font-size: 95%;
    }
}

@media (max-width: 1200px) {
    .container {
        width: 960px;
    }

    body {
        font-size: 85%;
    }

    .article .photo-column {
        width: 150px;
        height: 100px;
    }

    .article .text-column {
        width: calc(100% - 150px);
    }

    .vignettes .row .column {
        padding: 10px;
        margin: 0 2px;
    }

    header .gray .menu-item {
        margin-right: 20px;
    }

    header .white .columns .column img.logo {
        height: 41px;
    }

    .vignettes .row {
        margin-bottom: 4px;
    }

    .vignettes .headline {
        margin-bottom: 4px;
    }

    footer .white .logos img {
        width: 440px;
    }

    .cart-page .box .headline .vignette .icon {
        height: 20px;
    }

    header .white .language .value img.flag {
        width: 20px;
    }

    .vignettes .row .column .add-to-cart .btn img {
        width: 16.5px;
    }

    .login-page .button-row button {
        padding: 9px 18px;
    }

    .validity-page .button-row button {
        padding: 9px 18px;
    }

    .cart-page .plate .left {
        padding: 10px;
    }

    .cart-page .plate .left .stars {
        height: 19px;
    }

    .cart-page .plate .left .stars img {
        height: 21px;
    }

    .cart-page .button-row .btn {
        padding: 10px 21px;
    }

    .cart-page .button-row .btn img {
        width: 7px;
    }

    .empty-cart .box .button-row .btn {
        padding: 9px 18px;
    }

    .cart-page .box .content {
        padding: 20px;
    }

    .add-to-cart-page .box .headline .vignette .icon {
        height: 22px;
    }

    .add-to-cart-page .licence-plate .plate .left .stars {
        height: 20px;
    }

    .add-to-cart-page .licence-plate .plate .left .stars img {
        width: 17px;
        height: 17px;
    }

    .add-to-cart-page .licence-plate .plate .left .code {

    }

    .add-to-cart-page .licence-plate .plate .right {
        font-size: 150%;
    }

    .input-row input,
    .custom-dropdown,
    ul.custom-dropdown-menu .search input {
        padding: 6px 10px;
    }

    .dropdown .dropdown-input {
        height: 37px;
    }

    .date-input {
        height: 37px;
    }

    .add-to-cart-page .button-row .btn {
        padding: 10px;
    }

    .add-to-cart-page .button-row .btn img {
        width: 6px;
    }

    .add-to-cart-page .box {
        width: 100%;
        max-width: 100%;
    }

    .customer-data .section .content {
        padding: 44px;
    }

    .customer-data .section {
        width: 100%;
    }

    .custom-checkbox {
        width: 20px;
        height: 20px;
    }

    .customer-data .agreement {
        width: 100%;
    }

    .delete-from-cart .delete-modal .button-row .btn {
        padding: 5px;
    }

    .product-page .photo-and-details .photo {
        width: 270px;
    }

    .product-page .photo-and-details .details {
        width: calc(100% - 270px);
    }

    .customer-data .vignette-item .properties .prop .name .dot {
        width: 7px;
        height: 7px;
    }
}

@media (max-width: 992px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }

    .news-page .right-column {
        display: none;
    }

    .news-page .left-column {
        width: 100% !important;
    }

    .vignettes .row .column .name-and-price .name {
        width: 100%;
        text-align: center;
        margin-bottom: 6px;
    }

    .vignettes .row .column .name-and-price .price {
        width: 100%;
        text-align: center;
    }

    .vignettes .row .column .name-and-price .name div {
        display: inline;
        /* margin-bottom: 5px; */
    }

    .vignettes .row .column .name-and-price {
        flex-wrap: wrap;
        margin-bottom: 6px;
        flex-grow: 1;
        flex-direction: column;
        justify-content: center;
    }

    .vignettes .row .column.blue .images-and-code .image img {
        width: 60px;
    }

    .vignettes .row .column.blue .images-and-code .code {
        font-size: 232%;
        line-height: 21px;
    }

    .cart-page .button-row .btn {
        padding: 10px 17px;
    }

    .cart-page .data {
        flex-wrap: wrap;
    }

    .cart-page .data .column {
        width: 100%;
        margin-bottom: 15px;
    }

    .cart-page .box .headline .vignette {
        width: calc(100% - 200px);
    }

    .cart-page .box .headline .actions {
        width: 200px;
    }
}

@media (max-width: 880px) {
    #homepage-steps .steps .inner-box {
        flex-wrap: wrap;
    }

    .vignettes .row .column .add-to-cart .btn {
        justify-content: center;
        text-align: center;
    }

    .vignettes .row .column .add-to-cart .btn img {
        display: none;
    }

    .vignettes .row .column .name-and-price .name div {
        display: none;
    }

}

@media (max-width: 768px) {
    .add-to-cart-page h1.title {
        margin-bottom: 25px;
    }

    .customer-data h1.title {
        margin-bottom: 25px;
    }

    .product-page .photo-and-details .details h1.name {
        display: flex;
    }

    .product-page .photo-and-details .details h1.name .icon {
        display: block;
        margin-right: 15px;
    }

    header .white .columns .column img.logo {
        height: 36px;
    }

    footer .gray .columns .column {
        width: 50%;
        margin-bottom: 30px;
    }

    footer .gray .columns {
        flex-wrap: wrap;
    }

    footer .gray .columns .column .title {
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
    }

    header .gray .menu-items .home-item {
        display: none;
    }

    footer .gray .columns {
        padding: 20px;
    }

    footer .white .logos img {
        width: 380px;
    }

    footer .gray {
        padding: 23px 0;
    }

    footer .gray .columns .column {
        margin-bottom: 28px;
    }

    .main-page {
        padding-bottom: 40px;
    }

    header .gray {
        position: relative;
    }

    header .gray .menu-items {
        position: absolute;
        left: 0;
        top: calc(100% + 2px);
        background-color: #004a9b;
        flex-wrap: wrap;
        width: 100%;
        z-index: 2;
        display: none;
        /* box-shadow: 0 0 12px #000; */
        /* border: 1px solid #3a7bce; */
        /* border-radius: 9px; */
    }

    header .gray .menu-items .menu-item {
        width: 100%;
        margin: 0;
        padding: 0;
        padding: 18px;
        display: flex;
        align-items: center;
    }

    header .gray .menu-items .menu-item:before {
    }

    header .gray.active .menu-items {
        display: flex;
        /* border-radius: 11px; */
        padding: 10px 0;
    }

    header .gray .hamburger {
        display: flex;
        /* padding: 6px 8px; */
        border-radius: 7px;
        cursor: pointer;
    }

    header .gray .home-icon-mobile {
        display: block;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 8px;
        width: 23px;
        height: 32px;
    }

    header .gray {
        padding: 11px 0;
    }

    header .gray .hamburger img {
        margin-right: 7px;
        width: 22px;
    }

    header .gray .hamburger.close {
        display: none;
    }

    header .gray .hamburger.closet img {

        width: 18px;

    }

    body {
        font-size: 110%;
    }

    .product-page .photo-and-details {
        flex-wrap: wrap;
    }

    .product-page .photo-and-details .details {
        width: 100%;
        padding-left: 0;
    }

    .product-page .photo-and-details .details .left {
        width: 200px;
    }

    .product-page .photo-and-details .photo {
        order: 2;
        width: 100%;
        margin-top: 50px;
        justify-content: center;
        display: flex;
        display: none;
    }

    .product-page .photo-and-details .details .button-row {
        justify-content: center;
    }

    .product-page {
        padding-top: 30px;
    }

    .customer-data .section .content .half .column:first-child {
        margin-right: 20px;
    }

    .customer-data .section .content {
        padding: 20px;
    }

    .customer-data {
        padding-bottom: 50px;
    }
}

@media (max-width: 730px) {

    .cart-page .data .column {
        width: 100%;
        margin-bottom: 20px;
    }

    .login-page .box {
        padding: 25px;
    }

    .validity-page .box {
        padding: 25px;
    }

    .vignettes .headline {
        display: none;
    }

    .vignettes .row {
        flex-wrap: wrap;
    }

    .vignettes .row .column {
        width: 100%;
    }

    .vignettes .row .column {
        display: flex;
        flex-direction: row;
        align-items: center;
        border-bottom: 3px solid #fff;
    }

    .vignettes .row .column .name-and-price .name {
        /* display: flex; */
        width: 100%;
        text-align: left;
    }

    .vignettes .row .column .name-and-price .name div {
        display: block;
        font-size: 112%;
    }

    .vignettes .row .column .name-and-price {
        /* width: 100%; */
        width: calc(100% - 100px);
    }

    .vignettes .row .column .add-to-cart {
        width: 100px;
    }

    .vignettes .row .column .name-and-price .price {
        text-align: left;
    }

    .vignettes .row .column .name-and-price .name div:first-child {
        margin-right: 8px;
        display: block;
        /* align-items: center; */
    }

    .vignettes .row .column .add-to-cart .btn {
        width: auto;
    }

    .vignettes .row .column .add-to-cart .btn img {
        display: block;
    }

    .vignettes .row .column.blue {
        flex-wrap: wrap;
        padding: 17px;
        border-radius: 0 !important;
    }

    .vignettes .row .column.blue .images-and-code {
        width: 100%;
        order: 2;
    }

    .vignettes .row .column.blue .name {
        font-size: 100%;
        margin-top: 0;
    }

    .vignettes .row .column.blue .images-and-code img.vertical {
        display: none;
    }

    .vignettes .row .column.blue .images-and-code img.horizontal {
        display: block;
        height: 20px;
        width: auto;
    }

    .vignettes .row .column.inactive {
        display: none;
    }

    .cart-page .box .headline .vignette .icon {
        height: 18px;
    }

    .cart-page .box .headline .actions .action {
        font-size: 0;
    }

    .cart-page .box .headline .actions {
        width: 50px;
    }

    .cart-page .box .headline .vignette {
        width: calc(100% - 50px);
    }

    .cart-page .box .headline .vignette .icon {
        margin-right: 10px;
    }


    .cart-page .box .headline .vignette .name {
        padding-right: 6px;
        margin-right: 8px;
        font-weight: 700;
    }

    .vignettes .row .column .name-and-price .vehicle-icon {
        display: block;
        width: 46px;
        margin-right: 10px;
    }

    .cart-page .box .headline .vignette {
        font-size: 90%;
    }

    .customer-data .section .content .half {
        flex-wrap: wrap;
    }

    .customer-data .section .content .half .column {
        width: 100% !important;
        margin-right: 0 !important;
    }

    .customer-data .vignette-item .name-and-price {
        margin-bottom: 20px;
    }

    .customer-data .subtotal .row .price {
        width: 84px;
    }

    .customer-data .subtotal .row .name {
        width: calc(100% - 84px);
    }


    .customer-data .total .name {
        width: calc(100% - 84px);
    }

    .customer-data .section .section-title .right {
        width: 400px;
    }

    .customer-data .section .section-title .left {
        width: calc(100% - 100px);
    }

    .customer-data .section .section-title .left {
        font-size: 110%;
    }

    .customer-data .vignette-item .properties .prop .name {
        width: 180px;
    }

    .customer-data .vignette-item .properties .prop .value {
        width: calc(100% - 180px);
    }

    .customer-data .customer-data-row .name {
        width: 100px;
    }

    .customer-data .customer-data-row .value {
        width: calc(100% - 100px);
    }

    .static-page h1.title {
        font-size: 160%;
    }

    .add-to-cart-page .box .content {
        padding: 25px;
    }

    .add-to-cart-page {
        padding-bottom: 80px;
    }

    .add-to-cart-page .box .headline .vignette {
        flex-wrap: wrap;

    }

    .add-to-cart-page .box .headline .vignette .name {
        flex-basis: 100%;
        border-right: 0;
    }

    .add-to-cart-page .box .headline .vignette .period {
        margin-top: 5px;
    }

    .add-to-cart-page .box .headline .vignette .icon {
        height: 20px;
    }

    .price-tag {
        padding: 5px 12px;
        padding-right: 10px;
    }

    .add-to-cart-page .box .content .input-and-info > .column {
        padding-right: 0;
        position: relative;
    }

    /*
    div.ui-datepicker{
        font-size:150%!important;
    }
     */
    .customer-data .vignette-item .name-and-price .name span.separator {
        display: none;
    }

    .customer-data .vignette-item .name-and-price .name span.wrap {
        display: flex;
        flex-basis: 100%;
    }

    .vignettes.vignette-periods .row .column .btn {
        padding: 15px;
    }

    .vignettes.vignette-periods .row .column:hover .btn {
        background-color: #2baa6d;
    }

    .vignettes.vehicle-categories .row .column:hover .btn {
        background-color: #2baa6d;
    }
}

@media (max-width: 680px) {
    .add-to-cart-page .box .content .input-and-info {
        /* flex-wrap: wrap; */
        /* border-bottom: 2px solid #ddd; */
        /* padding-bottom: 15px; */
        /* margin-bottom: 41px; */
    }

    .article {
        flex-wrap: wrap;
    }

    .article .photo-column {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }

    .news-page {
        padding-bottom: 60px;
    }

    .article .text-column {
        width: 100%;
        padding-left: 0;
    }

    .article .photo-column .image-container {
        padding-bottom: 60%;
    }

    .add-to-cart-page .box .content .input-and-info .column {
        width: 100%;
        /* padding-right: 20px; */
    }

    .add-to-cart-page .box .content .input-and-info .column:last-child {
        margin-bottom: 11px;
        /* order: 0; */
        /* order: -1; */
        /* width: 160px; */
        width: 50px;
        /* justify-content: center; */
        display: flex;
        justify-content: flex-end;
        padding-right: 0;
    }

    .add-to-cart-page .licence-plate {
        margin-bottom: 15px;
    }

    .add-to-cart-page .box .content .input-and-info > .column > .info img {
        /* display: none; */
        width: 24px;
        margin-right: 5px;
        position: relative;
        top: 2px;
    }

    .add-to-cart-page .box .content .input-and-info > .column > .info {
        padding-left: 0;
        /* justify-content: center; */
        /* margin-bottom: 13px; */
        /* font-style: italic; */
    }

    .add-to-cart-page .box .content .input-and-info > .column > .info .info-text {
        display: none;
    }

    .add-to-cart-page .box .content .input-and-info > .column > .info {
        position: relative;
    }

    .add-to-cart-page .box .content .input-and-info > .column > .info.active .info-text {
        display: block;
        position: absolute;
        right: 100%;
        bottom: 100%;
        background-color: #fff;
        width: 300px;
        padding: 15px;
        border-radius: 11px;
        border: 1px solid #ddd;
        box-shadow: 0 0 12px #0000001a;
        font-size: 120%;
        color: #3a7bce;
        font-weight: 600;
    }
}

@media (max-width: 512px) {
    footer .gray .columns .column {
        width: 100%;
        padding-right: 0;
    }

    footer .white .logos img {
        width: 300px;
    }

    .cart-page .box .headline .vignette .icon {
        display: none;
    }

    .cart-page .data .column {
        width: 100%;
        margin-bottom: 20px;
    }

    .cart-page .button-row {
        flex-wrap: wrap;
    }

    .cart-page .button-row .btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 25px;
    }

    .cart-page .button-row .btn.secondary {
        order: 2;
    }

    .cart-page {
        padding-bottom: 50px;
    }
}


.vignettes .row .column .add-to-cart.bottom {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

.block {
    display: block !important;
}

select {
    appearance: none; /* Disable the default arrow */
    -webkit-appearance: none; /* For WebKit-based browsers */
    -moz-appearance: none; /* For Firefox */
}

select {
    background-image: url('/assets/images/ui-icons/down-icon-green.svg');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;

    transition: border-color 0.3s;
    box-sizing: border-box;
    width: 100%;
    display: block;
    padding: 9px 11px;
    outline: none;
    border: 1px solid #fff;
    border-radius: 6px;
    font-size: 16px;
    background-color: #fff;
}


.ui-datepicker td {
    text-align: center;
    vertical-align: middle;
}


.ui-datepicker td span, .ui-datepicker td a {
    display: block;
    padding: .2em;
    text-align: center !important;
    text-decoration: none;
    font-size: .75rem !important;
    color: #3c4858 !important;
    font-family: "Poppins", sans-serif !important
}

.ui-datepicker .ui-datepicker-today a, .ui-datepicker .ui-datepicker-current-day a, .ui-datepicker .ui-state-active {
    background-color: #217da4 !important;
    color: #fff !important;
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    line-height: 2em;
    text-align: center;
    margin: 0 auto;
    vertical-align: middle
}


.ui-datepicker .ui-datepicker-today a {
    background-color: #c2cedb !important
}

.ui-datepicker .ui-datepicker-title {
    margin: 0 2.3em;
    line-height: 1.8em;
    font-weight: bold !important;
    text-align: center;
    color: #3c4858 !important;
    font-size: 14px !important;
    font-family: "Poppins", sans-serif !important
}

.ui-datepicker th {
    padding: 0 !important;
    text-align: center;
    border: 0;
    color: #3c4858 !important;
    font-weight: normal !important;
    font-size: .75rem !important;
    font-family: "Poppins", sans-serif !important
}


.ui-widget-content {
    border: none !important;
    background: #f9fafc !important;
    color: #333
}

.ui-widget-content a {
    color: #333
}

.ui-widget-header {
    border: none !important;
    background: #f9fafc !important;
    color: #333;
    font-weight: bold
}

.ui-widget-header a {
    color: #333
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: none !important;
    background: #f9fafc !important;
    font-weight: normal;
    color: #454545
}

.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
    opacity: .7;
    font-weight: normal;
    font-family: "Poppins", sans-serif !important;
    color: #c2cedb !important
}

.ui-icon {
    width: 16px;
    height: 16px
}

.ui-datepicker-prev .ui-icon.ui-icon-circle-triangle-w {
    background-image: url("/assets/images/svg/icons/calendar-arrow-left.svg") !important;
    text-indent: -99999px;
}

.ui-datepicker-next .ui-icon.ui-icon-circle-triangle-e {
    background-image: url("/assets/images/svg/icons/calendar-arrow-right.svg") !important;
    text-indent: -99999px;
}

.ui-icon.ui-icon-circle-triangle-w, .ui-icon.ui-icon-circle-triangle-e {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
    text-indent: 0;
    overflow: visible
}

.uppercase {
    text-transform: uppercase;
}

a.invoice-pdf-link {
    margin-right: 6px;
    color: rgb(58, 123, 206) !important;
}

.profile-orders {
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
}

.profile-orders .table-header {
    display: flex;
    font-weight: 600;
    background-color: #004a9b30;
    border-bottom: 1px solid #1C5DB0;
    color: #1C5DB0;
    text-transform: uppercase;
    text-align: center;
    font-size: 80%;
}

.profile-orders .table-header > div:nth-child(1) {
    width: 24%;
}

.profile-orders .table-header > div:nth-child(2) {
    width: 48%;
}

.profile-orders .table-header > div:nth-child(4) {
    width: 4%;
}

.profile-orders .table-header > div:nth-child(3) {
    width: 24%;
}

.profile-orders .table-header > div {
    padding: 10px;
}

.profile-orders .rows > .row {
    display: flex;
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    width: 100%;
    transition: 0.3s;
}

.profile-orders .rows > .row > div:nth-child(1) {
    width: 24%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 10px;
}

.profile-orders .rows > .row > div:nth-child(1) {
    width: 24%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 10px;
}

.profile-orders .rows > .row > div:nth-child(2) {
    width: 48%;
}

.profile-orders .rows > .row > div:nth-child(3) {
    width: 24%;
}

a.link {
    color: #004a9b !important;
    text-decoration: underline;
}

.profile-email-row {
    text-align: center;
    font-size: 90%;
    margin-bottom: 45px;
}


.add-to-cart.bottom button,
.add-to-cart.bottom a {
    padding: 7px;
    border-radius: 9px;
    font-weight: bolder;
    cursor: pointer;
}


div.vignettes.countries .column .code,
div.vignettes.countries .column .name,
div.vignettes.countries .column .country-image {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

div.vignettes.countries .column .country-image {
    margin: 15px auto 15px auto;
    height: auto;
}

div.vignettes.countries .column .name {
    height: 36px;
    margin: 0 auto 15px auto;
    text-align: center;
    font-weight: bolder;
    color: #1E3B50FF;
    flex-direction: column;
    justify-content: flex-start !important;
}

div.vignettes.countries .column .add-to-cart.bottom {
    margin-top: auto;
}


div.vignettes.vehicle-categories .column .code,
div.vignettes.vehicle-categories .column .name,
div.vignettes.vehicle-categories .column .description,
div.vignettes.vehicle-categories .column .vehicle-icon {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

div.vignettes.vehicle-categories .column .vehicle-icon.mobile {
    display: none !important;
}

div.vignettes.vehicle-categories .column .code {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: center !important;
    width: 30%;
    margin: 0 auto 25px auto;
    padding: 6px 11px;
}

div.vignettes.vehicle-categories .column .code span {
    display: block;
    color: #fff;
    padding: 6px 11px;
    font-weight: 500;
    font-size: 120%;
    background-color: #345b77;
    border-radius: 6px;
}

div.vignettes.vehicle-categories .column .vehicle-icon {
    margin: 0 auto 15px auto;
    height: 50px;
}

div.vignettes.vehicle-categories .column .name {
    height: 36px;
    margin: 0 auto 15px auto;
    text-align: center;
    font-weight: bolder;
    color: #1E3B50FF;
    flex-direction: column;
    justify-content: flex-start !important;
}

div.vignettes.vehicle-categories .column .description {
    text-align: center;
}

div.vignettes.vehicle-categories .column .description-bottom {
    display: none;
}

div.vignettes.vehicle-categories .column .add-to-cart.bottom {
    margin-top: auto;
}

div.vignettes.vignette-periods .row {
    flex-wrap: wrap;
}

div.vignettes.vignette-periods .column {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 3px solid #fff;
    margin-bottom: 10px;
}

div.vignettes.vignette-periods .column .name,
div.vignettes.vignette-periods .column .price,
div.vignettes.vignette-periods .column .add-to-cart.bottom {
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 33%;
}

div.vignettes.vignette-periods .column .price {
    width: 130px;
}

div.vignettes.vignette-periods .column .price.nothuf {
    width: 180px;
}

div.vignettes.vignette-periods .column .price .row {
    display: flex;
    align-items: center;
    margin: 0;
}

div.vignettes.vignette-periods .column .price strong {
    display: flex;
    align-items: center;
}

div.vignettes.vignette-periods .column .price strong:first-child {
    margin-left: auto;
}

div.vignettes.vignette-periods .column .price strong:last-child {
    margin-right: 0;
    font-size: 20px;
}

div.vignettes.vignette-periods .column .price strong:nth-child(2) {
    font-size: 70%;
    margin-left: 5px;
}

div.vignettes.vignette-periods .column .price small {
    margin-left: auto;
    margin-right: 0;
    font-weight: 200;
    font-size: 12px;

}

div.vignettes.vignette-periods .column .inner {
    display: flex;
    align-items: center;
    gap: 4px;
}

div.vignettes.vignette-periods .column .name strong {
    display: flex;
    flex-direction: column;
    margin: auto 0;
}

div.vignettes.vignette-periods .column .price {
    padding: 6px 15px;
    font-weight: 500;
    border-radius: 6px;
}

div.vignettes.vignette-periods .column .add-to-cart.bottom {
    align-items: end !important;
}

div.vignettes.vignette-periods .column .add-to-cart.bottom a {
    width: 50%;
    display: flex;
    margin-right: 0;
}


h3.subtitle {
    text-align: left;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 100%;
    color: #345b77;
    border-left: 3px solid #2baa6d; /* padding-bottom: 14px; */
    padding-left: 10px;
    text-transform: uppercase;
}

.summary-page .extra-products {
    display: flex;
    justify-content: start;
}

.extra-products .row .price-tag {
    font-size: 80%;
    white-space: nowrap;
    display: inline-block;
    margin-top: 3px;
}

.extra-products .row {
    display: block;
    padding: 5px;
}

.extra-product {
    margin-left: 15px !important;
}

.extra-products .extra-product:first-child {
    margin-left: 0 !important;
}

.cart-page .price-tag {
    margin-left: 15px;
}

.text-blur {
    filter: blur(5px);
}

.link {
    color: #3a7bce !important;
    margin-right: 6px;
}

div.content.payment-modes .row .text-column .description {
    display: flex;
    flex-wrap: wrap;
    margin: 15px auto;
}

div.content.payment-modes .row .text-column .description img {
    top: 0;
    margin: 0 5px;
}

div.cms-row {
    padding: 15px 0;
}

div.add-to-cart-page.vehicle-category {
    padding-top: 0;
}

.customer-data div.cms-row {
    text-align: center;
    font-size: 90%;
}

header .white .language.no-right-border {
    border: 0;
}


.custom-dropdown {
    background-color: #fff;
    cursor: pointer;
    padding: 0;
}

ul.custom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 999;
    padding-left: 0;
    margin-top: 0;

}

.custom-dropdown-toggle {
    padding: 9px 11px;
}

.custom-dropdown-toggle svg {
    float: right;
}

ul.custom-dropdown-menu .search {
    padding: 8px;
    border-bottom: solid 1px #000;
    margin-bottom: 5px;
}

ul.custom-dropdown-menu .search input {
    border: 1px solid #000;
}

ul.custom-dropdown-menu li {
    cursor: pointer;
    text-align: left;
    list-style: none;
}

ul.custom-dropdown-menu li:hover {
    background-color: #90c5ff;
}

ul.custom-dropdown-menu li.item {
    padding-top: 5px;
    padding-bottom: 5px;
}

ul.custom-dropdown-menu li.item .dropdown-item {
    display: flex !important;
    align-items: center !important;
    width: 100%;
    padding: 4px 16px;
}

ul.custom-dropdown-menu li.item.featured.last {
    border-bottom: 1px solid #c5c5c5;
}

ul.custom-dropdown-menu li.item img,
.custom-dropdown-toggle img {
    margin-right: 10px;
}

.input-box.input-row.error div.custom-dropdown.custom-dropdown-container {
    border-color: #D13D3D !important;
}

.add-to-cart-page .extra-products-title {
    margin-top: 25px;
}


.text-block-top-failed {
    background-color: #fc9090;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 5px;
    font-weight: bolder;
    border: 1px solid #8f0808;
}

.vignette-item.border-danger {
    background-color: #fc9090;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 5px;
    font-weight: bolder;
    border: 1px solid #8f0808 !important;
}

.vignette-item.border-warning {
    background-color: #fcdf90;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 5px;
    font-weight: bolder;
    border: 1px solid #2c2900 !important;
}

.text-block-top-partial,
.text-block-top-delayed {
    background-color: #fcdf90;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 5px;
    font-weight: bolder;
    border: 1px solid #2c2900;
}

.text-block-top-success {
    background-color: #cae8bf;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 5px;
    font-weight: bolder;
    border: 1px solid #2c2900;
}

@media (max-width: 730px) {
    div.vignettes.countries .column {
        flex-wrap: wrap;
        align-items: center;
        margin: 10px auto 0 auto !important;
        border: 0;
    }

    div.vignettes.countries .column {
        flex-wrap: wrap;
        align-items: center;
        margin: 10px auto 0 auto !important;
        border: 0;
    }

    div.vignettes.countries .column > div {
        box-sizing: border-box;
    }

    div.vignettes.countries .column .code {
        flex: 0 0 15%;
        margin: 5px auto;
    }

    div.vignettes.countries .column .name {
        height: auto;
        flex: 0 0 80%;
        margin: 5px auto;
        padding-left: 25px;
        align-items: start !important;
    }

    div.vignettes.countries .column .country-image {
        /*margin: auto 30px auto;*/
        display: none !important;
    }

    div.vignettes.countries .column .add-to-cart.bottom {
        margin: auto;
        flex: 0 0 100%;
    }

    div.vignettes.countries .column .add-to-cart.bottom a {
        margin-top: 10px;
        padding: 10px 15px;
    }

    div.vignettes.vehicle-categories .column {
        flex-wrap: wrap;
        align-items: center;
        margin: 30px auto 0 auto !important;
        border: 0;
    }

    div.vignettes.vehicle-categories .column > div {
        box-sizing: border-box;
    }

    div.vignettes.vehicle-categories .column .code {
        flex: 0 0 15%;
        margin: 5px auto;
    }

    div.vignettes.vehicle-categories .column .name {
        height: auto;
        flex: 0 0 80%;
        margin: 5px auto;
        padding-left: 25px;
        align-items: start !important;
    }

    div.vignettes.vehicle-categories .column .description {
        height: auto;
        flex: 0 0 100%;
        margin: 10px auto;
        align-items: center !important;
    }

    div.vignettes.vehicle-categories .column .vehicle-icon {
        /*margin: auto 30px auto;*/
        display: none !important;
    }

    div.vignettes.vehicle-categories .column .vehicle-icon.mobile {
        display: flex !important;
        flex-direction: column !important;
        flex: 0 0 100%;
    }


    div.vignettes.vehicle-categories .column .add-to-cart.bottom {
        margin: auto;
        flex: 0 0 100%;
    }

    div.vignettes.vehicle-categories .column .add-to-cart.bottom a,
    div.vignettes.vehicle-categories .column .add-to-cart.bottom button {
        margin-top: 10px;
        padding: 10px 15px;
    }

    div.vignettes.vehicle-categories .column .add-to-cart.bottom button {
        padding: 15px;
        width: 40%;
    }

    div.vignettes.vignette-periods .column {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    div.vignettes.vignette-periods .column .name {
        width: 50%;
    }

    div.vignettes.vignette-periods .column .price {
        width: 50%;
    }

    div.vignettes.vignette-periods .column .add-to-cart.bottom {
        margin-top: 10px;
        width: 40%;
        margin-right: 0 !important;
    }

    .extra-products .column {
        width: 100% !important;
    }

    .extra-products .extra-product .price-tag {
        display: block !important;
    }

    .btn.full {
        width: 100% !important;
    }

    footer .slim-footer .menu-item {
        display: flex;
        flex: 0 0 100%;
        flex-direction: row !important;
        margin: 0 auto 15px auto;
        align-items: center;
        justify-content: center;
    }
}


@media (min-width: 731px) {
    .btn:hover {
        background-color: #004a9b !important;
        color: #fff !important;
    }
}

.alert-warning {
    text-align: left;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #345b77;
    border-left: 3px solid #ffc700;
    padding-left: 10px;
}

.alert-danger {
    text-align: left;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #345b77;
    border-left: 3px solid #f1416c;
    padding-left: 10px;
}

button.g-recaptcha {
    margin-right: auto;
}


@media (max-width: 730px) {
    .ui-datepicker {
        width: auto;
        font-size: 20px !important;
    }

    .ui-datepicker-title {
        font-size: 20px !important;
    }

    .ui-datepicker td a,
    .ui-datepicker td span,
    .ui-datepicker th a,
    .ui-datepicker th span {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        box-sizing: border-box;
        font-size: 20px !important;
    }

    .add-to-cart-page .button-row .btn,
    .customer-data .button-row .btn.secondary {
        width: 100%;
    }

    .input-row > label {
        font-size: 120%;
    }

    div.vignettes.vehicle-categories .column .code {
        margin-left: 0;
        margin-right: 0;
        flex: 0 0 100%;
    }

    div.vignettes.vehicle-categories .column .name {
        margin-left: 0;
        margin-right: 0;
        flex: none;
        min-width: 0;
        max-width: 100%;
        padding-left: 0;
    }
}

div.status-message {
    margin: 10px 0;
}

div.status-message div.container {
    padding: 10px;
}