.timeframe-score {
    --width: 33px;
    --height: 6px;
    width: var(--width);
    height: var(--height);
    position: relative;
    background: #e5e5e5;
    border-radius: .5em 0 0 .5em;
}

.timeframe-score:after,
.timeframe-score:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: var(--width);
    height: var(--height);
    background: #e5e5e5;
}

.timeframe-score:after {
    left: calc(var(--width) + 2px);
}

.timeframe-score:before {
    left: calc(var(--width) * 2 + 4px);
    border-radius: 0 .5em .5em 0;
}

.timeframe-score[data-score=low] {
    background: #eb455b;
}

.timeframe-score[data-score=mid],
.timeframe-score[data-score=mid]:after {
    background: orange;
}

.timeframe-score[data-score=high],
.timeframe-score[data-score=high]:after,
.timeframe-score[data-score=high]:before{
    background: #238223;
}

.rater{
    background-color: #fafafa !important;
}

div.header-wrap, .header-spacer {
    display: none!important;
}

.container {
    display: flex;
    flex: 1;
    padding: 0;
}

.header-spacer {
    height: 80px!important;
}

.flex-stretch-between {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    flex-grow: 1;
}

.match-list {
    justify-content: flex-start;
    height: auto;
    max-height: calc(100vh - 380px);
    min-height: calc(100vh - 380px);
    position: relative;
}

/* HIDE ELEMENTS WHERE CURRENT STATE IS NOT SET */
[data-state]:not([data-current]) {
    display: none;
}

.match--players ~ h3 {
    display: none;
}

.whitespace-pre-line {
    white-space: pre-line;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.whitespace-break-spaces {
    white-space: break-spaces;
}

.invisible {
    visibility: hidden;
}

.overflow-auto {
    overflow: auto;
}

.flex-1 {
    flex: 1!important;
}

.flex-2 {
    flex: 2!important;
}

/* STUDENTS */
#text {
    border-radius: 0;
}

#accent-buttons {
    display: flex;
    width: 160px;
    flex-wrap: wrap;
}

#accent-buttons button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

#accent-buttons button:hover {
    background: #ddd;
}

.correction {
    padding: 22px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f3f3f3;
    line-height: 1.5em;
}

.response-title {
    font-size: 1.2em;
    line-height: 40px;
}

#inline-correction {
    font-size: 1.2em;
    padding: 16px;
    line-height: 22px;
    border-radius: 4px;
    flex: 1;
    white-space: pre-line;
    counter-reset: blank;
}
#inline-correction span{
    font-size: 1em;
}

.toolbar .btn--drop {
    width: 45px;
    height: 40px;
    margin-right: 0;
    justify-content: start;
    padding: 10px;
}

.toolbar .btn--drop__wrap {
    user-select: none;
}

.toolbar .btn--drop:hover {
    background: var(--color__b5);
}

.toolbar .btn--drop:after {
    right: 5px;
}

.convention {
    padding: 22px;
    padding-bottom: 10px;
    font-size: .9em;
    display: flex;
}

.convention p {
    font-size: .9em;
    margin-left: auto;
    color: #666;
}

.collapse-button {
    cursor: pointer;
    padding: 22px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: bold;
}

.collapse-button:hover {
    background: #f0f0f0;
}

.match--players:hover {
    background: var(--color__h9l);
    cursor: pointer;
}

.match--players button {
    width: 30px;
    height: 30px;
    min-width: auto;
}

#rate {
    min-width: 500px;
    max-width: 500px;
}

#rate h4:not(:first-child) {
    margin-top: 20px;
}

.collapsible {
    display: none;
    padding: 22px;
    border: 1px solid #ddd;
    margin-top: 20px;
}

#ai-rate, .correction {
    white-space: pre-line;
    padding: 22px;
}

.verb-error {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: red;
}

.spelling-error {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: rgba(255, 0, 0, 0.8);
}

.fill-blank {
    text-decoration: underline;
    text-decoration-color: #aaa;
    color: #fff;
    counter-increment: blank;
}

.fill-blank::before {
    content: counter(blank) ".";
    color: gray;
    font-size: 0.8em;
}

.deleted-error {
    text-decoration: line-through;
    text-decoration-color: rgba(255, 0, 0, 0.6);
}

.simple-error {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: rgba(255, 0, 0, 0.4);
}

.sentence {
    cursor: pointer;
}

.sentence:nth-child(even) {
    background-color: #b2d3fe;
}

.sentence:nth-child(odd) {
    background-color: #feb2b2;
}

.score-table {
    width: 100%;
    box-shadow: none;
    background: none;
    margin-top: 20px;
    margin-bottom: -20px;
    border-collapse: collapse
}

.score-table tr {
    border: none;
}

.score-table th {
    font-size: .8em;
    color: #555;
}

.score-table td,
.score-table th {
    width: 50%;
    border: none;
    text-align: center;
}

#tab-stats table {
    margin-top: 20px;
    margin-top: 2em;
    width: 100%;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.10);
    border-radius: .25em;
    padding: 1em;
}
#tab-stats th {
    border-bottom: none;
}
#tab-stats table tr:nth-child(2n) {
    background-color: #f7f7f7;
}
#tab-stats td,
#tab-stats th {
    padding: 7px;
}
.summary {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
}

.accent-error td {
    box-shadow: 0 0 0 100px #2382237e inset;
}

.spinner {
    height: 28px;
    width: 28px;
}

[data-current=collect] .spinner {
  display: inline-block;
  border-width: 3.8px;
  border-style: solid;
  border-color: var(--color__b2) #ccc #ccc;
  border-radius: 100%;
  animation: rotate .7s infinite linear;
}

#preloader::before {
    border-width: 3px;
    border-color: var(--color__b2) #ccc #ccc;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  } to {
    transform: rotate(359deg);
  }
}

.mobile-screen-message {
    display: none;
}

