@import 'reset.css';
@import 'partials/buttons.css';
@import 'partials/auth.css';
@import 'partials/sidenav.css';
@import 'partials/users.css';
@import 'partials/tables.css';
@import 'partials/home.css';
@import 'partials/navbar.css';
:root {

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

    --background-color: hsl(218, 57%, 97%);
    --primary-color: hsl(0, 2%, 24%);
    --primary-color-light: hsl(0, 2%, 34%);

    --max-width-background: 1200px;
    --border-radius: 4px;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
}

.main--login {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    max-width: var(--max-width-background);
    margin: 0 auto;
}

.main {
    display: flex;
    align-items: flex-start;
    /*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;
}

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