
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://use.fontawesome.com/releases/v5.1.0/css/all.css');


:root {
    --main-grey: #F3F3F3;
    --main-green: #29F3A8;
    --main-green-light: hsl(from var(--main-green) h s calc(l + 10));
    --main-green-dark: hsl(from var(--main-green) h s calc(l - 10));
}

html {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    font-family: "Roboto", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    -webkit-font-feature-settings: "pnum" on,"lnum" on,"liga" off;
    -moz-font-feature-settings: "pnum" on,"lnum" on,"liga" off;
    font-feature-settings: "pnum" on,"lnum" on,"liga" off;
}

body,
input,
textarea,
select {
    font-variant-numeric: lining-nums !important;
}
    body.modal-open {
        overflow: hidden;
    }


    body > form {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

.site-content {
    max-width: 1600px;
    width: 100%;
    margin: auto;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1600px !important
    }
}
.form-control:focus,
.form-select:focus {
    border-color: var(--main-green);
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--main-green) 25%, transparent);
}

.form-check-input:checked {
    background-color: var(--main-green-dark);
    border-color: var(--main-green);
}

.form-check-input:focus {
    border-color: var(--main-green-light);
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--main-green) 25%, transparent);
}

.form-check-input:not(:checked):hover {
    border-color: var(--main-green-dark);
}

.dropdown-menu[data-bs-popper] {
    left: unset !;
    right: 0;
}

#anchor {
    scroll-margin-top: 130px;
}

@supports (-moz-appearance: none) {
    @media (max-width: 768px) {
        [id] {
            scroll-margin-top: 180px; /* víc prostoru ve FF mobile */
        }
    }
}

.bg-grey {
    background: var(--main-grey) !important;
}
.bg-black {
    background:black;
}

.btn-main {
    background: var(--main-green);
    color: black;
    text-align: center;
    padding: 15px 40px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    line-height: 24px;
    font-weight: 700;
    width: max-content;
    transition: 0.2s;
    border: unset;
}

    .btn-main:hover {
        background: var(--main-green-dark);
    }

.btn-grey {
    padding: 0;
    color: var(--main-grey);
    text-decoration: underline;
    background-color: transparent;
    border: none;
    text-align: left;
    font-weight: 400
}

    .btn-grey:hover {
        color: var(--main-grey);
    }

.box-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, calc(50% - 20px)));
    justify-content: center;
    gap: 20px;
}

.w-max {
    width: max-content;
}

.checkbox, .counter {
    position: relative;
    border: 1px solid #BBBBBB;
    border-radius: 5px;
    padding: 20px;
    transition: 0.2s;
}

.checkbox {
    cursor: pointer;
    padding-right: 55px;
}

.counter h5 {
    padding-right: 125px
}

.counter:has(.handle-counter input:not([value="0"])) {
    border-color: #000
}

.checkbox .description, .counter .description {
    margin-top: 20px
}

    .checkbox .description div, .counter .description div {
        margin-bottom: 20px
    }

.checkbox .check {
    width: 30px;
    height: 30px;
    background: #E7E7E7;
    border: 1px solid #CFCFCF;
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 50%;
}

    .checkbox .check img {
        width: 15px;
        margin: 0;
        display: none;
    }

.btn-check:checked + .checkbox {
    border-color: #000
}

    .btn-check:checked + .checkbox .check {
        background: #DCEDE7;
        border: 1px solid #54B18F;
    }

        .btn-check:checked + .checkbox .check img {
            display: block
        }


.top-10 {
    top: 10px;
}

.picker,
.picker__holder {
    width: 100%;
    position: absolute;
}

.picker {
    font-size: 16px;
    text-align: left;
    line-height: 1.2;
    color: #000;
    z-index: 10000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: 0;
}

.picker__input {
    cursor: default;
}

    .picker__input.picker__input--active {
        border-color: var(--main-pink);
    }