/* Cookies */
.page-rate-index .cookie-confirm h3,
.page-rate-create .cookie-confirm h3 {
    font-size: 16px;
    line-height: 20px;
    align-self: inherit;
}
.page-rate-index .cookie-confirm p,
.page-rate-create .cookie-confirm p{
    padding: 0 3em;
    font-size: 1em;
}
/* --- PROFICIO APP --- */

/* VARS */
:root {
    --rater__lightgray: #f8f8f8;
    --rater__gray: #e5e5e5;
    --rater__darkgray:#666a72;
    --rater__dark:#666a72;
    --rater__beginner-low:#08aafb;
    --rater__beginner-mid:#10a36d;
    --rater__beginner-high:#d0ce23;
    --rater__skilled-low:#d79631;
    --rater__skilled-mid:#fe733b;
    --rater__skilled-high:#ea4660;
    --rater__advanced:#6154a3;
}



/* COMMON */
* {
    font-family: 'Rubik', sans-serif;
    font-size: 12px;
}
header .header{
    height: 70px;
    padding: 0 2.5em;
}
.rater--container {
    gap: 0;
    min-height: calc(100vh);
    overflow: hidden;
    background: #fafafa;
}
.rater--content {
    display: flex;
    flex: 1;
    padding: calc(2em + 70px) 2em 2em 2em;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.rater--sidebar {
    flex: .7;
    -webkit-box-shadow: 0 0 1em 0 rgba(0,0,0,0.25);
    -moz-box-shadow: 0 0 1em 0 rgba(0,0,0,0.25);
    box-shadow: 0 0 1em 0 rgba(0,0,0,0.25);
    overflow: hidden;
    min-width: 330px;
    background: #fff;
}
.rater--sidebar-teacher {
    flex: .25;
    -webkit-box-shadow: 0 0 1em 0 rgba(0,0,0,0.25);
    -moz-box-shadow: 0 0 1em 0 rgba(0,0,0,0.25);
    box-shadow: 0 0 1em 0 rgba(0,0,0,0.25);
    overflow: hidden;
    min-width: 330px;
    background: #fff;
}
.rater--sidebar-inner{
    padding: calc(2em + 70px) 2em 2em 2em;
}
.logo{
    font-family: "Rubik", sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--color__text-2);
}
.logo:after{
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background-image: url("/images-r/rater/footer-bottom.webp");
    background-size: contain;
}
.header-info{
    font-size: 1em;
    color: var(--color__text-2);
}
.header-info span{
    color: var(--color__b2);
    font-weight: 700;
}
.rater--footer-container{
    overflow: hidden;
    width: 100%;
    height: 4px;
    margin-top: -4px;
    z-index: 10;
}
.rater--footer{
    background-image: url("/images-r/rater/footer-bottom.webp");
    background-size: 100%;
    height: 4px;
}
.spinner-blue{
    display: block;
    width: 4em;
    height: 4em;
    border: 3px solid #e7e7e7;
    border-bottom-width: 7px;
    border-bottom-style: solid;
    border-bottom-color: rgb(231, 231, 231);
    border-radius: 100%;
    margin: 0 auto;
    transition: all .5s ease-in-out;
    animation: rotation .7s infinite linear;
    border-bottom: 3px solid #20447f;
    transition: all .5s ease-in-out;
}
.spinner-green{
    display: block;
    width: 4em;
    height: 4em;
    border: 7px solid #e7e7e7;
    border-bottom-width: 7px;
    border-bottom-style: solid;
    border-bottom-color: rgb(231, 231, 231);
    border-radius: 100%;
    margin: 0 auto;
    transition: all .5s ease-in-out;
    animation: rotation .7s infinite linear;
    border-bottom: 7px solid #3cb07c;
    transition: all .5s ease-in-out;
}

/* INSTRUCTIONS */
.instructions h4{
    font-size: 1.2em;
    counter-reset: item;
    color: #0e1a2d;
    border-bottom: 1px solid #d5d7d8;
    margin-bottom: 0;
    padding-bottom: 1em;
}
.instructions ol{
    list-style: none;
}
.instructions li{
    font-size: 1.2em;
    counter-increment: item;
    padding: 1em .5em 1em 4em;
    margin-bottom: 0;
    position: relative;
    text-rendering: optimizeSpeed;
    transition: all 1s ease-in-out;
    color: var(--color__text-2);
}
.instructions li strong{
    font-weight: 400;
    text-transform: uppercase;
}
.instructions li:not(:last-child){
    border-bottom: 1px solid #eeeeef;
}
.instructions li:last-child{
    border-bottom: 1px solid #d5d7d8;
}
.instructions li:before {
    content: counter(item);
    background: #666a72;
    border-radius: 100%;
    color: white;
    width: 2em;
    height: 2em;
    line-height: 2.2em;
    text-align: center;
    display: block;
    position: absolute;
    font-size: 10px;
    top: calc(50% - 1em);
    left: 1em;
}
/* INSTRUCTIONS HOME */
.instructions-home{
    max-width: 600px;
    padding-bottom: 2em;
}
.instructions-home li:first-child:before {
    background: #238223;
}
/* INSTRUCTIONS SIDEBAR */
.instructions-sidebar h4{
    font-size: 1em !important;
}
.instructions-sidebar li{
    font-size: .9em !important;
    color: #9a9b9f;
}
/* Mark current Instruction */
.instructions[data-current="new"] li:nth-child(2) {
    background: #23822312;
    color: #202124;
}
.instructions[data-current="new"] li:nth-child(2):before {
    background: #238223;
}
.instructions[data-current="waiting"] li:nth-child(3) {
    background: #23822312;
    color: #202124;
}
.instructions[data-current="waiting"] li:nth-child(3):before {
    background: #238223;
}
.instructions[data-current="waiting"] li:nth-child(4) {
    background: #23822312;
    color: #202124;
}
.instructions[data-current="waiting"] li:nth-child(4):before {
    background: #238223;
}
.instructions[data-current="playing"] li:nth-child(5),
.instructions[data-current="collect"] li:nth-child(5) {
    background: #23822312;
    color: #202124;
}
.instructions[data-current="playing"] li:nth-child(5):before,
.instructions[data-current="collect"] li:nth-child(5):before {
    background: #238223;
}
.instructions[data-current="finished"] li:nth-child(6) {
    background: #23822312;
    color: #202124;
}
.instructions[data-current="finished"] li:nth-child(6):before {
    background: #238223;
}

