@import './reset.css';
@import './partials/header.css';
@import './partials/footer.css';
@import './partials/auth.css?v=1.0';
@import './partials/admin.css';
@import './partials/tables.css';
@import './partials/intro.css';
@import './partials/info.css';
@import './partials/404.css';
@import './partials/commerce.css';
@import './partials/notification.css';


:root {
    /* Fonts */

    --font-family: 'Roboto Condensed', sans-serif;
    --font-family-mono: 'Roboto Mono', monospace;

    /* Colors */

    --background-color: hsl(214, 18%, 98%);
    --primary-color: rgb(55,65,146);
    --secundary-color: rgb(54,169,225);
    --primary-color-light: #2a7aba;
    --primary-color-very-light: #59acff;
    --black: hsl(309, 4%, 32%);
    --blue: hsl(191, 23%, 94%);
    --blue-medium: hsl(191, 23%, 64%);
    --blue-dark: rgb(55,65,146);
    --green: #12c457;
    --red: #c4001d;







    --border-radius: 4px;

    /* Shadows */
    --shadow-img-coupon: 0px 20px 20px rgba(0, 0, 0, 0.08);

    /* Width */
    --max-width-background: 95vw;
}

::selection {
    color: white;
    background-color: var(--primary-color);
}

body {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: var(--font-family);
    background-color: var(--background-color);
}

.main {
    /*padding-top: 4rem;*/
    max-width: var(--max-width-background);
    /* min-height: calc(100vh - 30rem); */
    margin: 0 auto;
}

.fadeinup {
    animation-name: fadeInUp;
    animation-duration: 1.5s;
    opacity: 0;
    animation-fill-mode: forwards;
    text-decoration: none;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 10px, 0);
    }
}

.button__primary,
.button__primary--notranslate,
.button__shop {
    color: #fff;
    background: var(--primary-color);
    white-space: nowrap;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 14px;
    -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    text-decoration: none;
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
    cursor: pointer;
    border-style: unset;
    outline: none;
    margin:0 5px;
}

.button__primary:hover,
.button__shop:hover {
    background-color: var(--primary-color-light);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.button__primary.button__pressed {
    background-color: var(--primary-color-light);
}

.button__primary--notranslate:hover {
    background-color: var(--primary-color-light);
}

.button__shop {
    font-size: 1.5rem;
    padding: 0.5em 2em;
    height: auto;
    margin-right: 0;
}

.form__shop {
    display: flex;
    justify-content: center;
}

/**/

/**/

.card {
    position: relative;
    width: 280px;
    height: auto;
    background-color: var(--blue);
    margin: 60px auto;
    padding: 60px 20px 20px;
    border-radius: var(--border-radius);
}

.card__avatar {
    position: absolute;
    top: -60px;
    left: 90px;
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius);
    margin-right: 15px;
    -webkit-box-shadow: 0 2px 5px rgba(51, 51, 79, 0.15);
    box-shadow: 0 2px 5px rgba(51, 51, 79, 0.15);
    font-weight: 700;
    font-size: 24px;
    line-height: 55px;
    border: 1px solid var(--background-color);
}

.card__title {
    color: var(--blue-dark);
    position: relative;
    font-size: 30px;
    font-weight: 600;
}

.card__tag {
    font-size: 16px;
    font-weight: 400;
    background-color: #49496d;
    color: white;
    height: 30px;
    padding: 0 10px;
    border-radius: 15px;
    margin-left: 15px;
}

.shop--mobile {
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: 4rem;
    background-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8;
}

.shop__coupon {
    background-color: var(--primary-color);
    color: white;
    height: 40px;
    line-height: 40px;
    width: 80vw;
    text-align: center;
    -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

.shop--desktop {
    display: none;
}

@media (min-width: 700px) {
    .shop--mobile {
        display: none;
    }

    .shop--desktop {
        display: flex;
        justify-content: flex-start;
    }
}

@media (min-width: 700px) {
    .main {
        /*padding-top: 5rem;*/
    }

    .form__shop {
        justify-content: flex-end;
    }
}

@media (min-width: 768px) {
    .onlyMobile {
        display: none;
    }

    .column {
        margin-bottom: 0px;
    }
}

@media (min-width: 320px) {
    .column {
        margin-bottom: 10px;
    }
}


.flex-list-double {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    font-size: 0.8em;
    /*width: 60%;*/

}

.flex-list-double div {
    margin-top: 10px;
    display:inline-flex;
}

.flex-list {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    overflow: auto;

}

.flex-list-left {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: left;
    overflow: auto;
}