/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap'); */

.dialogBoxContainer{

    position: fixed;
    top: 0px;
    left: 0px;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(47, 47, 47, 0.3);
    z-index: 1;
    display: none;
    align-items: center;
    justify-content: center;
    /* font-family: Roboto; */
    font-weight:bold;
    overflow: hidden;
    z-index: 999999;


}

.disabledScroll{

    overflow: hidden;
}

.closeDialogBox{

    position: fixed;
    /* right: 40px; */
    top:20px;
    width: 60px;
    height: 60px;
    background-color: var(--shadow);
    opacity: 0.9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ecritureLight);
    cursor: pointer;
    z-index: 2;

}


.open{

    display: flex;
    transition: visibility 1s;
    
}


.dialogBox{

    position: relative;
    width: 70%;
    min-width: 600px;
    min-height: 460px;
    max-height: 90%;
    /* max-width:82%; */
    background-color:var(--background);
    border-radius: 1em;
    display: flex;
    align-items: center;
    /* padding: 12px; */
   
    flex-direction:column;
    box-shadow: var(--boxShadow);
    opacity: 1;
    font-weight: 400;
    overflow: hidden;
    overflow-y: scroll;
    /* transition: 0.4s; */

    
}

.blockTitre{

    position: relative;
    height: 18%;
    width: 100%;
    top: 18px;
    display: flex;
    align-items: center;
    color: rgb(41, 41, 41);
    left: 60px;
    /* justify-content: center; */
    /* background-color: yellow; */

}

.blockField{

    position: relative;
    height: 14%;
    width: 100%;
    margin-top:20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: red; */

}

.field{

    position: absolute;
    height:80%;
    width: 80%;
    background-color: rgb(240, 240, 240);
    border-radius: 8px;

}

.blockButtons{

    position: absolute;
    bottom: 12%;
    height: 20%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:center;  

}

.rounded_btn{
        
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    border: none;
    border-radius: 2em;
    font-size: 16x;
    font-family: Roboto;
    font-weight:bold;
    color: white;
    background: #f35f5f;
    margin:14px;
    transition: 0.4s;
}

.rounded_btn:hover{
    
    background: #ec2f2f;
    color: white;
    transition:0.4s;

}

.blockInputText{
    flex-direction: row;
    gap: 12px;
}

.swiperable{
    display: none;
}

@media (max-width: 1000px) {

    .swiperable{
        position: absolute;
        width: 20%;
        height: 6px;
        background-color:var(--ChampEcriture);
        top: 8px;
        z-index: 2;
        border-radius: 2em;
        display: block;
    }
    .closeDialogBox{
        right: 8%;
    }
    .dialogBox{
        position: absolute;
        bottom: 0px;
        height: auto;
        min-height: 38%;
        max-height: 92%;
        overflow: scroll;
        /* bottom: -100%; */

        width:100%;
        min-width: 100px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;

    }

    .blockTitre{

        position: relative;
        height: 18%;
        width: 100%;
        top: 14px;
        left:0px;
        font-size: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .blockField{

        position: relative;
        height: 10%;
        width: 100%;
        margin-top: 4%;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .field{border-radius: 16px;}

    .blockButtons{

        /* flex-direction: column; */
        height: 40%;
        bottom: 8%;
    }
 
    .rounded_btn{
            
        width: 20%;
        height: 4%;
        padding: 1.2em 2em;
        font-size: 32px;
        margin:18px;
        display: flex;
        align-items: center;
        justify-content: center;

    }
    
}

@keyframes openAnimation {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0%);
    }
  
  }

  @keyframes closeAnimation {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(100%);
    }
  
  }


  /* FOR SUCCESS SECTION  */

  
.confirmation-container {
    bottom:0px; 
    max-width: 800px;
    /* background-color: #ffffff; */
    /* border-radius: 20px; */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    padding: 50px;
    
}

.confirmation-svg {
    opacity: 1;
    transition: all 1s ease;
    display: flex;
    justify-content: center;
    align-items:center;
}

.confirmation-details h1 {
    font-size: 26px;
    color: var(--ecriture);
    margin-top: 20px;
}

.confirmation-details h2 {
    font-size: 22px;
    color: var(--ecriture);
}

.confirmation-details p {
    font-size: 18px;
    color: var(--ecritureLight);
}