.picker__holder {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border: 1px solid #aaa;
    border-top-width: 0;
    border-bottom-width: 0;
    border-radius: 0 0 5px 5px;
    box-sizing: border-box;
    min-width: 250px;
    max-width: 466px;
    max-height: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
    /*transform: translateY(-1em) perspective(600px) rotateX(10deg);*/
    transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
}
/*!
 * Classic picker styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
.picker__frame {
    padding: 1px;
}

.picker__wrap {
    margin: -1px;
}

.picker--opened .picker__holder {
    max-height: 25em;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
    border-top-width: 1px;
    border-bottom-width: 1px;
    transform: translateY(0) perspective(600px) rotateX(0);
    transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
    box-shadow: 0 6px 18px 1px rgba(0, 0, 0, 0.12);
}

.picker__footer,
.picker__header,
.picker__table {
    text-align: center;
}

.picker__box {
    padding: 0 1em;
}

.picker__header {
    position: relative;
    margin-top: 0.75em;
}

.picker__month,
.picker__year {
    font-weight: 500;
    display: inline-block;
    margin-left: 0.25em;
    margin-right: 0.25em;
}

.picker__year {
    color: #999;
    font-size: 0.8em;
    font-style: italic;
}

.picker__select--month,
.picker__select--year {
    border: 1px solid #b7b7b7;
    height: 2em;
    padding: 0.5em;
    margin-left: 0.25em;
    margin-right: 0.25em;
}

.picker__select--month {
    width: 35%;
}

.picker__select--year {
    width: 22.5%;
}

    .picker__select--month:focus,
    .picker__select--year:focus {
        border-color: #0089ec;
    }

.picker__nav--next,
.picker__nav--prev {
    position: absolute;
    padding: 0.5em 1.25em;
    width: 1em;
    height: 1em;
    box-sizing: content-box;
    top: -0.25em;
}

.picker__nav--prev {
    left: -1em;
    padding-right: 1.25em;
}

.picker__nav--next {
    right: -1em;
    padding-left: 1.25em;
}

@media (min-width: 24.5em) {
    .picker__select--month,
    .picker__select--year {
        margin-top: -0.5em;
    }

    .picker__nav--next,
    .picker__nav--prev {
        top: -0.33em;
    }

    .picker__nav--prev {
        padding-right: 1.5em;
    }

    .picker__nav--next {
        padding-left: 1.5em;
    }
}

.picker__nav--next:before,
.picker__nav--prev:before {
    content: " ";
    border-top: 0.5em solid transparent;
    border-bottom: 0.5em solid transparent;
    border-right: 0.75em solid #000;
    width: 0;
    height: 0;
    display: block;
    margin: 0 auto;
}

.picker__nav--next:before {
    border-right: 0;
    border-left: 0.75em solid #000;
}

.picker__nav--next:hover,
.picker__nav--prev:hover {
    cursor: pointer;
    color: #000;
    background: #b1dcfb;
}

.picker__nav--disabled,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover,
.picker__nav--disabled:hover {
    cursor: default;
    background: 0 0;
    border-right-color: #f5f5f5;
    border-left-color: #f5f5f5;
}

.picker__table {
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    font-size: inherit;
    width: 100%;
    margin-top: 0.75em;
    margin-bottom: 0.5em;
}

@media (min-height: 33.875em) {
    .picker__table {
        margin-bottom: 0.75em;
    }
}

.picker__table td {
    margin: 0;
    padding: 0;
}

.picker__weekday {
    width: 14.28571429%;
    font-size: 0.75em;
    padding-bottom: 0.25em;
    color: #999;
    font-weight: 500;
}

@media (min-height: 33.875em) {
    .picker__weekday {
        padding-bottom: 0.5em;
    }
}

.picker__day {
    padding: 0.3125em 0;
    font-weight: 200;
    border: 1px solid transparent;
}

.picker__day--today {
    position: relative;
}

    .picker__day--today:before {
        content: " ";
        position: absolute;
        top: 2px;
        right: 2px;
        width: 0;
        height: 0;
        border-top: 0.5em solid #0059bc;
        border-left: 0.5em solid transparent;
    }

.picker__day--disabled:before {
    border-top-color: #aaa;
}

.picker__day--outfocus {
    color: #ddd;
}

    .picker--focused .picker__day--highlighted,
    .picker__day--highlighted:hover,
    .picker__day--infocus:hover,
    .picker__day--outfocus:hover {
        cursor: pointer;
        color: #000;
        background: #b1dcfb;
    }

.picker__day--highlighted {
    border-color: #0089ec;
}

.picker--focused .picker__day--selected,
.picker__day--selected,
.picker__day--selected:hover {
    background: #0089ec;
    color: #fff;
}

.picker--focused .picker__day--disabled,
.picker__day--disabled,
.picker__day--disabled:hover {
    background: #f5f5f5;
    border-color: #f5f5f5;
    color: #ddd;
    cursor: default;
}

.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
    background: #bbb;
}

.picker__button--clear,
.picker__button--close,
.picker__button--today {
    border: 1px solid #fff;
    background: #fff;
    font-size: 0.8em;
    padding: 0.66em 0;
    font-weight: 700;
    width: 33%;
    display: inline-block;
    vertical-align: bottom;
}

    .picker__button--clear:hover,
    .picker__button--close:hover,
    .picker__button--today:hover {
        cursor: pointer;
        color: #000;
        background: #b1dcfb;
        border-bottom-color: #b1dcfb;
    }

    .picker__button--clear:focus,
    .picker__button--close:focus,
    .picker__button--today:focus {
        background: #b1dcfb;
        border-color: #0089ec;
        outline: 0;
    }

    .picker__button--clear:before,
    .picker__button--close:before,
    .picker__button--today:before {
        position: relative;
        display: inline-block;
        height: 0;
    }

    .picker__button--clear:before,
    .picker__button--today:before {
        content: " ";
        margin-right: 0.45em;
    }

    .picker__button--today:before {
        top: -0.05em;
        width: 0;
        border-top: 0.66em solid #0059bc;
        border-left: 0.66em solid transparent;
    }

    .picker__button--clear:before {
        top: -0.25em;
        width: 0.66em;
        border-top: 3px solid #e20;
    }

    .picker__button--close:before {
        content: "\D7";
        top: -0.1em;
        vertical-align: top;
        font-size: 1.1em;
        margin-right: 0.35em;
        color: #777;
    }

    .picker__button--today[disabled],
    .picker__button--today[disabled]:hover {
        background: #f5f5f5;
        border-color: #f5f5f5;
        color: #ddd;
        cursor: default;
    }

        .picker__button--today[disabled]:before {
            border-top-color: #aaa;
        }

.picker__list {
    list-style: none;
    padding: 0.75em 0 4.2em;
    margin: 0;
}

.picker__list-item {
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    margin-bottom: -1px;
    position: relative;
    background: #fff;
    padding: 0.75em 1.25em;
}

    .picker__list-item--highlighted,
    .picker__list-item:hover {
        border-color: #0089ec;
        z-index: 10;
    }

        .picker--focused .picker__list-item--highlighted,
        .picker__list-item--highlighted:hover,
        .picker__list-item:hover {
            cursor: pointer;
            color: #000;
            background: #b1dcfb;
        }

@media (min-height: 46.75em) {
    .picker__list-item {
        padding: 0.5em 1em;
    }
}

.picker--focused .picker__list-item--selected,
.picker__list-item--selected,
.picker__list-item--selected:hover {
    background: #0089ec;
    color: #fff;
    z-index: 10;
}

.picker--focused .picker__list-item--disabled,
.picker__list-item--disabled,
.picker__list-item--disabled:hover {
    background: #f5f5f5;
    color: #ddd;
    cursor: default;
    border-color: #ddd;
    z-index: auto;
}

.picker--time .picker__button--clear {
    display: block;
    width: 80%;
    margin: 1em auto 0;
    padding: 1em 1.25em;
    background: 0 0;
    border: 0;
    font-weight: 500;
    font-size: 0.67em;
    text-align: center;
    text-transform: uppercase;
    color: #666;
}

    .picker--time .picker__button--clear:focus,
    .picker--time .picker__button--clear:hover {
        background: #e20;
        border-color: #e20;
        cursor: pointer;
        color: #fff;
        outline: 0;
    }

    .picker--time .picker__button--clear:before {
        top: -0.25em;
        color: #666;
        font-size: 1.25em;
        font-weight: 700;
    }

    .picker--time .picker__button--clear:focus:before,
    .picker--time .picker__button--clear:hover:before {
        color: #fff;
        border-color: #fff;
    }

.picker--time {
    min-width: 256px;
    max-width: 320px;
}

    .picker--time .picker__holder {
        background: #f2f2f2;
    }

@media (min-height: 40.125em) {
    .picker--time .picker__holder {
        font-size: 0.875em;
    }
}

.picker--time .picker__box {
    padding: 0;
    position: relative;
}

header a {
    text-decoration: none;
    color:white;
}

header .first-line {
    background: linear-gradient(270deg, #38A2DC 0%, #CA057C 100%);
}

header .dropdown-toggle:hover, header a:hover {
    color: white
}

header .flags li {
    background-repeat: no-repeat;
    background-position: 10px;
    padding-left: 35px;
}

header .language {
    min-width: unset
}

    header .flags li a, header .language li a {
        color: var(--dark-blue);
        text-transform: none;
        font-weight: 500;
        padding-left: 0
    }

/* Prepinac jazyku - vlajky */
header .language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    header .language-switcher li {
        display: flex;
    }

    header .language-switcher .lang-link {
        display: block;
        padding: 2px 0;
        line-height: 0;
        border-bottom: 2px solid transparent;
        opacity: .55;
        transition: opacity .2s ease, border-color .2s ease;
    }

        header .language-switcher .lang-link:hover, header .language-switcher .lang-link:focus {
            opacity: 1;
        }

        header .language-switcher .lang-link.active {
            opacity: 1;
            border-bottom-color: #fff;
        }

    header .language-switcher .flag {
        display: block;
        width: 24px;
        height: auto;
    }

