/* Importer une police externe */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap');

:root {
    --themeId: 0;
    --titleTextColor: #0a0a0a;
    --textColor: #181818;
    --theme: #363636;
    --divsmaincolor: #beffc4;
    --invertedTextColor: #ffffff;
    --grayScaleDivBack: #beffc4;

    --currentEventDivSize: 0;
}

body, html {
    display: block;
    width: 100%;
}

body {
    background-color: var(--theme);
    color: var(--textColor);
    min-height: 100vh;
    justify-content: space-between;
    overflow-x: hidden;
    font-family: "Montserrat";
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

* {
    outline: none;
}

/* Epaisseur de la scrollbar*/
*::-webkit-scrollbar {
    width: 10px !important;
}

/* Fond de la scrollbar*/
*::-webkit-scrollbar-track {
    background: rgba(44, 44, 46, 0.789);
}

/* Barre*/
*::-webkit-scrollbar-thumb {
    background: rgb(20, 20, 20);
}

/* Barre hover*/
*::-webkit-scrollbar-thumb:hover {
    background: rgb(76, 76, 76);
    border-radius: 7px;
}

section {
    justify-content: normal;
    margin: 40px 0;
}

.baseDivOfSection {
    margin: 30px;
    border-radius: 15px;
    background-color: var(--divsmaincolor);
    overflow: hidden;
}

.baseDivOfSectionPadded {
    margin: 30px;
    border-radius: 15px;
    background-color: var(--divsmaincolor);
    overflow: hidden;
    padding: 20px;
}

.baseDivOfSectionPaddedLarge {
    margin: 30px 10rem;
    border-radius: 15px;
    background-color: var(--divsmaincolor);
    overflow: hidden;
    padding: 5rem;
}

.baseDivOfSection img {
    object-fit: contain;
    width: 100%;
    margin: 0;
}

#homeDesc {
    box-sizing: border-box;
}

.homeDivsSection {
    justify-content: center;
    display: grid;
    align-items: center;
    grid-template-columns: 400px 1fr;
    grid-template-rows: auto;
}

.homeDivsSection .mySlides img {
    height: 400px;
}

.smallDivsSection {
    justify-content: center;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, 750px);
    grid-template-rows: auto;
}

@media (max-width: 1589px) and (orientation: portrait) {
    header img:not(.adminImage) {
        content: url('/public/assets/banner_website_small.png');
    }

    .adminImage {
        content: url('/public/assets/banner_admin_small.png');
    }

    .topNav {
        padding: 0.5rem;
    }

    .wideDivsSection p {
        margin: 1rem
    }

    .smallDivsSection, .homeDivsSection {
        display: block;
        grid-template-columns: none;
    }

    .baseDivOfSectionPadded {
        margin: 30px 0;
    }

    .baseDivOfSectionPaddedLarge {
        margin: 30px 0;
        padding: 2rem;
    }

    #homeDesc {
        height: auto;
        margin-top: 0px;
        box-sizing: border-box;
    }
}

.smallDivsSection div {
    min-height: 500px;
}

.smallDivsSection .breedersDiv {
    height: 500px;
    width: 700px;
}

@media (max-width: 1589px) and (orientation: portrait) {
    .smallDivsSection .breedersDiv {
        display: block;
        height: auto;
        width: auto;
        margin: 15px 0;
    }

    .baseDivOfSection {
        margin: 0;
    }
}

.wideDivsSection {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 2rem;
    padding: 2%;
    margin: 50px 8%;
    width: 80%;
    background: var(--divsmaincolor);
    border-radius: 15px;
    min-height: 20%;
    overflow: hidden;
}

.wideDivsSection:first-child {
    flex-direction: row;
}

.wideDivsSection p {
    color: var(--textColor);
    height: fit-content;
    text-align: justify;
}

.wideDivsSection img:not(.elevagedescription img) {
    width: 25rem;
    border-radius: 0.5rem;
}

@media (max-width: 1589px) and (orientation: portrait) {
    .wideDivsSection {
        gap: 0;
        flex-direction: column-reverse;
    }

    .wideDivsSection:not(:last-child) {
        flex-direction: column;
    }
}

.microDivsSection {
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, 370px);
    grid-template-rows: auto;
}

