/* Minification failed. Returning unminified contents.
(2,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(62,28): run-time error CSS1039: Token not allowed after unary operator: '-alert-body-color'
(67,17): run-time error CSS1039: Token not allowed after unary operator: '-alert-font-color'
(98,17): run-time error CSS1039: Token not allowed after unary operator: '-alert-font-color'
(100,28): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-btn-color'
(111,28): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-btn-hover-color'
(120,17): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-error-color'
(125,16): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-success-color'
(130,16): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-info-color'
(135,16): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-warning-color'
(140,16): run-time error CSS1039: Token not allowed after unary operator: '-alert-font-color'
(144,28): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-info-color'
(174,28): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-shadow-color'
(232,13): run-time error CSS1039: Token not allowed after unary operator: '-alert-font-color'
(259,17): run-time error CSS1039: Token not allowed after unary operator: '-alert-font-color'
(261,28): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-btn-color'
(273,28): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-btn-hover-color'
(296,24): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-btn-color'
(610,32): run-time error CSS1039: Token not allowed after unary operator: '-btn-hover'
(625,32): run-time error CSS1039: Token not allowed after unary operator: '-bordo'
(626,35): run-time error CSS1039: Token not allowed after unary operator: '-bordo'
 */
:root {
    --alert-icon-error-color: #ff4747;
    --alert-icon-success-color: #329b32;
    --alert-icon-info-color: #0d6dfd;
    --alert-icon-warning-color: #ffc107;
    --alert-icon-btn-color: #ff6347;
    --alert-body-color: #394044;
    --alert-font-color: #f5f5f5;
    --alert-icon-btn-hover-color: #c7240f;
    --alert-icon-shadow-color: #101010;
}

/*------------------------------------------------------------------------------------------------*/
/* MODAL */
/*------------------------------------------------------------------------------------------------*/

.modal-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: rgba(15, 15, 15, 0.87);
    top: 0;
    left: 0;
    display: none;
    z-index: 10000;
    outline: none;
    user-select: none;
    -moz-user-select: none;
}

@media screen and (max-width: 640px) and (orientation: portrait) {
    .modal-wrapper {
        align-items: flex-start;
        padding-top: 10vh;
    }
}

@media screen and (max-height: 500px) and (orientation: landscape) {
    .modal-wrapper {
        align-items: flex-start;
        padding-top: 10vh;
    }
}

.modal-wrapper-show {
    display: flex;
}

.modal-wrapper-fixed {
    position: fixed !important;
}

.modal-body {
    width: 40vw;
    height: 50vh;
    max-width: 550px;
    max-height: 350px;
    min-width: 550px;
    min-height: 350px;
    background-color: var(--alert-body-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--alert-font-color);
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(-3rem);
    transition: opacity 0.65s ease-in-out, transform 0.65s ease-in-out;
}


@media screen and (max-width: 640px) and (orientation: portrait) {
    .modal-body {
        min-width: unset;
    }
}


.modal-body-show {
    opacity: 1;
    transform: translateY(0);
}

.alert-msg {
    margin: 0.5rem 0;
    width: 90%;
    text-align: center;
}

.btn-div-alert {
    font-family: 'Raleway', sans-serif;
    padding: 0 1rem;
    height: 2.5rem;
    color: var(--alert-font-color);
    font-size: 1rem;
    background-color: var(--alert-icon-btn-color);
    border: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.btn-div-alert:hover, .btn-div-alert:focus {
    cursor: pointer;
    background-color: var(--alert-icon-btn-hover-color);
}

/*------------------------------------------------------------------------------------------------*/
/* ICONS */
/*------------------------------------------------------------------------------------------------*/

.error-svg {
    width: 3.8rem;
    fill: var( --alert-icon-error-color);
}

.success-svg {
    width: 3.8rem;
    fill: var(--alert-icon-success-color);
}

.info-svg {
    width: 3.8rem;
    fill: var(--alert-icon-info-color);
}

.warning-svg {
    width: 3.8rem;
    fill: var(--alert-icon-warning-color);
}

.cart-svg {
    width: 2rem;
    fill: var(--alert-font-color);
}

.cart-icon-circle {
    background-color: var(--alert-icon-info-color);
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding-right: 0.2rem;
}

.cart-icon,
.error-icon,
.success-icon,
.info-icon,
.warning-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    margin-bottom: 0.5rem;
}

/*ICON-SHADOW*/
.cart-icon::before,
.error-icon::before,
.success-icon::before,
.info-icon::before,
.warning-icon::before {
    content: "";
    background-color: var(--alert-icon-shadow-color);
    border-radius: 50%;
    position: absolute;
    width: 3.5rem;
    height: 3.5rem;
    top: 0.25rem;
    left: 0.25rem;
    display: inline-block;
    z-index: -1;
    filter: blur(0.5rem);
    opacity: 0.75;
}

