.overlay__modal {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease-in-out;
    max-height: 100vh;
    font-family: "Montserrat";
    z-index: 1000;
    overflow-y: hidden;
}

@media (max-width: 576px) {
    .overlay__modal {
        padding: 45px 0 0 0;
    }
}

.car-info__calc-btn:focus {
    box-shadow: none;
}

.overlay__modal .btn:focus {
    box-shadow: none;
}

.overlay__modal.open {
    opacity: 1;
    pointer-events: inherit;
}

.overlay__modal .modal__d {
    background: white;
    box-shadow: 0px 1px 10px rgba(255, 255, 255, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease-in-out;
    max-height: 100vh;
    overflow-y: auto;
    max-width: 700px;
}

.overlay__modal .modal__d.open {
    opacity: 1;
    pointer-events: inherit;
}

.overlay__modal .modal__d.open .content__calc {
    transform: translate(0, 0px);
    opacity: 1;
}

.overlay__modal .modal__d .content__calc {
    transform: translate(0, -10px);
    opacity: 0;
    transition: 0.35s ease-in-out;
}

.overlay__modal .modal__d .title {
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 25px;
    text-align: center;
}

.overlay__modal .modal__d .content__calc {
    padding: 0 50px 40px;
}

@media (max-width: 576px) {
    .overlay__modal .modal__d .content__calc {
        padding: 0 15px 40px;
    }
}

.overlay__modal .modal__d .close-modal {
    color: #fd6c1e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}

.overlay__modal .modal__d .close-modal svg {
    margin-right: 10px;
}

.overlay__modal .modal__d .close-modal input {
    margin-left: 7px;
    font-size: 13px;
}

.overlay__modal .modal__d .content__calc .par-calc {
    font-weight: 500;
    margin-bottom: 30px;
}

.overlay__modal .modal__d .content__calc .par-calc input {
    color: #fd6c1e;
    text-align: center;
    width: 60px;
    border-radius: 21px;
    border: 2px solid #fd6c1e;
    font-weight: 500;
}

.overlay__modal .modal__d .content__calc .par-calc input:focus {
    border-radius: 21px;
    border: 2px solid #fd6c1e;
}

.overlay__modal .modal__d .content__calc .par-calc input:focus-visible {
    border-radius: 21px;
    border: 2px solid #fd6c1e;
    outline: none;
}

.overlay__modal .modal__d .content__calc .form-group {
}

.overlay__modal .modal__d .content__calc .form-group .input-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.overlay__modal .modal__d .content__calc .form-group .input-group label {
    margin-bottom: 0;
    font-weight: 500;
}

.overlay__modal .modal__d .content__calc .form-group .input-group input {
    margin-left: 10px;
    border-radius: 21px;
    border: 2px solid #fd6c1e;
    font-weight: 500;
}

.overlay__modal .modal__d .content__calc .form-group .input-group input:focus {
    box-shadow: none;
}

.overlay__modal .modal__d .content__calc .sup {
    font-weight: 500;
    font-size: 14px;
}

.overlay__modal .modal__d .content__calc .btn-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay__modal .modal__d .content__calc .calculate-btn {
    border-radius: 21px;
    background-color: #fd6c1e;
    color: #ffffff;
    font-weight: 300;
    padding: 10px 55px;
}

.overlay__modal .modal__d .content__calc .btn-rent-car-card {
    border-radius: 21px;
    background-color: #fd6c1e;
    color: #ffffff;
    font-weight: 300;
    padding: 10px 55px;
}

.overlay__modal .modal__d .content__calc .calc-table {
    padding: 35px 0;
    text-align: center;
}

.overlay__modal .modal__d .content__calc .calc-table {
    font-size: 15px;
}

.overlay__modal .modal__d .content__calc .calc-table thead th:not(:first-child) {
    border-left: 1px solid #000000;
}

.overlay__modal .modal__d .content__calc .calc-table tr {
    border-bottom: 1px solid #000000;
}

.overlay__modal .modal__d .content__calc .calc-table th {
    width: 25%;
}

.overlay__modal .modal__d .content__calc .calc-table td {
    width: 25%;
    border-left: 1px solid #000000;
    padding: 10px;
}

.overlay__modal .modal__d .content__calc .calc-table tbody th {
    color: #fd6c1e;
    text-align: left;
}

.overlay__modal .modal__d .content__calc .calc-table tbody td {
    font-weight: 500;
}

@media (max-width: 576px) {
    .overlay__modal .modal__d .content__calc .calc-table {
        font-size: 12px;
    }

    .overlay__modal .modal__d .content__calc .calc-table td {
        padding: 5px;
    }
}

@media (max-width: 375px) {
    .overlay__modal .modal__d .content__calc .calc-table {
        font-size: 12px;
    }
}

.datepicker {
    border-radius: 21px;
    border: 2px solid #fd6c1e;
    background-color: #ffffff;
}

.datepicker:before {
    display: none;
}

.datepicker:after {
    display: none;
}

.datepicker .active {
    background: #fd6c1e !important;
}

.datepicker tfoot tr:first-child th {
    color: #fd6c1e;
}


.overlay__modal .modal__d .content__callback {
    padding: 20px 35px;
}

.overlay__modal .modal__d .content__callback .form-group {}
.overlay__modal .modal__d .content__callback .form-group input {}