/* CSS - Default */
html{
    height: 100vh;
} 

body{
    position: relative; 
    min-height: 100vh; 
}

h1, h2, h3, h5, p, a, button, th, td, label{
    font-family: 'Roboto', sans-serif;
    line-height: 1.625rem;
    font-weight: 400; 
}
 
a{
    color: white; 
}

a:hover{
    text-decoration: none;
    color: white; 
}

#signup_CaptchaImageDiv a{
    display: none !important; 
    color: white!important; 
}

.container_captcha .col-md-12 .form-group div{
    margin-top: 5px
}

#signup_SoundLink{
    display: none!important; 
}

/* Navigation */

nav{
    box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2), 
        0px 4px 5px 0px rgba(0,0,0,0.14), 
        0px 1px 10px 0px rgba(0,0,0,0.12);
}

.logo{
    height: 80px;
    width: 130px;
}

.ANOpAR{
    font-weight: 600; 
    color: #6A6695
}

.ANOpAR:hover{
    color: #a06199
}

.link_signin{
    border: 3px solid #6A6695;
    background-color: #6A6695; 
    color: white;
    padding: 5px 10px;  
}

.link_signin:hover{
    background-color: #fff; 
    border: 3px solid #6A6695; 
    color: #6A6695; 
}

ul{
    list-style:none;  
}

li{
    z-index: 1; 
}

li > a {
    color: black; 
}

li > a:hover{
    color: #6A6695; 
    text-decoration: none
}

.cp{
    margin-top: 20px; 
    padding-bottom: 110px; 
}
.link_create_product{
    color: #6A6695
}
.link_create_product:hover{
    color: #a06199
}
.ul-profile{
    position: relative; 
    align-items: center; 
}
.line-profile{
    background-color: #6A6695; 
    position: absolute;
    height: 2px;  
    width: 75%;
}
.btn-primary{
    background: #6A6695; 
    border-color: #6A6695;
}
.btn-primary:hover{
    background: #a06199; 
    border-color: #6A6695;
}
.page-link{
    color: #6A6695
}
.page-link:hover{
    color: #a06199
}
.page-item.active .page-link {
    background: #6A6695; 
    border-color: #6A6695;
}
td > a {
    color: #6A6695;
}
td > a:hover {
    color: #a06199;
}
.link-mdp{
    color: black; 
    cursor: pointer
}
.link-mdp:hover{
    text-decoration: underline; 
    cursor: pointer;
    color: black; 
}
h3{
    color: #a06199; 
    font-weight: 500;
    font-size: 1.2em;
    line-height: 25px;
}
h2{
    text-decoration: underline;
    line-height: 30px;
    font-size: 1.3em;
    color: #6A6695;  
    font-weight: 800;
}
.container-default{ 
    min-height: 100%
}
.box{
    -webkit-box-shadow: 0px 0px 9px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 9px -2px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 9px -2px rgba(0,0,0,0.75);
}
.bc-image{
    background-image: url("{{ asset('assets/images/background.jpg') }}"); 
    background-repeat: no-repeat;
    background-position: center;
}
#product_contacts{
    max-height: 350px;
    overflow-x: hidden;
    width: 100%;
}
.img_profile{
    background-color: #e0e0e0; 
    border: 1px solid #e0e0e0; 
    border-radius: 50%; 
    height: 100px; 
    width: 100px;
    padding: 10px;
    margin-right: 45px
}

/* Footer */

footer{
    position: absolute; 
    bottom: 0; right: 0; left: 0; 
    background-color: #a06199; 
    padding-top: 25px; 
    /* padding-bottom: 50px;  */
}

.container_card_footer{
    display: flex; 
}

footer p{
    font-size: 14px
}


footer a{
    text-align: center; 
}

footer a:hover{
    color: #e5e5e5;
}

/** Page d'inscription **/
label[for="user_captchaCode"] {
    width: 100%;
}

#user_captchaCode {
    margin-top: 10px;
}

/**
************************** MENU - HEADER
 */

#menu{
    display: none;
    cursor: pointer;
}

.small-menu{
    display: none;
    background: #fff;
    border-radius: 15px;
    position: absolute;
    padding: 45px 50px;
    z-index: 2;
    left: 5px;
    top: 5px;
}

.small-menu .container-close-menu{
    position: absolute;
    cursor: pointer;
    color: #6A6695;
    left: 20px;
    top: 15px;
}

.small-menu ul{
    padding-left: 0;
}

.small-menu ul li {
    margin: 15px 0px
}

.small-menu ul li a{
    color: black;
    font-size: 16px;
}

.menu-desktop{
    display: flex;
}

@media (max-width: 769px){
    .menu-desktop{
        display: none;
    }

    #menu{
        display: block;
    }
}