@charset "UTF-8";

body {
    font-family: 'Inter', 'sans-serif';
    color: #000;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    margin: 0;
}

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

a {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1104px;
    padding-right: 60px;
    padding-left: 60px;
    margin-right: auto;
    margin-left: auto;
}

header {
    background: #F5F5F5;
    border-bottom: 1px solid #DDDDDD;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 150px;
}

.logo img {
    max-width: 100%;
}

.phone {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #000;
}

.phone span {
    color: #8E8A83;
}

.main {
    margin-top: 36px;
}

.title {
    font-weight: 600;
    font-size: 34px;
    line-height: 40px;
}

.form {
    max-width: 768px;
    margin: 80px auto 0 auto;
}

.form form {
    margin-top: 20px;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    padding: 80px;
}

.form__item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.form__title {
    font-size: 24px;
    line-height: 30px;
}

.form__buttons {
    margin-top: 58px;
}

.form__buttons-remember-password {
    margin-top: 36px;
}

.btn {
    background: #01841d;
    border-radius: 12px;
    font-size: 24px;
    border: none;
    padding: 10px 35px;
    outline: none;
    cursor: pointer;
    color: #fff;
}

.btn:hover {
    background: #02b517;
    color: #fff;
}

.btn.disabled {
    opacity: 0.3;
}

.btn.disabled:hover {
    background: #01841d;
    color: #fff;
    cursor: default;
}

/* для элемента input c type="checkbox" */
.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

/* для элемента label, связанного с .custom-checkbox */
.custom-checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
}

/* создание в label псевдоэлемента before со следующими стилями */
.custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

/* стили при наведении курсора на checkbox */
.custom-checkbox:not(:disabled):not(:checked)+label:hover::before {
    border-color: #b3d7ff;
}

/* стили для активного чекбокса (при нажатии на него) */
.custom-checkbox:not(:disabled):active+label::before {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}

/* стили для чекбокса, находящегося в фокусе */
.custom-checkbox:focus+label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.custom-checkbox:focus:not(:checked)+label::before {
    border-color: #80bdff;
}

/* стили для чекбокса, находящегося в состоянии checked */
.custom-checkbox:checked+label::before {
    border-color: #0b76ef;
    background-color: #0b76ef;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox:disabled+label::before {
    background-color: #e9ecef;
}

.form__item .right {
    width: 386px;
}

.form__item input {
    width: 100%;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-size: 24px;
    line-height: 28px;
    padding: 4px 14px;
    box-sizing: border-box;
    outline: none;
}

.form__item input[type=checkbox] {
   width: initial;
}

.remember-password-label {
    color: #8E8A83;
    font-size: 20px;
    margin-left: 8px;
    font-weight: 600;
    cursor: pointer;
}

#remember {
    cursor: pointer;
}

.remember-password-link {
    color: #8E8A83;
    margin-left: 20px;
    font-weight: 600;
}

.remember-password-link:hover {
    color: #000;
}

.auth-link {
    font-weight: 600;
    color: #8E8A83;
}

.auth-link:hover {
    color: #000;
}

.exit-link {
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
}

.exit-link:hover {
    text-decoration: underline;
}