header .first-line *, header .second-line * {
    color: white;
    text-transform: uppercase
}

.homepage header .second-line {
    background: transparent;
}

header .second-line {
    background: var(--dark-blue)
}

    header .second-line .navbar {
        padding: 0;
    }

        header .second-line .navbar .nav-link, header .second-line .navbar .navbar-toggler {
            padding: 20px;
            position: relative;
            overflow: hidden
        }

            header .second-line .navbar .nav-link.active {
                opacity: 70%;
            }

header .nav-link:focus, header .nav-link:hover {
    color: white
}

header .second-line .navbar .nav-link::before {
    content: "";
    transition: .3s ease-in-out;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 4px;
    background: #fff;
}

header .second-line .navbar .nav-link.active::before,
header .second-line .navbar .nav-link:hover::before {
    bottom: 0;
}

header ul {
    list-style: none;
    margin: 0;
    padding-left: 0
}

.homepage header {
    position: absolute;
    z-index: 10;
    width: 100%;
    border-bottom: 1px solid #FFFFFF1A
}

.homepage section.home-welcome {
    width: 100%;
    height: 100vh;
    min-height: 888px;
    position: relative
}

    .homepage section.home-welcome .home-banner {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: #070714
    }

section.home-welcome .home-banner .bg-image {
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.homepage #snippet--filterForm {
    position: absolute;
    z-index: 2;
    width: 100%;
    bottom: 2.5rem;
}

