/* Reset */
* {
    margin: 0;
    padding: 0;
    border: none;
}

a, a:link {
    color: inherit;
    text-decoration: none;
}

html {
    text-align: center;
    font-family: Helvetica, sans-serif;
    color: white;
    width: 100%;
    height: 100%;
    position: relative;
}

body {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: black;
}

/* Header */
.header {
    position: absolute;
    width: 100%;
    height: 50px;
    z-index: 2;
    transition: .3s transform ease-in-out;
}

@media screen and (min-aspect-ratio: 1/1) {
    .header {
        transform: translateY(-100%);
    }
}

.header .logo {
    position: absolute;
    margin: 0 auto;
    height: 50px;
    width: auto;
    right: 0;
    top: 0;
}

/* Art */
.wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 620px;
    width: 100%;
    height: 100%;
}

.bg {
    position: absolute;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: top center;
}

.fg {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.wrapper-bottom {
    position: absolute;
    bottom: 0;
    color: white;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.wrapper-top {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
    text-shadow: 0 1px 4px #000;
}

.wrapper-toptitle {
    padding: 60px 10px 60px;
    font-size: 20px;
    line-height: 1.4;
    color: white;
    background-image: linear-gradient(180deg, black, transparent);
}

.wrapper-top-subtitle {
    margin: -50px 10px 30px;
    font-size: 14px;
    line-height: 1.4;
    color: white;
}

.wrapper-form {
    position: relative;
    margin: 30px auto;
    /* padding: 20px 0; */
    width: 90%;
    bottom: 10%;
}

.wrapper-form-title {
    margin: 10px 0;
    font-size: 15px;
    color: #090502;
    font-weight: bold;
}

.wrapper-form-input {
    position: relative;
    padding: 3%;
    margin: 10px auto;
    width: 84%;
    color: #707070;
    font-size: 16px;
    line-height: 2;
    text-align: center;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #707070;
    border-radius: 7px;
    opacity: 1;
    font: normal normal normal 20px/23px Arial;
}

.wrapper-input-error {
    color: #ce2929;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

.btn {
    position: relative;
    display: block;
    margin: 10px auto;
    width: 90%;
    bottom: 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 3;
    /*text-transform: uppercase;*/
    border-radius: 32px;
    text-align: center;
    background: #D12E31;
    color: #fff;
    animation: bump .6s;
}

.btn.btn-primary {
}

.btn.btn-secondary {
}

.btn.btn-link {
    background-color: transparent;
    color: #090502;
    font-size: 16px;
    text-transform: lowercase;
    text-decoration: underline;
}

@keyframes bump {
    0%, 5% {
        transform: scale(0);
        opacity: 0;
    }

    15% {
        transform: scale(1.1);
    }

    35% {
        transform: scale(.75);
    }

    45% {
        transform: scale(1.08);
    }

    60% {
        transform: scale(.85);
    }

    70% {
        transform: scale(1.06);
        opacity: 1;
    }

    80% {
        transform: scale(.89);
    }

    90% {
        transform: scale(1.04);
    }

    95% {
        transform: scale(.95);
    }

    97% {
        transform: scale(1.02);
    }

    99% {
        transform: scale(.98);
    }

    100% {
        transform: scale(1);
    }
}

.btn-fullscreen {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

/* Terms */
.terminos {
    width: 100%;
    font-size: 10px;
    bottom: 0;
    font-family: helvetica, arial, sans-serif;
    /* color: rgba(255, 255, 255, 1); */
    color: #FFFFFF;
    background: #000000;
    text-align: center;
    line-height: initial;
}

.terminos p {
    padding: 10px 3.5vw;
    font-size: 2.9vw;
}

@media only screen and (min-width: 600px) {
    .terminos p {
        padding: 10px 15px;
        font-size: 14px;
    }
}

.terminos a {
    display: inline-block;
    padding-top: 5px;
    font-weight: bold;
    line-height: inherit;
    /* color: white; */
}

.terminos .destacadoterminos {
    font-weight: bold;
    font-size: 12px;
}

.terminos .price-highlight {
    padding: 10px 15px;
    display: block !important;
    /* background: #00000099; */
    font-size: 13px;
    /*font-weight: bold;*/
}

@media only screen and (min-width: 600px) {
    .terminos .price-highlight {
        font-size: 14px;
    }
}

/* LOADER */
.loader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #13131a;
}

.loader-animation {
    position: absolute;
    display: block;
    width: 26px;
    height: 26px;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    border: 2px solid rgba(255, 255, 255, .2);
    border-right-color: rgba(255, 255, 255, 1);
    border-radius: 50%;
    animation: loader 1.5s infinite;
}

@keyframes loader {
    to {
        transform: rotate(360deg);
    }
}

.loader-message {
    position: absolute;
    width: 100%;
    top: calc(50% + 30px);
    color: #fff;
    text-align: center;
    font-size: 14px;
}

/* MISC */
.btn_loading:after {
    content: "";
    display: inline-block;
    margin: 0 0 0 10px;
    height: 13px;
    width: 13px;
    border-radius: 50%;
    border: 2px solid #fff;
    border-bottom: 2px solid #fff3;
    animation: spin 1s infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ERRORS */
.error-popup-wrapper {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0009;
}

.error-popup {
    position: absolute;
    display: block;
    padding: 20px;
    width: calc(90% - 40px);
    max-width: 460px;
    top: 50%;
    left: 50%;
    background: #fff;
    border-radius: 6px;
    transform: translate(-50%, -45%);
    opacity: 0;
    animation: fade-in .5s forwards;
}

@keyframes fade-in {
    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.error-img {
    position: relative;
}

.error-msg {
    padding: 10px 5% 0;
    color: #333;
    text-align: center;
}

.error-popup .button {
    width: calc(100% - 30px);
    margin: 15px;
    padding: 12px;
    border-radius: 4px;
    background-color: #007bff;
}