.microDivsSection div {
    margin: 10px;
    height: 200px;
    width: 350px;
}

.qcqErrorDiv {
    text-align: center;
    color: white;
    font-size: 22px;
    background-color: #1c1c1c;
    padding: 50px;
}

.qcqErrorDiv img {
    margin: 20px;
    width: 150px;
}

.carousel {
    border-radius: 15px;
    z-index: -5;
}

.greenBack {
    background-color: #7faa83;
}

.greenBackLight {
    background-color: var(--divsmaincolor);
}

.slideshow-container {
    border-radius: 15px;
    position: relative;
    margin: auto;
    margin: 0;
}

.mySlides img {
    height: 500px;
    display: block;
}

.mySlides {
    display: none;
}

.prev, .next {
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 5;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    color: rgba(172, 172, 172, 0.8);
}

/* Fading animation */

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 0.5s;
    animation-name: fade;
    animation-duration: 0.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}


.contactDiv {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto;
}

@media (max-width: 1589px) and (orientation: portrait) {
    .contactDiv {
        display: block;
    }

    .contactDiv * {
        margin-left: 5% !important;
        margin-right: 0 !important;
    }

    .contactMap iframe {
        height: 300px !important;
    }

}

.contactMap iframe {
    width: 85%;
    height: 85%;
    border-radius: 15px;
    border: none;
}

#monForm input, .textarea {
    resize: vertical;
    min-width: 350px;
    font-family: "Calibri Light", sans-serif;
    outline: none;
    border-style: none;
    background-color: var(--invertedTextColor);
    color: var(--textColor);
    font-size: medium;
    font-weight: bold;
    padding: 15px;
    margin: 15px;
    border-radius: 15px;
}

#monForm .textarea {
    min-height: 130px;
}

@media screen and (orientation: portrait) {
    #monForm input, .textarea {
        min-width: 80%;
    }

}

#monForm .button {
    margin-left: 15px;
    font-family: "Montserrat ExtraBold", sans-serif;
    border-style: none;
    color: white;
    background-color: #000000;
    padding: 20px;
    min-width: 200px;
    margin-bottom: 100px;
    border-radius: 10px;
}

#monForm .button:hover {
    background-color: #1c1c1c;
    cursor: pointer;
}

#monForm {
    margin-left: 100px;
}

#texteinfos {
    font-family: "Montserrat bold", sans-serif;
    margin: 0 0 20px 16px;
    font-size: 16px;
    max-width: 500px;
    color: var(--invertedTextColor);
}

