﻿/*
    Couleurs
    Hover pour les boutons
    Boutons de bordure, flottants
    Frame (ombres, flou, disposition)
    Police
    Taille de la police



    Dispositions :
        - centré horizontalement et verticalement (Login.aspx, Summary_Order_Payment.aspx, etc.)
        - total de la page horizontalement, défilement vertical
*/

:root {
    /* Disposition */
    --radius: 6px;
    --margin: 20px;
    --margin-half: 10px;
    --padding: 20px;
    --padding-half: 10px;
    --full-px: 20px;
    --half-px: 10px;
    --logo-height: 40px;
    --animation-duration: 0.25s;
    /* Couleurs */
    --color-primary: rgb(32, 56, 100);
    --color-secondary: rgb();
    --color-tertiary: rgb(242, 242, 242);
    --color-alert-red: rgb(139, 0, 0);
    --color-alert-green: rgb(0, 146, 0);
    /* Police */
    --font-main: 'Montserrat';
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

canvas {
    background-color: transparent; /*rgba(22,33,83,1)*/
    position: fixed;
    left: 0;
    top: 0;
}

#page {
    display: none;
}

#loading {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 8;
    background-color: white;
    background-repeat: no-repeat;
    background-position: center;
}

body {
    background-color: var(--color-tertiary);
    overflow-x: hidden;
}

    body::-webkit-scrollbar {
        width: 8px;
        height: 5px;
        background-color: var(--color-tertiary);
        border-radius: 50px;
    }

body::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 50px;
}

/* PLAN */

.plan-0 {
    z-index: 0;
}

.plan-1 {
    z-index: 1;
}

.plan-2 {
    z-index: 2;
}

.plan-3 {
    z-index: 3;
}

.plan-4 {
    z-index: 4;
}

.plan-5 {
    z-index: 5;
}

.plan-6 {
    z-index: 6;
}

.plan-7 {
    z-index: 7;
}

.plan-8 {
    z-index: 8;
}

.plan-9 {
    z-index: 9;
}

/* PAGE */
.position-corner {
    top: 0px;
    left: 0px;
}

.container {
    min-height: calc(100vh - 60px);
}

.margin-bottom {
    margin-bottom: 20px;
}

.margin-bottom-half {
    margin-bottom: 10px;
}

.margin-shop {
    margin: 20px 0px 20px 0px;
}

.padding-half {
    padding: var(--half-px);
}

.padding-full {
    padding: var(--full-px);
}

.margin-half {
    margin: var(--half-px);
}

.margin-full {
    margin: var(--full-px);
}

.border {
    border: 1px solid var(--color-tertiary);
}

.no-border {
    border: none;
}

.index {
    z-index: 9;
}

.width-responsive {
    width: 50%;
}

.connection-panel {
    width: 400px;
}

/* FORMULAIRE */
.form:hover {
    opacity: 1;
    cursor: pointer;
    background-color: var(--color-tertiary);
}

.form-selected {
    opacity: 1;
    cursor: pointer;
    background-color: var(--color-tertiary);
}

.form-width-max {
    max-width: 600px;
}

.form-padding {
    padding: var(--full-px);
}

/* CONTRÔLES */

    .button-expanded input {
        width: 100%;
        text-align: start;
        white-space: break-spaces;
    }

    .button-expanded input:hover {
        width: 100%;
        justify-content: start;
    }



.background-initial {
    background-color: white;
}

.background-transparent {
    background-color: transparent;
}

.background-blured {
    background-color: rgba(255,255,255,0.5);
    position: fixed;
    z-index: 5;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.background-opaque {
    background-color: black;
    opacity: 0.3;
}

.background-colored {
    background-color: lightcoral;
}

.background-colored-red {
    background-color: var(--color-alert-red);
}

.background-colored-green {
    background-color: var(--color-alert-green);
}

.background-tertiary {
    background-color: var(--color-tertiary);
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: var(--full-px);
}

.box {
    background-color: white;
    font-size: 150%;
    height: 350px;
    line-height: 12px;
}

.general-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 10px;
    justify-content: center;
}

.general-box {
    width: 100%;
}

.flex{
    display: flex;
    flex-direction: row;
}

.searchBarContainer {
    width: 30vw;
    padding-left: 10px;
    height: var(--logo-height);
}