/* BUTTONS */
.bt{
    cursor: pointer;
    font-size: 1em;
    padding: .7em 2em .5em 2em;
    border-radius: .5em;
    background-color: #4285f4;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color .25s ease-in-out;
    border: 1px solid #4285f4;
    border-bottom: 4px solid #4285f4;
    transition: all .33s ease-in-out;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.10);
}
.bt:hover {
    background-color: #4286f4ce;
}

.bt-set-task {
    padding: .7em 2em .5em 4em;
    position: relative; 
}
.bt-set-task:before {
    content:'';
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    top: calc(50% - 1em);
    left: 1em;
    background-image: url("/images-r/rater/ico-bt-set_task.webp");
}
.bt-prompt-form{
    float: right;
}
.bt-blue{
    font-weight: normal;
    background-color: #20447f;
    color: white;
    border: 1px solid #20447f;
    border-bottom: 4px solid #20447f;
}
.bt-blue:hover{
    background-color: #20447fc7;
}
.bt-border-blue{
    font-weight: normal;
    background-color: white;
    color: #20447f;
    border: 1px solid #e3e3e3;
    border-bottom: 4px solid #20447f;
}
.bt-border-blue:hover{
    background-color: #20447fc7;
    color: white;
}
.bt-pink{
    font-weight: normal;
    background-color: #eb455b;
    color: white;
    border: 1px solid #eb455b;
    border-bottom: 4px solid #eb455b;
}
.bt-pink:hover{
    background-color: #eb455bc9;
}
.bt-border-pink{
    font-weight: normal;
    background-color: white;
    color: #eb455b;
    border: 1px solid #e3e3e3;
    border-bottom: 4px solid #eb455b;
}
.bt-border-pink:hover{
    background-color: #eb455bc9;
    color: white;
}
.bt-green{
    font-weight: normal;
    background-color: #238223;
    color: white;
    border: 1px solid #238223;
    border-bottom: 4px solid #238223;
}
.bt-green:hover{
    background-color: #238223c9;
}
.bt-border-green{
    font-weight: normal;
    background-color: white;
    color: #238223;
    border: 1px solid #e3e3e3;
    border-bottom: 4px solid #238223;
}
.bt-border-green:hover{
    background-color: #238223c9;
    color: white;
}


/* TEACHER: PROMPT */
.rater--prompt-form{
    background-color: white;
    -webkit-box-shadow: 0 0 1em 0 rgba(0,0,0,0.25);
    -moz-box-shadow: 0 0 1em 0 rgba(0,0,0,0.25);
    box-shadow: 0 0 1em 0 rgba(0,0,0,0.25);
    border-radius: .3em;
    padding: 1.5em;
    width: 530px;
    transition: all 1s ease;
}
input[name="word-limit"]:checked ~ .prompt-form-word-limit{
    display: block;
}
.prompt-form-word-limit p{
    line-height: 120%;
}
.prompt-form-textarea label[for=prompt]{
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    width: 100%;
    margin-bottom: 1em;
}
.prompt-form-textarea textarea{
    border-radius: 0;
    border-color: #d5d7d8;
    padding: 1em;
    color: var(--color__text);
    transition: all .5s ease-in-out;
    display: block;
}
.rater--prompt-form .checkbox i{
    font-size: 20px !important;
}
.prompt-form-word-limit{
    margin-top: 0.25em;
}
.prompt-form-word-limit p{
    font-size: 1em;
    color: gray !important;
    padding-right: 2em;
}
.prompt-form-word-limit-input_container{
    max-width: 210px !important;
}
.prompt-form-word-limit-input_container select{
    border: 1px solid #d5d7d8 !important;
    padding: .5em !important;
        height: auto !important;
}
/* Prompt Alerts */
.prompt-alert{
    background-color: #f0c8c8;
    color: #c80000;
    padding: .5em 2em;
    border-radius: 0 0 .5em.5em;
    z-index: 10;
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    text-align: center;
    min-width: max-content;
}
input.alert{
    border-color: #c80000 !important;
}
textarea.alert{
    border-color: #c80000;
    transition: all .5s ease-in-out;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
input[type=number] {
    appearance: none;
    -moz-appearance: textfield;
}

/* TEACHER: WAITING ROOM */
.match-list-container{
    position: relative;
}
.match-list {
    gap: 1em;
    padding: 1em 1em 4em 1em;
    background-color: #efeff1;
    border: 1px solid #dfdfdf;
    transition: all .5s ease-in-out;
}
.rater--match-container[data-current="playing"] .match-list,
.rater--match-container[data-current="collect"] .match-list {
    padding: 1em 1em 1em 1em;
    background-color: #e8f0fd;
    transition: all .5s ease-in-out;
}
.rater--match-container[data-current="finished"] .match-list {
    padding: 1em 1em 1em 1em;
    background-color: #e4f0e4;
    transition: all .5s ease-in-out;
}
.match--list-titles{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    gap: 1em;
    width: 100%;
    padding: 0 1em;
    margin-bottom: 1em;
}
.match--list-title{
    display: flex;
    flex-basis: calc(50% - 6px) !important;
    padding: .3em 3em;
    color: #6c7177;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
}
.match--list-title-name{
    width: 40%;
    text-align: left;
}
.match--list-title-words{
    width: 20%;
    text-align: center;
}
.match--list-title-grade{
    width: 40%;
    text-align: right;
}
.match--list-message{
    color: #e0e0e0;
}
.match--players{
    flex-basis: calc(50% - 6px) !important;
    border: 1px solid #d5d5d7;
    padding: .3em .5em;
    justify-content: center;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.10);
    transition: .5s all ease-in-out;
    max-width: calc(50% - 6px) !important;
    border-radius: .25em;
    font-weight: normal;
    color: #202124;
    transition: all .5s ease-in-out;
    min-height: 35px;
}
.match--players:hover {
    background: #F7F7F7;
    transition: .5s all ease-in-out;
  }