.exit-link img {
    margin-left: 10px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex {
    display: flex;
    align-items: center;
}

.detail {
    margin-top: 40px;
}

.header {
    font-size: 24px;
    line-height: 30px;
}

.header__client {
    font-weight: 500;
}

.header__email {
    font-size: 14px;
    border-bottom: 1px solid;
    color: #8E8A83;
}

.header__numbers {
    font-weight: 600;
}

.header__price {
    margin: 0 30px 0 10px;
    color: #19BB4F;
}

.header__price-minus {
    color: #01841d;
}

.car-info {
    margin-top: 54px;
}

.car-info__line {
    background: #8E8A83;
    height: 2px;
    width: 170px;
}

.car-info__items {
    margin-top: 20px;
    padding: 31px;
    background: #F5F5F5;
}

.car-info__item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.car-info__characteristic-title {
    color: #8E8A83;
    font-weight: 500;
    width: 185px;
    margin-right: 16px;
}

.car-info__characteristic-value {
    font-weight: 600;
}

.car-info__number {
    color: #8E8A83;
}

.tabs {
    margin-top: 80px;
}

.tabs__item {
    background: #F5F5F5;
    color: #8E8A83;
    font-size: 24px;
    line-height: 30px;
    padding: 17px;
    flex-grow: 1;
    text-align: center;
    font-weight: 600;
}

.tabs__item-active {
    background: #01841d;
    color: #fff;
    /*box-shadow: 0 1px 4px 0 #000000;*/
    /*border-radius: 4px;*/
    z-index: 1;
    cursor: default;
}

.tabs__item:hover {
    color: #000;
    text-decoration: underline;
}

.tabs__item.tabs__item-active:hover {
    background: #01841d;
    text-decoration: none;
}

.card-name {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.content-balance {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}

.balance {
    width: 430px;
    flex-shrink: 0;
}

.balance-block {
    margin-top: 70px;
    background: #F5F5F5;
    border-radius: 12px;
    padding: 29px 43px 56px 76px;
}

.balance-block__title {
    font-weight: 600;
}

.balance-block__price {
    margin: 0 30px 0 10px;
    color: #19BB4F;
    font-weight: 600;
}

.balance-block__price-minus {
    color: #01841d;
}

.red {
    color: #C80915;
}

.balance-block__header {
    margin-bottom: 10px;
}

.balance-block__item {
    position: relative;
    color: #8E8A83;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 6px;
    /*margin-left: 88px;*/
    margin-left: 29px;
}

.js-reload-balance {
    position: absolute;
    left: -30px;
    top: 1px;
}

.balance-block__button {
    margin-top: 50px;
    text-align: center;
}

.balance-block__button .btn {
    font-weight: 600;
}

.card-name__number {
    color: #8E8A83;
    margin-left: 10px;
}

.history {
    flex-grow: 1;
    margin-left: 85px;
}

.history__title {
    color: #8E8A83;
    border-bottom: 2px solid #928E87;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    width: 100%;
}

.history__items {
    margin-top: 40px;
}

.history__item {
    margin-bottom: 57px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}

.history__item .history__value {
    text-align: right;
    min-width: 102px;
}

.history__header {
    background: #F5F5F5;
    padding: 5px 12px 4px 12px;
}

.history__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0 0 69px;
}

.history__name {
    color: #8E8A83;
}

.history__value-green {
    color: #19BB4F;
}

.history__search {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
}

.history__search form {
    position: relative;
    margin-left: 32px;
    margin-bottom: 0;
}

.history__search form input {
    font-weight: 500;
    border: 1px solid #8E8A83;
    border-radius: 3px;
    padding: 9px 13px;
}

.history__search form button {
    position: absolute;
    background: transparent;
    border: none;
    right: 8px;
    top: 8px;
    outline: none;
    cursor: pointer;
}

.content-fines {
    margin-top: 80px;
}

.personal-fines {
    font-weight: 600;
}

.personal-fines-title {
    color: #8E8A83;
    font-weight: 600;
    padding-left: 31px;
    padding-right: 31px;
    margin-bottom: 13px;
}

.personal-fines-data {
    display: inline-block;
    padding-right: 35px;
    width: 94px;
}

.personal-fines-number {
    display: inline-block;
    width: 255px;
    padding-right: 19px;
}

.personal-fines-item {
    background: #F5F5F5;
    padding: 31px;
    margin-bottom: 20px;
}

.personal-fines-item div {
    display: inline-block;
    vertical-align: top;
}

.personal-fines-data {
    display: inline-block;
    padding-right: 25px;
    width: 135px;
    color: #928E87;
    box-sizing: border-box;
}

.personal-fines-item .personal-fines-number {
    color: #928E87;
}

.personal-fines-item .personal-fines-number a {
    color: #928E87;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block;
}

.personal-fines-item .personal-fines-number a:hover {
    text-decoration: underline;
}

.personal-fines-auto {
    background: url(../images/icons/car.svg) left 2px no-repeat;
    background-size: 36px 20px;
    padding-left: 50px;
    width: 340px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 20px;
}

.personal-fines-item div {
    display: inline-block;
    vertical-align: top;
}

.personal-fines-price {
    width: 85px;
    text-align: right;
    margin-right: 15px;
}

.fines-pay-item {
    color: #01841d;
    background: none;
    border: none;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    outline: none;
}

.fines-pay-item:hover {
    text-decoration: underline;
}

.status-paid {
    color: #19BB4F;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}

.personal-fines-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 80px 0 120px;
}

.personal-fines-button .btn {
    margin-left: 20px;
    font-weight: 600;
}

.hidden {
    display: none !important;
}

.detail__fine {
    font-weight: 600;
}

.header__fine {
    width: 584px;
    border-bottom: 2px solid #000;
    padding-bottom: 6px;
    font-weight: 500;
    margin-bottom: 35px;
}

.fine-info-item {
    margin-bottom: 25px;
    font-size: 24px;
    line-height: 30px;
}

.header__fines-link {
    color: #8E8A83;
    font-size: 20px;
    line-height: 24px;
    border-bottom: 2px solid #8E8A83;
}

.header__price-fine {
    color: #01841d;
}

.header__price-fine-payed{
    color: #000;
}

.fine-info-item__name {
    color: #8E8A83;
}

.fine-info-item__value {
    margin-top: 4px;
}

.fine-info-item__value-underlink {
    display: inline-block;
    border-bottom: 2px solid #000;
}

.content-fine {
    margin-top: 35px;
    font-size: 24px;
    line-height: 30px;
}

.content-fine .h2 {
    margin: 35px 0 25px 0;
}

.fine-description {
    color: #8E8A83;
    font-size: 20px;
    line-height: 26px;
}

.fine-photos {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.fine-photos img {
    margin-right: 20px;
    max-width: 100%;
}

.fine-total {
    display: flex;
    justify-content: flex-end;
    margin-top: 35px;
    align-items: center;
}

.fine-total .btn {
    margin-left: 20px;
    font-weight: 600;
}

.fine-total__days {
    color: #8E8A83;
    margin-top: 4px;
}

footer {
    margin: 80px 0 20px 0;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.form__item.errors {
    display: none;
    text-align: center;
    color: red;
}

.form__item.success {
    text-align: center;
    color: green;
    font-weight: bold;
    margin: 50px 0 0 0;
}

.white-popup-block {
    padding: 40px 60px 40px 40px;
    border-radius: 4px;
    max-width: 600px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    box-sizing: border-box;
}

.white-popup-block p {
    margin: 3px 0;
}

#popup-put-money-account .fines-warning-text {
    display: none;
    margin-bottom: 40px;
}

#popup-put-money-account .prices {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 40px;
}

#popup-put-money-account .prices__item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#popup-put-money-account .prices__item-fines {
    display: none;
}

