/* 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 '-'
(19,28): run-time error CSS1039: Token not allowed after unary operator: '-footer-bg-color'
(47,17): run-time error CSS1039: Token not allowed after unary operator: '-font-color'
(52,21): run-time error CSS1039: Token not allowed after unary operator: '-font-size-h3'
(69,17): run-time error CSS1039: Token not allowed after unary operator: '-light-font-color'
(71,21): run-time error CSS1039: Token not allowed after unary operator: '-font-size-a'
(77,17): run-time error CSS1039: Token not allowed after unary operator: '-ax5-orange'
(99,16): run-time error CSS1039: Token not allowed after unary operator: '-ax5-orange'
(104,17): run-time error CSS1039: Token not allowed after unary operator: '-social-svg-width'
(105,16): run-time error CSS1039: Token not allowed after unary operator: '-font-color'
(111,22): run-time error CSS1039: Token not allowed after unary operator: '-social-svg-width'
(121,16): run-time error CSS1039: Token not allowed after unary operator: '-ax5-orange'
(143,17): run-time error CSS1039: Token not allowed after unary operator: '-light-font-color'
(144,26): run-time error CSS1039: Token not allowed after unary operator: '-font-size-a'
(191,30): run-time error CSS1039: Token not allowed after unary operator: '-font-size-a'
 */
:root {
    --footer-bg-color: #252525;
    --font-color: whitesmoke;
    --light-font-color: grey;
    --ax5-orange: tomato;
    --font-size-h3: 1.2rem !important;
    --font-size-a: 0.95rem !important;
    --social-svg-width: 1.65rem;
}

#Ax5Footer {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 320px;
    min-height: 280px;
    /*max-width: 1920px;*/
    background-color: var(--footer-bg-color);
    display: grid;
    padding-top: 1.5rem;
    justify-items: center;
    align-items: center;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    font-family: Raleway, sans-serif !important;
    z-index: 9999;
    position: relative;
}

.footer-section-container {
    width: 90%;
    height: 100%;
    min-width: 1000px;
    display: flex;
    align-items: center;
    position: relative;
}

.footer-section {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: var(--font-color);
}

.footer-section h3 {
    font-weight: 500 !important;
    font-size: var(--font-size-h3);
    width: 75%;
    margin: 0;
    opacity: 0.75;
}

.footer-section ul {
    margin-top: 1rem;
    list-style: none;
    width: 75%;
    height: 100%;
    line-height: 2.25rem;
}

.footer-link-text {
    display: flex;
    text-decoration: none;
    color: var(--light-font-color);
    transition: color 0.20s ease-in-out, margin 0.20s ease-in-out;
    font-size: var(--font-size-a);
    font-weight: 400 !important;
    white-space: nowrap;
}

.footer-link-text:hover {
    color: var(--ax5-orange);
    margin: 0 0 0 0.35rem;
}

.social-ui-footer {
    display: flex;
    width: 100%;
    margin: 0.75rem 0;
}

.social-ui-footer li {
    display: flex;
    align-items: center;
    height: 2.5rem;
}

.social-ui-footer li a {
    display: flex;
    height: 100%;
}

.social-ui-footer li:hover svg {
    fill: var(--ax5-orange);
    transform: translateY(-0.125rem);
}

.social-ui-footer svg {
    width: var(--social-svg-width);
    fill: var(--font-color);
    margin-right: 1.15rem;
    transition: fill 0.20s ease-in-out, transform 0.20s ease-in-out;
}

.youtube-li svg {
    width: calc(var(--social-svg-width) + 0.5rem);
    margin-top: -0.25rem;
}

.facebook-li svg {
    margin-top: -0.25rem;
}

.axeso5 svg {
    width: 8.75rem;
    fill: var(--ax5-orange);
}

.data-fiscal {
    margin-top: 1.5rem;
    width: 80px;
    height: 110px;
    /*width: 53px;
    height: 73px;*/
    display: flex;
    justify-content: center;
}

.data-fiscal-link {
    font-size: 0;
    width: 100%;
    background-image: url(//www.afip.gob.ar/images/f960/DATAWEB.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.copyright-container {
    color: var(--light-font-color);
    font-size: calc(var(--font-size-a) - 0.05rem);
    width: 100%;
    text-align: center;
    margin: 1.5rem 0;
}

@media screen and (max-width: 1300px) {
    .game-section {
        display: none;
    }

    .footer-section-container {
        width: 90%;
        min-width: 750px;
    }

    .footer-section {
        width: 25%;
        min-width: unset;
    }
}

@media only screen and (max-width: 768px /*and (orientation: portrait*/) {

    .footer-section {
        display: none;
    }

    .footer-section-container {
        width: 95%;
        min-width: unset;
        align-items: center;
        justify-content: center;
    }

    .axeso5 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .axeso5 svg {
        width: 9rem;
        padding-top: 0.5rem;
    }

    .copyright-container {
        font-size: calc(var(--font-size-a) - 0.05rem);
        width: 90%;
    }
}

/*@media (prefers-reduced-motion: reduce) {
    .footer-link-text, .social-ui-footer svg {
        transition: none;
    }
}*/