footer {
    position: static;
    bottom: 0;
    padding: 20px 0;
    background: linear-gradient(0deg, #00000088 30%, #ffffff44 100%), url('../assets/footer.png');
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

#redirectContact {
    font-size: 18px;
}

.clickableContact {
    color: aqua !important;
    cursor: pointer;
}

.footerContent {
    text-align: center;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(3, 300px);
    grid-template-rows: auto;
}

.footerContent p {
    margin: 20px;
    font-size: 18px;
}

.footerContent a {
    font-size: 13px;
    color: white;
}

@media (max-width: 1589px) and (orientation: portrait) {
    .footerContent {
        display: block;
    }
}

.copyright {
    font-size: 10px;
    text-align: center;
}

.galery {
    column-count: 4;
}

@media (max-width: 1589px) and (orientation: portrait) {
    .galery {
        column-count: 2;
    }
}


.galery img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.galery video {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.titrePage {
    font-size: 0.6rem !important;
    margin: 0 auto;
    width: 30%;
    max-width: 700px;
    padding: 0.8rem;
    background: var(--divsmaincolor);
    border-radius: 25px;
    font-family: "Montserrat Extrabold", sans-serif;
    text-align: center;
    margin-bottom: 40px;
}

.BaseAvendreDiv {
    align-items: center;
    display: grid;
    grid-template-columns: 35% 40% 25%;
    grid-template-rows: auto !important;
    margin: 60px 80px;
    padding: 2rem;
    border-radius: 20px;
    background: var(--divsmaincolor);
    text-align: center;
}

.BaseAvendreDiv:nth-child(odd) {
    padding: 50px 50px 50px 0;
    direction: rtl;
}

.BaseAvendreDiv:nth-child(odd) * {
    direction: ltr;
}

.textetitle {
    font-size: 25px;
    margin-bottom: 50px;
    font-family: "Montserrat Bold", sans-serif;
}

.BaseAvendreDiv:nth-child(even) .parentsWrap {
    border-left: solid #7faa83;
}

.BaseAvendreDiv:nth-child(odd) .parentsWrap {
    border-right: solid #7faa83;
}

@media (max-width: 1589px) and (orientation: portrait) {
    .BaseAvendreDiv {
        grid-template-columns: auto;
        grid-template-rows: 35% 40% 25%;
        margin: 60px 0px 0px 0px;
        padding: 50px 10px 100px 10px;
    }

    .BaseAvendreDiv:nth-child(odd) {
        padding: 50px 10px 100px 10px;
    }

    .textetitle {
        margin-top: 60px;
    }

    .BaseAvendreDiv:nth-child(even) .parentsWrap {
        border-left: none;
    }

    .BaseAvendreDiv:nth-child(odd) .parentsWrap {
        border-right: none;
    }
}


.BaseAvendreDiv .leftSide {
    text-align: center;
}

.avendreCarousel {
    margin: 40px;
    border-radius: 15px;
    overflow: hidden;
}


.parentsWrap {
    border-width: 5px;
}


.parents {
    padding: 15px;
    height: 100%;
    display: grid;
    grid-template-columns: auto;
}

.parents .madre, .padre {
    text-align: center;
}

.madre, .padre {
    background-color: var(--divsmaincolor);
    padding: 1rem;
    border-radius: 0.5rem;
}

.parents .madre p, .padre p {
    font-size: 18px;
    font-weight: 600;
    margin: 10px;
}

.parents .madre img, .padre img {
    border-radius: 10px;
    object-fit: contain;
    display: block;
    width: 100%;
    height: 300px;
}

.avendreCarousel img {
    border-radius: 10px;
    width: 100%;
    margin: 0;
    object-fit: contain;
}


.textedescription {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-size: 15px;
    text-align: left;
    margin: 1.5rem;
    font-family: "Montserrat bold", sans-serif;
    font-weight: normal;
}

.textedescription p {
    line-break: anywhere;
}

.pricediv {
    padding: 1rem;
    margin: 1.5rem;
    border-radius: 0.5rem;
    color: #0a0a0a;
    background: #7faa83;
    font-weight: bold;
    text-align: center;
    font-family: Calibri, sans-serif;
    font-size: 25px;
}

.barre {
    max-height: 50px;
}

.baseDivLabel {
    transition: transform 330ms ease-in-out;
    text-align: center;
    font-size: 28px;
    color: white;
    margin: auto;
    margin-top: 62%;
    display: block;
    z-index: 0;
    position: relative;
    padding-bottom: 15px;
    padding-top: 15px;
}

.baseDivSizecm {
    text-align: end;
    font-size: 30px;
    color: white;
    margin-left: 85%;
    display: block;
}

.baseDivImg {
    border: none;
    outline: none;
    z-index: 0;
    position: absolute;
    width: 700px !important;
    height: 500px;
}

@media (max-width: 1589px) and (orientation: portrait) {
    .baseDivLabel {
        margin-top: 0;
    }

    .baseDivImg {
        border-radius: 0 !important;
        position: static;
        display: block;
        width: 100% !important;
        height: auto;
    }
}

/*Hamburger styling*/
/*
@media screen and (max-width: 750px) {
    header div.topNav a {display: none;}
    header div.topNav div {display: none;}
    .dropdown-content {margin-top: 0px !important; margin-left: 175px !important; position: absolute !important;}
    .dropdown:hover .dropdown-content {
        display: flex;
    }
    header div.topNav a.icon {
      float: right;
      display: block;
    }
  }

  @media screen and (max-width: 750px) {
    header div.topNav.responsive {position: relative; display: block !important;}
    header div.topNav.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    header div.topNav.responsive a {
      display: flex;
      text-align: left;
      width: 80px;
    }


    header div.topNav.responsive div {
        display: flex;
        text-align: left;
    }
  }

  header div.topNav .icon {
    display: none;
}
*/

.popup {
    display: none;
    position: fixed;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    user-select: none;
    animation: zoom 0.3s;
    cursor: zoom-out;
}

.popupContent {
    display: inline-block;
    /*
    height: 90%;
    max-width: 90%;
    */
    margin-top: 50vh;
    transform: translateY(-50%);
    background: #363636;
    border-radius: 15px;
    overflow: hidden;
    cursor: auto;
}

.popupDisappear {
    animation: forwards zoom_out_disappear 0.3s;
}

@keyframes zoom {
    from {
        display: revert;
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes zoom_out_disappear {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(0);
        display: none;
    }
}

@media screen and (orientation: portrait) {
    .popupContent {
        width: 100%;
    }

    .popupContent img {
        width: 100%;
    }
}

@media screen and (orientation: landscape) {
    .popupContent {
        margin: 50vh 50px 50px 50px;
        height: 90%;
    }

    .popupContent img {
        width: 100%;
        height: 100%;
    }
}

.popupClose {
    top: 0;
    right: 5px;
    position: absolute;
    z-index: 100;
    margin: 10px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.zoomImg:hover {
    cursor: zoom-in;
}

.reproducteursTip {
    color: white;
    text-align: center;
    font-size: 20px;
}

.baseDivExtraInfo {
    transition: transform 330ms ease-in-out;
    text-align: left;
    font-size: 17px;
    color: white;
    margin: auto;
    padding-top: 25px;
    padding-left: 25px;
    display: inline-block;
    z-index: 0;
    position: relative;
}

.baseDivExtraDescription {
    transition: transform 330ms ease-in-out;
    text-align: center;
    font-size: 15px;
    color: white;
    margin: auto;
    display: block;
    z-index: 0;
    position: relative;
}

.baseDivInfo {
    position: relative;
    transition: transform 330ms ease-in-out;
    animation: colorReverse 500ms forwards;
    background-color: #141414;
    height: 600px;
    z-index: 6;
}

.baseDivInfo:hover {
    animation: colorHover 500ms forwards;
    transform: translate(0px, -435px);
}

@media (max-width: 1589px) and (orientation: portrait) {
    .baseDivInfo {
        padding: 20px;
        height: auto;
    }

    .baseDivInfo:hover {
        animation: none;
        transform: none;
    }
}

.baseDivInfoStats {
    display: grid;
    grid-template-columns: 140px 130px 180px;
    text-align: center;
    color: white;
    font-size: 17px;
    padding-top: 25px;
    z-index: 0;
    position: relative;
    justify-content: center;
    min-height: 100px !important;
}

.smallDivsSectionBreeders div {
    min-height: 25px;
}

.breedersImg {
    object-fit: fill !important;
}

@keyframes colorHover {
    from {
        background-color: #141414;
    }

    to {
        background-color: rgba(20, 20, 20, 0.75);
    }
}

@keyframes colorReverse {
    from {
        background-color: rgba(20, 20, 20, 0.75);
    }

    to {
        background-color: #141414;
    }
}

.elevagedescription {
}

.elevagedescription * {
    margin: 0;
}

.homedescription {
    text-align: justify;
    font-size: 15px;
    font-family: "Montserrat SemiBold", sans-serif;
}

#HomeDescriptionTitle {
    color: var(--titleTextColor);
    font-size: 20px;
    font-family: "Montserrat ExtraBold", sans-serif;
    text-align: center;
}

button#buttonRedirect {
    cursor: pointer;
    border: none;
    border-radius: 15px;
    color: #eff2fa;
    background-color: #ff6464;
    transition: 500ms;
    margin: 20px;
    padding: 20px;
    font-size: 18px;
    font-weight: 550;
    font-family: "Montserrat", sans-serif;
}

button#buttonRedirect:hover {
    background-color: #eff2fa;
    color: #1c1c1c
}

.galeryVideo {
    display: none;
}

/* page event */
.row {
    margin: 0 5% 5%;
}

.card {
    filter: opacity(1);
    padding: 0.75rem 0;
    margin-top: 2%;
    background-color: var(--divsmaincolor);
    border-radius: 10px;
    display: grid;
    grid-template-columns: 30% 40% 30%;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.dateEventEdit {
    gap: 1rem;
    display: flex;
    align-items: center;
}

.date {
    grid-area: 1 / 1 / 2 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.namevent {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agrandir {
    grid-area: 1 / 3 / 2 / 4;
}

.information {
    margin-top: 2rem;
    animation: none;
}

.date-text {
    font-size: 2rem;
    margin: 0;
    padding: 0;
}

.date-month {
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

.title {
    margin: 0;
    padding: 0;
}

.knowmorediv {
    gap: 1rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text {
    overflow: hidden;
    color: var(--theme);
    z-index: -1;
    display: none;
    text-align: justify;
    margin: 0 3rem;
    grid-area: 2 / 1 / 3 / 4;
    animation: down 6s;
}

.upDiv {
    animation: up forwards 1s;
}

@keyframes down {
    from {
        max-height: 0;
    }
    to {
        max-height: 500vh;
    }
}

@keyframes up {
    from {
        max-height: var(--currentEventDivSize);
    }
    to {
        max-height: 0;
    }
}


#pagination {
    display: flex;
    justify-content: space-between;
    padding-bottom: 14px;
}

.previous {
}

.nexte {
    justify-self: flex-end;
}

.previous, .nexte {
    color: white;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    width: auto;
    font-weight: bold;
    font-size: 18px;
    padding: 16px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 5;
}

.previous:hover, .nexte:hover {
    color: rgba(172, 172, 172, 0.8);
}

.savoirplus {
    filter: invert(var(--themeId));
    margin: auto;
    width: 8rem;
}

@media screen and (max-width: 1589px) and (orientation: portrait) {
    .row {
        margin: 0;
    }

    .savoirplus {
        width: 100%;
    }
}


.triage {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2%;
}

.searchbar {
    font-family: "Calibri Light", sans-serif;
    border-style: none;
    background-color: var(--invertedTextColor);
    color: var(--textColor);
    font-size: medium;
    font-weight: bold;
    padding: 15px;
    border-radius: 15px;
    min-width: 350px;
}

.search, .choice, .filter {
    cursor: pointer;
    font-family: "Calibri Light", sans-serif;
    border-style: none;
    background-color: var(--textColor);
    color: var(--invertedTextColor);
    font-size: medium;
    font-weight: bold;
    padding: 15px;
    border-radius: 15px;
}

.choice {
    border-right: var(--textColor) solid 0.5rem;
}

.search:hover {
    background-color: #484747;
}

/* loggin admin */

.connection {
    color: rgba(0, 0, 0, .65);
    font-family: Montserrat, sans-serif;
    border-radius: 1rem;
    text-align: center;
    margin: auto auto;
    background-color: #beffc4;
    padding: 2rem 5rem;
}

.reverted {
    margin: 2rem;
    width: 5rem;
    filter: invert(80%);
}

.connection form {
    text-align: left;
    margin: auto 2rem;
}

.connection p {
    margin-top: 2rem;
    font-weight: bold;
}

.connection h1 {
    margin: 0.5rem
}

.connection h4 {
    margin-top: 0;
    margin-bottom: 3rem;
}

.connection input {
    width: 100%;
    outline: none;
    border: none;
    font-family: Montserrat, sans-serif;
    color: white;
    background-color: #363636;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.connection input[type="submit"] {
    transition: 0.5s;
    font-size: 1rem;
    width: 60%;
    cursor: pointer;
    margin: 2rem auto;
    font-weight: bold;
}

.connection input[type="submit"]:hover {
    background-color: #101010;
}


.alreadyCon {
    transition: 0.5s;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 1rem;
    background-color: #363636;
    padding: 1rem;
}


.alreadyCon:hover {
    background-color: #101010;
}

.alreadyCon img {
    margin-right: 0.5rem;
    width: 2rem;
}

.alreadyCon a {
    color: white;
}

/*--------------------------------ADMIN------------------------------------------*/

.adminPageContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-content: stretch;
    align-items: flex-start;
    padding: 0 10vw 0 10vw;
}

.adminPageItem {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    order: 0;
    flex: 1 1 auto;
    align-self: auto;
    text-align: center;
    margin: 1vh 1vh 1vh 1vh;
    border-radius: 0.5rem;
    background-size: cover !important;
    background-position: center !important;
    cursor: pointer;
    color: white;
    width: 100%;
}

.adminPageItem div:first-child {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem 0.5rem 0 0;
}

.adminPageItem img {
    margin: 2rem;
    width: 50px;
    filter: invert(1);
}

.grayDiv {
    filter: grayscale(1);
    background: var(--grayScaleDivBack);
}

.adminPageText {
    text-align: center;
    color: white;
    width: 100%;
    padding: 1.5vh 0 1.5vh 0;
    border-radius: 0 0 0.5rem 0.5rem;
    background-color: #181818;
}

.formAne {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: stretch;
    align-content: stretch;
    align-items: flex-start;
    padding: 0 10vw 0 10vw;

    gap: 0px;
    height: 100%;
}

.conteneurAne {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: nowrap;
    justify-content: stretch;
    align-content: stretch;
    align-items: flex-start;
}

.divAne1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
    order: 0;
    align-self: auto;
    border-radius: 20px;
    width: 70%
}

.divAne2 {
    align-items: flex-start;
    justify-content: flex-start;
}

.divAne3 {
    height: 100%;
    order: 0;
    align-self: auto;
    border-radius: 20px;
    width: 70%
}

.divAne5 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.adminInput {
    padding: 1rem;
    border: none;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, .25);
    background-color: #E0FFE3;
    outline: none;
    border-radius: 0.5rem;
}

#descAne {
    padding: 1rem;
    border: none;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, .25);
    outline: none;
    background-color: #E0FFE3;
    border-radius: 0.5rem;
    min-height: 10rem;
    resize: vertical;
}

