/* RESET */

html {
    min-height: 100%;
    min-width: 100%;
    background-color: #090909;
}

* {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    font-family: 'Helvetica', Arial, sans-serif;
    color: #f3f3f3;
    line-height: 1.3;
}

p,
a {
    margin: 5px auto;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
}

.left {
    text-align: left;
}

.left a{
    text-decoration: underline;
}

.small {
    margin: 0 20px;
    font-size: 12px;
}

.warning {
    margin: 10px auto 5px;
    font-size: 14px;
    line-height: 1.5;
}

h1 {
    margin: 50px auto;
    font-weight: lighter;
}

h2, h3 {
    margin: 10px auto;
}

ul {
    margin-bottom: 10px;
    list-style: none;
}

ul.bullets {
    margin-left: 10px;    
    list-style: "- ";
}

li {
    margin: 8px 0;
    text-align: left;
}


/* HEADER */

.header {
    position: relative;
    width: 100%;
    height: 50px;
}

.header .logo {
    position: absolute;
    display: block;
    margin: auto;
    height: 38px;
    top: 0;
    bottom: 0;
    left: 5%;
}

/* LOADER */

.loader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #13131a;
    z-index: 200;
}

.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;
}

/* CONTAINER */

.wrapper {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 480px;
}

.art-wrapper {
    position: relative;
    height: 55vw;
    max-height: 264px;
    width: 100%;
    overflow: hidden;
}

.art-wrapper img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.art-wrapper-title {
    position: absolute;
    color: #232733;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fffe;
    margin: 10px auto;
    padding: 5px 20px;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.bottom-wrapper {
    position: relative;
    margin: 5px auto 20px;
    width: 90%;
    text-align: center;
}

/* THANK YOU */

.confirm {
    position: relative;
    display: flex;
    margin: 6px auto;
    width: 90%;
    text-align: center;
}

.confirm img {
    margin: 6px 0 0;
    height: 45px;
    object-fit: contain;
}

.confirm p {
    margin: 4px 0 0 13px;
    text-align: left;
    font-size: 18px;
    line-height: 1.5;
}

/* BUTTONS */

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

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

.button {
    position: relative;
    margin: 10px 2%;
    padding: 8px 0;
    width: 45%;
    border-radius: 6px;
    border-color: #0004;
    font-size: 16px;
    font-weight: bold;
}

.button.accept {
    color: #fff;
    background-color: #ff0060;
    font-size: 18px;
}

.button.cancel {
    color: #454545;
    background-color: #d2ced1;
    font-size: 18px;
}

.button.large {
    margin: 8px auto;
    width: 70%;
    font-size: 18px;
}

.button p {
    margin: 0;
    color: inherit;
    font-size: 16px;
}

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

.error-popup {
    position: absolute;
    display: block;
    width: 90%;
    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;
}

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

.error-popup .button {
    width: calc(100% - 30px);
    margin: 15px;
}

/* FOOTER */

.footer {
    display: flex;
    margin: 15px 0;
    flex-wrap: wrap;
    align-content: space-evenly;
    justify-content: space-around;
}

.footer a {    
    margin: 5px 0;
    width: 50%;
    font-size: 12px;
    text-align: center;
    text-decoration: none;
}

.footer.col-3 a {
    width: auto;
}

/* COOKIES DISCLAIMER */
.aceptacion-cookies {
    position: absolute;
    margin: 0 auto;
    padding: 5px 20px;
    background: white;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 2px #0003;
}

.cerrar {
    display: block;
    margin: 10px 0 5px;
    text-decoration: underline;
    text-align: center;
}

.aceptacion-cookies p, .aceptacion-cookies a {
    color: #232323;
}
