.mobileNavBrowse{
    background-color: black;
    height: 50px;
    display: none;
    position: fixed;
    left: 0;
    top: 75px;
    width: 100%;
}

.cards{
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
}

.card {
    flex-grow: 1;
    background-color: white;
    margin: 3px;
    border-radius: 10px;
    border: 3px solid rgb(0, 136, 169);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card:hover{
    border: 3px solid white;
    cursor: pointer;
}

.cardImg {
    min-height: 100px;
    max-height: 300px;
}

.overlay{
    position: fixed;
    left:0px;
    top:0px;
    width:100%;
    height:100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: block;
}

.aide{
    background-color: white;
    border-radius: 10px;
    border: 2px solid white;
    height: 80%;
    width: 80%;
    margin: auto;
    margin-top: 80px;
    display: flex;
}

.leftClose{
    width: 70%;
}

.left{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.left > img{
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.right{
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 50px);
    height: 100%;
    margin-left: 25px;
    color: white;
}

.rightClose{
    background-color: rgb(0, 136, 169);
    border-radius: 10px;
    display: flex;
    width: 30%;
}

.designDetails{
    text-align: center;
}

.inputName{
    width: 90%;
    height: 50px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-bottom: 2px solid white;
    background: none;
    padding-bottom: 0.2em;
    color: white;
}

.detailsPart{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0.5em;
    justify-content: center;
}

#sortable{
    display: flex;
}

#sortable li{
    list-style-type: none;
    padding: 1em;
}

.frameSize{
    width: 50%;
    margin: 1em;
}

.frameSizeImg{
    width: 30%;
    cursor: pointer;
}

.frameSizeImg:hover, .frameSizeImg.active{
    -webkit-filter: invert(100%) !important;
}

.dimensions{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.carac{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.inputDimensions{
    font-size: 15px;
    width: 35px;
    color: white;
    background: none;
    border: none;
    font-weight: bold;
    text-align: center;
}

.keyword{
    background-color: rgb(0, 255, 0);
    border: 1px solid white;
    border-radius: 5px;
    margin:2px;
    cursor: pointer;
    display: flex;
}

.keyword p{
    padding: 0 10px;
}

.keyword.disabled{
    background-color: rgba(0, 255, 0, 0.1);
}

.btnSupprKW{
    font-size: 20px;
}

.changeInfosDesign{
    background: none;
    padding: 0.5em;
    color: white;
    border: 2px solid white;
    margin: 1.5em 0;
    width: 80%;
}

.changeInfosDesign:hover{
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: bold;
}

.close{
    display: flex;
    height: 100%;
}

.closeM{
    display: none;
}

.detailsPartMobile{
    display: none;
}

.btnClose{
    float:right;
    justify-self: flex-end;
}

.btnClose, .btnCloseMobile{
    cursor: pointer;
    font-size: 25px;
    color: white;
    height: 20px;
}

.scrollUpBtn{
    display: none;
    position: fixed;
    right: 20px;
    bottom: 90px;
    cursor: pointer;
    opacity: 0;
    transform: scale(0);
    transition: .6s ease opacity,.6s ease transform;
}

.scrollUpImg{
    background-color: black;
    width: 50px;
    border-radius: 30px;
}

@media screen and (max-width: 1000px) {
    .contentBrowse{
        margin-top: 125px;
    }

    .mobileNavBrowse{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .cardImg {
        min-height: 50px;
        max-height: 150px;
        max-width: 100%;
    }

    .card{
        margin: 1px;
        border-radius: 5px;
    }

    .scrollUpBtn{
        display: none;
    }

    .aide{
        flex-direction: column-reverse;
        justify-content: flex-end;
        width: 90%;
    }

    .rightClose{
        width: 100%;
        height: 25%;
        display: flex;
        align-items: center;
    }
    
    .close{
        display: none;
    }
    
    .closeM{
        display: flex;
        width: 100%;
        justify-content: flex-end;
        align-items: center;
    }

    .detailsPartMobile{
        display: flex;
        height: 100%;
        flex-direction: column;
        justify-content: center;
    }

    .detailsPartMobile p{
        margin-top: 0;
    }

    .leftClose{
        display: flex;
        width: 100%;
        display: flex;
        justify-content: flex-end;
        min-height: 70%;
    }

    .designDetails{
        width: 100%;
    }

    .caracMobile{
        display: flex;
        justify-content: space-around;
        margin-bottom: 10px;
    }

    .colorMinuteMobile:last-child{
        margin-left: 10px;
    }

    .colorMinuteMobile{
        display: flex;
        align-items: center;
    }

    .colorMinuteMobile p{
        margin: 0;
    }

    .frameSizeImg{
        width: 30%;
        margin: 0.2em;
    }

    .frameSizeImg.active{
        -webkit-filter:invert(100%);
    }

    .aide{
        max-height: 80%;
    }

    .right{
        width: 100%;
        margin: 5px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .designDetails{
        display: none;
    }
}