/* Minification failed. Returning unminified contents.
(10,28): run-time error CSS1039: Token not allowed after unary operator: '-light-color'
(68,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(69,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(70,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(71,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(72,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(73,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(74,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(75,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(76,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(128,28): run-time error CSS1039: Token not allowed after unary operator: '-alert-body-color'
(133,17): run-time error CSS1039: Token not allowed after unary operator: '-alert-font-color'
(164,17): run-time error CSS1039: Token not allowed after unary operator: '-alert-font-color'
(166,28): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-btn-color'
(177,28): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-btn-hover-color'
(186,17): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-error-color'
(191,16): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-success-color'
(196,16): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-info-color'
(201,16): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-warning-color'
(206,16): run-time error CSS1039: Token not allowed after unary operator: '-alert-font-color'
(210,28): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-info-color'
(240,28): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-shadow-color'
(298,13): run-time error CSS1039: Token not allowed after unary operator: '-alert-font-color'
(325,17): run-time error CSS1039: Token not allowed after unary operator: '-alert-font-color'
(327,28): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-btn-color'
(339,28): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-btn-hover-color'
(362,24): run-time error CSS1039: Token not allowed after unary operator: '-alert-icon-btn-color'
 */
*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    height: 100%;
    background-color: var(--light-color);
    background: linear-gradient(180deg, rgba(57,64,68,1) 0%, rgba(38,44,46,1) 30%, rgba(7,7,7,1) 100%);
}

body {
    height: calc(100% - (275px + 70px));
    font-family: 'Raleway', sans-serif;
}

@media screen and (max-width: 640px) and (orientation: portrait) {
    html, body {
        height: unset;
    }
}


@media screen and (max-width: 1024px) and (orientation: landscape) {
    html, body {
        height: unset;
    }
}

/*@media screen and (max-width: 768px) and (orientation: portrait) {
    body {
        height: calc(100% - (155px + 70px));
    }
}*/

.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: -1;
}

@media screen and (max-width: 1024px) {
    .pattern {
        background-size: 200%;
        background-position: 0 -20vh;
    }
}

.main-container {
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .max-view-height {
        height: calc(100vh - (275px + 70px));
    }
}
: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;
    }
}
