@font-face {
    font-family: "Agenda";
    src: url(font/agenda-light.ttf);
}

p {
    font-family: "Agenda";
    margin: 0;
}

.submit-button-orange {
    font-family: "Agenda";
    font-weight: 500;
    font-size: 1.15em;
    color: #FF3D00;
    text-align: center;

    display: inline-block;
    padding: 10px;
    cursor: pointer;
    border: 1px solid black;
    border-radius: 40px;
    border-color: #FF3D00;
    /* color: black; */
    background-color: white;
    margin-bottom: 10px;
    transition: all 0.2s ease-in;
}


.title-text {
    font-family: "Agenda";
    font-weight: 500;
    font-size: 3em;
    text-align: center;
    margin-bottom: 16px;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    min-width: 300px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: column;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

img {
    padding: 0;
    display: block;
    margin: 0 auto;
    max-height: 100%;
    max-width: 100%;
}

.submit-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.save-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.input-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    clear: both;
    width: 60vw;
    height: fit-content;
}

.info-text {
    font-family: "Agenda";
    font-weight: 500;
    font-size: 1.15em;
    color: #FF3D00;
    text-align: center;
}

li {
    list-style-type: none;
    list-style-position: outside;
    padding: 10px;
    float: left;
}

input[type="checkbox"]:not(:checked),
input[type="checkbox"]:checked {
    position: absolute;
    left: -9999%;
}

input[type="checkbox"]+label {
    display: inline-block;
    padding: 10px;
    cursor: pointer;
    border: 1px solid black;
    border-radius: 40px;
    color: black;
    background-color: white;
    margin-bottom: 10px;
    transition: all 0.2s ease-in;
}

input[type="checkbox"]+label:hover {
    border: 1px solid white;
    color: white;
    background-color: #00000070;
    transition: all 0.2s ease-in;
}

input[type="checkbox"].selected+label {
    border: 1px solid white;
    color: white;
    background-color: #000000;
    transition: all 0.2s ease-in;
}

.checkbox-label {
    font-family: "Agenda";
    font-weight: 300;
    font-size: 1.15em;
}

.checkbox-label p {
    padding-left: 5px;
    padding-right: 5px;
}

label {
    margin-bottom: 0px;
}

.special-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: fit-content;
    gap: 64px;
    margin-top: 16px;
}

a {
    color: #000000;
    text-decoration: underline;
    font-size: 1.5em;
}

a:hover {
    color: #00000080;
    cursor: pointer;
}

.link-text {
    /* color: #000000;
    text-decoration: underline;
    font-size: 1.5em; */

    text-decoration: none;


    font-family: "Agenda";
    font-weight: 500;
    font-size: 1.15em;
    color: #FF3D00;
    text-align: center;

    /* align-items: center; */

    display: inline-block;
    padding: 10px;
    cursor: pointer;
    border: 1px solid black;
    border-radius: 40px;
    border-color: #FF3D00;
    /* color: black; */
    background-color: white;
    margin-bottom: 10px;
    transition: all 0.2s ease-in;

}

.image-container {
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 100%;
    max-width: 100%;
}

#spinner {
    position: absolute;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: black;
    width: 100%;
    height: 100%;
}

/* SPINNER NEW*/
.spinner-element {
    position: absolute;
    width: 5vw;
    height: 5vw;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

.spinner-element::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 0.5vw solid #FFF;
    animation: prixClipFix 2s linear infinite;
}

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

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)
    }

    75% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%)
    }

    100% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0)
    }
}

/* RESPONSIVENESS */
@media screen and (max-width: 3000px) {
    .input-container {
        width: 70vw;
    }
}


@media screen and (max-width: 1000px) {
    .input-container {
        width: 80vw;
    }
}

@media screen and (max-width: 600px) {
    .title-text {
        font-size: 2.5em;
        margin-bottom: 8px;
    }

    .input-container {
        width: 90vw;
    }

    .checkbox-label {
        font-size: 1em;
    }
}

@media screen and (max-width: 500px) {
    .title-text {
        font-size: 2em;
        margin-bottom: 0px;
    }
}