@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;600;700&display=swap');

:root
{
    --color-black: black;
    --color-white: white;
    --color-green: #3b9f3b;
    --color-whitehover: #a9a9a9;
    --color-red: rgb(185, 0, 0);
    --color-primary: #167bb4;
    --color-warning: orange;
    --color-grey: #494949;
    --color-dark-grey: #3b3b3b;
    --transition-delay: .4s;
    --border-img: 6px;
}


/***********************************************************************************/
/*                                                                                 */
/*                                 DEBUT GENERAL                                   */
/*                                                                                 */
/***********************************************************************************/

*
{
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
}

body
{
    background-color: var(--color-black);
    overflow-x: hidden;
}

a
{
    text-decoration: none;
    color: var(--color-white);
}

.col-50-50
{
    display: grid;
    grid-template-columns: 50% 50%;
    position: relative;
    margin-top: 12%;
    width: 100%;
    z-index: -1;
}

@media all and (max-device-width: 600px)
{
    .schedule
    {
        margin: -15% 15% 0 15%;
    }
}


.button
{
    display: inherit;
    color: white;
    font-size: 12px;
    border-radius: 4px;
    line-height: initial;
    padding: 4px 7px;
}

.littlebutton .img
{
    margin-top: 10px;
}

.littlebutton button
{
    display: inherit !important;
    color: white !important;
    font-size: 12px !important;
    border-radius: 4px !important;
    line-height: initial !important;
    padding: 4px 7px !important;
}

.littlebutton img
{
    margin: 5px;
    flex: none;
    height: 65px;
    object-fit: cover;
}

.littlebutton .middle
{
    margin-bottom: 15px;
}

.littlebutton form
{
    display: flex !important;
}

.dangerbutton
{
    background: var(--color-red) !important;
}

.dangerbutton:hover
{
    background: #880000 !important;
}

.successbutton
{
    background: var(--color-green) !important;
}

.successbutton:hover
{
    background: #005600 !important;
}

.primarybutton
{
    background: var(--color-primary) !important;
}

.primarybutton:hover
{
    background: #0d62b7 !important;
}

.warningbutton
{
    background: var(--color-warning) !important;
}

.warningbutton:hover
{
    background: #b07300 !important;
}

.secondarybutton
{
    background: var(--color-grey) !important;
}

.secondarybutton:hover
{
    background: #363636 !important;
}

/***********************************************************************************/
/*                                                                                 */
/*                                   FIN GENERAL                                   */
/*                                                                                 */
/***********************************************************************************/


/***********************************************************************************/
/*                                                                                 */
/*                          DEBUT HEADER (NAVBAR + LOGO)                           */
/*                                                                                 */
/***********************************************************************************/

.navbar h2
{
    color: var(--color-white);
    font-size: 18px;
}

.navbar .headerbutton h2
{
    position: relative;
    display: inline-block;
    padding: 12px 27px;
    text-align: center;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #e4e4e4;
    cursor: pointer;
    transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
    margin: 0 3em;
    border-top: 1px solid var(--color-white);
    border-bottom: 1px solid var(--color-white);
    text-shadow: 3px 3px 18px black;
}

.navbar .headerbutton h2::after,
.navbar .headerbutton h2::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    transition: .5s;
}

.navbar .headerbutton h2::after {
    top: -9px;
    left: -9px;
    border-top: 3px solid transparent;
    border-left: 3px solid transparent;
}

.navbar .headerbutton h2::before {
    bottom: -9px;
    right: -9px;
    border-bottom: 3px solid transparent;
    border-right: 3px solid transparent;
}

.navbar .headerbutton h2:hover {
    color: #ffffff;
}

.navbar .headerbutton h2:hover::after,
.navbar .headerbutton h2:hover::before {
    width: 30px;
    height: 30px;
    border-color: #ffffff;
}

.navbar .buttonmediaqueries
{
    display: inline-block;
}

.blackbar
{
    top: 0;
    height: 55px;
    background: rgba(0,0,0,1);
    width: 100%;
    padding: 5px 10px;
    z-index: 0;
    transition: .6s;
}
@media all and (max-device-width: 600px)
{
    .blackbar
    {
        height: 110px;
    }
}

