

:root {
    --font-family: "CeraPro", sans-serif;
    --base-transition: all ease .3s;
    --default-border: 1px solid #B2C1C1;
    --red: #FC4F4F;
    --section-color: #1C252D;
    --placeholder-color: #627D7D;
    --default-icon-fill-color: #627D7D;
    --orange: #F48F19;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

.footer {
    margin-top: auto;
}

/* #region btn*/
.buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.buttons-figuration {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.additinalServices .btn {
    border-radius: 8px;
    border: var(--default-border);
    width: 100%;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 120%; /* 19.2px */
    letter-spacing: 0.048px;
}

.btn-green {
    color: #002D2E;
    background: linear-gradient(180deg, #B2E7B4 0%, #6DC39E 100%);
}

.btn-link {
    color: #FC4F4F;
}
/* #endregion btn*/


/* #region modal */
.modal-window {
    position: fixed;
    background-color: rgba(0, 0, 0, 0);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: background-color 0.3s ease;
}

.bg-overlay {
    background-color: rgba(0, 0, 0, 0.45) !important;
}

.modal-window-header p {
    color: #1C252D;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 39.2px */
    letter-spacing: 0.084px;
    background: transparent;
}

.modal-window.small {
    transform: scale(0.8) translateY(1000px);
    opacity: 0 !important;
}

    .modal-window.small.open {
        opacity: 1 !important;
        animation: scaleUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
        overflow: auto !important;
    }

@keyframes scaleUp {
    0% {
        transform: scale(0.8) translateY(1000px);
    }

    100% {
        transform: scale(1) translateY(0px);
    }
}

@keyframes scaleDown {
    0% {
        transform: scale(1) translateY(0px);
    }

    100% {
        transform: scale(0.8) translateY(1000px);
    }
}

.green-modal .box-shadow-custom {
    box-sizing: content-box;
    border: 2px solid #B2C1C1;
    border-radius: 8px !important;
}

.modal-window > div {
    width: 269px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
    background: white;
}

.registr-info-wrap .registr-info-item {
    display: flex;
    align-items: flex-start;
}

.shift-detail .registr-info-item {
    padding-bottom: 5px;
    padding-top: 5px;
    margin-bottom: 3px !important;
}

    .shift-detail .registr-info-item:not(:last-child) {
        border-bottom: 1px dashed #E0E0E0;
    }

    .shift-detail .registr-info-item .title {
        margin-bottom: 3px !important;
    }

.registr-info-wrap .registr-info-item .title {
    font-weight: 400;
    font-size: 12px;
    color: #5B5956;
    width: 40%;
}

.registr-info-wrap .registr-info-item .detail {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 60%;
}

    .registr-info-wrap .registr-info-item .detail .detail-title {
        font-weight: 400;
        font-size: 14px;
        color: #1E1A16;
        text-transform: uppercase;
    }

    .registr-info-wrap .registr-info-item .detail .text {
        font-weight: 400;
        font-size: 10px;
        color: #1E1A16;
    }
/* #endregion modal */



/* #region pure-main-loader */

.pure-main-loader {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .4);
}

.show-loader .pure-main-loader {
    display: flex;
    z-index: 99999;
}

.loader-wrap {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .loader-wrap.main-loader {
        background: var(--main-bg)
    }

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ripple div {
        position: absolute;
        border: 4px solid var(--default-icon-fill-color);
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .lds-ripple div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}
/* #endregion pure-main-loader */


/* #region image-preview */
.file-upload__title {
    color: #1C252D;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 19.2px */
    letter-spacing: 0.128px;
}

.scan-files {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.image-preview-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.file-image {
    width: 100%;
    height: 100%;
    max-width: 160px;
    max-height: 160px;
    object-fit: contain;
}

.messages-info {
    text-align: center;
}

.start {
    padding: 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 2px dashed #6DC39E;
}

.start__desc {
    color: #627D7D;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
}

.start__title {
    color: #F48F19;
    font-size: 16px;
    font-weight: 700;
    line-height: 120%; /* 19.2px */
    letter-spacing: 0.128px;
}
/* #region image-preview */


.alert-wrap {
    padding: 15px 10px;
    border-radius: 4px;
}

.alert-danger {
    color: #b9555e;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.banners-list-big {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.banners-list__item-big {
    padding: 0;
    width: 100%;
}

@media (min-width: 1200px) {
    .banners-list__item-big {
        width: calc(50% - 16px);
    }

    .banners-list-big {
        padding: 0px 100px;
    }

    .badge {
        left: 185px !important;
        font-size: 18px !important;
        top: 50px !important;
    }
}

@media (min-width: 1440px) {
    .badge {
        left: 185px !important;
        font-size: 18px !important;
        top: 80px !important;
    }
}

    .banners-list__button-big {
        display: grid;
        grid-template: 72px 1fr / 72px 1fr;
        align-items: center;
        width: 100%;
    }

        .banners-list__button-big.disabled {
            opacity: 0.1;
        }

        .banners-list__button-big svg {
            width: 60px;
            height: 60px;
        }



        .banners-list__button-big span:nth-child(2) {
            font-size: 24px;
            font-style: normal;
            font-weight: 700;
            line-height: 120%;
            color: #013131;
            text-align: center;
        }

        .banners-list__button-big span:nth-child(3) {
            align-items: center;
            border-radius: 50px;
            color: #fff;
            cursor: pointer;
            display: inline-flex;
            font-size: 16px;
            font-weight: 600;
            gap: 8px;
            justify-content: center;
            padding: 10px 20px;
            text-transform: uppercase;
            background-color: #f48a19;
            grid-column: 1 / 3;
            border-radius: 12px;
            display: flex;
            font-weight: 700;
            margin-top: 10px;
            padding: 15px;
            width: 100%;
        }

    .soonSpan {
        position: absolute;
        font-weight: bold;
        color: grey;
        font-size: 24px;
        /*    left: 50%;*/
        /*    top: 50%;*/
        bottom: 25px;
        right: -65px;
        transform: translate(-50%, -50%) rotate(-40deg);
    }

    .buttons-container {
        .service-card

{
    background: white;
    border-radius: 12px;
    padding: 0px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 0;
    overflow: hidden;
    display: block;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
}
    @media (min-width: 1200px) {
        .service-header {
            padding: 20px 0;
        }
        }

    @media (min-width: 1440px) {
        .service-header {
            padding: 45px 0;
        }
    }

    .icon-container {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
            padding-left: 15px;
        }

        @media (min-width: 1200px) {
            .icon-container {
                width: 180px;
                height: 210px;
            }

                .icon-container img {
                    width: 140px;
                    height: 140px;
                }
        }

        .icon-container.europe {
            background: linear-gradient(135deg, #e8f5e8 0%, #d4edd4 100%);
        }

        .icon-container.green-card {
            background: linear-gradient(135deg, #e8f5e8 0%, #d4edd4 100%);
        }

        .icon-container.auto-civil {
            background: linear-gradient(135deg, #e8f5e8 0%, #d4edd4 100%);
        }

        .icon-container.travel {
            background: linear-gradient(135deg, #e8f5e8 0%, #d4edd4 100%);
        }

        .service-title {
            font-size: 18x;
            font-weight: 600;
            color: #333;
            line-height: 1.3;
            padding-left: 0px;
            padding-right: 10px;
        }

        @media (min-width: 1200px) {
            .service-title {
                font-size: 32px;
            }
        }
@media (min-width: 1440px) {
    .service-title {
        font-size: 32px;
    }
}
        .badge {
            background: #74c2ab;
            color: #343432;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
            position: absolute;
            top: 15px;
            left: 135px;
        }

        .action-button {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 0px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.2s ease;
        }

        @media (min-width: 1200px) {
            .action-button {
                font-size: 22px;
                padding: 16px;
            }
        }

        .action-button.primary {
            background: #ff7f39;
            color: white;
        }

            .action-button.primary:hover {
                background: #e66b2d;
            }

        .action-button.secondary {
            background: #bdc7c7;
            color: #fff;
            pointer-events: none;
            touch-action: none;
        }

            .action-button.secondary:hover {
                background: #bdc7c7;
            }

        .history-section {
            background: white;
            border-radius: 12px;
            padding: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            font-weight: bold;
        }

        .history-content {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .history-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: #f0f9ff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .history-text {
            font-size: 16px;
            color: #333;
            font-weight: 500;
        }

        .history-count {
            color: #666;
            font-weight: normal;
        }

        .chevron {
            font-size: 22px;
            position: absolute;
            top: 50%;
            right: 15px;
            transform: translateY(-50%);
        }

        /* Icons using CSS */
        .road-icon::before {
            content: "🛣️";
            font-size: 24px;
        }

        .car-shield-icon::before {
            content: "🚗";
            font-size: 24px;
        }

        .clipboard-icon::before {
            content: "📋";
            font-size: 24px;
        }

        .globe-icon::before {
            content: "🌍";
            font-size: 24px;
        }

        .history-icon::before {
            content: "📄";
            font-size: 20px;
        }