#frm-filterForm {
    max-width: 1600px;
    margin: auto;
    margin-top: 100px
}

.homepage .filter-block {
    background: #FFFFFFBF;
    backdrop-filter: blur(26.9px);
}

.block {
    margin: auto;
    background: #FFFFFF;
    box-shadow: 0px 12px 16px 0px #091D4D0D;
    border-radius: 10px;
}

.filter-block .form-control {
    padding: 13px 32px 13px 13px;
    height: 52px;
    border: unset;
    background: #F6F6F6;
}

.filter-block .form-column {
    position: relative;
}

.filter-block .date-picker, .filter-block .time-picker {
    padding: 0px;
}

.filter-block .form-control.hasCustomSelect {
    z-index: 2;
}

.filter-block .form-control .customSelect, .filter-block .form-control select {
    width: 100% !important
}

.filter-block .form-control .customSelectInner {
    height: 100%;
    overflow: hidden;
    width: 100% !important
}

.homepage .filter-block .form-control:disabled, .homepage .filter-block .form-control[readonly], .homepage .filter-block .form-control {
    background-color: white
}

.filter-block .form-control:disabled, .filter-block .form-control[readonly] {
    background-color: #F6F6F6;
}

.filter-block .form-column::after {
    position: absolute;
    font-size: 20px;
    right: 10px;
    filter: invert(15%) sepia(97%) saturate(4473%) hue-rotate(312deg) brightness(79%) contrast(107%);
    pointer-events: none
}

.filter-block .form-column.custom-select::after {
    content: url(/images/drivalia/icons/pin.svg);
}

.filter-block .form-column.date-picker::after {
    content: url(/images/drivalia/icons/calendar.svg);
    top: 13px
}

.filter-block .form-column.time-picker::after {
    content: url(/images/drivalia/icons/time.svg);
    top: 13px;
}

.filter-block input.date-picker, .filter-block input.time-picker {
    display: inline-block
}

.filter-block .form-group label {
    font-size: 12px;
    margin-bottom: 5px
}

.filter-vehicle {
    margin-bottom: -1px;
    margin-left: 20px;
    display: flex
}

    .filter-vehicle label {
        color: #8B8B8B;
        background: #FFFFFF99;
        backdrop-filter: blur(18.3px);
        text-transform: uppercase;
        border-radius: 6px 6px 0px 0px;
        padding: 10px 20px;
        border: unset;
        transition: 0.2s;
        cursor: pointer
    }

.homepage .filter-vehicle .btn-check:checked + label {
    background: #FFFFFFBF;
    backdrop-filter: blur(6.4px)
}

.filter-vehicle .btn-check:checked + label {
    color: var(--light-blue);
    background: #FFFFFF
}

.filter-vehicle label:hover, .filter-vehicle label:focus, .filter-vehicle label:active {
    background: #FFFFFFBF;
    color: #8B8B8B;
}

.filter-vehicle label img {
    filter: invert(61%) sepia(0%) saturate(620%) hue-rotate(140deg) brightness(90%) contrast(95%);
    margin-right: 5px;
    height: 20px;
}