#popup-put-money-account .prices__item-rent-payment-sum {
    display: none;
}

#popup-put-money-account .prices__item:last-child {
    margin-bottom: 0;
}

#popup-put-money-account .prices__name {
    width: 166px;
    flex-shrink: 0;
    font-size: 16px;
    margin-right: 20px;
}

#popup-put-money-account .prices__value-total {
    color: #01841d;
    font-size: 22px;
    line-height: 28px;
}

#popup-put-money-account .btn {
    padding: 10px 45px;
    position: relative;
    top: -16px;
    font-weight: bold;
}

.price-slider {
    position: relative;
    width: 500px;
    margin: auto;
}

#price-slider {
    width: 95%;
    margin: 60px 0;
    padding: 0 10px 0 12px;
}

.price-slider .label-30-price {
    position: absolute;
    font-size: 14px;
    line-height: 24px;
    top: -34px;
    right: 0;
    /*color: #9B9B9B;*/
    color: #9b9b9b80;
}

.price-slider .label-30-days {
    position: absolute;
    font-size: 14px;
    line-height: 24px;
    top: 10px;
    right: -16px;
    /*color: #9B9B9B;*/
    color: #9b9b9b80;
}

#price-slider:before {
    content: attr(data-price-one-day);
    position: absolute;
    font-size: 14px;
    line-height: 24px;
    top: -34px;
    left: 0;
    /*color: #9B9B9B;*/
    color: #9b9b9b80;
}

