/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-bmy8fzy0sp],
.components-reconnect-repeated-attempt-visible[b-bmy8fzy0sp],
.components-reconnect-failed-visible[b-bmy8fzy0sp],
.components-pause-visible[b-bmy8fzy0sp],
.components-resume-failed-visible[b-bmy8fzy0sp],
.components-rejoining-animation[b-bmy8fzy0sp] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-bmy8fzy0sp],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-bmy8fzy0sp],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-bmy8fzy0sp],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-bmy8fzy0sp],
#components-reconnect-modal.components-reconnect-retrying[b-bmy8fzy0sp],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-bmy8fzy0sp],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-bmy8fzy0sp],
#components-reconnect-modal.components-reconnect-failed[b-bmy8fzy0sp],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-bmy8fzy0sp] {
    display: block;
}


#components-reconnect-modal[b-bmy8fzy0sp] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-bmy8fzy0sp 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-bmy8fzy0sp 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-bmy8fzy0sp 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-bmy8fzy0sp]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-bmy8fzy0sp 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-bmy8fzy0sp {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-bmy8fzy0sp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-bmy8fzy0sp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-bmy8fzy0sp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-bmy8fzy0sp] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-bmy8fzy0sp] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-bmy8fzy0sp] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-bmy8fzy0sp] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-bmy8fzy0sp] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-bmy8fzy0sp] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-bmy8fzy0sp 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-bmy8fzy0sp] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-bmy8fzy0sp {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/MyComponents/CategoryDropdown.razor.rz.scp.css */
.cat-list[b-9fiu8z1zzg] {
    border-style:solid;
    border-width:1px;
    border-color:gray;
    padding:8px;
    border-radius:5px;
}

.cat-title[b-9fiu8z1zzg] {
    color: gray;
    font-size: 1rem;
    font-weight: 600;
}

.cat-txt[b-9fiu8z1zzg] {
    color:var(--Color-1);
    font-size:1rem;
    font-weight:600;
}

/* /Components/MyComponents/DialogDetailOeuvre.razor.rz.scp.css */
.modal[b-vnkd7uuygl] {
    position: fixed; /* Stay in place */
    z-index: 2500; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content[b-vnkd7uuygl] {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close[b-vnkd7uuygl] {
    color: #e9ab1d;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover[b-vnkd7uuygl],
    .close:focus[b-vnkd7uuygl] {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }


.main-image[b-vnkd7uuygl] {
    margin-bottom: 15px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;

}

.Image-Select[b-vnkd7uuygl] {
    padding: 8px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    height: 80px;
    width: auto;
    float: left;
    cursor:pointer;
}



.Artiste[b-vnkd7uuygl] {
    font-size: 1.5rem;
    color: var(--Color1);
}

.Nom[b-vnkd7uuygl] {
    font-size: 0.8rem;
    color: gray;
}

.Category[b-vnkd7uuygl] {
    font-size:1.1rem;
    color: var(--Color1);
}

.card-category[b-vnkd7uuygl] {
    background-color:blue;
    width: 400px;
    padding:22px 30px;
    border-radius:5px;
    line-height:1.8;
}

#ch[b-vnkd7uuygl] {
    display:none;
}
#ch:checked ~ .content-cat[b-vnkd7uuygl] {
    display:block;
}

#ch:checked ~ label[b-vnkd7uuygl] {
    display:none;
}

.content-cat[b-vnkd7uuygl] {
    display:none;
}

.label-info[b-vnkd7uuygl] {
    display: inline-block;
    cursor: pointer;
    color: #fff;
    background-color: red;
    padding: 3px 13px;
    border-radius: 3px;
    margin-top: 12px;
}

.Tech[b-vnkd7uuygl] {
    font-size: 1.1rem;
    color: var(--Color1);
}

.Signature[b-vnkd7uuygl] {
    font-size:1.1rem;
    color:gray;
}

.Dimention[b-vnkd7uuygl] {
    font-size:1.1rem;
    color: gray;
}

.Prix[b-vnkd7uuygl] {
    font-size: 1.4rem;
    color: var(--Color1);
    font-weight:700;
    font-style: italic;
}


.Qte[b-vnkd7uuygl] {
    font-size: 1.1rem;
    color: var(--Color1);
}

.div-Button[b-vnkd7uuygl] {
    position: fixed;
    bottom: 0;
    right: 0;
}


/* /Components/MyComponents/MoreInfo.razor.rz.scp.css */
.cat-list[b-6xm2h81k5e] {
    border-style:solid;
    border-width:1px;
    border-color:gray;
    padding:8px;
    border-radius:5px;
}

.cat-title[b-6xm2h81k5e] {
    color: gray;
    font-size: 1rem;
    font-weight: 600;
}

.cat-txt[b-6xm2h81k5e] {
    color:var(--Color-1);
    font-size:1rem;
    font-weight:600;
}

button[b-6xm2h81k5e] {
    display: inline-block;
    cursor: pointer;
    color: white;
    background-color: var(--Color-1);
    border: none;
    padding:2px 5px;
}
/* /Components/MyComponents/MyDropdown.razor.rz.scp.css */
.my-dropdown[b-r0p56x12ll] {
    display:inline;

}

.dropdown button[b-r0p56x12ll] {
    background-color: var(--DropDownColor) !important;
}


.dropdown-menu[b-r0p56x12ll] {
    background-color: var(--DropDownColor) !important;
    max-height: 300px;
    overflow-y:auto;
    scrollbar-color: white var(--DropDownColor);
}

