/*
Theme name: Seminar
*/
@font-face {
    font-family: "Rosario-regular";
    src: url(fonts/Rosario-Regular.ttf);
}
@font-face {
    font-family: "Rosario";
    src: url(fonts/Rosario-Light.ttf);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Rosario';
}
.bar-border{
    position: absolute;
    top: 2%;
    right: 4%;
    width: 160px;
    height: 20px;
    border: 1px solid lightgray;
    border-radius: 5px;
    color: lightgray;
}
.bar-fill {
    background-color: #1c7596;
    width: 4%;
    height: 100%;
    border-radius: 5px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-family: 'Arial';
}
@media only screen and (max-width: 1300px) {
    .bar-border{
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 15px;
    }
}
/* ------------------ BACKGROUNDS ------------------  */
.front-bg{
    background-image: url("images/frame1-min.jpg");
}
.form-co{
    background-image: url("images/frame-co-min.jpg");
}
.info-bg {
    background-image: url("images/frame2-min.jpg");
}
.form-bg {
    background-image: url("images/frame3-min.jpg");
}
.form-gr {
    background-image: url("images/frame-gr-min.jpg");
}
.front-bg, .form-co, .info-bg, .form-bg, .form-gr {
    position: fixed;
    width: 100%;
    height: calc(100vh * 1.3);
    background-position: center;
    background-repeat: repeat;
    background-attachment: scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size:cover;
    background-size: cover;
    z-index: -10;
}
/* ------------------ FRONT PAGE ------------------  */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.frontblock {
    position: relative;
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;

    color: #FFFFFF;
    text-align: center;
}
.title {
    font-size: 2.75rem;
}
.welcomeblock {
    position: relative;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    background: #203C5A;
    border: 1px solid #60FFF5;
    border-radius: 50px;
    padding: 30px;
    margin: 20px 0;
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.start {
    display:inline-block;
    padding:0.6em 2.4em;
    margin:0 0.3em 0.3em 0;
    border-radius:2em;
    text-decoration:none;
    color: black;
    background: #60FFF5;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    text-align:center;
    transition: all 0.2s;
}
.start:hover{
    background-color:#4095c6;
}
.button {
    margin-top: 40px;
    text-align: center;
}
.langflag{
    width: 40px; 
    margin: 10px;
}
.language {
    display: inline-block;
    margin-top: auto;
}
@media only screen and (max-width: 1300px) {
    .frontblock{
        position: relative;
        width: 95%;
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
    }
    .title {
        font-size: 2rem;
    }
    .welcomeblock {
        padding: 1rem;
    }
    .language{
        text-align: center;
    }
}
/* ------------------ CONSENT PAGE ------------------  */
.co-block {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 20px;
    width: 75%;
}
.co-title {
    font-size: 2.5rem;
    line-height: 3rem;
    color: #60FFF5;
    font-family: 'Rosario-regular';
    text-align: center;
}
.co-text {
    background: #203C5A;
    border: 1px solid #60FFF5;
    border-radius: 50px;
    padding: 30px;
    margin-top: 15px;
    text-align: justify;
    color: #FFFFFF;
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.start-consent {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
@media only screen and (max-width: 1300px) {
    .co-block {
        width: 90%;
    }
    .co-title {
        font-size: 2rem;
    }
    .co-text {
        padding: 1.5rem;
    }
    .start-consent {
        margin-bottom: 1rem;
    }
}
/* ------------------ INFO ------------------  */
.addblock {
    position: relative;
}
.in-title {
    position: relative;
    display: inline-block;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    font-size: 2.5rem;
    line-height: 3rem;
    color: #60FFF5;
    font-family: 'Rosario-regular';
}
#ajaxinfo{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
input[type="text"], input[type="email"], input[type="number"] {
    font-size: 1.125rem;
    line-height: 1.75rem;
    border-radius: 10px;
    display:inline-block;
    border: none;
    padding-left: 5px;
}
input[type="radio"] {
    width: 26px;
    height: 26px;
}
input[type="checkbox"] {
    width: 22px;
    height: 22px;
}
input[type="radio"]:checked {
    filter: hue-rotate(335deg);
}
#educa {
    width: 220px;
    font-size: 1.125rem;
}
.generalinfo, .socialmedia, .selfassessment {
    position: relative;
    max-width: 660px;
    margin-top: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #FFFFFF;
    font-size: 1.375rem;
    line-height: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.tab {
    display: none;
}
.selfassessment {
    max-width: 720px;
    justify-content: flex-start;
    gap: unset;
}
label {
    font-family: Arial;
    font-size: 0.875rem;
    line-height: 1.125rem;
}
.radioflex {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.labelflex {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    text-align: center;
    line-height: 1.375rem;
}
table {
    margin: 5px;
    max-width: 720px;
    border-collapse: collapse;
}
td, th {
    border: 1px solid #dddddd;
    text-align: center;
    padding: 8px;
    font-weight: unset;
}
.mintitle {
    font-size: 2.125rem;
    line-height: 2.5rem;
    color: #60FFF5;
    text-align: left;
    border-top: none;
    border-left: none;
}
.qans {
    width: 90px;
    font-size: 1rem;
    line-height: 1.125rem;
}
.qname {
    font-size: 1.375rem;
    line-height: 1.75rem;
}
.continue {
    position: relative;
    align-self: self-end;
    margin-right: 100px;
    margin-bottom: 10px;
    width: 170px;
    height: 52px;
    background: #60FFF5;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    line-height: 1.5rem;
    transition: all 0.2s;
}
.continue:hover {
    cursor: pointer;
    background-color:#4095c6;
}
#infonext {
    position: relative;
    margin-top: 40px;
    left: 50%;
    transform: translateX(-50%);
}
@media only screen and (max-width: 1300px) {
    .continue{
        margin: 0 auto;
    }
    .in-title {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    .generalinfo, .socialmedia, .selfassessment {
        font-size: 1.125rem;
    }
    .addblock {
        width: 96%;
        left: 50%;
        transform: translateX(-50%);
    }
    input[type="text"], input[type="email"], input[type="number"] {
        font-size: 1rem;
    }
    #educa {
        font-size: 1rem;
    }
    .qans {
        font-size: 0.65rem;
        line-height: 1rem;
    }
    .qname {
        font-size: 0.90rem;
        line-height: 1.125rem;
    }
    .mintitle {
        font-size: 1rem;
        line-height: 1.25rem;
    }
    label {
        font-size: 0.75rem;
    }
    td, th {
        padding: 5px;
    }
}
/* ------------------ FORM ------------------  */
#map {
    z-index: 1;
    border-radius: 10px;
    position: absolute;
    width: 65%;
    height: 39%;
    left: 50%;
    transform: translateX(-50%);
    top: 59%;
}
.huechange {
    filter: hue-rotate(150deg);
}
.picture{
    border-radius: 10px;
    position: absolute;
    max-width: 67%;
    max-height: 57%;
    left: 50%;
    transform: translateX(-50%);
    top: 1%;
    cursor: pointer;
}
#modal{
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}
#modal.open {
    opacity: 1;
    pointer-events: all;
}
.full-size{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    max-height: 95%;
    max-width: 95%;
    transition: all 0.25s ease-out;
}
.full-size.open{
    transform: translate(-50%, -50%) scale(1);
}
.latitude, .longitude {
    opacity: 0;
    width: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 76.5%;
}
#instru {
    position: absolute;
    width: 07.34375%;
    height: 06.66666666666667%;
    min-width: 105px;
    left: 1.28333333333333%;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    border: none;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50px;

    top: 03.77319587628866%;
    background: #8DFF71;
}
#instru:hover {
    cursor: pointer;
}
#instruu {
    display: none;
    z-index: 100;
    position: absolute;
    left: 7.26458333333333%;
    top: 06.48453608247423%;
    width: 57.15625%;
}
#instruu img{
    width: 100%;
}
.x{
    position: absolute;
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.short{
    left: 96%;
    top: 6.63%;
}
.long{
    left: 96%;
    top: 4.7%;
}
#loadingDiv {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0,0,0,0.8);
}
#gif {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    z-index: 999;
}
.mininst {
    position: absolute;
    width: 8.20833333333333%;
    height: 0.1%;
    left: 8%;
    top: 70%;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}
