/*www.cdnjs.com/libraries/font-awesome*/
/*https://fontawesome.com/search?o=r&s=solid&f=classic*/

/*==================================================================*/
/*==================================================================*/
/*                              FONTS                               */
/*==================================================================*/
/*==================================================================*/
@font-face {
    font-family: 'ralewaybold';
    src: url('../font/raleway-bold-webfont.woff2') format('woff2'),
         url('../font/raleway-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ralewaybold_italic';
    src: url('../font/raleway-bolditalic-webfont.woff2') format('woff2'),
         url('../font/raleway-bolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ralewayextrabold';
    src: url('../font/raleway-extrabold-webfont.woff2') format('woff2'),
         url('../font/raleway-extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ralewayextrabold_italic';
    src: url('../font/raleway-extrabolditalic-webfont.woff2') format('woff2'),
         url('../font/raleway-extrabolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'raleway_lightregular';
    src: url('../font/raleway-light-webfont.woff2') format('woff2'),
         url('../font/raleway-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'raleway_lightitalic';
    src: url('../font/raleway-lightitalic-webfont.woff2') format('woff2'),
         url('../font/raleway-lightitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ralewaymedium';
    src: url('../font/raleway-medium-webfont.woff2') format('woff2'),
         url('../font/raleway-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'raleway_mediumitalic';
    src: url('../font/raleway-mediumitalic-webfont.woff2') format('woff2'),
         url('../font/raleway-mediumitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'raleway_regular';
    src: url('../font/raleway-regular-webfont.woff2') format('woff2'),
         url('../font/raleway-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'raleway_regularitalic';
    src: url('../font/raleway-regularitalic-webfont.woff2') format('woff2'),
         url('../font/raleway-regularitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ralewaysemibold';
    src: url('../font/raleway-semibold-webfont.woff2') format('woff2'),
         url('../font/raleway-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ralewaysemibold_italic';
    src: url('../font/raleway-semibolditalic-webfont.woff2') format('woff2'),
         url('../font/raleway-semibolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
/*==================================================================*/
/*==================================================================*/
/*                           COLOR SCHEMES                          */
/*==================================================================*/
/*==================================================================*/


:root{
    --background-color: #ffffff;    
    --background-variant: #f8f8f8;
    --text-color: #000000;       
    --secondary-text: #777777;
    --primary-color: #444444;
    --small-contrast-color: #cccccc;
    --tiny-contrast-color: #e5e5e5;
    --accent-color: #C69E35;
    --accent-highlight: #FFD04B;
    --check-color: #5fd25f;
    --box-shadow: rgba(0, 0, 0, 0.5);
}

.darkmode{
    --background-color: #000000;    
    --background-variant: #070707;
    --text-color: #ffffff;       
    --secondary-text: #888888;
    --primary-color: #aaaaaa;
    --small-contrast-color: #333333;
    --tiny-contrast-color: #222222;
    --accent-color: #C69E35;
    --accent-highlight: #FFD04B;
    --check-color: #5fd25f;
    --box-shadow: rgba(1, 1, 1, 0.5);
}

a {
  text-decoration: none;
}

html {
    background-color: black;
    background-attachment: scroll;
}


/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*                MOBILE VERSION / HAMBURGER MENU                   */
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
@media (max-width: 100vw) {


    body { 
      /*  -moz-user-select: none; 
        -webkit-user-select: none; 
        -ms-user-select:none; 
        user-select:none;
        -o-user-select:none; */
        text-align: center; 
        background-color: var(--background-color);
        background-attachment: scroll;
        margin: 0;
        height: 100%;
    }


    #theme-switch{
        height: 10.2vw;
        width: 10.2vw;
        padding: 0;
        border-radius: 50%;
        border: solid 0 var(--background-color);
        background-color: var(--background-color);
        display:flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 2.86vw;
        right: 2.86vw;
    }


    #theme-switch svg{
        fill: var(--text-color);
    }


    #theme-switch svg:last-child{
        display: none;
    }


    .darkmode #theme-switch svg:first-child{
        display: none;
    }


    .darkmode #theme-switch svg:last-child{
        display: block;
    }


    #centerContainer { 
        width: 100%; 
        text-align: center; 
        margin: 0vw auto;
    }


    .topmar {
        font-family: raleway_lightitalic, sans-serif;
        font-size: 0.51vw;
    }


    .splash-logo {
        -moz-user-select: none; 
        -webkit-user-select: none; 
        -ms-user-select:none; 
        user-select:none;
        -o-user-select:none;
        width: 14.28vw;
        height: 14.28vw;
        margin-left: auto;
        margin-right: auto;
        background-image: url(../img/WOA_Logo.gif);
        background-repeat: no-repeat;
        background-size: cover;
    }



    .splash-title1 {
        font-family: ralewayextrabold_italic, sans-serif;
        font-size: 7.14vw;
        color: var(--text-color);
        margin-top: 1.02vw;
    }


    .splash-title2 {
        font-family: raleway_lightitalic, sans-serif;
        font-size: 5.1vw;
        color: var(--text-color);
    }


    .splash-title3 {
        font-family: raleway_lightitalic, sans-serif;
        font-size: 5.1vw;
        color: var(--text-color);
        padding-bottom: 1.02vw;
    }


    .splash-title4 {
        font-family: ralewaybold, sans-serif;
        font-size: 3.06vw;
        color: var(--accent-color);
        text-decoration: underline;
    }


    #theme-switch svg{
        fill: var(--text-color);
    }


    #cog-heart svg{
        fill: var(--small-contrast-color);
        width: 14.28vw;
        height: 14.28vw;
    }


    .language-selector {
        appearance: none;
        border: none;
        padding: 1.02vw 2.04vw 1.02vw 2.04vw;
        display: block;
        margin-top: 0.51vw;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.64vw;
        text-align: left; 
        border-width: 0.42vw;
        border-color:  var(--accent-color);
        border-style: solid;
        outline: none; /* Remove default outline if it's interfering */
        border-radius: 2.04vw;
        width: 81.60vw;
        cursor: pointer;
        line-height: 7.35vw;
        height: 8.16vw;
        font-family: raleway_regular, sans-serif;
        font-size: 5.1vw;
        background-color: var(--tiny-contrast-color);
        color: var(--text-color);
    }


    .reli {
        padding-top: 2.04vw;
    }


    .checkit {
        padding-top: 8.16vw;
    }


    [type="checkbox"]{
        opacity:0;
        margin-bottom: 5.1vw;
    }


    [type="checkbox"] + label{
        position:relative;
        padding-left: 8.16vw;
        padding-right: 4.08vw;
        cursor:pointer;
        display:inline-block;
        color: var(--text-color);
        line-height:6.12vw;
        font-family: ralewaybold, sans-serif;
        font-size: 3.06vw;   
    }

    [type="checkbox"] + label::before{
        content:"";
        position:absolute;
        left:0;
        top:0;
        width:5.72vw;
        height:5.72vw;
        outline:0.4vw solid var(--accent-color);
        background: var(--background-color);
    }

    [type="checkbox"]:checked + label::before{
        content:"";
        position:absolute;
        left:0;
        top:0;
        width:5.72vw;
        height:5.72vw;
        outline:0.4vw solid var(--check-color);
        background: var(--background-color);
    }


    [type="checkbox"]:checked + label::after{
        content:"";
        position:absolute;
        left:0;
        top:0;
        width:5.72vw;
        height:5.72vw;
        background-image:url(../img/Check_Image.png);
        background-size:contain;
    }


    .continue-button {
        border: none;
        outline: none;
        border-radius: 8.16vw;
        background-color: var(--accent-color);
        font-family: ralewayextrabold, sans-serif;
        font-size: 7.14vw;
        color: black;
        width: 85.72vw;
        height: 16.32vw;
        justify-content: center;
        cursor: pointer;
    }

    .continue-button:hover:enabled {
      background-color:var(--accent-highlight) !important;
    }

    .errormessage {
        background-color: var(--background-color);
        color: red;
        font-family: ralewayextrabold, sans-serif;
        font-size: 4.48vw;
    }


    *,
    *::after,
    *::before {
        margin: 0vw;
        padding: 0vw;
        box-sizing: inherit;
        font-size: 6.12vw;
    }


    .form__label {
        font-family: ralewaybold, sans-serif;
        font-size: 3.06vw;
        margin-left: 3.06vw;
        margin-top: 0vw;
        display: block;
        transition: all 0.3s;
        transform: translateY(-10.2vw);
        color: var(--accent-color);
        background: transparent;
        text-align: left;
    }


    .form__input {
        font-family: raleway_lightregular, sans-serif;
        color: var(--text-color);
        font-size: 5.1vw;
        padding-left: 3.06vw;
        padding-top: 1.53vw;
        background: var(--tiny-contrast-color);
        border-width: 0.42vw;
        border-color:  var(--accent-color);
        border-style: solid;
        margin-top: -2.04vw;
        outline: none; /* Remove default outline if it's interfering */
        border-radius: 2.04vw;
        width: 82.4vw;
        height: 8.16vw;
        display: block;
        /*transition: all 0.3s;*/
    }


    .form__input:placeholder-shown + .form__label {
        opacity: 0;
        background: var(--tiny-contrast-color);
        visibility: hidden;
        font-size: 3.06vw;
        -webkit-transform: translateY(-2.04vw);
        transform: translateY(-2.04vw);
    }


    ::placeholder {
        font-family: ralewaybold, sans-serif;
        background: var(--tiny-contrast-color);
        color: var(--accent-color);
        font-size: 3.06vw;
        opacity: 1; /* Firefox */
    }


    ::-ms-input-placeholder { /* Edge 12 -18 */
        font-family: ralewaybold, sans-serif;
        background: var(--tiny-contrast-color);
        color: var(--accent-color);
        font-size: 3.06vw;
    }

    .loginform {
        border: none;
        outline: none;
        width: 81.4vw;
        text-align: center; 
        margin: 0vw auto;
    }


   .submit-button {
        border: none;
        outline: none;
        border-radius: 2.04vw;
        background-color: var(--accent-color);
        font-family: ralewayextrabold, sans-serif;
        color: black;
        width: 85.71vw;
        height: 10.2vw;
        font-size: 4.49vw;
        align-items: center;
        margin-top: 4.08vw;
        display: flex;
        padding: 0.31vw;
        justify-content: center;
        cursor: pointer;
    }

    .submit-button:hover:enabled {
      background-color: var(--accent-highlight) !important;
    }


    .iconclass {
        width: 7.14vw; 
        height: 7.14vw;
    }


    .w_btn_text {
        color: black;
        margin-left: 4.08vw;
    }

}



/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/

/*==================================================================*/
/*==================================================================*/
/*                DESKTOP VERSION / HAMBURGER MENU                  */
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
@media (min-width: 980px) {


    body { 
      /*  -moz-user-select: none; 
        -webkit-user-select: none; 
        -ms-user-select:none; 
        user-select:none;
        -o-user-select:none; */
        text-align: center; 
        background-color: var(--background-color);
        background: var(--background-color);
        background-attachment: scroll;
        margin: 0;
        min-height: 100%;
    }


    #theme-switch{
        height: 100px;
        width: 100px;
        padding: 0;
        border-radius: 50%;
        border: solid 0px var(--background-color);
        background-color: var(--background-color) important!;
        display:flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 28px;
        right: 28px;
    }


    #theme-switch svg{
        fill: var(--text-color);
    }


    #theme-switch svg:last-child{
        display: none;
    }


    .darkmode #theme-switch svg:first-child{
        display: none;
    }


    .darkmode #theme-switch svg:last-child{
        display: block;
    }


    #centerContainer { 
        width: 980px;
        text-align: center; 
        margin: 0px auto;
        background-color: var(--background-color);
    }


    .topmar {
        font-family: raleway_lightitalic, sans-serif;
        font-size: 5px;
    }


   .splash-logo {
        -moz-user-select: none; 
        -webkit-user-select: none; 
        -ms-user-select:none; 
        user-select:none;
        -o-user-select:none;
        width: 140px;
        height: 140px;
        margin-left: auto;
        margin-right: auto;
        background-image: url(../img/WOA_Logo.gif);
        background-repeat: no-repeat;
        background-size: cover;
    }


    .splash-title1 {
        font-family: ralewayextrabold_italic, sans-serif;
        font-size: 70px;
        color: var(--text-color);
        margin-top: 10px;
    }


    .splash-title2 {
        font-family: raleway_lightitalic, sans-serif;
        font-size: 50px;
        color: var(--text-color);
    }


    .splash-title3 {
        font-family: raleway_lightitalic, sans-serif;
        font-size: 50px;
        color: var(--text-color);
        padding-bottom: 10px;
    }


    .splash-title4 {
        font-family: ralewaybold, sans-serif;
        font-size: 30px;
        color: var(--accent-color);
        text-decoration: underline;
    }


    #cog-heart svg{
        fill: var(--small-contrast-color);
        width: 140px;
        height: 140px;
    }


    .language-selector {
        appearance: none;
        border: none;
        padding: 10px 20px 10px 20px;
        display: block;
        margin-top: 5px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 16px;
        text-align: left; 
        border-width: 4px;
        border-color:  var(--accent-color);
        border-style: solid;
        outline: none; /* Remove default outline if it's interfering */
        border-radius: 20px;
        width: 800px;
        cursor: pointer;
        line-height: 72px;
        height: 80px;
        font-family: raleway_regular, sans-serif;
        font-size: 50px;
        background-color: var(--tiny-contrast-color);
        color: var(--text-color);
    }


    .reli {
        padding-top: 20px;
    }


    .checkit {
        padding-top: 80px;
    }


    [type="checkbox"]{
        opacity:0;
        margin-bottom: 50px;
    }


    [type="checkbox"] + label{
        position:relative;
        padding-left: 80px;
        padding-right: 40px;
        cursor:pointer;
        display:inline-block;
        color: var(--text-color);
        line-height:60px;
        font-family: ralewaybold, sans-serif;
        font-size: 30px;   
    }

    [type="checkbox"] + label::before{
        content:"";
        position:absolute;
        left:0;
        top:0;
        width:56px;
        height:56px;
        outline:4px solid var(--accent-color);
        background: var(--background-color);
    }

    [type="checkbox"]:checked + label::before{
        content:"";
        position:absolute;
        left:0;
        top:0;
        width:56px;
        height:56px;
        outline:4px solid var(--check-color);
        background: var(--background-color);
    }


    [type="checkbox"]:checked + label::after{
        content:"";
        position:absolute;
        left:0;
        top:0;
        width:56px;
        height:56px;
        background-image:url(../img/Check_Image.png);
        background-size:contain;
    }


    .continue-button {
        border: none;
        outline: none;
        border-radius: 80px;
        background-color: var(--accent-color);
        font-family: ralewayextrabold, sans-serif;
        font-size: 70px;
        color: black;
        width: 840px;
        height: 160px;
        justify-content: center;
        cursor: pointer;
    }

    .continue-button:hover:enabled {
      background-color:var(--accent-highlight) !important;
    }


    .errormessage {
        background-color: var(--background-color);
        color: #ff0000;
        font-family: ralewayextrabold, sans-serif;
        font-size: 44px;
    }


    *,
    *::after,
    *::before {
        margin: 0px;
        padding: 0px;
        box-sizing: inherit;
        font-size:  60pt;
    }


    .form__label {
        font-family: ralewaybold, sans-serif;
        font-size: 30px;
        margin-left: 30px;
        margin-top: 0px;
        display: block;
        transition: all 0.3s;
        transform:  translateY(-100px);
        color: var(--accent-color);
        background: transparent;
        text-align: left;
    }


    .form__input {
        font-family: raleway_lightregular, sans-serif;
        color: var(--text-color);
        font-size: 50px;
        padding-left: 30px;
        padding-top: 15px;
        margin-top: -20px;
        background: var(--tiny-contrast-color);
        border-width: 4px;
        border-color:  var(--accent-color);
        border-style: solid;
        outline: none; /* Remove default outline if it's interfering */
        border-radius: 20px;
        width: 810px;
        height: 80px;
        display: block;
        /*transition: all 0.3s;*/
    }


    .form__input:placeholder-shown + .form__label {
        opacity: 0;
        background: var(--tiny-contrast-color);
        visibility: hidden;
        font-size: 30px;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }


    ::placeholder {
        font-family: ralewaybold, sans-serif;
        background: var(--tiny-contrast-color);
        color: var(--accent-color);
        font-size: 30px;
        opacity: 1; /* Firefox */
    }


    ::-ms-input-placeholder { /* Edge 12 -18 */
        font-family: ralewaybold, sans-serif;
        background: var(--tiny-contrast-color);
        color: var(--accent-color);
        font-size: 30pt;
    }


    .loginform {
        border: none;
        outline: none;
        width: 800px;
        text-align: center; 
        margin: 0px auto;
        background-color: var(--background-color);
    }


    .submit-button {
        border: none;
        outline: none;
        border-radius: 20px;
        background-color: var(--accent-color);
        font-family: ralewayextrabold, sans-serif;
        color: black;
        width: 840px;
        height: 100px;
        font-size: 44px;
        align-items: center;
        margin-top: 40px;
        display: flex;
        padding: 3px;
        justify-content: center;
        cursor: pointer;
    }

    .submit-button:hover:enabled {
      background-color: var(--accent-highlight) !important;
    }


    .iconclass {
        width: 70px; 
        height: 70px;
    }


    .w_btn_text {
        color: black;
        margin-left: 40px;
    }

}