.dropdown-item[b-r0p56x12ll] {
    background-color: var(--DropDownColor) !important;
    color: white !important;
    font-size:0.8rem !important;
}

    .dropdown-item:hover[b-r0p56x12ll] {
        background-color: white !important;
        color: var(--DropDownColor) !important;
    }
/* /Components/MyComponents/MyQuantityButton.razor.rz.scp.css */
.Qbtn[b-uy0z1x04lf] {
    background-color:var(--Color-1) !important;
    border-radius: 5px;
    height: 40px;
    width: 130px;
    
    
    display:inline-flex;
    overflow:hidden;
    align-items:center;
    border-radius:20px;
}

.QbtnMoins[b-uy0z1x04lf] {
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    font-size:1.5rem;
    background-color: var(--Color-1) !important;
    color: white;
    height: 40px;
    width: 40px;
    border: none;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    transition-duration: 0.4s;
}
.QbtnMoins:hover[b-uy0z1x04lf] {
    background-color: white !important;
    color: var(--Color1) !important;
}

.QbtnPlus[b-uy0z1x04lf] {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.5rem;
    background-color: var(--Color-1) !important;
    color: white;
    height: 40px;
    width: 40px;
    border: none;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    display: inline-block;
    transition-duration: 0.4s;
}

    .QbtnPlus:hover[b-uy0z1x04lf] {
        background-color: white !important;
        color: var(--Color1) !important;
    }


.Qtxt[b-uy0z1x04lf] {
    background-color:var(--Color1) !important;
    width:100%;
    border:none;
    font-size:1rem;
    text-align:center;
    color:white;
    background: 0 0;
    flex: 1;
    font-weight:700;
}


/* /Components/MyComponents/OeuvreCard.razor.rz.scp.css */
.ovr-card[b-r7i2vlse02] {
    width: 400px;
    background-color: white;
    border-radius: 8px;
    border-style:solid;
    border-width:1px;
    border-color:#ccc;
    overflow: hidden;
    box-shadow: 3px 3px 0px #ccc;
    
    margin: 5px;
    padding: 10px;
}

    .ovr-card:hover[b-r7i2vlse02] {
        transform: scale(1.05);
    }

.ovr-card-artiste[b-r7i2vlse02] {
    font-size: 1.1rem;
    font-style: italic;
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: center;
    color: var(--Color-1)
}

    

    .ovr-buttons[b-r7i2vlse02] {
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
 
/* /Components/MyComponents/OeuvreCardImage.razor.rz.scp.css */
.image[b-zu9fxvwqi7] {
    width: 385px;
    position: relative;
}

img[b-zu9fxvwqi7] {
    width: auto;
    height: 200px;
    display: block;
    margin: auto;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.content[b-zu9fxvwqi7] {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.6s;
}

    .content:hover[b-zu9fxvwqi7] {
        opacity: 1;
    }

.ovr-card-info-hover-text[b-zu9fxvwqi7] {
    font-size: 1.1rem;
    color: white;
    display: block;
    line-height: 20px;
}

.ovr-card-Tech-hover-text[b-zu9fxvwqi7] {
    font-size: 1.1rem;
    color: #ff6a00;
    display: block;
    line-height: 20px;
}
/* /Components/MyComponents/OeuvreCardInfo.razor.rz.scp.css */
.ovr-info[b-6ifoqmifdb] {
    width: 385px;
    height: 70px;
    position: relative;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

.content[b-6ifoqmifdb] {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(255,255,255,1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.6s;
}

    .content:hover[b-6ifoqmifdb] {
        opacity: 1;
    }


.ovr-card-Category[b-6ifoqmifdb] {
    font-size: 1rem;
    color: var(--Color-1);
    line-height: 30px;
    display: block;
}

.ovr-card-prix[b-6ifoqmifdb] {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 10px;
    text-align: center;
    color: var(--Color-1)
}

.ovr-card-info-hover-text[b-6ifoqmifdb] {
    font-size: 0.9rem;
    color:gray;
    display: block;
    line-height: 20px;
}

.ovr-card-Tech-hover-text[b-6ifoqmifdb] {
    font-size: 1.1rem;
    color: var(--Color-1);
    display: block;
    line-height: 20px;
}
/* /Components/MyComponents/OeuvreFilter.razor.rz.scp.css */
.filter-dropdown[b-zjdxmmn6u6] {
    height:30px !important;
    display:inline-block;
    margin-left:15px !important;
    margin-right:15px !important;
    margin-bottom:15px !important;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.modal[b-4024fz0v8i] {
    display: block;
    position: fixed; /* Stay in place */
    z-index: 2500; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content[b-4024fz0v8i] {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close[b-4024fz0v8i] {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover[b-4024fz0v8i],
    .close:focus[b-4024fz0v8i] {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
/* /Components/Pages/Shop.razor.rz.scp.css */
.top-container[b-qlibgkj7pf] {
    padding: 20px;
    text-align: center;
}

.filter[b-qlibgkj7pf] {
    background-color: #f1f1f1;
    justify-content: center;
}

.list-oeuvre[b-qlibgkj7pf] {
    
    
}

.card-container[b-qlibgkj7pf] {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    background-color: rgba(245,245,245,0.1);
}

.nbr-oeuvre[b-qlibgkj7pf] {
    margin:0px;
    text-align: center;
    color: var(--Color-1);
    font-size:1rem;
}




















.modal[b-qlibgkj7pf] {
    display: block;
    position: fixed; /* Stay in place */
    z-index: 2500; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content[b-qlibgkj7pf] {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close[b-qlibgkj7pf] {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover[b-qlibgkj7pf],
    .close:focus[b-qlibgkj7pf] {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