.custom-file-upload {
    text-align: center;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    background-color: var(--theme);
    color: var(--invertedTextColor);
    border-radius: 30px 0 0 30px;
}

input[type="file"] {
    display: none;
}

.paragraph_text {
    font-family: Montserrat;
    padding: 1rem;
    width: 100%;
    width: -moz-available; /* WebKit-based browsers will ignore this. */
    width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
    width: fill-available;
    resize: vertical;
    outline: none;
    border: none;
    border-radius: 1rem;
    color: white;
    background-color: #141414;
}

.wideDivsSection .tox-tinymce {
    width: 100%;
    width: -moz-available; /* WebKit-based browsers will ignore this. */
    width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
    width: fill-available;
}

.buttonEdit {
    font-family: Montserrat;
    font-weight: bolder;
    margin: 1rem 0;
    outline: none;
    border: none;
    padding: 1rem;
    background-color: #141414;
    color: white;
    width: 100%;
    border-radius: 1rem;
    cursor: pointer;
}

.selectCarousel {
    background-color: #141414;
    color: white;
    cursor: pointer;
    text-align: center;
    border-top: #363636 solid 0.2rem;
    padding: 1rem;
}

.adminReturn {
    color: #ff4444 !important;
}

.gridFormAne {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.divAne5 {
    gap: 10rem;
    display: flex;
}

.divAne5 div:not(.imagesAdminMultiple) {
    display: flex;
    flex-direction: column;
}

.twoLines {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.twoLines b {
    color: var(--titleTextColor);
    font-weight: bolder;
}

.imagesAdminMultiple {
    column-count: 5;
}

.imagesAdminMultiple img, .imagesAdminMultiple video {
    width: 100%;
    border-radius: 0.5rem;
    border: none;
}

.imagesAdmin:not(.imagesAdminMultiple) img {
    width: 300px;
}

.gridFormAne input[type="submit"] {
    font-family: Montserrat, sans-serif;
    margin-top: 3rem;
    font-weight: bolder;
    background-color: var(--theme);
    color: var(--invertedTextColor);
    padding: 1rem;
    width: 15rem;
    border-radius: 1rem;
    cursor: pointer;
    border: none;
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 100;
    }
}

#pedigree, #dateavendre, #datevendu {
    animation: fade forwards 0.5s;
    display: none;
}