.filter-vehicle .btn-check:checked + label img {
    filter: invert(47%) sepia(93%) saturate(2777%) hue-rotate(167deg) brightness(97%) contrast(101%);
}

@media (min-width:768px) {
    .filter-vehicle {
        flex-direction: column;
        margin-top: 15px;
        margin-left: 0px
    }

        .filter-vehicle label {
            text-align: center;
            display: flex;
            flex-direction: column;
            border-radius: 6px 0 0 6px;
        }

            .filter-vehicle label img {
                height: 40px;
                margin-right: 0px
            }
}

.submit .price {
    font-size: 2.5rem
}

.car .specs {
    line-height: 30px;
    font-size: 18px;
}

.car .spec::before {
    content: url(/images/drivalia/icons/check.svg);
    margin-right: 5px;
}


.handle-counter {
    overflow: hidden;
    border: 1px solid #bbbbbb;
    border-radius: 5px;
    width: fit-content;
    position: absolute;
    top: 15px;
    right: 20px;
}

    .handle-counter .counter-minus, .handle-counter .counter-plus, .handle-counter input {
        float: left;
        text-align: center;
    }

    .handle-counter .counter-minus, .handle-counter .counter-plus {
        text-align: center;
        background: transparent;
        color: #bbbbbb;
        border-width: 0px;
        font-size: 50px;
        line-height: 40px;
        font-weight: 200;
    }

        .handle-counter .counter-minus:hover, .handle-counter .counter-plus:hover, .handle-counter .counter-minus:active, .handle-counter .counter-plus:active, .handle-counter .counter-minus:focus, .handle-counter .counter-plus:focus, .handle-counter .counter-minus:disabled, .handle-counter .counter-plus:disabled {
            background: transparent;
            color: #bbbbbb;
            border-width: 0px;
            box-shadow: none !important;
        }

    .handle-counter .counter-minus {
        line-height: 35px
    }

    .handle-counter input {
        width: 35px;
        border-width: 0px;
        border-left: none;
        border-right: none;
        height: 42px;
    }

.filter button {
    background: white;
}

.filter li {
    transition: 0.2s
}

    .filter label, .filter li input {
        cursor: pointer;
    }

    .filter li:has(:hover), .filter li:hover {
        background: #f0f1f3;
    }

footer {
    background: var(--dark-blue);
    color: white;
}

.footer-content {
    max-width: 1600px;
    margin: auto
}

footer ul {
    padding: 0
}

footer li {
    text-decoration: none;
    list-style-type: none;
}

footer a {
    text-decoration: none
}

    footer a:hover {
        text-decoration: underline;
        text-underline-offset: 5px;
    }

footer ul li {
    position: relative;
    padding: 10px 1.5rem
}

footer ul.divider li:after {
    content: "";
    position: absolute;
    width: 1px;
    right: 0px;
    top: 25%;
    height: 50%;
    background-color: white;
}

footer ul.divider li:last-child::after {
    display: none
}

footer .nav-base, .footer-socket {
    font-weight: 100
}

.modal .form-control, .modal .form-control:focus {
    padding: 13px;
    border: unset;
    background: #F6F6F6;
}

.modal .form-group {
    margin-top: 10px;
}

    .modal .form-group label, .checks label {
        font-size: 12px;
        margin-bottom: 5px;
        color: #18305B
    }

.modal .input-group-text {
    background-color: #F6F6F6;
    border: none
}

@media (max-width: 991.98px) {
    .mobile-overlay-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        width: 300px;
        max-width: 50vw;
        z-index: 1050;
        background-color: black;
        padding: 1.5rem;
        border: 1px solid white;
        border-radius: 8px;
    }
}
table.opening-hours td:first-child {
    padding: 0 20px 0 0;
}

.home-validator {
    color: red;
}

.picker__list small {
    color: #999;
    float: right;
    line-height: 1.5;
}

.iti {
    display: block !important;
}

.select2-selection {
    height: auto !important;
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: unset !important;
}

.select2-selection__arrow {
    top: 5px !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    position: absolute;
    right: 10px;
    top: -2px;
    color: var(--main-pink);
    font-size: 1.5em !important
}

.summary {
    top: 115px
}

.prices-form .computed-price, .prices-form .computed-price-total {
    text-align: right;
    margin-top: 10px;
}

.prices-form .computed-price-total {
    font-weight: bold;
}


.prices-form .slider-wrapper {
    display: flex;
    margin-bottom: 50px;
}

.prices-form .rangeslider-control {
    color: #fff;
    border-radius: 50%;
    background-color: #525252;
    border: none;
    margin-top: -5px;
    width: 20px;
    height: 19px;
    padding: 0;
}