.textbox {
    height: 40px;
    padding-left: 10px;
    border-radius: var(--radius);
    border: 1px solid var(--color-tertiary);
    outline: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.textbox:hover {
    /*background-color: var(--color-tertiary);*/
}

.textbox:focus {
    /*background-color: var(--color-tertiary);*/
}

.label {
    color: var(--color-primary);
    font-family: var(--font-main);
    font-size: 14px;
    letter-spacing: 0px;
    margin: 0px;
    overflow-wrap: break-word;

}

    .label h1 {
        font-size: 17px;
    }

    .label h2 {
        font-size: 16px;
    }

    .label h3 {
        font-size: 15px;
    }

    .label h4 {
        font-size: 14px;
    }

    .label a {
        color: var(--color-primary);
    }

.label-start {
    text-align: start;
}

.label-end {
    text-align: end;
}

.label-justify {
    text-align: justify;
}

.label-center {
    text-align: center;
}

.label-underline {
    text-decoration: underline;
}

.label-bold {
    font-weight : bold;
}

.label-break {
    width: 100%;
    text-align: start;
    white-space: break-spaces;
}

.label-alert-red {
    color: var(--color-alert-red);
}

.label-alert-green {
    color: var(--color-alert-green);
}

.footer-label {
    font-weight: initial;
}

.hyperlink-hover:hover{
    color: darkred;
}

.dropdownlist {
    color: var(--color-primary);
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    outline: none;
    width: 100%;
    border: none;
}

.dropdownlist:hover {
    background-color: var(--color-tertiary);
}

.dashboardButton {
    background-color: white;
    height: 40px;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
    color: var(--color-primary);
    font-family: var(--font-main);
    font-size: 14px;
    letter-spacing: 0px;
    border: none;
    outline: none;
}

    .dashboardButton:focus {
        outline: none;
    }

    .dashboardButton:hover {
        height: 40px;
        width: auto;
        padding-left: 10px;
        padding-right: 10px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        background-color: var(--color-tertiary);
        color: var(--color-primary);
        font-size: 14px;
        letter-spacing: 0px;
        border: none;
        cursor: pointer;
        transition: background-color var(--animation-duration);
    }

.tag {
    background-color: white;
    border: 1px solid lightgray;
}

    .tag:hover {
        background-color: lightgray;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        border: 1px solid transparent;
    }

.NavigationButton {
    background-color: transparent;
    height: var(--logo-height);
    padding: 5px;
    color: var(--color-primary);
    border: none;
    outline: none;
}

    .NavigationButton:focus {
        outline: none;
    }

    .NavigationButton:hover {
        padding: 5px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        background-color: rgb(242, 242, 242);
        color: var(--color-primary);
        border: 0px solid var(--color-primary);
        cursor: pointer;
        transition: background-color 0.5s;
        border-radius: 20px;
    }

.shop-responsive-items {
    width: calc(100vw - 250px - 60px - 8px);
}

@media (min-width: 1100px) {

}

@media (max-width: 1100px) {

}

@media (max-width: 600px) {
/*    .wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-gap: 10px;
        background-color: transparent;
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        justify-content: stretch;
    }*/

    .searchBarContainer {
        width: 100%;
        padding-left: 10px;
        height: var(--logo-height);
    }

    .flex {
        display: flex;
        flex-direction: column;
    }

    .footer-label {
        font-weight: bold;
    }

    .dropdownlist {
        background-color: white;
        color: var(--color-primary);
        height: 40px;
        padding-left: 10px;
        padding-right: 10px;
        outline: none;
        border: none;
    }

        .dropdownlist:hover {
            background-color: var(--color-tertiary);
        }

    .margin-shop {
        margin: 20px;
    }

    .width-responsive {
        width: 100%;
    }

    .connection-panel {
        width: calc(100% - 40px);
    }

    .shop-responsive-advanced {
        display: none;
    }

    .shop-responsive-items {
        width: calc(100vw - 0px - 40px - 8px);
    }

    .scrollbar_y::-webkit-scrollbar {
        display: none;
    }

    .scrollbar_y::-webkit-scrollbar-thumb {
        display: none;
    }
}

/* A TRAITER ------------------------------------------------------------------------------------------------------------------------------- */
.noOutline {
    outline: none;
}

.flag img {
    width: 65px;
    height: 35px;
}

.wrapperNavigation {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20vh, 20vh));
    grid-gap: 20px;
    background-color: transparent;
    padding: 10px;
    align-items: center;
    justify-content: center;
}