.match--players button {
    width: 20px;
    min-width: 20px;
    height: 20px;
    font-size: 20px;
    font-weight: normal;
    line-height: 20px;
    transition: all .5s ease-in-out;
}
.match--players button:hover {
    background-color: #202124;
    color: white;
}
.rater--match-container[data-current="finished"] .match--players button {
    display: none;
}
.match--player-circle{
    width: 1em;
    height: 1em;
    border: 3px solid #e7e7e7;
    border-radius: 100%;
    display: flex;
    align-self: center;
    transition: all .5s ease-in-out;
}
.rater--match-container[data-current="collect"] .match--players:not(.has-score) .match--player-circle{
    animation: rotation .7s infinite linear;
    border-bottom: 3px solid #238223;
    transition: all .5s ease-in-out;
}
/* Rated Colors: Circles */
.match--players[data-rating="Novice Low"] .match--player-circle{
    border-color: var(--rater__beginner-low);
}
.match--players[data-rating="Novice Mid"] .match--player-circle{
    border-color: var(--rater__beginner-mid);
}
.match--players[data-rating="Novice High"] .match--player-circle{
    border-color: var(--rater__beginner-high);
}
.match--players[data-rating="intermediate Low"] .match--player-circle{
    border-color: var(--rater__skilled-low);
}
.match--players[data-rating="intermediate Mid"] .match--player-circle{
    border-color: var(--rater__skilled-mid);
}
.match--players[data-rating="intermediate High"] .match--player-circle{
    border-color: var(--rater__skilled-high);
}
.match--players[data-rating="Advanced"] .match--player-circle{
    border-color: var(--rater__advanced);
}
.match--player-name{
    align-self: center;
    font-weight: normal;
    width: 37%;
}
.match--player-wordcount{
    text-align: center;
    width: 20%;
    color: #9a9b9f;
    opacity: 0;
}
.rater--match-container[data-current="finished"] .match--player-wordcount{
    opacity: 1;
}
.match--player-rating{
    text-align: right;
    width: 40%;
}
.rater--match-container[data-current="finished"] .match--player-rating span{
    background-color: #edeff3;
    border-radius: 5px;
    padding: 2px 10px;
}
.rater--match-container{
    background-color: #ffffff;
    border-radius: 1em;
    box-shadow: 0 0 1em 0 rgba(0,0,0,0.20);
    padding: 1.2em;
    max-width: 999px;
    transition: all .5s ease-in-out;
    position: relative;
}
.rater--match-header-info{
    padding-bottom: 1em;
    vertical-align: middle;
}
.rater--session-code #game-code{
    font-size: 1.5em;
    font-weight: 700;
}
.rater--match-container .clock{
    border: 1px solid #f0f0f0;
    background-color: #fbfbfb;
    padding: .5em 1em;
    transition: all .5s ease-in-out;
    width: 125px;
}
.rater--match-container[data-current="playing"] .clock{
    border-color: #238223;
    color: #238223;
    transition: all .5s ease-in-out;
}
.rater--match-container[data-current="finished"] .clock{
    border-color: #202124;
    color: #202124;
    transition: all .5s ease-in-out;
}
.rater--match-buttons{
    padding: .8em 0 .5em 0;
}
/* Waiting Room Alerts */
.rater--match-switch-alert{
    background-color: #f0c8c8e4;
    color: #c80000;
    padding: .5em 2em;
    border-radius: 0 0 10px 10px;
    z-index: 10;
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
}

.match--players.alert.show-alert{
    background-color: #c80000;
    border-color: #c80000;
}
.match--players.alert.show-alert button {
    background-color: white;
    color: #c80000;
}
.alert.show-alert .match--player-name{
    color: white !important;
}
.match-list.alert-hidden {
    padding: 1em !important;
}
#swhitch-paste-alert-launcher,
#swhitch-paste-alert-hide{
    color:#c21232;
    border-radius: 5px;
    border: 1px solid #c21232;
    padding: .3em .5em;
    display: inline-block;
}
#swhitch-paste-alert-launcher:hover,
#swhitch-paste-alert-hide:hover{
    color: white;
    background-color: #c21232d0;
}

/* TEACHER: DOWNLOAD REPORT*/
.download-options{
    bottom: -47px
}
.download-options label span{
    font-size: .9em;
}
.download-options .checkbox{
    display: inline-block;
    margin: 1em;
    width: auto;
}
.download-options i{
    font-size: 20px;
}

/* STUDENTS: JOIN FORM */
.rater--join-form {
    background-color: white;
    -webkit-box-shadow: 0 0 1em 0 rgba(0,0,0,0.25);
    -moz-box-shadow: 0 0 1em 0 rgba(0,0,0,0.25);
    box-shadow: 0 0 1em 0 rgba(0,0,0,0.25);
    border-radius: .3em;
    padding: 3.5em;
    transition: all 1s ease;
    min-width: 350px;
}
.rater--join-form .form-group{
    margin-top: 1em;
    margin-bottom: 3em;
}

/* STUDENTS: WAITING */
.waiting-panel-title{
    color:#20447f;
}
.waiting-panel-text{
    font-size: 1em;
}
.waiting-panel-illus img{
    max-width: 33vw;
    margin-top: -2.5em;
}
.x-modal-wrap .waiting-panel-illus img{
    max-width: 90%;
}