.blackbartransparent
{
    background: rgba(0,0,0,0.6);
    transition: .6s;
}

.blackbarhome
{
    position: fixed;
}

.blackbarshop
{
    display: contents;
}


.maintitle
{
    font-weight: 600;
    color: var(--color-white);
    font-size: 24px;
}

.maintitlehome
{
    position: absolute;
    top: 0;
    left: 0;
    margin: 20px;
}

.navbarmenu
{
    display: none;
    margin: 6px;
}

@media all and (max-device-width: 800px)
{
    .toggle
    {
        margin-top: 22px;
        margin-left: 15px;
    }
}

@media all and (max-device-width: 600px)
{
    .maintitlehome, .headerbutton
    {
        display: none;
    }
    .navbarmenu
    {
        display: block;
    }

    .toggle
    {
        margin-top: 40px;
        margin-left: 37px;
        width: 65px;
        height: 46px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 999;
        position: relative;
    }
    .toggle.active
    {
        position: fixed;
    }
    .toggle::before
    {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--color-white);
        transform: translateY(-20px);
        transition: 0.25s;
        box-shadow: 0 18px 0 var(--color-white);
    }
    .toggle.active::before
    {
        transform: translateY(0) rotate(45deg);
        box-shadow: 0 0 0 var(--color-white);
    }
    .toggle::after
    {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--color-white);
        transform: translateY(17px);
        transition: 0.25s;
    }
    .toggle.active::after
    {
        transform: translateY(0) rotate(-45deg);
    }
    .navbarmenu .navigation
    {
        display: none;
    }
    .navbarmenu .navigation.active
    {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        z-index: 998;
        background: var(--color-black);
    }
    .navbarmenu .navigation li
    {
        position: relative;
        font-size: 30px;
        margin-bottom: 30px;
    }
    .navbarmenu .navigation li a
    {
        font-size: 1.5em;
        margin: 10px 0;
        display: inline-block;
    }
    .navbarmenu .navigation li a.menuitem
    {
        margin: 10px;
    }
    .navbarmenu .navigation li a.menuitem::before {
        content: "";
        display: block;
        left: 0;
        height: 32px;
        width: 0;
        margin-top: 30px;
        background-color: rgba(185,0,0,0.4);
        transition: width 0.4s;
        position: absolute;
    }

    .navbarmenu .navigation li a.menuitem:hover::before {
        width: 100%;
    }
}

.maintitle span
{
    font-size: 15px;
    margin-left: 4px;
    vertical-align: super;
}

.socialnetwork
{
    position: fixed;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    padding: 10px;
    z-index: 1;

}

.socialnetwork a ion-icon
{
    margin: 8px;
    font-size: 30px;
    display: block;
    color: var(--color-white);
    transition: var(--transition-delay);
}


.socialnetwork a ion-icon:hover
{
    color: var(--color-whitehover);
    transition: var(--transition-delay);
}



@media all and (max-device-width: 600px)
{
    .socialnetwork
    {
        display: none;
    }

    .buttonmediaqueries
    {
        margin: 30px 0;
    }
    .socialnetwork a ion-icon
    {
        font-size: 50px;
        margin: 15px;
    }
}


/***********************************************************************************/
/*                                                                                 */
/*                           FIN HEADER (NAVBAR + LOGO)                            */
/*                                                                                 */
/***********************************************************************************/


.danger
{
    color: var(--color-red);
    text-align: center;
}

/***********************************************************************************/
/*                                                                                 */
/*                                DEBUT RIGHT BAR                                  */
/*                                                                                 */
/***********************************************************************************/

.rightbar
{
    position: fixed;
    top: 0;
    right: 0;
    margin: 20px;
}

@media all and (max-device-width: 600px)
{
    .rightbar
    {
        margin: 40px;
    }
    .separate
    {
        font-size: 33px;
    }
}

.separate
{
    display: inline-block;
    color: var(--color-whitehover);
    margin: 0 10px;
}