.receipt-link {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.receipt-link:hover {
    background-color: black;
}

    
  
  @media(max-width: 900px) {
   
     .confirmation-container {
       
        /* background-color: #ffffff; */
        box-shadow: 0 ;
        padding: 30px;
    
}

  }  
    





  /* FOR SORT SECTION  */


  .sideMenuContainer{

    /* position: fixed; */
    width: 100%;
    height: auto;
    /* background-color: rgb(206, 197, 197); */
    /* opacity: 0.5; */
    /* bottom: -100%; */
    z-index: 1;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    text-decoration:none;
    justify-content: center;

}

.sideMenu{
    position: relative;
    width: 100%;
    height: auto;
   
    bottom:0%;
    z-index: 1;
    /* border-radius: 22px; */
    border-top-right-radius: 22px;
    border-top-left-radius: 22px;
    background-color: var(--background);
    /* box-shadow: 0px 4px 12px 1px var(--shadow); */
    opacity: 1;
    display: flex;
    align-items: center;
    text-decoration:none;
    justify-content: center;
    flex-direction: column;
    

}

.sideMenuItem{
    position: relative;
    width: 90%;
    height:80px;
    display: flex;
    align-items: center;
    text-decoration:none;
    justify-content: center;
    font-weight: bolder;
    /* background-color: rgb(0, 68, 255); */
    /* margin-top: 6px; */
    /* margin-bottom: 6px; */
    border-style:solid;
    border-color:var(--borderColor);
    border-right-width: 0px;
    border-left-width: 0px;
    border-top-width: 1px;
    border-bottom-width: 0px;
    cursor: pointer;

}
.sideMenuItemLogo{
    position:relative;
    max-height: 100%;
}


.sideMenuItemTitle{
    position:relative;
    max-height: 100%;
}

.sideMenuTop{

    position: relative;
    width: 90%;
    display: flex;
    align-items: center;
    text-decoration:none;
    justify-content: space-between;
    margin: 20px;
    margin-top: 30px;
    /* font-size: 20px; */
}
 .icon{
    width: 20px;
    height: 20px;
    cursor: pointer;
 }

 .titleSectionContainer{
    width: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: space-between;
    /* flex-direction: column; */
    padding-bottom: 8px;
    border-style: solid;
    border-color: var(--borderColor);
    color: var(--ecritureLights);
    border-right-width: 0px;
    border-left-width: 0px;
    border-top-width: 0px;
    border-bottom-width: 1px;
    font-size: 20px;
 }
    .filtersInputsContainer{
 
     position: relative;
     width: 100%;
     height: auto;
     padding: 40px;
     border-style:solid;
     border-color:var(--borderColor);
     border-right-width: 0px;
     border-left-width: 0px;
     border-top-width: 1px;
     border-bottom-width: 1px;
     margin-bottom: 60px;
    }









    /* SIDE MENU style */


    .sideMenuContainer{

        /* position: fixed; */
        width: 100%;
        height: auto;
        /* background-color: rgb(206, 197, 197); */
        /* opacity: 0.5; */
        bottom: -100%;
        z-index: 1;
        padding-bottom: 60px;
        display: flex;
        align-items: center;
        text-decoration:none;
        justify-content: center;
        font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    
    
    }
    
    .sideMenu{
        position: relative;
        width: 100%;
        height: auto;
       
        bottom:0%;
        z-index: 1;
        /* border-radius: 22px; */
        border-top-right-radius: 22px;
        border-top-left-radius: 22px;
        background-color: var(--background);
        box-shadow: 0px -6px 10px 1px var(--shadow);
        opacity: 1;
        display: flex;
        align-items: center;
        text-decoration:none;
        justify-content: center;
        flex-direction: column;
        
    
    }
    
    .sideMenuItem{
        position: relative;
        width: 90%;
        height:80px;
        display: flex;
        align-items: center;
        text-decoration:none;
        justify-content: center;
        font-weight: bolder;
        /* background-color: rgb(0, 68, 255); */
        /* margin-top: 6px; */
        /* margin-bottom: 6px; */
        border-style:solid;
        border-color:var(--borderColor);
        border-right-width: 0px;
        border-left-width: 0px;
        border-top-width: 1px;
        border-bottom-width: 0px;
        cursor: pointer;
    
    }
    .sideMenuItemLogo{
        position:relative;
        max-height: 100%;
    }
    
    
    .sideMenuItemTitle{
        position:relative;
        max-height: 100%;
    }
    
    .sideMenuTop{
    
        position: relative;
        width: 90%;
        display: flex;
        align-items: center;
        text-decoration:none;
        justify-content: space-between;
        margin: 20px;
        /* font-size: 20px; */
    }
     .icon{
        width: 20px;
        height: 20px;
        cursor: pointer;
     }
    
     .titleSectionContainer{
        width: 100%;
        display: flex;
        align-items: center;
        text-decoration: none;
        justify-content: space-between;
        /* flex-direction: column; */
        padding-bottom: 8px;
        border-style: solid;
        border-color: rgb(47, 47, 47);
        border-right-width: 0px;
        border-left-width: 0px;
        border-top-width: 0px;
        border-bottom-width: 1px;
        font-size: 20px;
     }
        .filtersInputsContainer{
     
        position: relative;
         width: 100%;
         height: auto;
         padding: 40px;
         border-style:solid;
         border-color:var(--borderColor);
         border-right-width: 0px;
         border-left-width: 0px;
         border-top-width: 1px;
         border-bottom-width: 1px;
        }
    
        
  


    
