﻿
:root {
    --disabled-color: #d9d9d9;
    --proggress-text: #006994;
    --progress-bg: rgba(255, 255, 255, .15);
    --progress-filled: #006994;
}


body {
    background-color: white;
}

main {
    gap: 10px;
}

.service-name {
    position: unset;
}

.am-card-main {
    margin: 15px;
}

.service-name {
    color: black;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.lp-msisdn-form {
    height: auto;
}

.lp-cta {
    display: block;
    width: 100%;
    background: linear-gradient(273.01deg, #1b6bff -8.03%, #006994 109.58%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 0 8px var(--btn-shadow);
    margin: 20px;
    max-width: 300px;
    padding: 10px;
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
    padding-right: unset;
}

.iti--separate-dial-code .iti__selected-flag {
    color: black;
    background-color: unset;
}

.iti__country.iti__highlight {
    background-color: unset;
    color: black;
}

.lp-available-languages {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.lp-language {
    display: inline-block;
    border: 2px solid;
    border-radius: 4px;
    margin: 10px 4px;
    padding: 2px 4px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
}

    .lp-language:not(.active) {
        color: var(--disabled-color);
    }

.am-subscription-hint, footer {
    width: clamp(320px, 30vw, 1000px);
    margin-inline: auto;
    padding-block: 10px;
    color: black;
}

.container {
    padding-block: unset;
}

.lp-contect-description {
    color: black;
    font-size: 20px;
    line-height: 1.18;
    font-weight: 900;
    margin-bottom: 20px;
    padding-block: 15px;
}


.lp-progress-hint {
    font-size: 12px;
    text-align: center;
    padding-block: 10px;
}

.progress-container {
    position: relative;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-svg {
    transform: rotate(-90deg);
}

circle {
    transition: stroke-dashoffset 2s linear;
}

.progress-text {
    position: absolute;
    font-size: 18px;
    font-weight: bold;
    animation: count-animation 2s linear forwards;
}

@keyframes count-animation {
    0% {
        content: "0%";
    }

    10% {
        content: "10%";
    }

    20% {
        content: "20%";
    }

    30% {
        content: "30%";
    }

    40% {
        content: "40%";
    }

    50% {
        content: "50%";
    }

    60% {
        content: "60%";
    }

    70% {
        content: "70%";
    }

    80% {
        content: "80%";
    }

    90% {
        content: "90%";
    }

    100% {
        content: "100%";
    }
}

.progress-text::after {
    content: "0%";
    animation: count-animation 2s linear forwards;
}

@keyframes progress-animation {
    from {
        stroke-dashoffset: 314;
    }

    to {
        stroke-dashoffset: 0;
    }
}


.lp-step-container {
    font-size: 12px;
    color: #0F4C81;
    font-weight: bold;
    margin-bottom: 5px;
}

.lp-step-progress-container {
    display: flex;
    gap: 5px;
}

.lp-progress-step {
    width: 50%;
    height: 6px;
    background-color: #4caf50;
    border-radius: 3px;
}

.lp-disabled {
    background: #e0e0e0 !important;
}

.am-burger-menu-icon {
    fill: black;
}

.lp-burger-menu {
    background: white;
}

.am-burger-menu-item {
    color: black;
}

.am-burger-menu-close-icon-color {
    fill: black;
}