@charset "UTF-8";
/* Styles for Parent/Support Menu */

:root {
    --form-color: #FFAB40;
    --form-plain: #D9D9D9;
    --button-color: #00C282;
    --noodle-bg: #36C5FF;
}

* {
    /*user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;*/

    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

@font-face {
    font-family: "SuperSimple";
    src: url("../fonts/SuperSimple.otf") format("opentype")
}

body {
    font-family: "SuperSimple", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    margin: 0;
    font-size: 16px;
    padding: 20px 20px 0 20px;
    min-width:260px;
}


header {
    display: grid;
    grid-template-columns: 60px 4fr;
    grid-template-rows: auto 1fr;
    align-items: start;
    margin-bottom: 10px;
}

header button.backButton {
    grid-area: 1 / 1 / 3 / 2;
}

header h1 {
    grid-area: 1 / 2 / 2 / 3;
    padding-right: 60px;
}

header div#support-line {
    grid-area: 2 / 2 / 3 / 3;
    padding-right: 60px;
    text-align: center;
    color: #aaa;
    font-size: 16px;
}
#support-line span {
    display: inline-block;
}

@media only screen and (max-width: 700px) {
    header h1 {
        padding-right: 0;
        text-align: right;
        justify-self: right;
    }
    header div#support-line {
        padding-right: 0;
        text-align: right;
    }
}




h1 {
    justify-self: center;
    text-align: center;
    margin: 0;
}

h2 {
    font-size: 20px;
    margin: 30px 0 5px 0;
}

ul {
    /*margin: 0;
	padding: 0;
	list-style: none;*/
}

hr {
    margin: 40px 0;
}

.mainContent {
    margin-bottom: 20px;
}

section,
footer {
    text-align: center;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


button {
    border: none;
    cursor: pointer;
    font-family: "SuperSimple", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.backButton {
    outline: 0;
    border: 0;
    max-height: 60px;
    max-width: 60px;
    background: none;
    border-radius: 2em;
    font-size: 50px;
    line-height: 50px;
    color: rgb(255, 255, 255);
    background-color: #0784DC;
    opacity: 0.9;
    cursor: pointer;
    text-transform: uppercase;
    aspect-ratio: 1 / 1;
    text-indent: -999px;
    background-image: url(../images/button-back.png);
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
}



label {
    display: inline-block;
    font-size: 20px;
    margin: 30px 0 5px 0;
}

select {
    /*-webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;*/

    border: none;
    background-color: var(--form-color);
    color: #000;
    padding: 10px 15px;
    font-family: 'SuperSimple';
    border-radius: 20px;
    font-size: 16px;
    min-width: 200px;
    max-width:100%;
    text-align: center;
    white-space:pre-wrap;
    min-height: 42px;
    appearance: initial;
    -moz-appearance: initial;
    -webkit-appearance: initial;
    background-image: url("../images/dropdown_arrows.png");
    background-size: 12px auto;
    background-repeat: no-repeat;
    background-position: calc(100% - 8px) center;
    padding-right: 22px;
    width: fit-content;
}

@media only screen and (max-width: 420px) {
    select {
        min-height: 80px;
    }
}
option {
    border-top: 1px solid #fffbed;
}

input {
    border: 2px solid var(--form-plain);
    padding: 10px 15px;
    font-family: 'SuperSimple';
    border-radius: 20px;
    font-size: 16px;
    min-width: 200px;
    text-align: center;
}

textarea {
    border: 2px solid var(--form-plain);
    padding: 10px 15px;
    font-family: 'SuperSimple';
    border-radius: 20px;
    font-size: 16px;
    min-width: 200px;
    min-height: 150px;
    width: 90%;
    max-width: 600px;
    text-align: left;
}

input[type=email] {
    text-align: left;
}

input[type=file] {
    width: auto;
    border: none;
    text-align:center;
    border: 2px solid var(--form-plain);
    display: block;
    margin: 0 auto;
}

@media only screen and (max-width: 500px) {
    input[type=file] {
        width: 90%;


    }
}

.customFilePicker input#file-upload-button,
#screenshot::file-selector-button{
    /*display: none;*/
    background-color: #D9D9D9;
    border: 0;
    padding:10px;
    border-radius: 20px;
    font-weight: bold;
    margin-right: 5px;
}

.custom-file-upload {
    display: block;
    border-radius: 20px;
    padding: 10px 15px;
    font-family: 'SuperSimple';
    cursor: pointer;
    /*margin-left:-70px;*/
}


input.hasBeenFocused:invalid,
textarea.hasBeenFocused:invalid {
    border-color: #ee0000;
}

.formField {
    margin-bottom: 5px;
}

.validationField:has(> input:not(.neverFocused))>div>label>.invalidIndicator::after,
.validationField:has(> textarea:not(.neverFocused))>div>label>.invalidIndicator::after {
    content: "*";
}

.validationField:has(> input:focus)>div>label>.invalidIndicator::after,
.validationField:has(> textarea:focus)>div>label>.invalidIndicator::after {
    content: "*";
}

.validationField:has(> input.hasBeenFocused:invalid:not(:focus))>div>label>.invalidIndicator::after,
.validationField:has(> textarea.hasBeenFocused:invalid:not(:focus))>div>label>.invalidIndicator::after {
    content: "(required)";
    color: #ee0000;
}

.button {
    display: block;
    background: var(--button-color);
    width: fit-content;
    margin: 0 auto;
    padding: 10px 20px;
    color: black;
    text-decoration: none;
    border-radius: 20px;
}

.button:active {
    background: #DB4630;
}

button[type=submit] {
    margin-top:30px;
    font-size: 22px;
    margin-bottom: 10px;
}
#thankyouMessage {
    color: #02986A;
    margin-top:10px;
}