.prices-form .rangeslider--horizontal {
    height: 6px;
}

.prices-form .rangeslider,
.prices-form .rangeslider__fill {
    box-shadow: none;
}

.prices-form .rangeslider__fill {
    background: #000000;
}

.prices-form .rangeslider__labels {
    position: absolute;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    top: 15px;
}

    .prices-form .rangeslider__labels.__label {
        font-size: 0.75em;
        position: relative;
        padding-top: 15px;
        color: gray;
    }

        .prices-form .rangeslider__labels.__label:before {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            content: "";
            width: 1px;
            height: 9px;
            border-radius: 1px;
            background-color: rgba(128, 128, 128, 0.5);
        }

        .prices-form .rangeslider__labels.__label:first-child:before,
        .prices-form .rangeslider__labels.__label:last-child:before {
            height: 12px;
            width: 2px;
        }

        .prices-form .rangeslider__labels.__label:first-child:before {
            background-color: #0099FF;
        }

        .prices-form .rangeslider__labels.__label:last-child:before {
            background-color: gray;
        }

        .prices-form .rangeslider__labels.__label:first-child {
            transform: translateX(-48%);
        }

        .prices-form .rangeslider__labels.__label:last-child {
            transform: translateX(48%);
        }

.prices-form .rangeslider__handle {
    top: -7px;
    width: 20px;
    height: 20px;
}

    .prices-form .rangeslider__handle::after {
        width: 8px;
        height: 8px;
        background: var(--main-green-dark);
    }
.rangeslider,
.rangeslider__fill {
    display: block;
    -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.rangeslider {
    background: #e6e6e6;
    position: relative;
}

.rangeslider--horizontal {
    height: 20px;
    width: 100%;
}

.rangeslider--vertical {
    width: 20px;
    min-height: 150px;
    max-height: 100%;
}

.rangeslider--disabled {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    opacity: 0.4;
}

.rangeslider__fill {
    background: #00ff00;
    position: absolute;
}

.rangeslider--horizontal .rangeslider__fill {
    top: 0;
    height: 100%;
}

.rangeslider--vertical .rangeslider__fill {
    bottom: 0;
    width: 100%;
}

.rangeslider__handle {
    background: white;
    border: 1px solid #ccc;
    cursor: pointer;
    display: inline-block;
    width: 40px;
    height: 40px;
    position: absolute;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    background-image: -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
    -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

    .rangeslider__handle:after {
        content: "";
        display: block;
        width: 18px;
        height: 18px;
        margin: auto;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEzIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
        background-size: 100%;
        background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.13)), color-stop(100%, rgba(255, 255, 255, 0)));
        background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
        background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
        background-image: linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%;
    }

    .rangeslider__handle:active,
    .rangeslider--active .rangeslider__handle {
        background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xMiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
        background-size: 100%;
        background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.12)));
        background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
        background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
        background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
    }

.rangeslider--horizontal .rangeslider__handle {
    touch-action: pan-y;
    -ms-touch-action: pan-y;
}

.rangeslider--vertical .rangeslider__handle {
    left: -10px;
    touch-action: pan-x;
    -ms-touch-action: pan-x;
}

input[type="range"]:focus + .rangeslider .rangeslider__handle {
    -moz-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
    -webkit-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
    box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
}