.contents {
    display: contents;
}

.formElementRow {
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    align-content: center;
    vertical-align: central;
}

    .formElementRow label {
        color: var(--color-primary);
        font-family: var(--font-main);
        font-size: 14px;
        font-weight: bold;
        letter-spacing: 3px;
        margin: 0.3%;
    }

    .formElementRow input {
        color: var(--color-primary);
        font-family: var(--font-main);
        font-size: 14px;
        letter-spacing: 3px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 30px;
        border: 1px solid gray;
        border-radius: 5px;
        font-weight: bold;
    }

.noPadding {
    padding: 0px 0px 0px 0px;
}

    .noPadding label {
        padding: 0px 0px 0px 0px;
    }

    .noPadding input {
        padding: 0px 0px 0px 0px;
    }

.marginLeft {
    margin-left: 10px;
}

.marginRight {
    margin-right: 10px;
}

.marginLeft-full {
    margin-left: var(--full-px);
}

.marginRight-full {
    margin-right: var(--full-px);
}

NoBorder {
    border: solid 0px #c1c1c1;
}

.display-none {
    display: none;
}

.panelGridSLShop {
    display: flex;
    vertical-align: top;
    justify-content: initial;
    z-index: 2;
}

.radius1001 {
    border-top-left-radius: var(--radius);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: var(--radius);
}

.radius0110 {
    border-top-left-radius: 0px;
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    border-bottom-left-radius: 0px;
}

.radius0011 {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
}