#pleasewaitMessage {
    color: #ca7900;
    margin-top:10px;
}

#errorMessage {
    color: #bb0000;
    margin-top:10px;
}


/** Noodle Wave Character image at bottom. **/
.footer-character {
    width:420px;
    position:absolute;
    right: 0;
    margin:0;
    padding:0;
}
@media only screen and (max-width: 420px) {
    .footer-character {
        width:100%;
    }
}
.noodle-wave-en.noodle-wave-help {
    content:url("../images/noodle-help-en.png");
}
.noodle-wave-es.noodle-wave-help {
    content:url("../images/noodle-help-es.png");
}
.noodle-wave-ja.noodle-wave-help {
    content:url("../images/noodle-help-ja.png");
}
.noodle-wave-ru.noodle-wave-help {
    content:url("../images/noodle-help-ru.png");
}
.noodle-wave-zh.noodle-wave-help {
    content:url("../images/noodle-help-zh.png");
}
.noodle-wave-ko.noodle-wave-help {
    content:url("../images/noodle-help-ko.png");
}
.noodle-wave-de.noodle-wave-help {
    content:url("../images/noodle-help-de.png");
}

.noodle-wave-en.noodle-wave-hear {
    content:url("../images/noodle-hear-en.png");
}
.noodle-wave-es.noodle-wave-hear {
    content:url("../images/noodle-hear-es.png");
}
.noodle-wave-ja.noodle-wave-hear {
    content:url("../images/noodle-hear-ja.png");
}
.noodle-wave-ru.noodle-wave-hear {
    content:url("../images/noodle-hear-ru.png");
}
.noodle-wave-zh.noodle-wave-hear {
    content:url("../images/noodle-hear-zh.png");
}
.noodle-wave-ko.noodle-wave-hear {
    content:url("../images/noodle-hear-ko.png");
}
.noodle-wave-de.noodle-wave-hear {
    content:url("../images/noodle-hear-de.png");
}


.footer-wave-wrapper{
    margin-right: -20px;
    float: right;
    display:block;
    width:300px;
    height: 300px;
    background:url('../images/noodle-speech.png') no-repeat bottom right;
    background-size:auto 200px;
}

/* ******** Topic Hint Box **************** */

.noodle-wrap {
    position: inherit;
    z-index: 2;
    display:block;
    margin: -30px auto -206px auto;
    width: 260px;
}
.noodle {
    position: inherit;
    z-index: 2;
    /*right: 10%;
    bottom: -16px;*/
    background: url('../images/noodle.png');
    background-repeat: no-repeat;
    width: 228px;
    height: 228px;
    background-position: center;
    background-size: contain;
    margin-left:200px;
}

.noodle-bubble {
   background-color:#fff;
   max-width:500px;
   border-radius: 12px;
   padding:10px 12px 6px 12px;
   margin: 4px auto 0 auto;
   position: relative;
}

.noodle-bubble::after {
  content:url('../images/bubble-tail.png');
  position: absolute;
  left: 220px;
  bottom: -36px;
}

.noodle-bubble p {
    margin-top: 6px;
    margin-bottom: 1em;
}

.noodle-bubble-orange {
   background-color: var(--form-color);
   max-width:200px;
   border-radius: 20px;
   padding:22px 12px 18px 12px;
   margin: 4px auto 0 auto;
   text-align:center;
   position: relative;
   z-index: 4;
}

.noodle-bubble-orange::after {
  content:url('../images/bubble-tail-orange.png');
  position: absolute;
  left: 60px;
  bottom: -39px;
  z-index: 2;
}

@media only screen and (max-width: 760px) {
    .noodle {
        margin-left:160px;
    }
}

@media only screen and (max-width: 600px) {
    .noodle {
        margin-left:100px;
    }
    .noodle-bubble::after {
        left: 70px;
    }
}

@media only screen and (max-width: 300px) {
    .noodle {
        margin-left:40px;
    }
    .noodle-bubble::after {
        left: 30px;
    }
}

.topic-hint {
    position:relative;
    overflow: hidden;
    background-color: var(--noodle-bg);
    border-radius: 16px;
    font-weight: normal;
    padding: 10px;
    padding-bottom: 190px;
    min-width: 230px;
    margin-top: 20px;
    font-size: 11pt;
    text-align: left;
}

.hidden {
    display: none;
}

/* *********** END Topic Hint Box ************* */

.inline-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}


.red {
    background-color: #DB4630;
}

.green {
    background-color: #02986A;
}

.largerFont {
    font-size: larger;
}