#price-slider:after {
    content: '1 сутки';
    position: absolute;
    font-size: 14px;
    line-height: 24px;
    top: 10px;
    left: 0;
    /*color: #9B9B9B;*/
    color: #9b9b9b80;
}

.noUi-target {
    background: #01841d;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.noUi-horizontal {
    height: 3px;
}

.noUi-handle {
    border: none;
    border-radius: 10px;
    background: #01841d;
    box-shadow: none;
    outline: none;
}

.noUi-horizontal .noUi-handle {
    width: 18px;
    height: 18px;
    top: -7px;
    cursor: pointer;
}

.noUi-handle:before {
    content: attr(data-price-str);
    background: none;
    color: #01841d;
    font-size: 14px;
    line-height: 24px;
    width: 104px;
    top: -27px;
    left: -11px;
}

.noUi-handle:after {
    content: attr(data-days-str);
    background: none;
    color: #01841d;
    font-size: 14px;
    line-height: 24px;
    width: 70px;
    top: 17px;
    left: -11px;
}

.noUi-touch-area {
    box-shadow: 0 0 2px 0 #01841d;
    border-radius: 8px;
}

.text-center {
    text-align: center;
}

.invalid-feedback {
    color: #02b517;
    margin-top: 4px;
}

.admin-panel-link {
    position: absolute;
    top: 3px;
    left: 3px;
    font-size: 12px;
    line-height: 12px;
    color: #000000;
    text-decoration: underline;
}

.get-access-link-block {
    margin-top: 2px;
}

.text-danger {
    background: #e74a3b;
    color: #fff !important;
    padding: 12px;
    text-align: center;
}

.text-success {
    background: #1cc88a;
    color: #fff !important;
    padding: 12px;
    text-align: center;
}

.header__button {
    font-weight: 600;
}

.price-slider .label-30-price,
#price-slider:before,
.price-slider .label-30-days,
#price-slider:after {
    display: none;
}

.detail__fine .header__numbers-mobile {
    display: none;
}

.grecaptcha-badge {
    display: none !important;
}

#payment-rent-form,
#calculations-all,
.detail__fine form,
.personal-fines-pay form {
    display: none;
}

#popup-window-payment-card {
    max-width: 480px;
}

#popup-window-payment-card .title {
    margin-bottom: 20px;
}

#popup-window-payment-card .auto-payments-title {
    font-weight: normal;
    line-height: 12px;
    font-size: 12px;
    position: relative;
    top: 12px;
    text-align: center;
    display: inline-block;
}

#popup-window-payment-card .cards-item-wrapper {
    display: flex;
    align-items: center;
}

#popup-window-payment-card .cards-item-wrapper label {
    position: relative;
    top: -4px;
    margin: 0 16px 0 10px;
}

#popup-window-payment-card .cards-item {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #8E8A83;
    padding: 24px 0;
    color: #000;
    flex-grow: 1;
}

#popup-window-payment-card .cards-item:hover {
    border-color: #000;
}

#popup-window-payment-card .cards-item__info {
    margin-left: 20px;
}

#popup-window-payment-card .cards-item__arrow {
    margin-left: auto;
}

#popup-window-payment-card .cards-item__arrow svg {
    width: 20px;
    height: 20px;
    fill: gray;
}

#popup-window-payment-card .cards-item:hover .cards-item__arrow svg {
    fill: #000;
}

#popup-window-payment-card .exp-date {
    color: #8E8A83;
}

.preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.preloader img {
    margin-right: 30px;
}

.list-text {
    box-shadow: 0 0 10px rgb(0 0 0 / 50%);
    padding: 40px 60px;
    margin-top: 40px;
}

.offer-text .title {
    margin-bottom: 40px;
}

.offer-text .text {
    font-size: 18px;
    line-height: 28px;
}