section.flexirent .flexirent-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    overflow: scroll;
}

    section.flexirent .flexirent-modal .modal-body {
        margin: 0 auto;
        min-height: 50%;
        z-index: 9998;
        max-width: 700px;
        width: 100%;
        padding: 15px 30px;
        background-color: white;
    }

        section.flexirent .flexirent-modal .modal-body h1 {
            font-size: 20px;
        }

        section.flexirent .flexirent-modal .modal-body #close-modal {
            cursor: pointer;
        }

            section.flexirent .flexirent-modal .modal-body #close-modal:hover {
                color: #cb091c;
            }

        section.flexirent .flexirent-modal .modal-body h2 {
            margin-bottom: 10px;
        }

        section.flexirent .flexirent-modal .modal-body #frm-modalForm-company {
            margin: 4px 20px 0 0;
        }

        section.flexirent .flexirent-modal .modal-body .customSelect,
        section.flexirent .flexirent-modal .modal-body select {
            margin-top: 20px;
        }

        section.flexirent .flexirent-modal .modal-body .label {
            margin-bottom: 20px;
        }

            section.flexirent .flexirent-modal .modal-body .label span {
                color: #cb091c;
            }

        section.flexirent .flexirent-modal .modal-body table.rental-info {
            width: 100%;
            margin-bottom: 15px;
            text-align: left;
        }

            section.flexirent .flexirent-modal .modal-body table.rental-info tr:first-child th,
            section.flexirent .flexirent-modal .modal-body table.rental-info tr:first-child td {
                border-top: 0;
            }

            section.flexirent .flexirent-modal .modal-body table.rental-info tr th {
                border-top: 1px solid #cbcbcb;
            }

            section.flexirent .flexirent-modal .modal-body table.rental-info tr td {
                border-top: 1px solid #cbcbcb;
                color: #0d0d0d;
                font-weight: 700;
                padding: 20px 0 20px;
                text-align: right;
            }

        section.flexirent .flexirent-modal .modal-body .slider-wrapper {
            display: flex;
            margin-bottom: 50px;
        }

        section.flexirent .flexirent-modal .modal-body .rangeslider-control {
            color: #fff;
            border-radius: 50%;
            background-color: #525252;
            border: none;
            margin-top: -5px;
            width: 20px;
            height: 19px;
            padding: 0;
        }

        section.flexirent .flexirent-modal .modal-body .rangeslider--horizontal {
            height: 6px;
        }

        section.flexirent .flexirent-modal .modal-body .rangeslider,
        section.flexirent .flexirent-modal .modal-body .rangeslider__fill {
            box-shadow: none;
        }

        section.flexirent .flexirent-modal .modal-body .rangeslider__fill {
            background: #000000;
        }

        section.flexirent .flexirent-modal .modal-body .rangeslider__labels {
            position: absolute;
            width: 100%;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            top: 15px;
        }

            section.flexirent .flexirent-modal .modal-body .rangeslider__labels.__label {
                font-size: 0.75em;
                position: relative;
                padding-top: 15px;
                color: gray;
            }

                section.flexirent .flexirent-modal .modal-body .rangeslider__labels.__label:before {
                    position: absolute;
                    top: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    content: "";
                    width: 1px;
                    height: 9px;
                    border-radius: 1px;
                    background-color: rgba(128, 128, 128, 0.5);
                }

                section.flexirent .flexirent-modal .modal-body .rangeslider__labels.__label:first-child:before,
                section.flexirent .flexirent-modal .modal-body .rangeslider__labels.__label:last-child:before {
                    height: 12px;
                    width: 2px;
                }

                section.flexirent .flexirent-modal .modal-body .rangeslider__labels.__label:first-child:before {
                    background-color: #0099FF;
                }

                section.flexirent .flexirent-modal .modal-body .rangeslider__labels.__label:last-child:before {
                    background-color: gray;
                }

                section.flexirent .flexirent-modal .modal-body .rangeslider__labels.__label:first-child {
                    transform: translateX(-48%);
                }

                section.flexirent .flexirent-modal .modal-body .rangeslider__labels.__label:last-child {
                    transform: translateX(48%);
                }

.rangeslider__labels__label {
    width: 20px;
    text-align: center;
}

section.flexirent .flexirent-modal .modal-body .rangeslider__handle {
    top: -7px;
    width: 20px;
    height: 20px;
}

    section.flexirent .flexirent-modal .modal-body .rangeslider__handle::after {
        width: 8px;
        height: 8px;
        background: #cb091c;
    }

section.flexirent .flexirent-modal .modal-body textarea {
    resize: vertical;
}

@media (max-width: 1199px) {
    section.flexirent .flexirent-modal .modal-body {
        left: 0;
        top: 0;
        max-width: 100%;
    }
}
/*vspAuto custom css*/
.img-logo {
    max-width: 275px;
    width:100%
}
.accordion-button:not(.collapsed) {
    color: black;
    box-shadow: none
}
    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
    }
    .accordion-button:focus {
        border: unset;
        box-shadow: none
    }

#car-list .car-image-wrap {
    min-height: 220px;
    overflow: hidden;
}

    #car-list .car-image-wrap img {
        object-fit: cover;
    }

#car-list .badge-discount {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
    padding-left: 1rem;
}
.btn-black {
    border:1px solid black;
    color: black;
}
.btn-black:hover {
    background: black;
    color:white
}
    .btn-black.active {
        background: black;
        color: white
    }
.btn-black:focus {
    box-shadow:unset
}
.services i {
    margin-right: .25rem;
}
/* --- HERO --- */
.about-hero {
    position: relative;
    min-height: 380px;
    background-image: url("/images/VSPAuto/fleetheader.jfif");
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.about-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

.about-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #e5e7eb;
}

/* --- SEKCE "PROČ SI VYBRAT" --- */
.about-why {
    background-color: #f8f9fa; /* Změna z lehce zelenkavé na čistě neutrální světle šedou */
}