.radius1100 {
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.radius1111 {
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
}

.radius0100 {
    border-top-left-radius: 0px;
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.redAlert {
    font-size: 10px;
    color: rgb(192,0,0);
    font-weight: bold;
    border: var(--border);
    font-family: var(--font-main);
    text-align: end;
}

.blueAlert {
    font-size: 10px;
    color: rgb(186,203,217);
    font-weight: bold;
    border: var(--border);
    font-family: var(--font-main);
    text-align: end;
}

.mainPriceGrid {
    font-size: 20px;
    color: var(--color-primary);
    font-weight: bold;
    border: var(--border);
    font-family: var(--font-main);
}

.basePrice {
    font-size: 14px;
    color: darkred;
    text-decoration: none;
    font-weight: bold;
    font-family: var(--font-main);
}

.evolPrice {
    font-size: 20px;
    color: darkgreen;
    font-weight: bold;
    font-family: var(--font-main);
}

.divItemImage {
    align-content: center;
    align-items: center;
    align-self: center;
    justify-content: center;
    height: 200px;
    width: 200px;
    object-fit: contain;
    margin-top: 0px;
    image-rendering: optimizeSpeed;
    padding: 10px 10px 10px 10px;
    opacity: 0.9;
}

    .divItemImage:hover {
        cursor: pointer;
        opacity: 1;
        transition: 1s;
    }

.loadingLogo {
    object-fit: contain;
    outline: none;
    width: 100px;
    height: 100px;
}

.background {
    background-color: lightblue;
}

.containDetail {
    object-fit: contain;
    cursor: zoom-in;
    outline: none;
    aspect-ratio: 1 / 1;
    width: 100%;
}

.containImage {
    object-fit: contain;
    width: 100%;
    height: 100%;
    max-width: 50vh;
    /*max-height: 50vw;*/
    outline: none;
}

.containImageList {
    object-fit: contain;
    width: 55px;
    height: 55px;
    cursor: zoom-in;
    outline: none;
}

.FastBuyMenu {
    position: relative;
    height: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: white;
    text-align: center;
    display: block;
}

.barStatus {
    width: 5px;
    height: auto;
    border-radius: 100px;
    margin-right: 10px;
}

.barStatusOK {
    background-color: green;
}

.barStatusBlue {
    background-color: dodgerblue;
}

.barStatusYellow {
    background-color: darkorange;
}

.barStatusRed {
    background-color: red;
}

/*AutoComplete flyout */ .autocomplete_completionListElement {
    visibility: hidden;
    margin: 0px !important;
    background-color: inherit;
    color: windowtext;
    border: buttonshadow;
    border-width: 1px;
    border-style: solid;
    cursor: pointer;
    overflow: auto;
    height: 200px;
    text-align: left;
    list-style-type: none;
}
/* AutoComplete highlighted item */ .autocomplete_highlightedListItem {
    background-color: #ffff99;
    color: black;
    padding: 1px;
}
/* AutoComplete item */ .autocomplete_listItem {
    background-color: window;
    color: windowtext;
    padding: 1px;
}

.CompletionList {
    top: 80px;
    padding-top: 10px;
    text-decoration: none;
    background-color: white;
    list-style-type: none;
    height: 50vh;
    overflow-y: auto;
    margin-top: var(--half-px);
}

.CompletionListItem {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.CompletionListHighlightedItem {
    background-color: rgb(186,203,217);
    cursor: pointer;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .CompletionListHighlightedItem :hover {
        background-color: rgb(186,203,217);
        cursor: pointer;
        min-height: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .CompletionListHighlightedItem a:hover {
        color: rgb(186,203,217);
        cursor: pointer;
        min-height: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

.wrapperMin {
    display: grid;
    grid-template-columns: 65px;
    grid-gap: 10px;
    background-color: transparent;
    margin-right: 20px;
}

.boxMin {
    background-color: white;
    border-radius: 4px;
    height: 65px;
    width: 65px;
    padding: 2px;
}

.wrapperDetail {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 500px));
    /*grid-template-columns: 2fr 1fr 1fr;*/
    /*grid: auto-flow / 300px 1fr;*/
    grid-gap: 20px;
    background-color: transparent;
    justify-content: center;
}

.boxDetail {
    background-color: transparent;
    font-size: 150%;
    height: auto;
    border: 0px solid lightgray;
    border-radius: 6px;
}

.heightHalf {
    height: 50%;
}

.heightFull {
    height: 100%;
}

.height40-absolute {
    height: 40px;
}

.widthHalf {
    width: 50%;
}

.widthFull {
    width: 100%;
}

.width30 {
    width: 30%;
}

.width50 {
    width: 50%;
}

.width70 {
    width: 70%;
}

.width10 {
    width: 10%;
}

.width90 {
    width: 90%;
}

.height-itemcontainer {
    min-height: calc(100vh - 220px);
}

.heightAuto {
    height: auto;
}

.widthAuto {
    width: auto;
}

.margin10 {
    margin: 10px;
}

.radius4 {
    border-radius: 4px;
}

.radius1111 {
    border-radius: 6px;
}

.radius8 {
    border-radius: 8px;
}

.radius12 {
    border-radius: 12px;
}

.radius20 {
    border-radius: 20px;
}

.radius12Bottom {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.noRadius {
    border-radius: 0px;
}

.noBorder {
    border: none;
}

    .noBorder :hover {
        border: none;
    }

    .noBorder div:hover {
        border: none;
    }

.modalPopExtender {
    position: fixed;
    z-index: 6;
    left: 0%;
    top: 0%;
}

/* Demonstrate a "mostly customized" scrollbar
 * (won't be visible otherwise if width/height is specified) */
.scrollbar_x::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: var(--color-tertiary); /* or add it to the track */
    border-radius: 50px;
    display: none;
}
/* Add a thumb */
.scrollbar_x::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 50px;
    display: none;
}

/* Demonstrate a "mostly customized" scrollbar
 * (won't be visible otherwise if width/height is specified) */
.scrollbar_y::-webkit-scrollbar {
    width: 8px;
    height: 5px;
    background-color: transparent; /* or add it to the track */
    border-radius: 50px;
    display: none;
}
/* Add a thumb */
.scrollbar_y::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 50px;
    display: none;
}

.scroll_x {
    overflow-x: auto;
    overflow-y: hidden;
}

.pointer {
    cursor: pointer;
}

    .pointer:hover {
        cursor: pointer;
    }

.cursor-grab {
    cursor: grab;
}

    .cursor-grab:hover {
        cursor: grab;
    }

/*.shadow {*/
    /*box-shadow: 0 0 15px rgba(0, 0, 0, 1);*/
    /*box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}*/

.shadow {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.inline {
    display: inline;
}

.paddingLateral5 {
}

    .paddingLateral5 input {
        padding-left: 5px;
        padding-right: 5px;
    }

.chkChoice label {
    padding-left: 5px;
}

.textjustify {
    text-align: justify;
    text-justify: inter-word;
}

.paddingRight {
    padding-right: 5px;
}

.paddingRight20 {
    padding-right: 20px;
}

.paddingLeft20 {
    padding-left: 20px;
}

.paddingLeft10 {
    padding-left: 10px;
}

.paymentLogo {
    width: 45px;
    height: 45px; /*28px*/
    margin-right: 10px;
}

.PaymentReceipt {
    display: flex;
    justify-content: center;
}

.FlexVerticalCenter {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.FlexVerticalEnd {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.FlexVerticalStart {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.flexColumn {
    display: flex;
    flex-direction: row;
}

.flexColumnStart {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.flexColumnEnd {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.flexColumnAround {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.flexColumnCenter {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flexColumnBetween {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flexRowCenter {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.flexColumnInit {
    display: flex;
    flex-direction: column;
}

.flexColumnList {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.flexRowBetween {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.flexRowAround {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.flexRowStart {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.flexRowEnd {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.flexRow {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-right: 0px;
}

.flexRowInit {
    display: flex;
    flex-direction: row;
}

.FlexEndVertical {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.FlexCenterVertical {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flexRowCenter {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.UnderText {
    text-align: end;
    font-size: 5px;
}

.dashboardSection2Sub {
    margin-left: 10px;
}

.blured {
    background-color: rgba(255,255,255,0.5);
    width: auto;
    height: auto;
    position: fixed;
    z-index: 5;
    backdrop-filter: blur(10px);
    border-radius: 4px;
    -webkit-backdrop-filter: blur(10px);
}

.section {
    border-bottom: 1px solid rgb(204,204,204);
    margin-top: 10px;
    margin-bottom: 10px;
}

.test {
    position: absolute;
    width: 800px;
    height: 300px;
}

.position-fixed {
    position: fixed;
}

.position-absolute {
    position: absolute;
}

.position-relative {
    position: relative;
}

.move-shift-top {
    -webkit-animation-name: move-shift-top;
    animation-name: move-shift-top;
    -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation-duration: var(--animation-duration);
    z-index: 4;
}

@keyframes move-shift-top {
    0% {
        -webkit-transform: translate3d(0, -400px, 0);
        transform: translate3d(0, -400px, 0);
        opacity: 0;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.move-shift-left {
    -webkit-animation-name: move-shift-left;
    animation-name: move-shift-left;
    -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation-duration: var(--animation-duration);
    z-index: 4;
}

@keyframes move-shift-left {
    0% {
        -webkit-transform: translate3d(-400px, 0px, 0);
        transform: translate3d(-400px, 0px, 0);
        opacity: 0;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.move-shift-right {
    -webkit-animation-name: move-shift-right;
    animation-name: move-shift-right;
    -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation-duration: var(--animation-duration);
    z-index: 4;
}

@keyframes move-shift-right {
    0% {
        -webkit-transform: translate3d(400px, 0px, 0);
        transform: translate3d(400px, 0px, 0);
        opacity: 0;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.move-shift-down {
    -webkit-animation-name: move-shift-down;
    animation-name: move-shift-down;
    -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation-duration: var(--animation-duration);
    z-index: 4;
}

@keyframes move-shift-down {
    0% {
        -webkit-transform: translate3d(0, 400px, 0);
        transform: translate3d(0, 400px, 0);
        opacity: 0;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.move-shift-down-hide {
    -webkit-animation-name: move-shift-down-hide;
    animation-name: move-shift-down-hide;
    -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation-duration: var(--animation-duration);
    z-index: 4;
}

@keyframes move-shift-down-hide {
    0% {
        -webkit-transform: translate3d(0, 400px, 0);
        transform: translate3d(0, 400px, 0);
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 0;
        display: none;
    }
}

.line-bottom {
    border-bottom: 1px solid var(--color-tertiary);
}

.align-self-center {
    align-self: center;
}

.logo-default-dimensions {
    height: var(--logo-height);
    padding: 5px;
}

.panel-over {
    width: calc(100% - 40px);
    height: calc(100% - 100px);
    margin-top: 80px;
    margin-left: 20px;
}

.button-selected {
    background-color: var(--color-tertiary);
    pointer-events: none;
}