/***********************************************************************************/
/*                                                                                 */
/*                                  FIN RIGHT BAR                                  */
/*                                                                                 */
/***********************************************************************************/

/***********************************************************************************/
/*                                                                                 */
/*                                 DEBUT LANGUAGE                                  */
/*                                                                                 */
/***********************************************************************************/

.language
{
    display: inline-block;
    font-size: 15px;
}

.language b
{
    color: var(--color-red);
}

@media all and (max-device-width: 800px)
{
    .language
    {
        font-size: 25px;
    }
}

@media all and (max-device-width: 600px)
{
    .language
    {
        font-size: 35px;
    }
}

.language span
{
    color: var(--color-white);
}

/***********************************************************************************/
/*                                                                                 */
/*                                 FIN LANGUAGE                                    */
/*                                                                                 */
/***********************************************************************************/

/***********************************************************************************/
/*                                                                                 */
/*                                  DEBUT BODY                                     */
/*                                                                                 */
/***********************************************************************************/


body video
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    isolation: isolate;
}

body video:nth-child(2)
{
    opacity: .55;
}

body video:nth-child(3)
{
    animation: showUp 5s normal 12s forwards ease-in-out;
}

@keyframes showUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@media all and (max-device-width: 600px)
{
    body video:nth-child(2)
    {
        opacity: .75;
    }
}

body video:nth-child(3)
{
    mix-blend-mode: multiply;
    background-color: white;
    filter: invert(1);
    height: 111%;
}


.pin-spacer
{
    background: var(--color-black);
}

/***********************************************************************************/
/*                                                                                 */
/*                                    FIN BODY                                     */
/*                                                                                 */
/***********************************************************************************/

.search
{
    margin-top: 30px;
    display: inline-block;
    float: right;
}

.search label
{
    color: var(--color-white);
}

.scroller
{
    height: auto;
    max-height: 150px !important;
    overflow-y: scroll;
}

.inlineblock, .inlineblock div
{
    display: inline-block;
}

.bigscroller
{
    height: auto;
    max-height: 500px !important;
    overflow-y: scroll;
}

.card
{
    display: grid;
    margin: auto 0;
    text-align: center;
}


.card-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}
.form-control div
{
    padding: 0 8px;
}


@media all and (max-device-width: 800px)
{
    .card-4
    {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.form-control .marginleft
{
    margin: auto 0;
}

.form-control label
{
    font-size: 14px;
    margin-left: 12px;
    color: var(--color-whitehover);
}

.form-control label
{
    margin-right: 10px;
}

.form-control textarea
{
    padding: 15px;
    background: rgba(0,0,0,0.2);
    color: var(--color-white);
    border: 0;
    width: 88%;
    margin-top: 10px;
}

.form-control textarea::placeholder {
    color: var(--color-white);
}


.listproducts .img
{
    height: 70px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.listproducts div span
{
    color: var(--color-red);
}

.listproducts div
{
    display: flex;
    margin: auto;
}

.card form
{
    margin: auto;
    display: inline-block;
}

.card form button
{
    cursor: pointer;
    margin: auto;
    width: auto;
}

@media all and (max-device-width: 600px)
{
    .card-3
    {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.listsearch
{
    margin: 20px 0;
}

button
{
    cursor: pointer;
}

.bigbutton
{
    color: var(--color-white);
    width: auto;
    display: table;
    border-radius: 5px;
    padding: 8px 11px;
    text-align: center;
    margin: 5px auto;
    cursor: pointer;
    transition: var(--transition-delay);
    font-size: 18px;
}

@media all and (max-device-width: 600px)
{
    .bigbutton
    {
        font-size: 23px;
    }
}

.bigbuttona
{
    position: relative;
    z-index: 0;
    margin: auto;
    display: table;
}

.bigbutton:hover
{
    transition: var(--transition-delay);
    transform: scale(1.05);
}

.bigbutton ion-icon
{
    vertical-align: middle;
    font-size: 20px;
    margin-right: 5px;
}

.middle
{
    display: table;
    margin: auto;
}