@media (max-width: 1589px) and (orientation: portrait) {
    .connection input[type="submit"] {
        width: 100%;
    }

    .alreadyCon {
        text-align: center;
        flex-direction: column;
    }

    .adminPageContainer {
        flex-direction: column;
    }
}


@media (max-width: 1380px) {
    .adminInput {
        width: 100%;
    }

    .gridFormAne {
        margin: 1rem;
    }

    .gridFormAne * {
        flex-direction: column;
    }

    .conteneurAne div:not(.selectDonkeyDiv):not(.popupSelectDonkeys) {
        width: 100%;
    }

    .divAne1 {
        gap: 1.5rem;
    }

    .divAne1 input {
        width: 100%;
    }

    .divAne5 {
        gap: 1.5rem;
        display: flex;
    }

    .imagesAdminMultiple {
        column-count: 3;
    }

    .imagesAdmin:not(.imagesAdminMultiple) img {
        width: 100%;
    }

    .selectDonkeyDiv {
        width: 100% !important;
        width: -moz-available !important; /* WebKit-based browsers will ignore this. */
        width: -webkit-fill-available !important; /* Mozilla-based browsers will ignore this. */
        width: fill-available !important;
    }

    .popupSelectDonkeys {
        height: auto !important;
        flex-direction: column;
        flex-wrap: revert !important;
    }

}