/*ICON-BORDER*/
.cart-icon::after,
.error-icon::after,
.success-icon::after,
.info-icon::after,
.warning-icon::after {
    content: "";
    background-color: whitesmoke;
    border-radius: 50%;
    position: absolute;
    width: 4rem;
    height: 4rem;
    display: inline-block;
    z-index: -1;
}

.html-content-alert {
    width: 100%;
    /*height: 100%;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

/*------------------------------------------------------------------------------------------------*/
/* CLOSE BUTTON */
/*------------------------------------------------------------------------------------------------*/

.close-btn-alert {
	position: absolute;
	top: 20px;
	right: 16px;
	width: 1.5rem;
	height: 1.5rem;
	display: flex;
	align-content: center;
	justify-content: center;
	cursor: pointer;
}

.close-btn-alert:hover svg {
	fill: tomato;
}

.close-btn-alert svg {
	fill: var(--alert-font-color);
	width: 0.9rem;
	transition: fill .3s ease-in-out;
}

/*------------------------------------------------------------------------------------------------*/
/* CONFIRM BUTTON */
/*------------------------------------------------------------------------------------------------*/

.btn-confirm-group {
    display: flex;
    justify-content: space-between;
    width: 40%;
}

@media screen and (max-width: 640px) and (orientation: portrait) {
    .btn-confirm-group {
        width: 70%;
    }
}

.btn-alert-confirm, .btn-alert-cancel {
    font-family: 'Raleway', sans-serif;
    margin: 0.5rem 0;
    padding: 0 1rem;
    width: 6.5rem;
    height: 2.5rem;
    color: var(--alert-font-color);
    font-size: 1rem;
    background-color: var(--alert-icon-btn-color);
    border: none;
    text-transform: uppercase;
    text-align: center;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-alert-confirm:hover, .btn-alert-cancel:hover {
    background-color: var(--alert-icon-btn-hover-color);
}

/*------------------------------------------------------------------------------------------------*/
/* LOADER */
/*------------------------------------------------------------------------------------------------*/
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid whitesmoke;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--alert-icon-btn-color) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 1024px) and (orientation: portrait) {
    .modal-body {
        width: 90%;
        height: 60vh;
    }
}

@media screen and (max-width: 640px) and (orientation: portrait) {
    .modal-body {
        width: 90%;
        height: 55vh;
        max-width: unset;
        max-height: unset;
    }
}
*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    user-select: none;
}

html {
    background: linear-gradient(180deg, rgba(57,64,68,1) 0%, rgba(38,44,46,1) 30%, rgba(7,7,7,1) 100%);
}

body {
    color: white;
    font-family: 'Raleway', sans-serif;
}

.pattern {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: url('https://cdn.axeso5.com/launcherlanding/pattern_hub.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0 -40vh;
    opacity: 0.06;
    z-index: 0;
}

main {
    width: 100%;
    min-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

    main a {
        color: whitesmoke;
        text-decoration: none;
    }

.intro {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 6rem 2rem;
    margin-bottom: 50px;
}

.title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    width: 65vw;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(188, 16, 153, 0.5) /*rgba(255,255,255,0.2)*/;
    color: whitesmoke;
}

.title-h3 {
    font-size: 2vw;
    margin-bottom: 1.5rem;
    width: 65vw;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(188, 16, 153, 0.5) /*rgba(255,255,255,0.2)*/;
    color: whitesmoke;
}

@media screen and (max-width: 1024px) {
    .pattern {
        background-size: 210%;
    }

    .title {
        font-size: 1.5rem;
        width: 100%;
    }
}

@media screen and (max-width: 1024px) and (orientation: portrait) {
    .title-h3 {
        font-size: 1.3rem;
        width: 90%;
    }
}

@media screen and (max-height: 500px) and (orientation: landscape) {
    .title-h3 {
        font-size: 1.5rem;
        width: 90%;
    }
}

.game-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.75rem;
}

@media screen and (max-width: 1024px) and (orientation: landscape) {
    .game-selector {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 1rem;
    }
}