/* STUDENTS: ACTIVITY FORM */
.rater--activity-form-container{
    max-width: 900px;
    background-color: #ffffff;
    border-radius: .7em;
    box-shadow: 0 0 1em 0 rgba(0,0,0,0.20);
    padding: 0;
    transition: all .5s ease-in-out;
    position: relative;
}
.rater--activity-form-container .flex-stretch-between{
    gap: 0;
}
.rater--activity-form-left{
    flex: 1;
    border-radius: .7em 0 0 .7em;
    padding: 3em;
    background-color: #e9eef4;
    position: relative;
}
.rater--activity-form-right{
    flex: 3;
    border-radius: .7em;
    padding: 3em;
}
.rater--activity-form-container h4,
.rater--activity-form-container h4 span{
    font-size: 14px;
}
.rater--activity-form-container p{
    font-size: 12px;
}
.rater--activity-form-teacher-prompt-container{
    width: 100%;
    padding: 1.5em;
    color: #6c7177;
    border-top: 1px solid #f2f2f2;
}
.rater--activity-form-teacher-prompt-container h4{
    color: #202124;
}
.rater--activity-form-teacher-prompt-container p,
.rater--activity-form-teacher-prompt-container span{
    font-style: italic;
    font-size: 16px;
}
.rater--activity-form-textarea-container{
    border: 1px solid #dfdfdf;
    position: relative;
    width: 100%;
    border-radius: .7em .7em 0 0;
    background-color: #e8f0fd;
}
.rater--activity-form-textarea-container h4{
    margin: 15px 0 0 15px;
}
.rater--activity-form-textarea{
    margin: 1em 1em 2em 1em;
    border: none;
    width: calc(100% - 2em);
    padding: 0;
    background-color: #e8f0fd;
}
.toolbar{
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: end;
    background: none;
}
.rater--activity-form-wordcount{
    background-color: #20447f;
    padding: .25em .5em;
    border-radius: 0 .4em 0 0 ;
}
.rater--activity-form-accent{
    background-color: #20447f;
    padding: .25em .5em .25em 1.5em;
    border-radius: .4em 0 0 0 !important;
}
.rater--activity-form-accent .btn--drop {
    padding: 0;
    width: auto;
    height: auto;
}
.rater--activity-form-goodluck{
    background-color: #f8f8f8;
    width: 100%;
    padding: 1.5em;
    margin-top: 1em;
    align-items: center;
}

/* STUDENT: FEEDBACK */
/* Feedback Gauge */
.rater--feedback{
    position: relative;
    text-align: center;
    background-image: url('/images-r/rater/rater-base.webp');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    max-width: 550px;
    margin: 0 auto;
}
.rater--sidebar .rater--feedback{
    max-width: 330px;
}
.rater--feedback-circle{
    width: 100%;
}
.rater--sidebar .rater--feedback-circle{
    width: 100%;
}
.rater--sidebar .tab-menu {
    border: 1px solid #12569024 !important;
    margin: 2em 0;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.10);
}
.rater--sidebar .tab-menu li{
    width: 33.33%;
}
.rater--sidebar .tab-menu::after {
    content: none;
}
.rater--sidebar .tab-menu li:hover a{
    color: #125690;
}
.rater--sidebar .tab-menu__link{
    color: #9a9b9f;
    font-size: 1.2em;
    text-transform: none;
    font-weight: normal;
    letter-spacing: 0;
    font-weight: 700;
    justify-content: center;
    transition: all 1s ease-in-out;
}
.tab-menu__link--current {
    color: #125690 !important;
}
.rater--sidebar .tab-menu li a::after{
    background-color: #fff;
    transition: all 1s ease-in-out;
    content: '';
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}
.rater--sidebar .tab-menu li:hover a::after{
    background-color: #e5e5e5;
    transition: all 1s ease-in-out;
}
.rater--sidebar .tab-menu__link--current::after {
    background-color: #125690 !important;
    transition: all 1s ease-in-out;
}
.rater--feedback-info{
    position: absolute;
    padding-top: 10%;
}
.rater--feedback-title{
    color: var(--rater__skilled-high);
    font-size: 1.8em;
    font-weight: 700;
    line-height: 105%;
}
.rater--feedback-title br{
    display: none;
}
.rater--feedback-subtitle{
    font-size: .8em;
    font-weight: 700;
    line-height: 1.4em;
}
#rater--feedback-continue{
    bottom: 13px;
    position: absolute;
    left: calc(50% - 56px);
}
/* Gauge Background Image Variants */
[rating-level="novice-low"] .rater--feedback{
    background-image: url('/images-r/rater/rater-beginner-low.webp');
}
[rating-level="novice-mid"] .rater--feedback{
    background-image: url('/images-r/rater/rater-beginner-mid.webp');
}
[rating-level="novice-high"] .rater--feedback{
    background-image: url('/images-r/rater/rater-beginner-high.webp');
}
[rating-level="intermediate-low"] .rater--feedback{
    background-image: url('/images-r/rater/rater-skilled-low.webp');
}
[rating-level="intermediate-mid"] .rater--feedback{
    background-image: url('/images-r/rater/rater-skilled-mid.webp');
}
[rating-level="intermediate-high"] .rater--feedback{
    background-image: url('/images-r/rater/rater-skilled-high.webp');
}
[rating-level="advanced"] .rater--feedback{
    background-image: url('/images-r/rater/rater-advanced.webp');
}
/* Gauge Icon Variants */
[rating-level="novice-low"] .rater--feedback-icon path{
    fill: var(--rater__beginner-low);
}
[rating-level="novice-mid"] .rater--feedback-icon path{
    fill: var(--rater__beginner-mid);
}
[rating-level="novice-high"] .rater--feedback-icon path{
    fill: var(--rater__beginner-high);
}
[rating-level="intermediate-low"] .rater--feedback-icon path{
    fill: var(--rater__skilled-low);
}
[rating-level="intermediate-mid"] .rater--feedback-icon path{
    fill: var(--rater__skilled-mid);
}
[rating-level="intermediate-high"] .rater--feedback-icon path{
    fill: var(--rater__skilled-high);
}
[rating-level="advanced"] .rater--feedback-icon path{
    fill: var(--rater__advanced);
}
/* Gauge Title Variants */
[rating-level="novice-low"] .rater--feedback-title{
    color: var(--rater__beginner-low);
}
[rating-level="novice-mid"] .rater--feedback-title{
    color: var(--rater__beginner-mid);
}
[rating-level="novice-high"] .rater--feedback-title{
    color: var(--rater__beginner-high);
}
[rating-level="intermediate-low"] .rater--feedback-title{
    color: var(--rater__skilled-low);
}
[rating-level="intermediate-mid"] .rater--feedback-title{
    color: var(--rater__skilled-mid);
}
[rating-level="intermediate-high"] .rater--feedback-title{
    color: var(--rater__skilled-high);
}
[rating-level="advanced"] .rater--feedback-title{
    color: var(--rater__advanced);
}

