﻿#form1 {
    padding: 0
}
/* Animation Selection Magasin */

.custom-select-wrapper {
    position: relative;
    display: inline-block;
    user-select: none;
    box-sizing: content-box !important;
}

.custom-select-wrapper select {
    display: none;
}

.custom-select {
    position: relative;
    border: none;
}

*, ::after, ::before {
    box-sizing: border-box !important;
}

.custom-select-trigger {
    display: block;
    width: 100%;
    padding-right: 10% !important;
    font-size: 22px;
    color: gray;
    background: white;
    cursor: pointer;
    border: none !important;
}

    .custom-select-trigger:after {
        position: absolute;
        display: block;
        content: '';
        width: 10px;
        height: 10px;
        top: 50%;
        right: 25px;
        margin-top: -3px;
        border-bottom: 2px solid gray;
        border-right: 2px solid gray;
        transform: rotate(45deg) translateY(-50%);
        transition: all .4s ease-in-out;
        transform-origin: 50% 0;
    }

.custom-select.opened .custom-select-trigger:after {
    margin-top: 3px;
    transform: rotate(-135deg) translateY(-50%);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 100%;
    margin: 15px 0;
    border: 1px solid #b5b5b5;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 2px 1px rgba(0,0,0,.07);
    background: #fff;
    transition: all .4s ease-in-out;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
}

.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-options:before {
    position: absolute;
    display: block;
    content: '';
    bottom: 100%;
    right: 50%;
    width: 7px;
    height: 7px;
    margin-bottom: -4px;
    border-top: 1px solid #b5b5b5;
    border-left: 1px solid #b5b5b5;
    background: #fff;
    transform: rotate(45deg);
    transition: all .4s ease-in-out;
}

.option-hover:before {
    background: #f9f9f9;
}

.custom-option {
    position: relative;
    display: block;
    padding: 0 22px;
    border-bottom: 1px solid #b5b5b5;
    font-size: 18px;
    font-weight: 600;
    color: #b5b5b5;
    line-height: 47px;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

    .custom-option:first-of-type {
        border-radius: 4px 4px 0 0;
    }

    .custom-option:last-of-type {
        border-bottom: 0;
        border-radius: 0 0 4px 4px;
    }

    .custom-option:hover,
    .custom-option.selection {
        background: #f9f9f9;
    }
/**************************************************************************/

/* Bar Top */
.navtop {
    display: flex;
    background: white;
}

.navtop div {
    display: grid;
    z-index: 1;
}
/* SideBar Mobile*/
#collapseButton {
    display: inherit;
}
.sideNavbar {
    display: inline-grid;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #ee3126;
}

.sideNavbar > a {
    padding: 10% 10% 10% 10%;
}
.faderight {
    box-shadow: 0 0 0 100em rgba(0, 0, 0, 0);
    display: inline-grid;
    background: #ea413a;
    height: 100%;
    width: 165px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 5;
    outline: none;
    color: #fff;
 }

.slide-right {
    transform: translate3d(165px, 0, 0);
    transition: all 0.3s ease-in-out;
}

.slide-right-reverse {
    transform: translate3d(0, 0, 0);
    transition: all 0.3s ease-in-out;
}

.sideNavbar a {
    text-decoration: none;
    color: white;
     font-size: 14px
    
}
.sidenav a:hover {
    color: #f1f1f1;
}

.link-label-gray {
    color: #555555;
}

.link-label-gray :hover {
    text-decoration: none
}
.select {
        background: rgba(0,0,0,0.2);
        border-left: 3px white solid;
        box-sizing: border-box !important;
    }

#collapseButton:after {
    content: '\2631'; /* Unicode character */
    font-size: 35px;
    color: black;
    float: right;
}



#collapseButton.collapsed:after {
    content: "\2630"; /* Unicode character*/
}


@media screen and (max-width: 1470px) and (min-width: 768px) {
    #form1 {
        padding-left: 160px
    }
}

@media screen and (min-width: 1470px) {
    #form1 {
        position: relative;
        padding-left: 10%
    }
}


@media only screen and (min-width: 768px) {
    

    .sideNavbar > a > label {
        font-size: 13px;
        padding-left: 16px;
    }


    .sideNavbar > a {
        padding: 20% 20% 40% 20%;
    }

    .item-nav-left {
        width: 100%;
    }

    

    .sideNavbar {
        height: 100%;
        width: 10%;
        min-width: 160px;
        position: fixed;
        z-index: 1;
        top: 0;
        left: 0;
        background-color: #ee3126;
    }

    
}

