*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    outline: 0;
    padding: 0
}

:not(.material-icons) {
    font-family: 'Open Sans', sans-serif;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased
}

:root {
    --light: #fff;
    --body: #f2f0f0;
    --body-alpha: rgba(242, 240, 240, .9);
    --size-content: 1024px;
    --shadow: #b6b6b6;
    --red: #d71f3c;
    --red-light: #e27887;
    --loading-1: #e9fbfc;
    --loading-2: #bef2f4;
    --loading-3: #92e9ed;
    --loading-4: #66e0e6;
    --loading-5: #3ad7df
}

html {
    font-size: 16px;
    transition: .5s font-size
}

@media (max-width:768px) {
    html {
        font-size: 14px
    }
}

body {
    background-color: var(--body);
    overflow-x: hidden
}

@media (max-width:768px) {
    body {
        overflow-y: hidden
    }
}

.grid {
    display: grid;
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-template-rows: max-content;
    align-content: start;
    justify-content: baseline;
    max-width: 100%
}

@media (max-width:768px) {
    .grid {
        max-width: 100%;
        width: 100%
    }
}

.grid.col-8 {
    height: fit-content;
    grid-template-columns: repeat(7, 1fr)
}

@media (max-width:768px) {
    .grid.col-sm-1 {
        height: fit-content;
        grid-template-columns: repeat(1, 1fr) !important
    }
}

.login {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100vw;
    height: 100vh;
    padding: 5%;
    overflow: hidden
}

.login picture {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -2
}

.login picture img {
    min-width: 100%;
    height: 100vh;
    object-fit: cover
}

.login .login__header {
    color: var(--light);
    font-size: 9rem;
    text-shadow: 2px 2px 4px var(--shadow)
}

.login .login__header-title {
    font-size: inherit;
    line-height: 1;
    font-weight: 400
}

.login .login__header-title--bold {
    font-size: inherit;
    font-weight: 700;
    line-height: .88
}

.login .login__button img {
    margin-right: 10px
}

.login .float-logo {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -1
}

@media only screen and (max-width:768px) {
    .login {
        padding: 3.875rem 3.875rem 8.125rem;
        background-position: top
    }

    .login .login__header {
        font-size: 48px
    }

    .login .login__header-title--bold {
        max-width: 4em
    }
}

button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    transition: background .8s
}

button.btn {
    position: relative;
    width: 280px;
    min-width: 120px;
    height: 3rem;
    padding: 0 1.5rem;
    font-size: 1rem;
    border-radius: 1.875rem;
    cursor: pointer
}

button.btn i {
    position: absolute;
    left: 5px;
    top: .5rem
}

button.large {
    height: 4rem;
    font-size: 1.5rem
}

button.large i {
    font-size: 2.5rem
}

@media only screen and (max-width:768px) {
    button.btn {
        width: 100%
    }

    button.btn i {
        top: .6rem
    }
}

button.btn-fill-red {
    color: var(--light);
    border: 2px solid transparent;
    background-color: var(--red)
}

button.btn-fill-red:hover {
    background: var(--light);
    background: var(--red-light) radial-gradient(circle, transparent 1%, var(--red) 1%) center/15000%
}

button.btn-fill-red:active {
    background-color: var(--light);
    background-size: 100%;
    transition: background 0s
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 125px;
    background: 0 0
}

.loading.full-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background-color: var(--body);
    z-index: 999
}

.loading.transparency {
    background-color: var(--body-alpha)
}

.loading ul {
    display: flex
}

.loading ul li {
    width: 20px;
    height: 20px;
    margin: 10px;
    list-style-type: none;
    transition: .5s all ease
}

.loading ul li {
    border-radius: 5px
}

.loading ul li:nth-child(1) {
    animation: right-1 1s infinite alternate;
    background-color: var(--loading-1);
    animation-delay: .1s
}

.loading ul li:nth-child(2) {
    animation: right-2 1s infinite alternate;
    background-color: var(--loading-2);
    animation-delay: .2s
}

.loading ul li:nth-child(3) {
    animation: right-3 1s infinite alternate;
    background-color: var(--loading-3);
    animation-delay: .3s
}

.loading ul li:nth-child(4) {
    animation: right-4 1s infinite alternate;
    background-color: var(--loading-4);
    animation-delay: .4s
}

.loading ul li:nth-child(5) {
    animation: right-5 1s infinite alternate;
    background-color: var(--loading-5);
    animation-delay: .5s
}

@keyframes right-1 {
    0% {
        transform: translateY(-25px)
    }

    100% {
        transform: translateY(25px)
    }
}

@keyframes right-2 {
    0% {
        transform: translateY(-35px)
    }

    100% {
        transform: translateY(35px)
    }
}

@keyframes right-3 {
    0% {
        transform: translateY(-40px)
    }

    100% {
        transform: translateY(40px)
    }
}

@keyframes right-4 {
    0% {
        transform: translateY(-45px)
    }

    100% {
        transform: translateY(45px)
    }
}

@keyframes right-5 {
    0% {
        transform: translateY(-50px)
    }

    100% {
        transform: translateY(50px)
    }
}

.hide {
    display: none !important
}

.notification___container {
    position: fixed;
    pointer-events: none;
    top: 90px;
    right: 0;
    z-index: 9999
}

.toast__container {
    position: relative;
    width: auto;
    border-radius: 5px 0 0 5px;
    min-width: 365px;
    margin: 0 0 16px 16px
}

.toast {
    position: relative;
    padding: 6px 24px 6px 56px;
    pointer-events: auto;
    border-radius: 5px 0 0 5px;
    box-shadow: 2px 2px 5px var(--shadow)
}

.toast h2 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 0
}

.toast p {
    font-size: .875rem;
    margin-top: 0;
    margin-bottom: 0
}

.toast.error {
    background-color: var(--red)
}

.toast.error h2,
.toast.error i,
.toast.error p {
    color: var(--light)
}

.toast__close {
    position: absolute;
    width: 25px;
    height: 25px;
    padding: .4em;
    top: 1px;
    right: 1px;
    float: right;
    cursor: pointer;
    outline: 0;
    border: 0;
    background: 0 0;
    -webkit-appearance: none
}

.toast__close i {
    font-size: 1.5em;
    color: var(--light)
}

.toast__close:hover {
    background: rgba(0, 0, 0, .08);
    border-radius: 50px;
    transition: background 0s
}

.toast__close:active {
    transition: background .8s;
    background: rgba(0, 0, 0, .16)
}

.toast__icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 100%;
    overflow: hidden
}

.toast__icon i {
    font-size: 88px;
    margin-left: -35px;
    margin-top: -20px
}

to {
    opacity: 1;
    right: 0
}

to {
    opacity: 0;
    right: -380px
}

.toast {
    @include cross-browser(border-radius, 0);
    height: 100%
}