/* Feedback Styles */
#rater--feedback-detail-container .rater--content{
    align-items: center;
}
#rater--feedback-detail-container .rater--sidebar{
    background-color: white;
    padding: calc(3em + 50px) 3em 3em 3em;
    z-index: 9;
}
#rater--feedback-detail-container,
#rater--feedback-container {
    display: none;
}
.rater--feedback-detail-correction-container{
    max-width: 37vw;
    width: -webkit-fill-available;
    padding: 2em;
}
.rater--feedback-detail-correction-container hr{
    background: none;
    border-top: 1px solid #d7d7d7;
    margin-bottom: 3em;
    width: 100%;
}
.rater--feedback-detail-combo{
    margin: .7em 0;
}
.rater--feedback-detail-combo-row{
    display: flex;
    flex-flow: row;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    padding: 3px 0;
}
.rater--feedback-detail-combo-col{
    flex: 1;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: .7em 1.2em;
}
.rater--feedback-detail-combo-col.flex-row{
    flex-flow: row;
}
.rater--feedback-detail-combo-title{
    background-color: #f8f8f8;
    padding: .7em;
    text-align: center;
}
.rater--feedback-detail-combo-parameter{
    display: flex;
    flex-direction: row;
    margin-bottom: 1.5em;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.10);
    border-radius: .25em;
    overflow: hidden;
}
.rater--feedback-detail-combo-parameter-title{
    color: var(--color__text);
    max-width: 33%;
    background-color: #E5E5E5;
    font-weight: 700;
}
.rater--feedback-detail-timeframes-container{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
.rater--feedback-detail-timeframes-container hr{
    width: 100%;
    border: none;
    border-top: 1px solid #f2f2f2;
}
.rater--feedback-detail-timeframes{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 1em 0;
    width: 100%;
}
.rater--feedback-detail-timeframes-title{
    min-width: 5em;
}
.rater--feedback-detail-combo-highlight{
    background-color: #e5e5e5;
    font-weight: 700;
    padding: .5em 1.5em;
    border-radius: .5em;
}
.rater--feedback-detail-combo-col:first-of-type{
    border-right: 1px solid #f2f2f2;
}
.rater--feedback-detail-improve{
    margin: 2.5em 0 1.5em 0;
}
.rater--feedback-detail-improve-header{
    background-color: #f8f8f8;
    border-bottom: 1px solid #f2f2f2;
    padding: 1em;
    font-weight: 700;
}
.rater--feedback-detail-improve-text{
    padding: 1.5em .5em;
}
.rater--feedback-detail-combo-bar-container{
    position: relative;
    width: 100%;
    height: 3px;
    background-color: #e5e5e5;
    margin-top: .5em;
}
.rater--feedback-detail-combo-bar{
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 3px;
    background-color: #202124;
    z-index: 1;
    transition: all 1s ease-in-out;
}

[rating-level="novice-low"].rater--feedback-detail-combo-bar{
    background-color: var(--rater__beginner-low);
}
[rating-level="novice-mid"].rater--feedback-detail-combo-bar{
    background-color: var(--rater__beginner-mid);
}
[rating-level="novice-high"].rater--feedback-detail-combo-bar{
    background-color: var(--rater__beginner-high);
}
[rating-level="intermediate-low"].rater--feedback-detail-combo-bar{
    background-color: var(--rater__skilled-low);
}
[rating-level="intermediate-mid"].rater--feedback-detail-combo-bar{
    background-color: var(--rater__skilled-mid);
}
[rating-level="intermediate-high"].rater--feedback-detail-combo-bar{
    background-color: var(--rater__skilled-high);
}
[rating-level="advanced"].rater--feedback-detail-combo-bar{
    background-color: var(--rater__advanced);
}

/* GAUGE */
#gauge-container{
    position: relative;
    width: 100%;
    max-width: 500px;
}
canvas{
    position: absolute;
    left: 1px;
    top: 9.7%;
    scale: 0.87;
}
#resize{
    position: fixed;
    bottom: 10vh;
    left: calc(50vw - 50px);
    z-index: 1000;
}

/* TAB FEEDBACK */
#tab-feedback{
    padding-top: 2em;
}
#tab-feedback {
    counter-reset: feedback;
}

#tab-feedback hr:last-of-type{
    border: none !important;
    margin-bottom: 0;
}
#tab-feedback hr{
    border: none;
    border-top: 1px solid #d7d7d7;
    width: 100%;
    margin: 2.2em 0;
    background: none;
}
.tab-feedback--before-after{
    padding: 1.5em 2em;
    background-color: #f2f2f2;
    border-radius: .25em;
    margin-top: 1em;
    font-style: italic;
}

