html {
    scroll-behavior: smooth;
}

.minh-100vh {
    min-height: 100vh;
}

.text-underline {
    text-decoration: underline;
}

ul li {
    list-style: none;
}

#cookieChoiceInfo a {
    display: inline-block;
    padding: 5px;
    margin: 0 5px;
}

#cookieChoiceInfo p {
    margin-bottom: 10px;
}

.appear {
    opacity: 0;
    position: relative;
    top: 50px;
}

.doubleFontSize {
    font-size: 2em;
}

p, a, strong, span, i {
    font-size: 1em;
}

.btn-primary.disabled, .btn-primary[disabled] {
    opacity: 0.65;
}
body p{margin-bottom:0;}

/* BACKGROUND COLOR */


.bg-blanc {
    background-color: #fff;
}

.bg-transparent {
    background-color: transparent;
}

.text-blanc {
    color: #fff;
}

/* PANIER */


.blockCart.panier {
    display: block;
}

.blockCart {
    display: none;
}

.listOptions .active .shippingActive, .listOptions .active .shippingActive {
    display: block;
}

.listOptions .shippingActive, .listOptions .active .shippingInactive {
    display: none
}

/* CEL */

.conteneur-check {
    position: absolute;
    z-index: 99;
    top: 0.5rem;
    right: 0rem;
    width: 100%;
    height: 1px;
}

.conteneur-check .check {
    width: 50px;
    float: right;
    width: 26px;
    height: 26px;
    border-radius: 0 7px 0 42px;
    display: none;
}

.active .conteneur-check .check {
    display: block;
}

.stepAttribute {
    border-radius: 15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
}

/* LOADER ANIMATION */

.loader {
    width: 70px;
    height: 70px;
    display: inline-block;
    padding: 0px;
    border-radius: 100%;
    border: 5px solid;
    border-top-color: rgba(1, 106, 57, 1);
    border-bottom-color: rgba(255,255,255, 0.3);
    border-left-color: rgba(1, 106, 57, 1);
    border-right-color: rgba(255,255,255, 0.3);
    -webkit-animation: loader4 1s ease-in-out infinite;
    animation: loader4 1s ease-in-out infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    margin-left: -35px;
}

/* COOKIE BAR */

#cookie-bar {
    background: #111111;
    height: auto;
    line-height: 24px;
    color: #eeeeee;
    text-align: center;
    padding: 20px 0;
    z-index: 9999;
}

    #cookie-bar.fixed {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
    }

        #cookie-bar.fixed.bottom {
            bottom: 0;
            top: auto;
        }

    #cookie-bar p {
        margin: 0;
        padding: 0;
    }

    #cookie-bar a {
        color: #ffffff;
        display: inline-block;
        border-radius: 3px;
        text-decoration: none;
        padding: 0 6px;
        margin-left: 8px;
    }

    #cookie-bar .cb-enable {
        background: #007700;
    }

        #cookie-bar .cb-enable:hover {
            background: #009900;
        }

    #cookie-bar .cb-disable {
        background: #990000;
    }

        #cookie-bar .cb-disable:hover {
            background: #bb0000;
        }

    #cookie-bar .cb-policy {
        background: #0033bb;
    }

        #cookie-bar .cb-policy:hover {
            background: #0055dd;
        }


@keyframes loader4 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader4 {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}


/* ANIMATION BOUTON ET IMAGE */

@-webkit-keyframes hvr-push {
    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes hvr-push {
    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.hvr-push {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

    .hvr-push:hover, .hvr-push:focus, .hvr-push:active {
        -webkit-animation-name: hvr-push;
        animation-name: hvr-push;
        -webkit-animation-duration: 0.3s;
        animation-duration: 0.3s;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
    }

.hvr-float {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    transition:all 1s !important;
}

    .hvr-float:hover, .hvr-float:focus, .hvr-float:active {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }