@import url('https://fonts.googleapis.com/css2?family=Amiri+Quran&family=Raleway:wght@200;300;400;500;600;700;800;900&family=Scheherazade+New:wght@400;700&family=Source+Sans+Pro:wght@300;400;600;700;900&display=swap');

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body
{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background: #02b35a;
}
body.pageaccueil
{
    min-height: 100vh;
    background: linear-gradient(60deg, #ffffff, #edbf28, #eeeeee, #dcb01d);
    background-size: 400%,400%;
    overflow-x: hidden;
    animation: animate-gradient 5s ease-in-out infinite;
}
body.pageconnexion-inscription
{
    min-height: 100vh;
    background: whitesmoke;
    overflow-x: hidden;
}
body.livres-profile
{
    min-height: fit-content;
    background: #1a1818;
    overflow-x: hidden;
}
h1
{
    font-family: 'Raleway', 'Scheherazade New';
    background: linear-gradient(60deg, #048344, #09cd6b);
    background-size: 400%,400%;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.5px;
    color: white;
    font-size: 30px;
    font-weight: 800;
    padding: 10px 20px;
    margin: 20px 0px;
    border-radius: 30px;
    box-shadow: 10px 10px 0px #02b35a14;
    animation: animate-gradient 2s ease-in-out infinite;
}
h2
{
    font-family: 'Source Sans Pro';
}
p
{
    font-family: 'Raleway';
}
.alert{
    border-radius: 30px;
    text-align: center;
    max-width: 700px;
    width: fit-content;
    margin: none;
    font-weight: 400;
}
.alert.alert-success{
    border-radius: 30px;
    text-align: center;
    max-width: 700px;
    width: fit-content;
    margin: 20px 20px;
    font-weight: 400;
}
.section1
{
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
    background-repeat: none;
    background-size: cover;
    height: 100vh;
    overflow: hidden;
}
.section1::before
{
    content:'';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, whitesmoke, transparent);
    z-index: 1000;
    overflow: hidden;

}
.section1 img.logo
{
    position: relative;
    justify-content: flex-start;
    align-items: flex-start;
    width: 90px;
    height: 90px;
    margin-top: 100px;
    margin-bottom: 20px;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 30px white;
    transform: translateY(-200px);
    z-index: 9;
}
.section1 h1#txt-titre
{
    position: absolute;
    right: -250px;
    white-space: nowrap;
    color: white;
    font-size: 30px;
    font-family: 'Raleway';
    font-weight: 500;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    cursor: pointer;
    transform: translateY(0px);

    transition: 0.5s;
    z-index: 9;

}
.section1 a.btn-explorer
{
    color: #121212;
    font-size: 24px;
    font-family: 'Raleway';
    background-color: rgba(245, 245, 245, 0.837);
    text-decoration: none;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    cursor: pointer;
    transform: translateY(-200px);
    transition: 0.5s;
    z-index: 9;

}
.section1 a.btn-explorer:hover
{
    background-color: white;
    box-shadow: 0 0 30px white;
}
.section1 img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.section1 img#front
{
    z-index: 10;
}
.iconlogo{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.iconlogo .alert{
    border-radius: 30px;
    text-align: center;
    width: fit-content;
    margin: 20px 0px;
}
.iconlogo ul.nav
{
    display: flex;
    flex-direction: row;
    margin: 20px 0px;
}
.iconlogo ul.nav li
{
    list-style: none;
    margin-right: 30px;
}
.iconlogo ul.nav li a
{
    color: #121212;
    font-size: 18px;
    text-decoration: none;
    font-family: 'Raleway';
    background-color: whitesmoke;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    transition: 0.5s;
}
.iconlogo ul.nav li a:hover
{
    background-color: white;
    box-shadow: 0 0 30px white;
}
.iconlogo h3
{
    margin: .5rem .9rem 0 .9rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}

.menu
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem;
    width: 280px;
    height: 280px;
    padding-left: 0px;
}
.menu li
{
    position: absolute;
    left: 0;
    list-style: none;
    transition: 0.5s;
    transition-delay: calc(0.1s * var(--i));
    transform-origin: 140px;
    transform: rotate(0deg) translateX(110px);
}
.menu.active li
{
    transform: rotate(calc(360deg / 6 * var(--i))) translateX(0px);
}
.menu li a
{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 60px;
    height: 60px;
    color: var(--clr);
    border: 2px solid var(--clr);
    border-radius: 50%;
    font-size: 1.5em;
    transform: rotate(calc(360deg / -6 * var(--i)));
    transition: 1s;
}
.menu li a:hover
{
    transition: 0s;
    background: var(--clr);
    color: white;
    box-shadow: 0 0 10px var(--clr), 
    0 0 30px var(--clr), 
    0 0 50px var(--clr);
}
.menu .toggle
{
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: url("../img-boukhari/logo256.png");
    background-position: 100%;
    background-repeat: none;
    background-size: cover;
    background-blend-mode: screen;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-border-radius:50%;
	-moz-border-radius:50%;
	-ms-border-radius:50%;
	animation: bounce 2s infinite;
	-webkit-animation: bounce 2s infinite;
	-moz-animation: bounce 2s infinite;
	-o-animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 900;
    transition:  1.25s;
}
.menu.active .toggle
{
    transform: rotate(360deg);
}
.menu .toggle:hover
{
    box-shadow: 0 0 10px #dcb01d;
    scale: 108%;
}
.section3
{
    position: relative;
    padding: 100px;
    background-image: url("../img-boukhari/etoiles.jpg");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: screen;
}
.section3::after{
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, white, transparent);
    z-index: 1000;
    overflow: hidden;
}
.section3 .presentation1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 20px;
}
.section3 .presentation1 .h2-presentation{
    font-size: 30px;
    font-weight: 600;
    color: white;
    background: linear-gradient(to right, #2673EE, #00307d);
    box-shadow: 5px 5px 0px #2673ee8e;
    text-align: center;
    align-self: center;
    margin-bottom: 20px;
    border-radius: 30px;
    padding: 10px 20px;
    width: fit-content;
}
.section3 .presentation1 .h3-accroche{
    background: linear-gradient(to right, #FFD700, #bca000);
    color: whitesmoke;
    box-shadow: 5px 5px 0px #ffdd198e;
    font-size: 24px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
}
.section3 .presentation1 .box-presentation{
    display: flex;
    flex-direction: column;
    width: fit-content;
    flex-wrap: wrap;
}
.section3 .presentation1 .box-presentation p.subtitre-presentation{
    font-size: 20px;
    font-weight: 900;
    height: fit-content;
    color: white;
    margin-top: 20px;
    text-align: center;
    line-height: 1.5;
    width: 50%;
    background: linear-gradient(to right, #26ee80, #158949);
    box-shadow: 5px 5px 0px #26ee808e;
    padding: 10px;
    border-radius: 30px;
}
.section3 .presentation1 .box-presentation .p-presentation{
    font-size: 16px;
    font-weight: 500;
    width: 75%;
    color: white;
    margin-top: 20px;
    box-shadow: 10px 10px 0px #6666668e;
    text-align: center;
    line-height: 1.5;
    background: linear-gradient(to right, #666666, #3c3c3c);
    padding: 10px;
    border-radius: 50px;
}
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}	
	40% {-webkit-transform: translateY(-10px);}
	60% {-webkit-transform: translateY(-15px);}
}
 
@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
	40% {-moz-transform: translateY(-10px);}
	60% {-moz-transform: translateY(-15px);}
}
 
@-o-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
	40% {-o-transform: translateY(-10px);}
	60% {-o-transform: translateY(-15px);}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-10px);}
	60% {transform: translateY(-15px);}
}

@-webkit-keyframes appear {
	0%, 20%, 50%, 80%, 100% {-webkit-transform: scale(100%);}	
	40% {-webkit-transform: scale(96%);}
	60% {-webkit-transform: scale(102%);}
}
 
@-moz-keyframes appear {
	0%, 20%, 50%, 80%, 100% {-moz-transform: scale(100%);}
	40% {-moz-transform: scale(96%);}
	60% {-moz-transform: scale(102%);}
}
 
@-o-keyframes appear {
	0%, 20%, 50%, 80%, 100% {-o-transform: scale(100%);}
	40% {-o-transform: scale(96%);}
	60% {-o-transform: scale(102%);}
}
@keyframes appear {
	0%, 20%, 50%, 80%, 100% {transform: scale(100%);}
	40% {transform: scale(96%);}
	60% {transform: scale(102%);}
}

@-webkit-keyframes respire {
	0%, 20%, 50%, 80%, 100% {-webkit-transform: scale(100%);}	
	40% {-webkit-transform: scale(96%);}
	60% {-webkit-transform: scale(108%);}
}
 
@-moz-keyframes respire {
	0%, 20%, 50%, 80%, 100% {-moz-transform: scale(100%);}
	40% {-moz-transform: scale(96%);}
	60% {-moz-transform: scale(108%);}
}
 
@-o-keyframes respire {
	0%, 20%, 50%, 80%, 100% {-o-transform: scale(100%);}
	40% {-o-transform: scale(96%);}
	60% {-o-transform: scale(108%);}
}
@keyframes respire {
	0%, 20%, 50%, 80%, 100% {transform: scale(100%);}
	40% {transform: scale(96%);}
	60% {transform: scale(108%);}
}

