@font-face {
    font-family: 'Play';
    src: url('../fonts/Play/Play-Regular.woff2') format('woff2'),
         url('../fonts/Play/Play-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Play';
    src: url('../fonts/Play/Play-Bold.woff2') format('woff2'),
         url('../fonts/Play/Play-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.feedback_wrapper {
    background: rgba(0, 0, 0, 0.7);
    display: none;
    width: 100%;
    height: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300;
}

.feedback_btn {
    background-color: transparent;
    background-image: url('../images/feedback.png');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    width: 4vw;
    height: 5vw;
    position: fixed;
    top: 1vw;
    left: 1vw;
    z-index: 98;
    user-select: none;
    transition: opacity 0.5s, visibility 0.5s;
}

.feedback_btn:hover {
    background-image: url('../images/feedback_hover.png');
}



/* FEEDBACK HOVER [START] */
.feedback_hover {
    background: #FFFFFF;
    /* box-shadow: inset 0px 0px 0px 1px #005492; */
    /* border: 3px solid #FFFFFF; */
    visibility: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    padding: 3px;
    position: absolute;
    top: 50%;
    left: 5vw;
    transform: translate(-1vw, -50%);
    transition: visibility 0.5s, opacity 0.5s, transform 0.5s;
    border-radius: 12px;
    pointer-events: none;
}

.feedback_btn:hover .feedback_hover {
    visibility: visible;
    opacity: 1;
    transform: translate(0vw, -50%);
    pointer-events: auto;
}

.feedback_hover::after {
    background: inherit;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translate(10px, -50%) rotate(45deg);
    z-index: -1;
}

.feedback_btn::before {
    content: '';
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 1vw;
}

.feedback_btn:hover::before {
    display: block;
}

.feedback_hover_item {
    background-color: #00F4FF;
    background-image: linear-gradient(to top, #00B7E3, transparent);
    box-shadow: inset 0px 0px 0px 1px rgba(0, 84, 146, 0.5), inset 0px 1px 0px 0px rgba(0, 84, 146, 0.5);
    color: #FFFFFF;
    cursor: url(../images/professor/cursor.png), auto !important;
    -webkit-text-stroke: 1px #042C48;
    font-family: 'impact';
    font-size: 1.5vw;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 3vw;
    margin: 0;
    padding: 0vw 1vw;
    position: relative;
    white-space: nowrap;
    transition: background-color 0.5s;
}

.feedback_hover_item:hover {
    background-color: #00B7E3;
}

.feedback_hover_item:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.feedback_hover_item:last-child {
    margin-top: -1px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

@media (max-width: 1850px) {
    .feedback_label {
        margin: 0.4vw 3vw;
    }
    .feedback_success_popup_ok {
        bottom: 0;
    }
}
@media (max-width: 1440px) {
    .feedback_success_popup {
        width: 18vw;
        height: 11vw;
    }
    .feedback_label {
        font-size: 1vw;
    }
    .feedback_option_block {
        padding: 0 0 0 7vw;
    }
    .feedback_text {
        width: 17vw;
    }
}
/* FEEDBACK HOVER [END] */



/* FEEDBACK MODAL [START] */
.feedback_modal {
    background-color: #0099FF;
    background-image: radial-gradient(circle, #00F4FF 0%, #0099FF 100%);
    box-shadow: inset 0px 0px 0px 1px #005893, 0px 0px 0px 3px #FFFFFF;
    font-family: 'Play', Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    height: 90%;
    height: 90vh;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 3vw;
}

.feedback_modal *,
.feedback_modal *::before,
.feedback_modal *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.feedback_modal-head {
    background: rgba(255, 69, 69, 1);
    background: linear-gradient(0deg, rgba(255, 69, 69, 1) 0%, rgba(255, 63, 63, 1) 100%);
    box-shadow: inset 0vw -0.2vw 0vw 0vw #CD2C2C, inset 0vw 0.1vw 0vw 0vw #CD2C2C, 0vw 0.5vw 1.5vw 0vw rgba(0, 0, 0, 0.2);
    color: #FFFFFF;
    font-size: 2.2vw;
    font-weight: 700;
    text-align: center;
    text-shadow: 0.1vw 0.1vw 0vw #751010, 0vw 0vw 2vw #751010;
    text-transform: uppercase;
    letter-spacing: 0.05vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 5vw;
    margin: 0 auto;
    padding: 0vw 2vw 0.6vw 2vw;
    position: relative;
    z-index: 2;
    border-radius: 0vw 0vw 2vw 2vw;
    -webkit-user-select: none;
    user-select: none;
}

.feedback_modal-main {
    background: rgba(0, 152, 239, 1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: inset 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    flex: 1 0 0%;
    margin: 2vw 2vw 1vw 2vw;
    padding: 2vw 1vw 2vw 1vw;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    border-radius: 1.5vw;
}

.feedback_modal-main::-webkit-scrollbar {
    background-color: transparent;
    width: 0.8vw;
}

.feedback_modal-main::-webkit-scrollbar-track {
    background-color: transparent;
}

.feedback_modal-main::-webkit-scrollbar-thumb {
    background-color: #006B8F;
    border: none;
    border-radius: 1vw;
}

.feedback_modal-main::-webkit-scrollbar-button {
    background-color: transparent;
    display: none;
}

.feedback_modal-foot {
    margin-top: auto;
    margin-left: 2vw;
    margin-right: 2vw;
}

.feedback_modal-writing {
    width: auto;
    margin: 1vw 0vw 0vw 0vw;
    padding: 0vw 0vw 2vw 0vw;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.feedback_modal-select_box {
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
}

.feedback_modal-select_box svg {
    color: #FFFFFF;
    display: block;
    width: 3vw;
    height: 2vw;
    position: absolute;
    top: 0.8vw;
    right: 1vw;
    filter: drop-shadow(0px 0px 0.1vw rgba(0, 0, 0, 0.6));
    pointer-events: none;
}

.feedback_modal-select {
    background: linear-gradient(to top, #11558F, #0A3A71);
    border: 1px solid #000000;
    outline: none;
    color: #FFFFFF;
    font-size: 1.3vw;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    width: 100%;
    height: 3.6vw;
    padding: 0vw 1vw;
    border-radius: 1.5vw;
    -webkit-appearance: none;
    appearance: none;
    transition: box-shadow 0.2s;
}

.feedback_modal-select option {
    color: #000000;
}

.feedback_modal-select option[disabled] {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    display: none;
}

.feedback_modal-textarea {
    background: linear-gradient(to top, #11558F, #0A3A71);
    border: 1px solid #000000;
    outline: none;
    color: #FFFFFF;
    font-size: 1.3vw;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    display: block;
    width: 100%;
    height: 8vw;
    padding: 1vw;
    border-radius: 1.5vw;
    resize: none;
    transition: box-shadow 0.2s;
}

.feedback_modal-textarea::placeholder {
    color: #FFFFFF;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.feedback_modal-select.error, .feedback_modal-textarea.error {
    box-shadow: 0px 0px 0px 3px rgba(255, 69, 69, 1);
}

.feedback_modal-send {
    background: #FFC107;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.5), 0px 0px 20px 0px rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    border: none;
    outline: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 3vw;
    height: 3vw;
    position: absolute;
    top: 1vw;
    right: 1vw;
    border-radius: 50%;
    transition: background 0.5s, opacity 0.5s;
}

.feedback_modal-send:hover {
    background: #FFA000;
}

.feedback_modal-send.disabled {
    background: #FFA000;
    opacity: 0.5;
}

.feedback_modal-send svg {
    display: block;
    width: 50%;
    height: auto;
    margin-left: 0.2vw;
    filter: drop-shadow(0px 0px 0.1vw rgba(0, 0, 0, 0.6));
}
/* FEEDBACK MODAL [END] */



/* FEEDBACK ERROR [START] */
.feedback_error {
    background: rgba(0, 0, 0, 0.95);
    color: #FFFFFF;
    font-size: 1.4vw;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.05rem;
    text-align: center;
    display: none;
    width: fit-content;
    height: auto;
    margin: auto;
    padding: 1.6vw 2vw;
    position: absolute;
    top: 50%;
    right: 2vw;
    left: 2vw;
    z-index: 3;
    transform: translateY(-50%);
    border-radius: 1.5vw;
}
/* FEEDBACK ERROR [END] */



/* FEEDBACK - QUESTION & ANSWER [START] */
.feedback_group {
    display: flex;
    flex-direction: column;
}

.feedback_group + .feedback_group,
.feedback_question + .feedback_question,
.feedback_question + .feedback_answer,
.feedback_answer + .feedback_answer,
.feedback_answer + .feedback_question {
    margin-top: 1.5vw;
}

.feedback_group-animate .feedback_question {
    opacity: 0;
    transform: translateX(100%);
}

.feedback_question, .feedback_answer {
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
    color: #FFFFFF;
    text-shadow: 1px 1px 0px #000000;
    display: flex;
    flex-direction: column;
    width: max-content;
    min-width: 200px;
    max-width: 90%;
    padding: 1.5vw;
    border-radius: 1.5vw;
}

.feedback_question {
    background: #FF930F;
    background: linear-gradient(0deg, #D1790E 0%, #F1DD2E 100%);
    box-shadow: inset 0px -3px 0px 0px #AD650A, 0px 10px 20px 0px rgba(0, 0, 0, 0.3);
    margin-left: auto;
    border-radius: 1.5vw 0vw 1.5vw 1.5vw;
    opacity: 1;
    transform: translateX(0%);
    transition: opacity 0.5s, transform 0.5s;
}

.feedback_answer {
    background: #3F51B5;
    background: linear-gradient(0deg, #1A237E 0%, #3F51B5 100%);
    box-shadow: inset 0px -3px 0px 0px #101651, 0px 10px 20px 0px rgba(0, 0, 0, 0.3);
    border-radius: 0vw 1.5vw 1.5vw 1.5vw;
}

.feedback_question-head, .feedback_answer-head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    grid-gap: 2vw;
    gap: 2vw;
    white-space: nowrap;
    line-height: 1;
    -webkit-user-select: none;
    user-select: none;
}

.feedback_question-name, .feedback_answer-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4vw;
    font-weight: 700;
}

.feedback_question-date, .feedback_answer-date {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.9vw;
    font-weight: 700;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
}

.feedback_question-text, .feedback_answer-text {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    font-size: 1.2vw;
    font-weight: 700;
    letter-spacing: 0.025rem;
    margin-top: 0.8vw;
    padding-top: 1vw;
}
/* FEEDBACK - QUESTION & ANSWER [END] */



/* FEEDBACK MODAL - CLOSE [START] */
.feedback_modal-close {
    background-color: transparent;
    background-image: url('../images/close_window_btn.png');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
    outline: none;
    width: 4vw;
    height: 4vw;
    position: absolute;
    right: -1vw;
    top: -1vw;
    z-index: 4;
    -webkit-appearance: none;
    appearance: none;
}

.feedback_modal-close:hover {
    background-image: url('../images/close_window_hover_btn.png');
}
/* FEEDBACK MODAL - CLOSE [END] */



/* MODAL VIDEO INSTRUCTION [START] */
.modal_video_instruction {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal_video_instruction_close {
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 2vw;
    right: 2vw;
    transition: background-color 0.5s;
    border-radius: 50%;
}

.modal_video_instruction_close:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.modal_video_instruction_close::before, .modal_video_instruction_close::after {
    background-color: rgba(255, 255, 255, 0.5);
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    position: absolute;
    top: 24px;
    left: 15px;
    transition: background-color 0.5s;
}

.modal_video_instruction_close:hover::before, .modal_video_instruction_close:hover::after {
    background-color: rgba(255, 255, 255, 0.7);
}

.modal_video_instruction_close::before {
    transform: rotateZ(45deg);
}

.modal_video_instruction_close::after {
    transform: rotateZ(-45deg);
}

.modal_video_instruction iframe {
    max-width: 560px;
}

.modal_video_instruction_play {
    background-color: transparent;
    width: 100%;
    max-width: 560px;
    height: 420px;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal_video_instruction_error {
    background-color: #00B7E3;
    background-image: linear-gradient(to top, #00B7E3, #00F4FF);
    box-shadow: 0px 0px 0px 5px #FFFFFF, inset 0px 0px 0px 1px rgba(0, 84, 146, 0.5);
    color: #FFFFFF;
    -webkit-text-stroke: 1px #005492;
    font-family: 'impact';
    font-size: 1.8vw;
    text-align: center;
    display: none;
    width: 100%;
    max-width: 30vw;
    padding: 2vw;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1000;
    border-radius: 10px;
}

.button_video_instruction_voucher,
.button_video_instruction_close {
    background-color: #78DD3F;
    background-image: linear-gradient(0deg, #00C000 0%, #78DD3F 100%);
    box-shadow: inset 0px -1px 0px 0px #007800,
                0px 0px 0px 4px #FFFFFF,
                0px 2px 0px 5px #9E9E9B;
    border: none;
    color: #FFFFFF;
    cursor: inherit;
    outline: none;
    font-size: 20px;
    font-family: 'impact';
    text-shadow: 0px 0px 1px #000000, 0px 0px 2px #000000, 0px 2px 2px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    height: 50px;
    margin-top: 5vh;
    padding: 0vw 2vw;
    border-radius: 10px;
    user-select: none;
}

.button_video_instruction_voucher span,
.button_video_instruction_close span {
    opacity: 0.99;
}

.button_video_instruction_voucher:hover,
.button_video_instruction_close:hover {
    background-color: #00F300;
    background-image: linear-gradient(0deg, #00F300 0%, #46FC00 100%);
    box-shadow: inset 0px -1px 0px 0px #00BD00,
                0px 0px 0px 4px #FFFFFF,
                0px 2px 0px 5px #BDBCBC;
}

.button_video_instruction_voucher:hover span,
.button_video_instruction_close:hover span {
    opacity: 0.96;
}

.button_video_instruction_voucher.disabled {
    background-color: #607D8B;
    background-image: linear-gradient(0deg, #607D8B 0%, #90A4AE 100%) !important;
    box-shadow: inset 0px -1px 0px 0px #263238,
                0px 0px 0px 4px #FFFFFF,
                0px 2px 0px 5px #BDBCBC !important;
}

.button_video_instruction_voucher.success {
    background-color: #00B7E3;
    background-image: linear-gradient(0deg, #00B7E3 0%, #00F4FF 100%) !important;
    box-shadow: inset 0px -1px 0px 0px #263238,
                0px 0px 0px 4px #FFFFFF,
                0px 2px 0px 5px #BDBCBC !important;
}

.button_video_instruction_voucher.error {
    background-color: #F44336;
    background-image: linear-gradient(0deg, #F44336 0%, #EF5350 100%) !important;
    box-shadow: inset 0px -1px 0px 0px #B71C1C,
                0px 0px 0px 4px #FFFFFF,
                0px 2px 0px 5px #BDBCBC !important;
}

.global_music.prevented {
    animation-name: rotating;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes rotating {
      0% { transform: scale(1); }
     50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
/* MODAL VIDEO INSTRUCTION [END] */



/* LOGO [START] */
.logo {
    background-color: rgba(0, 0, 0, 0.3);
    background-image: url('../images/logo.png');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 80% auto;
    width: 12vw;
    height: 3vw;
    opacity: 0.8;
    position: fixed;
    z-index: 110;
    pointer-events: none;
}

.logo_light {
    background-color: rgba(255, 255, 255, 0.1);
}

.logo.logo_tl { top: 0; left: 0; border-radius: 0vw 0vw 0.6vw 0vw; }
.logo.logo_tr { top: 0; right: 0; border-radius: 0vw 0vw 0vw 0.6vw; }
.logo.logo_bl { bottom: 0; left: 0; border-radius: 0vw 0.6vw 0vw 0vw; }
.logo.logo_br { bottom: 0; right: 0; border-radius: 0.6vw 0vw 0vw 0vw; }
/* LOGO [END] */



/* GLOBAL RULES [START] */
.global_rules {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-left: 0.1vw;
    padding-right: 0.5vw;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.global_rules-pumpkins        { --rules-scrollbar-color: #FF8D00; }
.global_rules-aliens          { --rules-scrollbar-color: #00577D; }
.global_rules-bridge          { --rules-scrollbar-color: #7D7067; }
.global_rules-caterpillar     { --rules-scrollbar-color: #793900; }
.global_rules-whatIsThis      { --rules-scrollbar-color: #9A3601; }
.global_rules-sorting         { --rules-scrollbar-color: #585B4B; }
.global_rules-teleport        { --rules-scrollbar-color: #B4A7B9; }
.global_rules-sherlock        { --rules-scrollbar-color: #8D5C3F; }
.global_rules-way             { --rules-scrollbar-color: #006091; }
.global_rules-ghost           { --rules-scrollbar-color: #7D6978; }
.global_rules-challenge       { --rules-scrollbar-color: #585B4B; }
.global_rules-formulaTesting  { --rules-scrollbar-color: #775F38; }
.global_rules-cinema          { --rules-scrollbar-color: #F4B25B; }
.global_rules-professor_exam  { --rules-scrollbar-color: #A8FBFF; }
.global_rules-professor_rules { --rules-scrollbar-color: #A8FBFF; }
.global_rules-youngest        { --rules-scrollbar-color: #71300F; }

.global_rules::-webkit-scrollbar {
    background-color: transparent;
    width: 0.6vw;
}

.global_rules::-webkit-scrollbar-track {
    background-color: transparent;
}

.global_rules::-webkit-scrollbar-thumb {
    background-color: var(--rules-scrollbar-color, rgba(0, 0, 0, 0.3));
    border: none;
    border-radius: 1vw;
}

.global_rules::-webkit-scrollbar-button {
    background-color: transparent;
    display: none;
}

.global_rules div + div { margin-top: 2vw; }

.global_rules,
.global_rules p {
    line-height: 1.5;
}

.global_rules p {
    margin: 0;
}

.global_rules p + p {
    margin-top: 1vw;
}

.global_table {
    background: rgba(0, 0, 0, 0);
    border-collapse: collapse;
    font-family: 'Play', sans-serif;
    font-size: 1.2vw;
    font-weight: 700;
    /* text-shadow: none; */
    line-height: 1;
    width: 100%;
}

.global_table.global_table-cinema thead tr th + th,
.global_table.global_table-cinema thead tr td + td,
.global_table.global_table-cinema tbody tr th + th,
.global_table.global_table-cinema tbody tr td + td {
    border-left-color: rgba(255, 255, 255, 0.1);
}

.global_table.global_table-cinema tbody tr th,
.global_table.global_table-cinema tbody tr td {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.global_table-icon {
    background-color: rgba(0, 0, 0, 0);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.global_table-icon svg {
    display: block;
    width: 2.5vw;
    height: 2.5vw;
}

.global_table-errors {
    background-image: url('../images/rules/errors.png');
    width: 2vw;
    min-width: 2vw;
    height: 2vw;
}

.global_table-hints {
    background-image: url('../images/rules/hints.png');
    width: 1.6vw;
    min-width: 1.6vw;
    height: 2.2vw;
}

.global_table-time {
    background-image: url('../images/rules/time.png');
    width: 1.8vw;
    min-width: 1.8vw;
    height: 2vw;
}

.global_table-search {
    background-image: url('../images/rules/search.png');
    width: 2vw;
    min-width: 2vw;
    height: 2vw;
}

.global_table-voucher {
    background-image: url('../images/rules/voucher.png');
    width: 2.2vw;
    min-width: 2.2vw;
    height: 2vw;
}

.global_table thead tr th,
.global_table thead tr td {
    border: none;
    text-align: center;
    padding: 0.5vw 0.3vw;
}

.global_table tbody tr th,
.global_table tbody tr td {
    border: none;
    text-align: center;
    padding: 0.5vw 0.3vw;
}

.global_table tbody tr th,
.global_table tbody tr td {
    border-top: 0.1vw solid rgba(0, 0, 0, 0.2);
}

.global_table thead tr th + th,
.global_table thead tr td + td,
.global_table tbody tr th + th,
.global_table tbody tr td + td {
    border-left: 0.1vw solid rgba(0, 0, 0, 0.2);
}

/* GLOBAL TABLE: STARS */
.global_table-stars {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.global_table-stars svg {
    display: block;
    width: 1.2vw;
    min-width: 1.2vw;
    height: 1.2vw;
}

.global_table-stars svg + svg {
    margin-left: 0.1vw;
}

.global_table-stars svg path {
    fill: #AE7231;
    /* stroke: #000000; */
    /* stroke-width: 5%; */
    stroke: rgb(0 0 0 / 70%);
    stroke: #794c1a;
    stroke-width: 5%;
}

/* GLOBAL TABLE: STARS 5 */
.global_table-stars_5 svg:nth-child(-n+5) path,
.global_table-stars_4 svg:nth-child(-n+4) path,
.global_table-stars_3 svg:nth-child(-n+3) path,
.global_table-stars_2 svg:nth-child(-n+2) path,
.global_table-stars_1 svg:nth-child(-n+1) path {
    /* fill: orange; */
    fill: #FFE500;
    stroke: #ab9a01;
    stroke-width: 5%;
}
/* GLOBAL RULES [END] */



/* NEWS POPUP [START] */
.news_popup-wrapper {
    background: rgba(0, 0, 0, 0.7);
    display: none;
    width: 100%;
    height: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.news_popup {
    background-color: #0099FF;
    background-image: radial-gradient(circle, #00F4FF 0%, #0099FF 100%);
    box-shadow: inset 0vw 0vw 0vw 0.1vw #005893, 0vw 0vw 0vw 0.3vw #FFFFFF;
    font-family: 'Play', Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1vw;
    width: 34vw;
    height: 40vw;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 3vw;
}

.news_popup *,
.news_popup *::before,
.news_popup *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.news_popup-head {
    background: rgba(255, 69, 69, 1);
    background: linear-gradient(0deg, rgba(255, 69, 69, 1) 0%, rgba(255, 63, 63, 1) 100%);
    box-shadow: inset 0vw -0.2vw 0vw 0vw #CD2C2C, inset 0vw 0.1vw 0vw 0vw #CD2C2C, 0vw 0.5vw 1.5vw 0vw rgba(0, 0, 0, 0.2);
    color: #FFFFFF;
    font-size: 1.6vw;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0.1vw 0.1vw 0vw #510606,
                 0.1vw -0.1vw 0vw #510606,
                 -0.1vw 0.1vw 0vw #510606,
                 -0.1vw -0.1vw 0vw #510606,
                 0.1vw 0vw 0vw #510606,
                 0vw 0.1vw 0vw #510606,
                 -0.1vw 0vw 0vw #510606,
                 0vw -0.1vw 0vw #510606;
    line-height: 1.3;
    letter-spacing: 0.05vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 26vw;
    min-height: 5vw;
    margin: 0 auto;
    padding: 1.2vw 1vw 1.4vw 1vw;
    position: relative;
    z-index: 2;
    border-radius: 0vw 0vw 2vw 2vw;
    -webkit-user-select: none;
    user-select: none;
}

.news_popup-close {
    background-color: transparent;
    background-image: url('../images/close_window_btn.png');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
    outline: none;
    width: 4vw;
    height: 4vw;
    position: absolute;
    right: -1vw;
    top: -1vw;
    z-index: 4;
    -webkit-appearance: none;
    appearance: none;
}

.news_popup-close:hover {
    background-image: url('../images/close_window_hover_btn.png');
}

.news_popup-body {
    background: #11558F;
    background: linear-gradient(0deg, #11558F 0%, #0A3A71 100%);
    background: linear-gradient(to top, #11558F, #0A3A71);
    box-shadow: inset 0vw 0vw 1vw 0vw rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    max-height: 24vw;
    margin: 0vw 2vw 0vw 2vw;
    padding: 1vw;
    border-radius: 1vw;
}

.news_popup-text {
    color: #FFFFFF;
    font-size: 1.4vw;
    font-weight: 700;
    text-shadow: 0.1vw 0.1vw 0vw #00324f,
             0.1vw -0.1vw 0vw #00324f,
             -0.1vw 0.1vw 0vw #00324f,
             -0.1vw -0.1vw 0vw #00324f,
             0.1vw 0vw 0vw #00324f,
             0vw 0.1vw 0vw #00324f,
             -0.1vw 0vw 0vw #00324f,
             0vw -0.1vw 0vw #00324f;
    letter-spacing: 0.05vw;
    line-height: 1.5;
    flex: 1 0 0%;
    padding: 0vw 0.5vw 0vw 0.2vw;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 0vw 0vw 1vw 1vw;
}

.news_popup-text p {
    margin: 0;
    padding: 0;
}

.news_popup-text p + p {
    margin-top: 1vw;
}

.news_popup-text::-webkit-scrollbar {
    background-color: transparent;
    width: 0.6vw;
}

.news_popup-text::-webkit-scrollbar-track {
    background-color: transparent;
}

.news_popup-text::-webkit-scrollbar-thumb {
    background-color: #0680AF;
    border: none;
    border-radius: 1vw;
}

.news_popup-text::-webkit-scrollbar-button {
    background-color: transparent;
    display: none;
}

.news_popup-foot {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-bottom: 2vw;
}

.news_popup-btn {
    background-color: rgba(0, 0, 0, 0);
    background-image: url('../images/ok_button.png');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
    outline: none;
    width: 10vw;
    height: 4.4vw;
    -webkit-appearance: none;
    appearance: none;
}

.news_popup-btn:hover {
    background-image: url('../images/ok_button_hover.png');
}
/* NEWS POPUP [END] */