/*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);
}
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*                MOBILE VERSION / HAMBURGER MENU                   */
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
@media (max-width: 100vw) {


    html, 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);
        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;
    }


    .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);
    }


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



    #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: 2.86vw 2.04vw 0.82vw 2.04vw;
        display: block;
        margin-top: 1.64vw;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.64vw;
        text-align: left; 
        border: solid 0.42vw var(--accent-color);
        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;
    }


    [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: 4.48vw;
        color: var(--text-color);
        width: 85.72vw;
        height: 16.32vw;
        align-items: center;
        padding: 0.62vw;
        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;
    }

}

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

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


    html, 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);
        margin: 0;
        height: 100%;
    }


    #theme-switch{
        height: 100px;
        width: 100px;
        padding: 0;
        border-radius: 50%;
        border: solid 0px var(--background-color);
        background-color: var(--background-color);
        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;
    }


   .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);
    }


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


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


    .language-selector {
        appearance: none;
        border: none;
        padding: 28px 20px 16px 20px;
        display: block;
        margin-top: 16px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 16px;
        text-align: left; 
        border: solid 4px var(--accent-color);
        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;
    }


    [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: 44px;
        color: var(--text-color);
        width: 840px;
        height: 160px;
        align-items: center;
        padding: 6px;
        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;
    }

  
}