@media (max-width: 1650px) {
    .adminInput {
        width: 8rem;
    }
}

.c40 {
    flex: 40;
}

.c60 {
    flex: 60;
}

.fullsize {
    width: 100%;
    height: 100%;
}


.customRadioDivHorizontal {
    display: flex;
    gap: 1rem;
}

.customRadioDivVertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.customRadio {
    cursor: pointer;
    background-color: var(--theme);
    padding: 0.7rem;
    border-radius: 0.5rem;
    color: var(--invertedTextColor);
}

.customRadio input[type=radio] {
    filter: grayscale(1);
    margin-right: 0.6rem;
}

hr {
    border: solid 0.5px #3636367d;
}

.textInfosTab {
    flex-wrap: wrap;
    display: flex;
    gap: 3rem;
}

.textInfos {
    display: flex;
    background-color: #7faa83;
    padding: 1rem;
    border-radius: 0.5rem;
    flex-direction: column;
    gap: 0.5rem;
    flex: 100;
}

.textInfos img {
    width: 2rem;
}

.textInfos div:first-child {
    display: flex;
    gap: 0.5rem;
    font-weight: bold;
    align-items: center;
}

@media (max-width: 1589px) and (orientation: portrait) {
    .textInfosTab {
        flex-direction: column;
        gap: 2rem;
    }
}