@media screen and (max-width: 1024px) and (orientation: portrait) {
    .game-selector {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 640px) and (orientation: portrait) {
    .game-selector {
        grid-template-columns: repeat(1, 1fr);
        padding: 0 1rem;
    }
}

.indiv-game {
    background-image: linear-gradient(-90deg, #222222, #48085b 75%);
    max-height: 12rem;
    min-height: 11rem;
    min-width: 150px;
    height: 100%;
    transition: box-shadow .3s ease-in-out, transform .3s ease-in-out;
    display: flex;
    align-items: center;
}

    .indiv-game:hover {
        box-shadow: 0 0 20px rgba(255, 158, 1, 0.2) /*rgba(255,255,255,0.2)*/;
    }

.indiv-game-lighter-gradient {
    background-image: linear-gradient(45deg, #bc1099, #7a279c 75%);
}

.game-name-icon-grp {
    width: 100%;
    height: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

    .game-name-icon-grp p {
        color: white;
        font-weight: 700;
        font-size: 1.75rem;
        max-width: 300px;
        text-transform: uppercase;
        margin-left: 0.75rem;
        text-align: center;
    }

    .game-name-icon-grp img {
        max-width: 100px;
    }

.btn-group {
    display: flex;
    justify-content: center;
    width: 33rem;
    margin-top: 1.5rem;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
    .intro {
        margin-top: 20px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .game-selector {
        width: 100%;
        padding: 0 0.5rem;
    }

    .indiv-game {
        height: 120px;
        width: 100% !important;
    }

    .game-name-icon-grp {
        padding: 0;
        flex-direction: column;
    }

        .game-name-icon-grp p {
            font-weight: 500;
            font-size: 1.25rem;
            margin: 0;
            margin-top: 0.75rem;
            text-align: center;
        }

        .game-name-icon-grp img {
            height: 50%;
        }

    .btn-group {
        width: 100%;
        margin-top: 1.5rem;
    }
}

@media screen and (max-width: 1024px) and (orientation: landscape) {
    .game-name-icon-grp p {
        font-size: 1.25rem;
    }
}


@media screen and (max-height: 500px) and (orientation: landscape) {
    .intro {
        justify-content: flex-start;
        margin-top: 100px;
        padding: 0;
    }

    .game-selector {
        width: 100%;
        padding: 0 1rem;
    }

    .indiv-game {
        height: 120px;
    }

    .game-name-icon-grp {
        padding: 0;
        flex-direction: column;
    }

        .game-name-icon-grp p {
            font-weight: 500;
            font-size: 1.25rem;
            margin: 0;
            margin-top: 0.75rem;
        }

        .game-name-icon-grp img {
            height: 50%;
        }

    .btn-group {
        width: 100%;
        margin-top: 1.5rem;
    }
}

/*/////////////// BTN CREACION CUENTA /////////////////*/

.btn-action {
    background-color: tomato;
    padding: 1rem 3.25rem;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    color: whitesmoke;
    border: none;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s ease-in-out;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
}

    .btn-action:hover {
        background-color: var(--btn-hover);
    }

/*/////////////// REGISTRO /////////////////*/

.registro-home {
    width: 100%;
    /*height: 100vh;*/
    min-height: 100vh;
    padding: 4rem 0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-top: 1px solid var(--bordo);
    border-bottom: 1px solid var(--bordo);
    /*overflow: hidden;*/
    /*Para el glow del registro*/
    position: relative;
    z-index: 0;
}

/*#footer {
    margin-top: 0 !important;
    z-index: 1000;
    position: relative;
}*/

/*/////////////// BACK TO TOP BTN /////////////////*/

.btn-back-to-top {
    position: fixed;
    z-index: 15000;
    right: 4vw;
    bottom: 5vh;
    background-color: tomato;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    transition: width .25s ease-in-out, height .25s ease-in-out;
}

    .btn-back-to-top svg {
        width: 2.5rem;
        fill: whitesmoke;
    }

.btn-back-to-top-hidden {
    width: 0;
    height: 0;
}

/*/////////////// REGISTRATION CODE N /////////////////*/

.confirmationTitle, .reg-code-msg {
    width: 100%;
    color: white;
    font-size: 2.25vw;
    font-weight: 400;
    text-shadow: 0 0 3px #FF0000, 0 0 5px #0000FF;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(188, 16, 153, 0.5) /*rgba(255,255,255,0.2)*/;
    font-weight: 600;
    text-align: center;
}

.msg-container {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 3rem;
}

@media screen and (max-width: 1024px) and (orientation: portrait) {
    .registro-home {
        min-height: unset;
        padding: 5rem 0.05rem;
        overflow: unset;
    }

    /*.box::before {
        opacity: 0.35 !important;
    }*/

    .confirmationTitle, .reg-code-msg {
        font-size: 1.75rem;
    }

    .msg-container {
        margin-bottom: 1rem;
    }
}

@media screen and (max-height: 500px) and (orientation: landscape) {
    .confirmationTitle, .reg-code-msg {
        font-size: 1.5rem;
    }

    .msg-container {
        margin-bottom: 1rem;
    }
}