/* TEACHER: MODAL */
.x-modal-wrap {
    align-items: center;
}
.x-modal-close {
    top: 1.3em;
    right: 1.3em;
}
.x-modal-close::before {
    font-size: 1em;
    line-height: 1em;
    color: #757577;
}
.x-modal-title {
    color: #c80000;
    font-size: 2em;
    line-height: 2em;
}
.x-modal-content[x-modal-key="Please Wait"] .x-modal-title {
    color: #202124;
}
.x-modal-content[x-modal-key="Please Wait"] .x-modal-line {
    display: none;
}
.x-modal-content-spinner{
    display: none;
}
.x-modal-content[x-modal-key="Please Wait"] .x-modal-content-spinner{
    display: block;
    width: 4em;
    height: 4em;
    border-bottom-width: 7px;
    border-bottom-style: solid;
    border-bottom-color: rgb(231, 231, 231);
    border-radius: 100%;
    margin: 0 auto;
    transition: all .5s ease-in-out;
    animation: rotation .7s infinite linear;
    transition: all .5s ease-in-out;
    border: 3px solid #e7e7e7;
    border-bottom: 3px solid #20447f;
}
.x-modal-content[x-modal-key="Please Wait"] .bt-pink{
    background-color: #238223;
    border-color: #238223;
}
.x-modal-content[x-modal-key="Please Wait"] .bt-pink:hover{
    background-color: #238223c9;
}

/* ---------------------------------------------------------------------------------- */

/* ANIMATIONS */
.animate {
    animation-duration: 1.75s;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-name: animate-fade;
    animation-timing-function: ease;
    animation-fill-mode: backwards;
}
  
    @keyframes animate-fade {
        0% { opacity: 0; }
        100% { opacity: 1; }
    }

    /* FADE IN */
    .animate.fade {
        animation-name: animate-fade;
        animation-timing-function: ease;
    }

    @keyframes animate-fade {
        0% { opacity: 0; }
        100% { opacity: 1; }
    }

    /* POP IN */
    .animate.pop {
        animation-name: animate-pop;
    }
    @keyframes animate-pop {
        0% {
            opacity: 0;
            transform: scale(0.5, 0.5);
        }
        100% {
            opacity: 1;
            transform: scale(1, 1);
        }
    }

    /* BLUR IN */
    .animate.blur {
        animation-name: animate-blur;
        animation-timing-function: ease;
    }
    @keyframes animate-blur {
        0% {
            opacity: 0;
            filter: blur(15px);
        }
        100% {
            opacity: 1;
            filter: blur(0px);
        }
    }

    /* GLOW IN */
    .animate.glow {
        animation-name: animate-glow;
        animation-timing-function: ease;
    }
    @keyframes animate-glow {
        0% {
            opacity: 0;
            filter: brightness(3) saturate(3);
            transform: scale(0.8, 0.8);
        }
        100% {
            opacity: 1;
            filter: brightness(1) saturate(1);
            transform: scale(1, 1);
        }
    }

    /* GROW IN */
    .animate.grow {
        animation-name: animate-grow;
    }
    @keyframes animate-grow {
        0% {
            opacity: 0;
            transform: scale(1, 0);
            visibility: hidden;
        }
        100% {
            opacity: 1;
            transform: scale(1, 1);
        }
    }

    /* SPLAT IN */
    .animate.splat {
        animation-name: animate-splat;
    }
    @keyframes animate-splat {
        0% {
            opacity: 0;
            transform: scale(0, 0) rotate(20deg) translate(0, -30px);
        }
        70% {
            opacity: 1;
            transform: scale(1.1, 1.1) rotate(15deg);
        }

        85% {
            opacity: 1;
            transform: scale(1.1, 1.1) rotate(15deg) translate(0, -10px);
        }

        100% {
            opacity: 1;
            transform: scale(1, 1) rotate(0) translate(0, 0);
        }
    }

    /* ROLL IN */
    .animate.roll {
        animation-name: animate-roll;
    }
    @keyframes animate-roll {
        0% {
            opacity: 0;
            transform: scale(0, 0) rotate(360deg);
        }
        100% {
            opacity: 1;
            transform: scale(1, 1) rotate(0deg);
        }
    }

    /* FLIP IN */
    .animate.flip {
        animation-name: animate-flip;
        transform-style: preserve-3d;
        perspective: 1000px;
    }
    @keyframes animate-flip {
        0% {
            opacity: 0;
            transform: rotateX(-120deg) scale(0.9,0.9);
        }
        100% {
            opacity: 1;
            transform: rotateX(0deg) scale(1,1);
        }
    }

    /* SPIN IN */
    .animate.spin {
        animation-name: animate-spin;
        transform-style: preserve-3d;
        perspective: 1000px;
    }
    @keyframes animate-spin {
        0% {
            opacity: 0;
            transform: rotateY(-120deg) scale(0.9,0.9);
        }
        100% {
            opacity: 1;
            transform: rotateY(0deg) scale(1,1);
        }
    }

    /* SLIDE IN */
    .animate.slide-up { animation-name: animate-slide-up; }
    @keyframes animate-slide-up {
        0% {
            opacity: 0;
            transform: translate(0,70px);
        }
        100% {
            opacity: 1;
            transform: translate(0,0);
        }
    }
    .animate.slide-down { animation-name: animate-slide-down; }
    @keyframes animate-slide-down {
        0% {
            opacity: 0;
            transform: translate(0,-70px);
        }
        100% {
            opacity: 1;
            transform: translate(0,0);
        }
    }

    .animate.slide-right { animation-name: animate-slide-right; }
    @keyframes animate-slide-right {
        0% {
            opacity: 0;
            transform: translate(-70px,0);
        }
        100% {
            opacity: 1;
            transform: translate(0,0);
        }
    }

    .animate.slide-left { animation-name: animate-slide-left; }
    @keyframes animate-slide-left {
        0% {
            opacity: 0;
            transform: translate(70px,0);
        }
        100% {
            opacity: 1;
            transform: translate(0,0);
        }
    }

    /* DROP IN */
    .animate.drop { 
        animation-name: animate-drop; 
        animation-timing-function: cubic-bezier(.77,.14,.91,1.25);
    }
    
    @keyframes animate-drop {
        0% {
            opacity: 0;
            transform: translate(0,-300px) scale(0.9, 1.1);
        }
        95% {
            opacity: 1;
            transform: translate(0,0) scale(0.9, 1.1);
        }
        96% {
            opacity: 1;
            transform: translate(10px,0) scale(1.2, 0.9);
        }
        97% {
            opacity: 1;
            transform: translate(-10px,0) scale(1.2, 0.9);
        }
        98% {
            opacity: 1;
            transform: translate(5px,0) scale(1.1, 0.9);
        }
        99% {
            opacity: 1;
            transform: translate(-5px,0) scale(1.1, 0.9);
        }
        100% {
            opacity: 1;
            transform: translate(0,0) scale(1, 1);
        }
    }
  