.about-feature-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.about-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f3f4f6; /* Zrušen zelený nádech, nahrazeno světle šedým kolečkem */
    color: #1a1a1a; /* Ikona v tmavě šedé/antracitové barvě místo zelené */
    font-size: 1.5rem;
}

/* --- CTA SEKCE --- */
.about-cta {
    background-color: #ffffff;
}

.about-cta-btn {
    background-color: #1a1a1a; /* Tmavé prémiové tlačítko po vzoru VSP Auto */
    border-color: #1a1a1a;
    color: #ffffff;
    padding-inline: 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.about-cta-btn:hover,
.about-cta-btn:focus {
    background-color: #333333;
    border-color: #333333;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/*kontakty*/

.kontakty-page {
    --kontakty-border: #e3e6e8;
    --kontakty-text-muted: #6c757d;
    background-color: #f8f9fa;
}

.kontakty-title {
    font-weight: 700;
    color: var(--main-green, #1e7145);
}

.kontakty-subtitle {
    color: var(--kontakty-text-muted);
    font-size: 1.05rem;
}

.kontakty-page {
    --kontakty-border: #e3e6e8;
    --kontakty-text-muted: #6c757d;
    background-color: #f8f9fa;
}

.kontakty-title {
    font-weight: 700;
    color: var(--main-green, #1e7145);
}

.kontakty-subtitle {
    color: var(--kontakty-text-muted);
    font-size: 1.05rem;
}

/* --- Karta kontaktu --- */
.kontakty-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.kontakty-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.kontakty-icon {
    font-size: 3rem;
    color: #2b2b2b; /* Změna ze zelené na elegantní tmavě šedou */
    line-height: 1;
}

.kontakty-name {
    font-weight: 700;
    font-size: 1.35rem;
    color: #111827;
}

.kontakty-role {
    color: #6b7280;
    font-size: 0.95rem;
}

.kontakty-divider {
    margin: 1.25rem 0;
    border-color: #e5e7eb;
}

.kontakty-info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0;
    font-size: 1rem;
    color: #374151;
}

.kontakty-info-list i {
    color: #4b5563; /* Ikony v seznamu převedeny do břidlicově šedé */
    width: 1.25rem;
    text-align: center;
    flex-shrink: 0;
}

.kontakty-info-list a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.kontakty-info-list a:hover {
    color: var(--main-green, #1e7145); /* Ponechán jemný akcent na hover */
    text-decoration: underline;
}

.kontakty-hours {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff; /* Zrušen zelený podton, nahrazeno čistou světle šedou */
    border: 1px solid #e9ecef;
    border-radius: 0.6rem;
    padding: 0.85rem 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.kontakty-hours i {
    font-size: 1.4rem;
    color: #343a40; /* Změna ikony ze zelené na tmavě šedou */
}

.kontakty-hours-label {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
}

.kontakty-hours-value {
    display: block;
    font-weight: 600;
    color: #212529;
}

.kontakty-btn {
    background-color: #1a1a1a; /* Tmavé prémiové tlačítko po vzoru VSP Auto */
    color: #ffffff;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #1a1a1a;
    transition: all 0.2s ease;
}

.kontakty-btn:hover {
    background-color: #333333;
    border-color: #333333;
    color: #ffffff;
}

/* --- Mapa --- */
.kontakty-map-wrapper {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    min-height: 320px;
}

.kontakty-map {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    display: block;
}

.kontakty-map-link {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    background: #1a1a1a; /* Tmavé kontrastní tlačítko na mapě */
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.58rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.kontakty-map-link:hover {
    background: #333333;
    color: #ffffff;
}

/* --- Formulář v pravé kartě --- */
.kontakty-card .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
    color: #374151;
}

.kontakty-card .form-control,
.kontakty-card .form-select {
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    background-color: #f9fafb;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.kontakty-card .form-control:focus,
.kontakty-card .form-select:focus {
    background-color: #ffffff;
    border-color: #111827; /* Tmavé zvýraznění při psaní místo zelené */
    box-shadow: 0 0 0 0.2rem rgba(17, 24, 39, 0.12);
}

.kontakty-card .form-check {
    padding-left: 1.75rem;
}

.kontakty-card .form-check-input:checked {
    background-color: #111827; /* Zaškrtávací políčko v antracitové barvě */
    border-color: #111827;
}

.kontakty-card #formRequestSent {
    color: #10b981;
    font-weight: 600;
    padding: 1rem 0;
}

/* --- Responzivita --- */
@media (max-width: 991.98px) {
    .kontakty-map-wrapper {
        min-height: 260px;
    }
}