.continue-form {
    position: absolute;
    left: 85%;
    top: 90%;
}
@media only screen and (max-width: 1280px) {
    #instru {
        display: none;
    }
    .picture{
        position: relative;
        max-width: 95%;
        max-height: 95%;
        left: 50%;
        transform: translateX(-50%);
        top: unset;
        margin-top: 10px;
        cursor: pointer;
    }
    .mininst {
        position: relative;
        width: unset;
        height: unset;
        left: unset;
        top: unset;
        font-size: 1.25rem;
        line-height: 1.5rem;
        text-align: center;
        color: #FFFFFF;
        margin: 10px;
    }
    #map{
        position: relative;
        width: 95%;
        height: 40vh;
        left: 50%;
        transform: translateX(-50%);
        top: unset;
        margin: 10px 0;
    }
    .latitude, .longitude {
        opacity: 0;
        width: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 90%;
    }
    .continue-form {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin: 10px;
    }
}
/* ------------------ END ------------------  */
.endend {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    position: absolute;
    height: 100%;
}
.endflex {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 43.17708333333333%;
    font-size: 24px;
    line-height: 27px;
    color: #FFFFFF;
}
.endflex2 {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 43.17708333333333%;
    font-size: 24px;
    line-height: 27px;
    color: #FFFFFF;
}
.continue-end {
    position: absolute;
    left: 80%;
    top: 90%;
}
@media only screen and (max-width: 900px) {
    .endend {
        height: unset;
        flex-direction: column;
        top: 5%;
        left: 50%;
        translate: -50% 0;
        width: 80%;
    }
    .endflex, .endflex2 {
        width: unset;
    }
    .continue-end {
        position: relative;
        left: unset;
        right: unset;
        margin-top: 20px;
    }
    .endflex div, .endflex2 div {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}
/* ------------------ GRATITUDE ------------------  */
.gr-block {
    position: absolute;
    left: 50%;
    top: 07.12962962962963%;
    transform: translateX(-50%);
    width: 50.28125%;
    height: 68.51851851851852%;
    font-size: 35px;
    line-height: 40px;
    text-align: center;
    color: #FFFFFF;
}
.gr-title {
    font-size: 40px;
    line-height: 48px;
    color: #60FFF5;
    font-family: 'Rosario-regular';
}
@media only screen and (max-width: 900px) {
    .gr-block {
        font-size: 28px;
        line-height: 40px;
    }
    .gr-title {
        font-size: 32px;
        line-height: 20px;
    }
}
/* ------------------ MEDIAQUERY ------------------  */
@media (max-height: 800px) {
    .fmq, .fmq1{
        line-height: 20px;
    }
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #1a1a1a;
  }
}