.offer-text__buttons {
    margin-top: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.offer-text__buttons input[type=checkbox] {
    margin-right: 10px;
    cursor: pointer;
}

.js-open-window-payment-card.disabled {
    background: #e0dfde;
    cursor: default;
    color: #ccc;
}

.js-open-window-payment-card.disabled:hover {
    background: #e0dfde;
    cursor: default;
    color: #ccc;
}

.js-open-window-operations {
    display: inline-block;
    cursor: pointer;
    border-bottom: 1px solid;
}

.js-open-window-operations:hover {
    color: #5c5a57;
}

#popup-window-operations .history__content {
    padding: 8px 0 0 0;
}

#popup-window-operations .btn {
    width: 100%;
    font-size: 16px;
    line-height: 16px;
    padding: 10px;
    text-align: center;
    display: block;
    font-weight: bold;
}

#popup-window-operations .to-payment-sum-block {
    margin: 10px 0 0 10px;
    width: 308px;
    vertical-align: middle;
}

#popup-window-operations .to-payment-sum-block label {
    margin-bottom: 10px;
    font-size: 14px;
}

#popup-window-operations .to-payment-sum-block input {
    width: 70px;
    margin-bottom: 10px;
    padding: 10px 0 10px 10px;
    margin-left: 4px;
}

#popup-window-operations .js-open-window-payment-card.disabled {
    color: #000;
}

#popup-window-operations .history__item .history__value {
    min-width: auto;
}

#popup-window-operations .history__title {
    text-align: center;
    margin: 20px 0 0 0;
    border-bottom: none;
}

.js-link-prepayment-for-booking,
.js-deposit-return {
    border-bottom: 1px solid;
    color: #8E8A83;
    font-size: 14px;
}

.js-link-show-popup-contracts {
    font-size: 16px;
    border: 1px solid #01841d;
    padding: 20px 40px;
    background: #01841d;
    color: #fff;
    font-weight: bold;
}

#popup-window-contracts {
    max-width: 1150px;
    padding: 40px;
}

#popup-window-contracts table {
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

#popup-window-contracts table caption {
    font-size: 1.5em;
    margin: 0.5em 0.75em 1.5em 0.75em;
}

#popup-window-contracts table tr {
    padding: .35em;
    border-bottom: 1px solid #ddd;
}

#popup-window-contracts table th {
    background: #F5F5F5;
}

#popup-window-contracts table th,
#popup-window-contracts table td {
    padding: .625em;
    font-weight: 500
}

#popup-window-contracts table th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-align: left;
}

#popup-window-contracts .btn {
    font-size: 18px;
}

#popup-window-contracts .btn.disable {
    background: #02b517;
}

#popup-window-contracts table tr .vehicle {
    width: 250px;
}

#popup-window-contracts table tr .action {
    margin: 10px 0 10px 10px;
    padding: 20px 0;
}

.white-popup-block .form-select {
    padding: 10px;
}

#popup-window-deposit-return {
    padding: 40px;
    max-width: 350px;
}

#popup-window-deposit-return .title {
    text-align: center;
}

#popup-window-deposit-return input {
    padding: 10px;
}

#popup-window-deposit-return .btn {
    margin-top: 20px;
    width: 100%;
}

#deposit-return-form-success-message {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}

.deposit-return-form__items {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.deposit-return-form__items select,
.deposit-return-form__items input {
    width: 100%;
    box-sizing: border-box;
}

.mobile-quick-access {
    position: fixed;
    display: none;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    bottom: 0;
    z-index: 1000;
    padding: 0 5px 2px 5px;
    background: #F5F5F5;
    border-top: 1px solid #DDDDDD;
    align-items: center;
}

.mobile-quick-access div {
    width: 282px;
    font-size: 14px;
    line-height: 18px;
    margin: 0 4px;
}

.mobile-quick-access div img {
    vertical-align: bottom;
}

.mobile-quick-access svg {
    margin: 2px 0 auto 0;
}

.error-text {
    margin: 50px 0;
    text-align: center;
}