.pagination_wrapper {
    display: flex;
    justify-content: center;
}

.pagination {
    background-color: var(--divsmaincolor);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
}

.pagination a {
    cursor: pointer;
    color: black;
    padding: 8px 16px;
    text-decoration: none;
}

.pagination a.active {
    background-color: #4CAF50;
    color: white;
    border-radius: 5px;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
    border-radius: 5px;
}


/* Modify event */
.adminsend {
    font-family: Montserrat, sans-serif;
    font-weight: bolder;
    background-color: var(--theme);
    color: var(--invertedTextColor);
    padding: 1rem;
    width: 100%;
    border-radius: 1rem;
    cursor: pointer;
    border: none;
}

.cardadmin {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    filter: opacity(1);
    padding: 0.75rem 0;
    margin-top: 2%;
    background-color: var(--divsmaincolor);
    border-radius: 10px;
}

.buttonsRowEventEdit {
    margin: 1.5rem 3rem;
    display: flex;
    flex: 1;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: inherit;
}

@media (max-width: 1589px) and (orientation: portrait) {

    .buttonsRowEventEdit, .buttonsRowEventEdit div {
        flex-direction: column;
    }

    .editEventTitle, .dateEventEdit input {
        width: 100%;
        width: -moz-available; /* WebKit-based browsers will ignore this. */
        width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
        width: fill-available;
    }

    .triage {
        margin: 1rem;
        justify-content: flex-start;
    }

    .triage form {
        gap: 0.6rem;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
}

.editEventTitle {
    width: 100%;
    width: -moz-available; /* WebKit-based browsers will ignore this. */
    width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
    width: fill-available;
}

.selectButton {
    transition: 0.5s;
    cursor: pointer;
    background-color: #363636;
    padding: 1rem;
    color: white;
    font-family: Montserrat, sans-serif;
    border: none;
    border-radius: 1rem;
}

.selectButton:hover {
    background-color: #1c1c1c;
}

.popupSelectDonkeys {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 4% 10%;
    height: 100%;
    height: -moz-available; /* WebKit-based browsers will ignore this. */
    height: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
    height: fill-available;
}

.selectDonkeyDiv {
    text-align: center;
    z-index: 2;
    transition: 0.5s;
    height: fit-content;
    background-color: var(--divsmaincolor);
    border-radius: 15px;
    padding: 1rem;
    flex: 20%;
    min-width: 20%;
}

.selectDonkeyDiv:hover, .madre:hover, .padre:hover {
    cursor: pointer;
    filter: sepia(0.5);
}

.selectDonkeyDiv img {
    height: 15rem;
    width: 100%;
    object-fit: contain;
    margin: auto;
}

.selectDonkeyDiv h3 {
    margin: 1rem 0 0;
}

.divAne5 .selectDonkeyDiv {
    width: auto;
    min-width: fit-content;
}

.divAne5 .selectDonkeyDiv img {
    height: 20rem;
}

.parentsAdminWrapper {
    flex: 1;
}

.spinner {
    animation: rotate 2s linear infinite;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    width: 50px;
    height: 50px;
}

.path {
    stroke: black;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

.loading {
    z-index: 500;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.noDonkeys {
    flex: 1;
    margin: unset;
    color: white;
    font-size: larger;
    background-color: #00000075;
    padding: 1rem;
    border-radius: 0.5rem;
}

.removeSelectButton {
    cursor: pointer;
}

.removeSelectButton:hover {
    font-weight: bold;
    color: #ff4444;
}

/* images */
.conteneur {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--divsmaincolor);
    margin-left: 3em;
    margin-right: 3em;
    padding: 2%;
    border-radius: 15px;
    gap: 1rem;
}

.addimage {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: var(--divsmaincolor);
    margin-left: 3em;
    margin-right: 3em;
    margin-bottom: 3em;
    padding: 2%;
    border-radius: 15px;
    gap: 1rem;
}

.media {
    width: 25rem
}

.medias {
    width: 100%;
    height: inherit;
    object-fit: cover;
    border-radius: 1rem;
}

.imageWrapperMedias {
    padding: 0.5rem;
    height: 20rem;
}

.conteneur form {
    background-color: #7faa83;
    border-radius: 1rem;
}

.downloadTextInfos {
    cursor: pointer;
}

.downloadTextInfos:hover {
    filter: invert(1);
    background-color: #cccccc;
}

.suprimage {
    display: flex;
    width: 100%;
    justify-content: center;
}

.baseDivOfSectionPaddedLargeEdit {

}

.insetImagesGalery {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.addimage form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.baseDivOfSectionPaddedLargeEdit {

}

.gridFormAneModif {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: 15px;
    background-color: var(--divsmaincolor);
    overflow: hidden;
    margin: 30px 10em;
    padding: 2em;
}

.gridFormAneModif input[type="submit"] {
    font-family: Montserrat, sans-serif;
    margin-top: 3rem;
    font-weight: bolder;
    background-color: var(--theme);
    color: var(--invertedTextColor);
    padding: 1rem;
    width: 15rem;
    border-radius: 1rem;
    cursor: pointer;
    border: none;
}

@media (max-width: 1589px) and (orientation: portrait) {
    .conteneurAneEdit {
        margin: 30px 0;
        padding: 2rem;
        flex-direction: column;
    }

    .gridFormAneModif {
        margin: 30px 1em;
    }

    .gridFormAneModif * {
        display: flex;
        flex-direction: column;
    }

    .conteneurAneEdit div div {
        width: 100%;
    }

    .addimage {
        padding-top: 2rem;
        margin: 0;
    }
}

.carouselEditHome .slideshow-container {
    border-radius: 0;
}
.actualCarouseText {
    background-color: #363636;
    padding: 1rem;
    color: white;
}

.withDesc {
    margin-bottom: 0.2rem;
}

.buttonsWrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.swal-text {
    text-align: center;
}

.mediaDisappear {
    animation: disappear 0.2s ease-in-out;
}

@keyframes disappear {
    from {
        opacity: 1;
        filter: grayscale(0);
    }
    to {
        opacity: 0;
        filter: grayscale(1);
    }
}

.fileUploadImage {
    margin: 1rem 0;
}

.editProfile .connection {
    width: 50%;
}