@keyframes colors{
    from {background-color: #2673EE;}
    to {background-color: #007d38;}
}

@keyframes animate-gradient 
{
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
}















/******************************************** EN TETE ********************************************/
.header
{
    width: 100%;
    height: 77px;
    padding: 10px;
    display: flex;
    position: sticky;
    top: 0;
    left: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: url('../img-boukhari/etoiles.jpg');
    background-position: 40%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 12;
    box-shadow: 0px 0px 12px #757575;
    transition: 1.5s;
}
.header .menu-reel
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    margin-bottom: 0px;
}

.header .menu-reel li
{
    list-style: none;
    background: none;
    margin: 2px;
    transition: 0.5s;
    transition-delay: calc(0.1s * var(--i));
}
.header .menu-reel li a
{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background: #fff;
    width: 40px;
    height: 40px;
    color: var(--clr);
    border: 3px solid var(--clr);
    border-radius: 50%;
    font-size: 1.3em;
    transform: translateX(calc(5px));
    transition: 1s;
}
.header .menu-reel li a:hover
{
    transition: 0s;
    background: var(--clr);
    color: white;
    box-shadow: 0 0 10px var(--clr), 
    0 0 30px var(--clr), 
    0 0 50px var(--clr);
}
.header .menu-reel .toggle1
{
    width: 58px;
    height: 58px;
    background-image: url("../img-boukhari/logo256.png");
    background-position: 100%;
    background-repeat: none;
    background-size: cover;
    background-blend-mode:screen;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: appear 5s infinite;
	-webkit-animation: appear 5s infinite;
	-moz-animation: appear 5s infinite;
	-o-animation: appear 5s infinite;
    cursor: pointer;
    transition: .5s;
}
.header .menu-reel .toggle1:hover
{
    box-shadow: 0 0 10px #dcb01d;
    scale: 108%;
}

.header .bouton-header{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.header .bouton-header a
{
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-family: 'Raleway';
    background-color: var(--clr);
    border: none;
    border-radius: 12px;
    padding: 5px 10px;
    cursor: pointer;
    transition: 0.5s;
}
.header .bouton-header a:hover
{
    color: var(--clr);
    font-weight: 600;
    background-color: white;
    box-shadow: 0 0 30px var(--clr);
}


/******************* TOUS LES LIVRES *************/
.flexLivre
{
    display: flex;
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: fit-content;
    padding: 20px 10px;
}
.flexLivre.column
{
    display: flex;
    position: relative;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: fit-content;
    padding: 20px 10px;
}
.flexLivre .detailBoxLivre{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: fit-content;
}
.flexLivre .livreBox{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(60deg, #363636, #444);
    background-size: 400%,400%;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
    text-decoration: none;
    animation: animate-gradient 5s ease infinite;
    transition: .3s ease-in-out;
}
.flexLivre .livreBox:hover{
    transform: scale(1.05);
    background: linear-gradient(60deg, #444444, #363636);
}
.flexLivre .livreBox .boxFirst{
    display: flex;
    background-color: #2673EE;
    width: fit-content;
    border-radius: 12px;
    padding: 10px 15px;
    animation: colors 5s infinite ease-in-out;
}
.flexLivre .livreBox .boxFirst p.livreFirstLetter{
    font-size: 24px;
    font-weight: 800;
    align-self: center;
    line-height: 1;
    color: white;
    text-align: center;
    animation: respire 5s infinite;
	-webkit-animation: respire 5s infinite;
	-moz-animation: respire 5s infinite;
	-o-animation: respire 5s infinite;
    margin: 0;
}
.flexLivre .livreBox h2.livreTitre{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.3;
    color: white;
    margin: 10px 0px;
    border-radius: 12px;
    padding: 10px;
}
.flexLivre .livreBox h3.livreTitreArabe{
    font-size:20px;
    font-family: "Scheherazade New";
    color: #c7c7c7;
}
.flexLivre .livreBox p.nbHadithLivre{
    font-size:16px;
    color: #c7c7c7;
}
.flexLivre .livreBox p.nbHadithLivre span{
    margin: 3px;
    animation: appear 2s infinite;
	-webkit-animation: appear 2s infinite;
	-moz-animation: appear 2s infinite;
	-o-animation: appear 2s infinite;
}
.flexLivre .detailBoxLivre{
    margin: 10px;
}
.flexLivre .detailBoxLivre .savoirLivre{
    transition: 0.1s ease-in-out;
    margin-top: 10px;
}
.flexLivre .detailBoxLivre .savoirLivre:hover{
    transform: scaleX(105%);
}
.flexLivre .detailBoxLivre .savoirLivre a{
    text-decoration: none;
    padding: 10px;
    color: white;
    background: linear-gradient(to right, #2673EE, #00307d);
    border-radius: 30px;
    font-size: 18px;
    transition: 0.5s ease-in-out;
}
.flexLivre .detailBoxLivre .savoirLivre a:hover{
    background: linear-gradient(160deg, #00307d, #2673EE);
}






/******************* TOUS LES HADITHS *************/
ul.pagination .page-link{
    background: #02b35a;
    border-radius: 7px;
    margin: 0px 2px;
}
ul.pagination .page-link:hover{
    background: #07bb61;
    color: white;
}
ul.pagination .page-item.active .page-link{
    background: #03914a;
    color: white;
}

.tousleshadiths
{
    width: 100%;
    height: fit-content;
    padding: 30px 50px;
    display: flex;
    position: relative;
    flex-direction: column;
    flex: wrap;
    align-items: center;
    justify-content: center;
    background: linear-gradient(60deg, #d3d3d3, #ffffff);
}
.tousleshadiths .col-hadith
{
    display: flex;
    position: relative;
    flex-direction: column;
    flex: wrap;
    align-items: center;
    justify-content: center;
    width: 85%;
    height: fit-content;
    padding: 20px 10px;
    margin: 20px;
    border: 1px dashed #12121214;
    border-radius: 10px;
    box-shadow: 0 0 17px #12121214;
    background: whitesmoke;
}
.tousleshadiths .col-hadith .row-hadith
{
    display: flex;
    position: relative;
    flex-direction: row;
    flex: nowrap;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: fit-content;
}
.tousleshadiths .col-hadith .row-hadith .box1-hadith
{
    display: flex;
    position: relative;
    flex-direction: column;
    flex: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    min-height: 180px;
    height: fit-content;
    line-height: 1.5;
    border-radius: 10px;
    border: 1px solid #f0efef;
    background-color: #ffffff;
    padding: 5px 10px;
    margin: 0px 5px;
}
.tousleshadiths .col-hadith .row-hadith .box1-hadith h2
{
    font-size: 21px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    background: #999999;
    border-radius: 5px;
    padding: 5px 10px;
}
.tousleshadiths .col-hadith .row-hadith .box1-hadith p.chaine-transmission
{
    font-size: 13px;
    font-weight: 800;
    border-bottom: 3px solid #999999;
    padding: 5px 0px;
    margin-bottom: 20px;
}
.tousleshadiths .col-hadith .row-hadith .box1-hadith p.chaine-transmission span.narrateur
{
    font-weight: 600;
    text-decoration: none;
    transition: 0.5s;
}
.tousleshadiths .col-hadith .row-hadith .box1-hadith p.chaine-transmission span.narrateur:hover
{
    text-decoration: underline;
}
.tousleshadiths .col-hadith .row-hadith .box1-hadith p.hadithfr
{
    font-size: 14px;
    text-align: justify;
    line-height: 1.5;
    margin-bottom: 20px;
    margin: 0px 20px;
}
.tousleshadiths .col-hadith .row-hadith .box1-hadith .icon-copyfr span.material-symbols-outlined
{
    color: #999999;
    cursor: pointer;
    transition: 0.5s;
}
.tousleshadiths .col-hadith .row-hadith .box1-hadith .icon-copyfr span.material-symbols-outlined:hover
{
    color: rgb(17, 207, 118);
    transform: scale(108%);
}

.tousleshadiths .col-hadith .row-hadith .box2-hadith
{
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    min-height: 180px;
    line-height: 2;
    height: fit-content;
    border-radius: 10px;
    border: 1px solid #f0efef;
    background-color: #ffffff;
    padding: 10px;
    margin: 0px 5px;
}
.tousleshadiths .col-hadith .row-hadith .box2-hadith h2
{
    font-size: 21px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    background: #999999;
    border-radius: 5px;
    padding: 5px 10px;
}
.tousleshadiths .col-hadith .row-hadith .box2-hadith p.hadithar
{
    font-size: 17px;
    font-family: "Scheherazade New";
    text-align: right;
}
.tousleshadiths .col-hadith .row-hadith .box2-hadith .icon-copyar span.material-symbols-outlined
{
    color: #999999;
    cursor: pointer;
    transition: 0.5s;
}
.tousleshadiths .col-hadith .row-hadith .box2-hadith .icon-copyar span.material-symbols-outlined:hover
{
    color: rgb(17, 207, 118);
    transform: scale(108%);
}
.tousleshadiths .col-hadith .row-hadith .icon-fonction
{
    display: flex;
    position: relative;
    flex-direction: column;
    flex: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 180px;
    height: fit-content;
    border-radius: 10px;
    border: 1px solid #f0efef;
    background-color: white;
    padding: 5px 10px;
    margin: 0px 5px;
}
.tousleshadiths .col-hadith .row-hadith .icon-fonction span.material-symbols-outlined
{
    color: #999999;
    cursor: pointer;
    margin: 5px 5px;
    transition: 0.5s;
}
.tousleshadiths .col-hadith .row-hadith .icon-fonction span.material-symbols-outlined.save:hover
{
    color: rgb(255, 196, 20);
    transform: scale(108%);
}
.tousleshadiths .col-hadith .row-hadith .icon-fonction span.material-symbols-outlined.delete:hover
{
    color: rgb(255, 20, 20);
    transform: scale(108%);
}
.tousleshadiths .col-hadith .row-hadith .icon-fonction span.material-symbols-outlined.annote:hover
{
    color: rgb(255, 196, 20);
    transform: scale(108%);
}
.tousleshadiths .col-hadith .row-hadith .icon-fonction span.material-symbols-outlined.categorie:hover
{
    color: rgb(255, 196, 20);
    transform: scale(108%);
}
.tousleshadiths .col-hadith .row-hadith .icon-fonction span.material-symbols-outlined.toutcopier:hover
{
    color: rgb(17, 207, 118);
    transform: scale(108%);
}
.tousleshadiths .col-hadith .row-hadith .icon-fonction a.voirlehadith
{
    display: flex;
    text-decoration: none;
    color: #999;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Raleway';
    margin: 5px 5px;
}
.tousleshadiths .col-reseaux
{
    display: flex;
    flex-direction: row;
    flex: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: fit-content;
    padding: 5px 0px 0px 0px;
    border-radius: 10px;
}
.tousleshadiths .col-reseaux a
{
    font-size:18px;
    margin: 0px 5px;
    padding: 0px 5px;
    transition: 0.5s;
    color: #999;
    text-decoration: none;
}
.tousleshadiths .col-reseaux a:hover
{
    color: rgb(17, 207, 118);
    transform: scale(108%);
}

#categoriesList button.btn-categorieList
{
    margin: 5px;
    color: White;
    font-size: 18px;
    background-color: #2673EE;
    border-radius: 5px;
    border: none;
    padding: 5px 3px;
    transition: 0.2s ease-in-out;
}
#categoriesList button.btn-categorieList:hover{
    background-color: #0553d0fd;
}








/******************************************** PAGE INSCRIPTION **************************************/
body.pageconnexion-inscription
{
    min-height: 100vh;
    background: whitesmoke;
    overflow-x: hidden;
}
.inscription
{
    width: fit-content;
    height: fit-content;
    padding: 30px 50px;
    margin: 30px;
    display: flex;
    position: relative;
    flex-direction: column;
    flex: wrap;
    border-radius: 10px;
    box-shadow: 0 0 30px #01ffa6a1;
    align-items: center;
    justify-content: center;
    background: url("../img-boukhari/homme.png"), url("../img-boukhari/etoiles.jpg");
    background-position: 100% 100%, 100%;
    background-repeat: no-repeat;
    background-size: 70% ,cover;
    transition: 1.5s;
}
.inscription:hover
{

    background-position: 50% 100%, 30%;
    background-size: 80% ,cover;
}
.inscription h1
{
    color: white;
    text-align: center;
    margin-bottom: 30px;
}
.inscription .input-group-text
{
    background-color: #e9ecefc5;
}
.inscription .form-control
{
    background-color: #ffffffe8;
}
.inscription .btn-inscription
{
    color: white;
    padding: 5px 15px;
    margin-top: 30px;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Raleway';
    letter-spacing: 2px;
    border-radius: 5px;
    border: none;
    background-color: #07b76e;
    cursor: pointer;
    outline: 0;
    transition: 0.5s;
}
.inscription .btn-inscription:hover
{
    box-shadow: 0 0 30px white;
}
.inscription .btn-inscription:focus
{
    box-shadow: 0 0 30px rgb(255, 239, 18);
}
.inscription p
{
    color: white;
    margin-top: 30px;
    text-align: center;
    background: #999999;
    padding: 0px 15px;
    border-radius: 3px;
}
.inscription p.viv
{
    color: white;
    margin-top: 10px;
    width: fit-content;
    text-align: start;
    background: #121212c3;
    padding: 5px;
    border-radius: 5px;
}
.inscription a
{
    text-decoration: none;
    color: #121212;
    padding: 5px 15px;
    font-size: 18px;
    letter-spacing: 1.2px;
    font-weight: 400;    
    font-family: 'Raleway';
    border-radius: 30px;
    border: none;
    background-color: white;
    cursor: pointer;
    transition: 0.5s;
}
.inscription a:hover
{
    letter-spacing: 3px;
    box-shadow: 0 0 30px white;
}















/************************************* PAGE CONNEXION **************************************/

.connexion
{
    width: fit-content;
    height: fit-content;
    padding: 30px 50px;
    margin: 30px;
    display: flex;
    position: relative;
    flex-direction: column;
    flex: wrap;
    border-radius: 10px;
    box-shadow: 0 0 30px #01ffa6a1;
    align-items: center;
    justify-content: center;
    background: url("../img-boukhari/homme.png"), url("../img-boukhari/etoiles.jpg");
    background-position: 120% 100%, 100%;
    background-repeat: no-repeat;
    background-size: 70% ,cover;
    transition: 1.5s;
}
.connexion:hover
{

    background-position: 50% 100%, 30%;
    background-size: 80% ,cover;
}
.connexion h1
{
    color: white;
    text-align: center;
    margin-bottom: 30px;
}
.connexion .input-group-text
{
    background-color: #e9ecefc5;
}
.connexion .form-control
{
    background-color: #ffffffe8;
}
.connexion .btn-connexion
{
    color: white;
    padding: 5px 15px;
    margin-top: 30px;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Raleway';
    letter-spacing: 2px;
    border-radius: 5px;
    border: none;
    background-color: #07b76e;
    cursor: pointer;
    outline: 0;
    transition: 0.5s;
}
.connexion .btn-connexion:hover
{
    box-shadow: 0 0 30px white;
}
.connexion .btn-connexion:focus
{
    box-shadow: 0 0 30px rgb(255, 239, 18);
}
.connexion p
{
    color: white;
    margin-top: 30px;
    text-align: center;
    background: #999999;
    padding: 0px 15px;
    border-radius: 3px;
}
.connexion p.viv
{
    color: white;
    margin-top: 10px;
    text-align: start;
    background: transparent;
    padding: 10px;
    border-radius: none;
}
.connexion a
{
    text-decoration: none;
    color: #121212;
    padding: 5px 15px;
    font-size: 18px;
    letter-spacing: 1.2px;
    font-weight: 400;
    font-family: 'Raleway';
    border-radius: 30px;
    border: none;
    background-color: white;
    cursor: pointer;
    transition: 0.5s;
}
.connexion a:hover
{
    letter-spacing: 3px;
    box-shadow: 0 0 30px white;
}




















/*************************************** PAGE MON COMPTE *******************************/
.compte
{
    display: flex;
    position: relative;
    flex: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    background-color: #f0f0f0;
}
.compte aside.nav-profil
{
    display: flex;
    justify-content: flex-start;
    position: sticky;
    min-width: 270px;
    left: 0;
    top: 95px;
    flex: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: white;
    border: 1px solid #f0efef;
    border-radius: 10px;
    box-shadow: 0 0 17px #12121214;
    margin: 5px 5px 5px 5px;
    padding: 5px 5px;
    z-index: 1;
}

.compte aside.nav-profil .col-dataperso
{
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.compte aside.nav-profil .col-dataperso .col-boximg
{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    border: 5px solid white;
    box-shadow: 0 0 10px #121212;
    background: url("../img-boukhari/homme.png"), #12121247;
    background-repeat: no-repeat;
    background-position: 50% 10%;
    background-size: 220%;
}
.compte aside.nav-profil .col-dataperso h2
{
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-left: 5px;
}

.compte aside.nav-profil .col-data1
{
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: start;
    align-content: start;
    justify-content: start;
    width: fit-content;
    border-radius: 12px;
    margin: 3px 3px;
    padding: 5px 0px;
    background-color: #999;
}
.compte aside.nav-profil .col-data1 p
{
    display: flex;
    color: white;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Source sans pro';
    text-align: left;
    line-height: 1.2;
    margin: 0;
    padding: 5px 15px;
}

.compte aside.nav-profil .filter-container{
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: start;
    align-content: start;
    justify-content: start;
    width: 100%;
    border-radius: 12px;
    gap: 5px;
    margin: 3px 3px;
    padding: 5px 0px;
}
.compte aside.nav-profil .filter-container .form-select
{
    display: flex;
    color: #121212;
    font-weight: 500;
    font-size: 13px;
    border-radius: 30px;
    font-family: 'Source sans pro';
    text-align: left;
    line-height: 1.2;
    margin: 0;
    padding: 7px 7px;
}
.compte aside.nav-profil .filter-container .form-select option
{
    color: #121212;
    letter-spacing: 3px;
    font-weight: 600;
    padding: 3px;
    font-size: 13px;
    border-bottom: 1px solid #999;
    font-family: 'Source sans pro';
    text-align: left;
    line-height: 1.2;
}
.compte aside.nav-profil .filter-container #search
{
    display: flex;
    color: #121212;
    font-weight: 500;
    font-size: 13px;
    border-radius: 30px;
    font-family: 'Source sans pro';
    text-align: left;
    line-height: 1.2;
    margin: 0;
    padding: 7px 7px;
}
.compte aside.nav-profil .filter-container #reset-filters
{
    display: flex;
    color: white;
    background: linear-gradient(to right, #2673EE, #00307d);
    font-weight: 500;
    font-size: 14px;
    border-radius: 30px;
    border: none;
    font-family: 'Source sans pro';
    text-align: left;
    line-height: 1.2;
    margin: 0;
    padding: 10px 10px;
    transition: .1s ease-in-out;
}
.compte aside.nav-profil .filter-container #reset-filters:hover
{
    background: linear-gradient(to right, #00307d, #2673EE);
}
.compte aside.nav-profil .col-btn-edition
{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 5px 0px;
}
.compte aside.nav-profil .col-btn-edition a
{
    display: flex;
    width: 100%;
    text-decoration: none;
    font-family: 'Raleway';
    color: white;
    font-weight: 300;
    text-align: center;
    line-height: 1.2;
    margin: 3px;
    border-radius: 30px;
    padding: 5px 15px;
    background: #999;
}
.compte .tab-ongletmenu
{
    display: flex;
    position: sticky;
    top: 95px;
    margin: 0px 20px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-around;
    width: fit-content;
    height: fit-content;
    border: 1px dashed #12121214;
    border-radius: 10px;
    box-shadow: 0 0 17px #12121214;
    background: whitesmoke;
    z-index: 12;
}

.compte .tab-ongletmenu button#parametre {
    display: none;
    width: fit-content;
    height: 100%;
    border-radius: 5px;
    margin: 5px;
    border: 1px dashed var(--clr);
    text-decoration: none;
    color: var(--clr);
    background-color: white;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    padding: 15px 15px;
    transition: all 0.5s;
}
.compte .tab-ongletmenu button#parametre:hover,
.compte .tab-ongletmenu button#parametre.active
{
    border: 1px solid var(--clr);
    color: white;
    background-color: var(--clr);
}
.compte .tab-ongletmenu a
{
    display: flex;
    align-items: stretch;
    align-content: stretch;
    width: fit-content;
    height: 100%;
    margin: 5px;
    border-radius: 5px;
    border: 1px dashed var(--clr);
    text-decoration: none;
    color: var(--clr);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    padding: 15px 15px;
    transition: 0.5s;
}
.compte .tab-ongletmenu a:hover,
.compte .tab-ongletmenu a.active
{
    box-shadow: 0 0 10px var(--clr);
    border: 1px solid white;
    color: white;
    background: var(--clr);
}
.compte .tab-ongletmenu a#reinitialisation{
    border: none;
    color: #000;
    transition: 0.5s;
}
.compte .tab-ongletmenu a#reinitialisation:hover
{
    border: 1px solid #121212;
    color: #121212;
}
.compte .hadiths-svg-membre
{
    width: 100%;
    height: fit-content;
    margin: 20px 0px;
    padding: 10px 20px;
    display: flex;
    position: relative;
    flex-direction: column;
    flex: wrap;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}
.compte .hadiths-svg-membre .blockCategorie
{
    display: flex;
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
    width: 100%;
    height: fit-content;
    border-radius: 10px;
    background: whitesmoke;
}
.compte .hadiths-svg-membre .blockCategorie .differenteCategorie
{
    text-decoration: none;
    width: fit-content;
    height: fit-content;
    padding: 5px;
    margin: 3px;
    border-radius: 5px;
    box-shadow: 0 0 17px #12121214;
    background: var(--clr);
}
.compte .hadiths-svg-membre .blockCategorie .differenteCategorie p{
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.compte .hadiths-svg-membre .startCategorie{
    display: flex;
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: fit-content;
    border-radius: 10px;
    background: whitesmoke;
}
.compte .hadiths-svg-membre .startCategorie p.differenteCategorie{
    color: white;
    font-size: 15px;
    font-weight: 400;
    width: fit-content;
    height: fit-content;
    padding: 5px;
    margin: 3px;
    border-radius: 30px;
    background-color: var(--clr);
}
.compte .hadiths-svg-membre .col-hadith-svg-membre
{
    display: flex;
    position: relative;
    flex-direction: column;
    flex: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
    margin: 20px;
    padding: 20px 10px;
    border: 1px dashed #12121214;
    border-radius: 10px;
    box-shadow: 0 0 17px #12121214;
    background: whitesmoke;
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre
{
    display: flex;
    position: relative;
    flex-direction: row;
    flex: nowrap;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: fit-content;
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .col-hadith-membre
{
    display: flex;
    position: relative;
    flex-direction: column;
    flex: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
    border: 1px dashed #12121214;
    border-radius: 10px;
    box-shadow: 0 0 17px #12121214;
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .box1-hadith-svg-membre
{
    display: flex;
    position: relative;
    flex-direction: column;
    flex: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1.5px solid var(--backclr);
    box-shadow: 0 0 10px var(--backclr);
    background-color: #ffffff;
    padding: 5px 10px;
    margin: 0px 0px 5px 0px;
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .box1-hadith-svg-membre h2
{
    font-size: 17px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    background: #999999;
    border-radius: 5px;
    padding: 5px 10px;
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .box1-hadith-svg-membre p.chaine-transmission
{
    font-size: 14px;
    border-bottom: 3px solid #999999;
    padding: 5px 0px;
    margin-bottom: 20px;
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .box1-hadith-svg-membre p.chaine-transmission::selection
{
    color: whitesmoke;
    background: rgb(219, 22, 22);
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .box1-hadith-svg-membre p.chaine-transmission span.narrateur
{
    font-weight: 600;
    text-decoration: none;
    transition: 0.5s;
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .box1-hadith-svg-membre p.chaine-transmission span.narrateur:hover
{
    text-decoration: underline;
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .box1-hadith-svg-membre p.hadithfr
{
    font-size: 12px;
    text-align: justify;
    line-height: 1.5;
    margin-bottom: 20px;
    margin: 0px 20px;

}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .box1-hadith-svg-membre p.hadithfr::selection
{
    cursor: pointer;
    color:  whitesmoke;
    background-color: #0d6dfde5;
} 
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .box1-hadith-svg-membre .icon-copyfr span.material-symbols-outlined
{
    color: #999999;
    cursor: pointer;
    transition: 0.5s;
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .box1-hadith-svg-membre .icon-copyfr span.material-symbols-outlined:hover
{
    color: rgb(17, 207, 118);
    transform: scale(108%);
}

.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .box2-hadith-svg-membre
{
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1.5px solid var(--backclr);
    box-shadow: 0 0 10px var(--backclr);
    background-color: #ffffff;
    padding: 5px 10px;
    margin: 0px 5px;
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .box2-hadith-svg-membre p.hadithar
{
    font-size: 17px;
    font-family: "Scheherazade New";
    text-align: right;
    line-height: 2.1;
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .box2-hadith-svg-membre p.hadithar::selection
{
    cursor: pointer;
    color:  whitesmoke;
    background-color: #06cd77;
}      

.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .box2-hadith-svg-membre .icon-copyar span.material-symbols-outlined
{
    color: #999999;
    cursor: pointer;
    transition: 0.5s;
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .box2-hadith-svg-membre .icon-copyar span.material-symbols-outlined:hover
{
    color: rgb(17, 207, 118);
    transform: scale(108%);
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .icon-fonction
{
    display: flex;
    position: relative;
    flex-direction: column;
    flex: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 180px;
    height: fit-content;
    border-radius: 10px;
    border: 1px solid #f0efef;
    background-color: white;
    padding: 5px 10px;
    margin: 0px 5px;
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .icon-fonction span.material-symbols-outlined
{
    color: #999999;
    cursor: pointer;
    margin: 5px 5px;
    transition: 0.5s;
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .icon-fonction span.material-symbols-outlined.supprimer:hover,
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .icon-fonction span.material-symbols-outlined.delete:hover
{
    color: rgb(255, 20, 20);
    transform: scale(108%);
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .icon-fonction span.material-symbols-outlined.annote:hover
{
    color: rgb(255, 196, 20);
    transform: scale(108%);
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .icon-fonction span.material-symbols-outlined.categorie:hover
{
    color: rgb(255, 196, 20);
    transform: scale(108%);
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .icon-fonction span.material-symbols-outlined.toutcopier:hover
{
    color: rgb(17, 207, 118);
    transform: scale(108%);
}
.compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .icon-fonction a.voirlehadith
{
    display: flex;
    text-decoration: none;
    color: #999;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Raleway';
    letter-spacing: 2px;
    margin: 5px 5px;
}
.compte .hadiths-svg-membre .col-reseaux
{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: fit-content;
    padding: 5px 0px 0px 0px;
    border-radius: 10px;
}

.compte .hadiths-svg-membre .col-reseaux a
{
    font-size:18px;
    margin: 0px 5px;
    padding: 0px 5px;
    transition: 0.5s;
    color: #999;
    text-decoration: none;
}
.compte .hadiths-svg-membre .col-reseaux a:hover
{
    color: rgb(17, 207, 118);
    transform: scale(108%);

}


.compte .categories-membre
{
    width: 100%;
    height: fit-content;
    padding: 10px 20px;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #f0f0f0;
}
.compte form#formcategorie
{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    align-content: flex-start;
    margin: 10px;
    padding: 5px 10px;
    border: 1px dashed #12121214;
    border-radius: 10px;
    box-shadow: 0 0 17px #12121214;
    background: white;
}
.compte .categories-membre .row-categories
{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 20px;
    border: 1px dashed #12121214;
    border-radius: 10px;
    box-shadow: 0 0 17px #12121214;
    background: none;
}
.compte .categories-membre .row-categories .box1-categorie
{
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 140px;
    height: fit-content;
    background-color: whitesmoke;
    min-height: 140px;
    border-radius: 10px;
    box-shadow: inset 0 0 20px var(--clr);
    padding: 5px 10px;
    margin: 10px 15px;
    transition: 0.5s;
}
.compte .categories-membre .row-categories .box1-categorie .supprimer-categorie
{
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
    color: var(--clr);
    border-radius: 5px;
    cursor: pointer;
}
.compte .categories-membre .row-categories .box1-categorie .supprimer-categorie span
{
    color: var(--clr);
}
.compte .categories-membre .row-categories .box1-categorie .supprimer-categorie span
{
    color: var(--clr);
    padding: 2px;
    border-radius: 5px;
    transition: 0.5s;
    font-size: 30px;
    margin: 5px;
}
.compte .categories-membre .row-categories .box1-categorie .supprimer-categorie span:hover
{
    color: white;
    background: var(--clr);
    box-shadow: 0 0 7px var(--clr);
}
.compte .categories-membre .row-categories .box1-categorie p
{
    font-size: 21px;
    font-weight: 800;
    color: white;
    border-radius: 5px;
    padding: 5px 10px;
    transition: 0.5s;
}
.compte .categories-membre .row-categories .box1-categorie p
{
    font-size: 21px;
    font-weight: 300;
    color: var(--clr);
    border-radius: 5px;
    padding: 5px 0px;
}
.compte .categories-membre .row-categories .box1-categorie a.hadith-svg-reveal
{
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 5px 5px;
    border-radius: 5px;
    padding: 5px;
    background-color: var(--clr);
    box-shadow: 5px 5px 0px #dcdcdcbf;
    animation: appear 5s infinite;
	-webkit-animation: appear 5s infinite;
	-moz-animation: appear 5s infinite;
	-o-animation: appear 5s infinite;
}

.compte #createCategoryForm{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: start;
    align-content: start;
    height: fit-content;
    margin: 20px;
    padding: 5px 10px;
    border-radius: 10px;
    background: white;
}
.compte .categories-membre .reseaux
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
    padding: 20px 10px;
    border-radius: 10px;
}

.compte .categories-membre .reseaux a
{
    font-size: 28px;
    margin: 0px 5px;
    padding: 0px 5px;
    transition: 0.5s;
    text-decoration: none;
}
.compte .categories-membre .reseaux a:hover
{
    color: #121212;
    transform: scale(180%);
}

.compte .annotations-membre
{
    width: 100%;
    height: fit-content;
    padding: 20px 10px;
    display: flex;
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #f0f0f0;
}
.compte .annotations-membre .row-annotation
{
    display: flex;
    position: relative;
    flex-direction: row;
    width: fit-content;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 10px;
    border: 1px dashed #12121214;
    border-radius: 10px;
    box-shadow: 0 0 17px #12121214;
    background: white;
}
.compte .annotations-membre .row-annotation .col-annotation-svg-membre
{
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: fit-content;
    margin: 3px;
    padding: 10px;
    border-right: 1px solid #12121270;
}
.compte .annotations-membre .row-annotation .col-annotation-svg-membre .row-annotation-box
{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    column-gap: 10px;
    width: fit-content;
    height: fit-content;
}

.compte .annotations-membre .row-annotation .col-annotation-svg-membre .row-annotation-box h2.idAnnotation
{
    font-size: 14px;
    font-weight: 800;
    color: white;
    width: fit-content;
    margin-bottom: 10px;
    background: #999999;
    border-radius: 5px;
    padding: 5px 10px;
}

.compte .annotations-membre .row-annotation .col-annotation-svg-membre .row-annotation-box p.annotation
{
    font-size: 13px;
    font-weight: 700;
}

.compte .annotations-membre .row-annotation .col-annotation-svg-membre p.annotation
{
    background-color: #f3f3f3;
    color: #121212;
    font-size: 13px;
    font-weight: 300;
    padding: 10px;
    text-align: justify;
    border-radius: 10px;
}

.compte .annotations-membre .row-annotation .col-annotation-svg-membre p.annotation
{
    font-weight: 600;
}
.compte .annotations-membre .row-annotation .col-annotationHadith-svg-membre
{
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: fit-content;
    height: fit-content;
    margin: 3px;
    padding: 10px;
}
.compte .annotations-membre .row-annotation .col-annotationHadith-svg-membre .chaine-transmission
{
    font-weight: 800;
}
.compte .annotations-membre .row-annotation .col-annotationHadith-svg-membre .hadithfr
{
    font-weight: 400;
    margin: 20px 0px;
    text-align: justify;
    font-family: 'Raleway';
    font-size: 12px;
}
.compte .annotations-membre .row-annotation .col-annotationHadith-svg-membre .hadithar
{
    font-family: "Scheherazade New";
    font-weight: 400;
}


.compte .annotations-membre .row-annotation .icon-fonction
{
    display: flex;
    position: relative;
    flex-direction: column;
    flex: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    height: fit-content;
    border-radius: 10px;
    border: 1px solid #f0efef;
    background-color: white;
    padding: 5px 10px;
    margin: 0px 5px;
}
.compte .annotations-membre .row-annotation .icon-fonction span.material-symbols-outlined
{
    color: #999999;
    cursor: pointer;
    margin: 5px 5px;
    transition: 0.5s;
}
.compte .annotations-membre .row-annotation .icon-fonction span.material-symbols-outlined.supprimer:hover
{
    color: rgb(255, 20, 20);
    transform: scale(108%);
}
.compte .annotations-membre .row-annotation .icon-fonction span.material-symbols-outlined.delete:hover
{
    color: rgb(255, 20, 20);
    transform: scale(108%);
}
.compte .annotations-membre .row-annotation .icon-fonction span.material-symbols-outlined.annote:hover
{
    color: rgb(255, 196, 20);
    transform: scale(108%);
}
.compte .annotations-membre .row-annotation .icon-fonction span.material-symbols-outlined.categorie:hover
{
    color: rgb(255, 196, 20);
    transform: scale(108%);
}
.compte .annotations-membre .row-annotation .icon-fonction span.material-symbols-outlined.toutcopier:hover
{
    color: rgb(17, 207, 118);
    transform: scale(108%);
}
.compte .annotations-membre .row-annotation .icon-fonction a.voirlehadith
{
    display: flex;
    text-decoration: none;
    color: #999;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Raleway';
    letter-spacing: 2px;
    margin: 5px 5px;
}

#categorieModal .categorie-item{
    margin: 5px;
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
    box-shadow: 5px 5px #d3d3d3;
    color:white;
    transition: 0.1s ease-in-out;
}
#categorieModal .categorie-item:hover{
    transform: scale(102%);
    box-shadow: 3px 3px #e7e7e7;
}
footer#footer
{
    width: 100%;
    height: 300px;
    padding: 20px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('../img-boukhari/front.png'), url('../img-boukhari/etoiles.jpg');
    background-position: 100% 40%;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 1.5s;
}
footer#footer:hover
{
    background-position: 30% 60%;
}
footer#footer p
{
    color: white;
    font-size: 18px;
    font-weight: 300;
    font-family: 'Raleway';
    text-shadow: 0 0 20px whitesmoke;
    text-align: center;
}


/* Media Queries */
@media screen and (max-width: 1024px)
{
    .section1
    {
        justify-content: flex-start;
    }
    .section1 img.logo
    {
        position: relative;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 50px;
        margin-bottom: 20px;
        transform: translateY(0px);
        z-index: 9;
        animation: appear 2s infinite;
        -webkit-animation: appear 2s infinite;
        -moz-animation: appear 2s infinite;
        -o-animation: appear 2s infinite;
    }
    .section1 h1#txt-titre
    {
        position:relative;
        right: 0px;
        font-size: 24px;
        transform: translateY(0px);
    }
    .section1 a.btn-explorer
    {
        animation: respire 3s infinite;
        -webkit-animation: respire 3s infinite;
        -moz-animation: respire 3s infinite;
        -o-animation: respire 3s infinite;
        font-size: 18px;
        transform: translateY(-50px);
    }
    .section1 img
    {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
    }
    .tousleshadiths .col-hadith .row-hadith .box2-hadith p.hadithar 
    {
        font-size: 19px;
    }
    .compte aside.nav-profil
    {
        display: none;
    }
    .compte aside.nav-profil.active{
        display: flex;
        position: fixed;
        top: 160px;
        margin: 5px 5px 5px 20px;
        z-index: 20;
    }
    .compte .tab-ongletmenu button#parametre
    {
        display: flex;
    }
    .compte .hadiths-svg-membre
    {
        margin: 20px 0px;
    }
    .compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .box2-hadith-svg-membre p.hadithar
    {
        font-size: 19px;
    }
    .compte .categories-membre
    {
        padding: 10px 0px;
    }
    .compte .annotations-membre
    {
        padding: 10px 0px;
    }
    footer#footer
    {
        background-position: 30% 60%;
    }
}
@media screen and (max-width: 768px)
{
    h1{
        font-size: 24px;
        margin: 20px 30px;
    }
    .iconlogo ul.nav li
    {
        margin-right: 5px;
    }
    .iconlogo h3
    {
        font-size: calc(1rem + .6vw);
    }
    .menu li
    {
        transform-origin: 140px;
    }
    .menu li a
    {
        width: 45px;
        height: 45px;
    }
    .section3
    {
        padding: 20px;
    }
    .tousleshadiths
    {
        padding: 0px 0px;
    }
    .tousleshadiths .col-hadith .row-hadith{
        flex-direction: column;
    }
    
    .tousleshadiths .col-hadith .row-hadith .icon-fonction{
        flex-direction: row;
        min-height: fit-content;
    }
    .tousleshadiths h2
    {
        line-height: 1.5;
        text-align: center;
    }
    .inscription
    {
        margin: 20px 0px;
        padding: 30px 24px;
        border-radius: 0px;
    }
    .connexion
    {
        margin: 20px 0px;
        padding: 30px 24px;
        border-radius: 0px;
    }
    .compte .hadiths-svg-membre
    {
        margin: 20px 0px;
    }
    .compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre
    {
        flex-direction: column-reverse;
    }
    .compte .hadiths-svg-membre .col-hadith-svg-membre .row-hadith-svg-membre .icon-fonction
    {
        flex-direction: row;
        margin-bottom: 15px;
        min-height: fit-content;
    }
    .compte .categories-membre
    {
        padding: 10px 0px;
    }
    .compte .annotations-membre
    {
        padding: 20px 10px;
    }
    .compte .annotations-membre .row-annotation
    {
        flex-direction: column-reverse;
    }
    .compte .annotations-membre .row-annotation .col-annotation-svg-membre
    {
        border-top: 1px solid #12121270;
        border-right: none;
    }
    .compte .annotations-membre .row-annotation .icon-fonction
    {
        flex-direction: row;
    }
    footer#footer
    {
        background-position: 30% 60%;
    }
}
@media screen and (max-width: 430px)
{
    .section3 .presentation1 .box-presentation p.subtitre-presentation 
    {
        width: 80%;
    }
    .compte aside.nav-profil{
        position: fixed;
        top: 148px;
        margin: 5px 5px 5px 5px;
        min-width: 100%;
        z-index: 20;
    }
    .compte aside.nav-profil .col-data1 p
    {
        font-size: 16px;
    }
    .compte aside.nav-profil .filter-container .form-select
    {
        font-size: 15px;
    }
    .compte aside.nav-profil .filter-container #search
    {
        font-size: 15px;
    }
    .compte aside.nav-profil .filter-container #reset-filters
    {
        font-size: 16px;
    }

    .compte aside.nav-profil .col-btn-edition
    {
        align-items: flex-start;
    }
    .compte aside.nav-profil .col-btn-edition a
    {
        width: 35%;
    }
    .compte .tab-ongletmenu 
    {
        display: flex;
        flex-direction: row;
        position: fixed;
        top: auto;
        height: auto;
        bottom: 0;
        margin: 0px;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: nowrap;
        width: 100%;
        border: none;
        border-radius: 30px 30px 0px 0px;
    }
    .compte .tab-ongletmenu button#parametre{
        border-radius: 30px;
    }
    .compte .tab-ongletmenu a
    {
        flex-direction: column;
        align-items: center;
        align-content: center;
        font-size: 12px;
        border: none;
        border-radius: 0px;
        margin: 0px;
        padding: 13px 10px;
        font-weight: 500;
        height:70px;
        width:100%;
    }
}