﻿body {
    --e-global-color-primary: #ee5d3e;
    --e-global-color-secondary: #222e59;
    --e-global-color-body: #696969;
    --e-global-color-headline: #001726;
    --e-global-color-border: #E6E8EE;
    --e-global-color-light: #F1F5FF;
    --e-global-color-white: #FFFFFF;
    --e-global-color-dark: #000000;
}

body {
    padding: 0;
    margin: 0;
    background: transparent;
}

.body {
    background: var(--e-global-color-light) url('/media/price-circle-shape.png') no-repeat bottom center;
    background-position: center bottom;
    box-sizing: border-box;
    margin: 0;
    display: block;
    width: 100%;
    height: 100dvh;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    left: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: transparent;
}

    .body::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

.whiteBox {
    display: block;
    background: white;
    box-sizing: border-box;
    padding: 40px min(40px,3%);
    border-radius: 10px;
    width: min(95%,600px);
    margin: 2em auto;
    border: 1px solid rgba(0, 23, 38, 0.1);
    text-align: center;
}

.inputButton {
    font-family: "Inter", serif;
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
    border: 2px solid var(--akpager-primary-color);
    border-radius: 20px;
    color: #ffffff;
    background-color: var(--akpager-primary-color);
    padding: 16px 35px;
    -webkit-transition: .3s;
    transition: .3s;
    display: inline-block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    --icon-spacing: 10px;
    background-color: var(--e-global-color-secondary);
    border-color: var(--e-global-color-secondary);
    font-size: 16px;
    display: inline-block;
    margin: 1em auto;
}

    .inputButton:hover {
        border-color: #EE5D3E;
        background-color: #EE5D3E;
    }

h2 {
    font-family: "Work Sans", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
}

p, .parrafo {
    display: block;
    text-align: center;
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 0.9em;
}


.svg-loading {
    animation: girar 1s linear infinite;
}

@keyframes girar {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.contenedorSvgs {
    display:block;
    position: relative;
    width: 100%; /* ajusta según necesites */
    height: 200px; /* ajusta según necesites */
}

    .contenedorSvgs svg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

        .contenedorSvgs svg:nth-child(2) {
            margin-top: 5px;
        }

    .contenedorSvgs.ok svg:nth-child(2) {
        display: none;
        animation: none;
    }

    .contenedorSvgs.ok svg:nth-child(1) {
        transition:.3s;
        fill:rgb(45,156,65);
    }

    .contenedorSvgs svg:nth-child(3) {
        display: none;
        padding-top:20px;
    }

    .contenedorSvgs.ok svg:nth-child(3) {
        display: block;
    }