/* ANIMATION DELAYS */

.delay-0 {
    animation-delay: 0s;
}
.delay-1 {
    animation-delay: 0.6s;
}
.delay-2 {
    animation-delay: 0.7s;
}
.delay-3 {
    animation-delay: 0.8s;
}
.delay-4 {
    animation-delay: 0.9s;
}
.delay-5 {
    animation-delay: 1s;
}
.delay-6 {
    animation-delay: 1.1s;
}
.delay-7 {
    animation-delay: 1.2s;
}
.delay-8 {
    animation-delay: 1.3s;
}
.delay-9 {
    animation-delay: 1.4s;
}
.delay-10 {
    animation-delay: 1.5s;
}
.delay-11 {
    animation-delay: 1.6s;
}
.delay-12 {
    animation-delay: 1.7s;
}
.delay-13 {
    animation-delay: 1.8s;
}
.delay-14 {
    animation-delay: 1.9s;
}
.delay-15 {
    animation-delay: 2s;
}

.duration-1 {
    animation-duration: 0.5s;
}
.duration-2 {
    animation-duration: 1s;
}
.duration-3 {
    animation-duration: 1.25s;
}
.duration-4 {
    animation-duration: 1.5s;
}
.duration-5 {
    animation-duration: 2s;
}

/* ---------------------------------------------------------------------------------- */

.rubric-container {
    width: 100%;
    max-width: 700px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

/* Ensure "Your Response" and "Level Up Text" are aligned */
#your-response-container {
    display: flex;
    align-items: flex-start; /* Aligns text at the same height */
}

/* Standardized Header Styling for Both Columns */
.response-title, #level-up-text-column h3 {
    font-family: 'Arial', sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* Match "YOUR RESPONSE" to "YOUR CHARACTERISTICS" */
.response-title {
    background: #3A7E73; /* Same as 'YOUR CHARACTERISTICS' */
    color: white;
}

/* Match "LEVEL UP TEXT" to "HOW TO LEVEL UP" */
#level-up-text-column h3 {
    background: #E0F2F1; /* Same as 'HOW TO LEVEL UP' */
    color: #236863;
}

/* Two-column layout */
.rubric-table {
    display: flex;
    gap: 20px; /* Space between columns */
}

.rubric-column {
    flex: 1;
    background: #f8f8f8; /* Light background */
    padding: 15px;
    border-radius: 6px;
    width: 50%;
}

/* Headers with background colors */
.rubric-header {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    color: white;
    padding: 12px;
    border-radius: 6px;
}

.rubric-col-1 .rubric-header {
    background: #3A7E73; /* Slightly lighter green */
}

.rubric-col-2 .rubric-header {
    background: #E0F2F1; /* Very light grey-green */
    color: #236863;
}

/* Checklist items */
.rubric-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rubric-list li {
    font-size: 1em;
    padding: 8px;
    display: flex;
    align-items: center;
    border-radius: 5px;
}

/* Styled checkboxes */
.rubric-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #236863;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Checked Checkbox - Lighter Green */
.rubric-checked .rubric-checkbox {
    background: #5b9d94; /* Lighter Green */
    border-color: #5b9d94;
}

/* Unchecked Checkbox - Triadic Red */
.rubric-unchecked .rubric-checkbox {
    border-color: #A7383D; /* Custom Red */
}

.rubric-checkbox::after {
    content: "✔";
    color: white;
    font-size: 14px;
    font-weight: bold;
    display: none;
}

.rubric-checked .rubric-checkbox::after {
    display: block;
}

.rubric-unchecked {
    color: #666;
}

/* Updated Button Styles */
.rubric-levelup-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 15px;
    background: #F5FBF7; /* Very light green */
    color: #236863; /* Dark green text */
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #236863; /* Thinner border */
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    text-align: center;
}

/* Elegant Hover Effect */
.rubric-levelup-btn:hover {
    background: #E1F0E7; /* Slightly darker green */
    color: #1B4D44; /* Darker text */
    border-color: #1B4D44; /* Darker border */
}

/* MEDIA QUERIES */
@media all and (max-width: 1280px) {
    .download-options{
        position: relative;
        bottom: 0;
        text-align: center;
        margin-top: 12px;
    }
}
@media all and (max-width: 1169px) {
    .flex-center.rater--content,
    .flex-center.rater--sidebar{
        justify-content: start;
    }
    .match-list {
        max-height: none;
    }
    .match--players{
        flex-basis: calc(100% - 6px) !important;
        max-width: calc(100% - 6px) !important;
    }
    .match--list-title{
        flex-basis: calc(100% - 6px) !important;
    }
    .match--list-title:not(:first-of-type){
        display: none;
    }
}

@media (max-width: 748px) {
    .match-list {
        padding: 1em 1em 5em 1em;
    }
}

@media (max-width: 600px) {
    [data-state] {
        display: none!important;
    }

    .mobile-screen-message {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
    }

    .header{
        height: auto;
        padding: .8em 0;
    }

    .logo{
        margin: auto;
    }

    .header-info{
        margin: 1em auto;
        font-size: .7em;
    }
}

@media (max-width: 480px) {

}

@media screen and (prefers-reduced-motion: reduce) {
    .animate {
      animation: none !important;
    }
}