
.quicksand{
  font-family: "Quicksand", sans-serif;
}

:root{
    --highlight_cyan: #81e1fa;
    --light_border: #4b51a6;
}

body{
    background-color: #4e4e4e;
}

.load_holder{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0.5, 0.5, 0.5, 0.5);
}

.loader {
    animation: rotate 1s infinite;
    height: 50px;
    width: 50px;
}

.loader:before,
.loader:after {
    border-radius: 50%;
    content: "";
    display: block;
    height: 20px;
    width: 20px;
}
  .loader:before {
    animation: ball1 1s infinite;
    background-color: #fff;
    box-shadow: 30px 0 0 #ff3d00;
    margin-bottom: 10px;
}
  .loader:after {
    animation: ball2 1s infinite;
    background-color: #ff3d00;
    box-shadow: 30px 0 0 #fff;
}

@keyframes rotate {
    0% { transform: rotate(0deg) scale(0.8) }
    50% { transform: rotate(360deg) scale(2.0) }
    100% { transform: rotate(720deg) scale(0.8) }
}

@keyframes ball1 {
    0% {
         box-shadow: 30px 0 0 #ff3d00;
    }
    50% {
        box-shadow: 0 0 0 #ff3d00;
        margin-bottom: 0;
        transform: translate(15px, 15px);
    }
    100% {
        box-shadow: 30px 0 0 #ff3d00;
        margin-bottom: 10px;
    }
}

@keyframes ball2 {
    0% {
        box-shadow: 30px 0 0 #fff;
    }
    50% {
        box-shadow: 0 0 0 #fff;
        margin-top: -20px;
        transform: translate(15px, 15px);
    }
    100% {
        box-shadow: 30px 0 0 #fff;
        margin-top: 0;
    }
}
  
button {
    background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(0, 52, 104) 38%, rgb(1, 2, 2) 100%);;
    border: 1px solid var(--light_border);
    padding: 4px;
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 3px 3px 6px black;
    color: white;
    transition: all 0.25s ease;
    font-family: "Quicksand", sans-serif;
}

button:hover {
    color: #000000;
    background: linear-gradient(90deg, rgb(92, 231, 249) 0%, rgb(52, 135, 218) 38%, rgb(124, 218, 218) 100%);
}

.quiz_practice_megszakit {
    background: rgb(103, 179, 208);
    border: 2px solid rgb(6, 0, 45);
    box-shadow: 3px 3px 6px rgb(143, 245, 255);
    color: #101c42;
}
.quiz_practice_megszakit:hover {
    background-color: darkred;
}

.quiz_practice_elore {
    background-color: lightgreen;
    border: 1px solid green;
    box-shadow: 3px 3px 6px green;
}

.quiz_practice_vissza {
    background-color: lightyellow;
    border: 1px solid gold;
    box-shadow: 3px 3px 6px gold;
}

.smallbutton{
    padding: 4px;
    font-weight: normal;
    box-shadow: 3px 3px 6px gray;
}

.smallbutton_red{
    padding: 4px;
    transform: skew(-12deg);
    font-weight: normal;
    box-shadow: 3px 3px 6px gray;
    background-color: pink;
    box-shadow: 0px 0px 6px red;
}

.voice, .voice:hover, .voice:active{
    background: rgb(41, 92, 47);
    border: 2px solid rgb(0, 45, 5);
    box-shadow: 0px 0px 6px rgb(152, 255, 143);
}

.aktiv{
    background: rgb(90, 92, 41);
    border: 2px solid rgb(45, 45, 0);
    box-shadow: 0px 0px 6px rgb(253, 255, 143);
}

.aktiv2:hover, .aktiv2:active, .aktiv2{
    background: pink;
    border: 2px solid rgb(45, 39, 0);
    box-shadow: 0px 0px 6px pink;
    color: black;
}

.elszint_doboz{
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.restart_test {
    position: sticky;
    top: 0px;
}

.ui-dialog-titlebar {
    background: none;
    border: none;
    text-shadow: 2px 2px 2px black, -2px -2px 2px black,0px 0px 10px black;
}

.ui-dialog .ui-dialog-content{
    background: linear-gradient(45deg, #080943, black, #08315d);
    color: white;
    border-left: 2px solid aqua;
    margin-left: 0.5em;
    box-shadow: inset 0px 0px 15px aqua;
    clip-path: polygon(5% 0%, 100% 0%, 100% 97%, 95% 100%, 0% 100%, 0% 3%);
}

.system_dialog.ui-dialog-content, .gotovizsgadialog.ui-dialog-content, .system_message.ui-dialog-content {
    background: linear-gradient(45deg, #080943, black, #08315d);
    color: white;
    border-left: 2px solid aqua;
    margin-left: 0.5em;
    box-shadow: 0px 0px 15px aqua;
}

.ui-dialog {
    background-color: rgba(0, 0, 0, 0);
    border: 0px !important;
    outline: none;
}

.mediumbutton {
    background: linear-gradient(15deg, aqua, lightblue, aqua);
    color: black;
}

.mediumbutton:hover{
    background: linear-gradient(15deg, rgb(0, 255, 123), rgb(173, 230, 202), rgb(0, 255, 68));
}

.ui-dialog-buttonpane {
    background-image: linear-gradient(15deg, #93ebff, #f4feff, #a5a5ff) !important;
    clip-path: polygon(0 0, 0 50%, 10% 100%, 100% 100%, 100% 50%, 90% 0);
    border: none;
    box-shadow: inset 0px 0px 10px black;
}

.ui-dialog-buttonpane {
  display: grid;
  justify-content: center;
}

.ui-dialog-buttonset button {
    width: 150%;
    background: linear-gradient(15deg, aqua, lightcyan, aqua);
    color: black;
    justify-content: center;
    display: grid;
}

.ui-dialog-buttonset {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100dvw;
  left: -25dvw;
  position: relative;
}

#voice_custom_handle, #sfx_custom_handle {
    font-size: smaller;
    width: 2em;
    height: 1.5em;
    display: grid;
    justify-content: center;
    align-items: center;
}

.ui-dialog div{
    color: black;
}

.ui-dialog-title {
    color: white;
}

.admin_test_question_preview {
    background-color: white;
    border: 1px solid aqua;
    box-shadow: 0px 0px 10px aqua;
}

.admin_vizsgafeladatsor_stats {
    background: whitesmoke !important;
}

.admin_vizsgafeladatsor_stats .felhasznalok {
    margin-top: 1em;
    max-height: 60dvh;
    overflow-y: auto;
}

.register_new_user {
    background: whitesmoke !important;
    color: black !important;
}

.st_controlbar {
    color: aqua;
    text-shadow: 0px 0px 7px rgba(0, 243, 255, 0.5);
    font-size: small;
    margin: 0;
    padding: 0;
}

.road_to_success {
    border: 2px solid #202a7b;
    border-radius: 1em;
    box-shadow: 0px 0px 10px aqua;
    margin-bottom: 2em;
    padding: 1em;
    user-select: none;
}

.hexme {
    display: grid;
    align-items: center;
    justify-content: center;
    --b: 4px;
    height: 50px;
    aspect-ratio: 1/cos(30deg);
    clip-path: polygon(0 50%,50% -50%,100% 50%,50% 150%,0 50%, var(--b) 50%, calc(25% + var(--b)*cos(60deg)) calc(100% - var(--b)*sin(60deg)), calc(75% - var(--b)*cos(60deg)) calc(100% - var(--b)*sin(60deg)), calc(100% - var(--b)) 50%, calc(75% - var(--b)*cos(60deg)) calc(var(--b)*sin(60deg)), calc(25% + var(--b)*cos(60deg)) calc(var(--b)*sin(60deg)), var(--b) 50%);
    background: #0FF;
    transform: rotate(90deg);
}

.hexme_smaller{
    display: grid;
    align-items: center;
    justify-content: center;
    --b: 3px;
    height: 40px;
    aspect-ratio: 1/cos(30deg);
    clip-path: polygon(0 50%,50% -50%,100% 50%,50% 150%,0 50%, var(--b) 50%, calc(25% + var(--b)*cos(60deg)) calc(100% - var(--b)*sin(60deg)), calc(75% - var(--b)*cos(60deg)) calc(100% - var(--b)*sin(60deg)), calc(100% - var(--b)) 50%, calc(75% - var(--b)*cos(60deg)) calc(var(--b)*sin(60deg)), calc(25% + var(--b)*cos(60deg)) calc(var(--b)*sin(60deg)), var(--b) 50%);
    background: #0FF;
    transform: rotate(90deg);
}

.stat_fejlec {
    display: grid;
    grid-template-columns: 1fr 3fr 2fr;
    gap: 0.5em;
    overflow: hidden;
}

.hexcontainer {
    filter: drop-shadow(0px 0px 5px aqua);
    display: grid;
    justify-items: center;
    align-items: center;
}

.mylevel {
    grid-column: 1/3;
    grid-row: 1/3;
}

.stat_fejlec .stat_szintszam{
    color: cyan;
}

.stat_szintszam{
    font-size: 2em;
    font-weight: bolder;
}

.stat_level_textform {
    font-size: 1.4em;
    color: #00abff;
    text-align: center;
    font-weight: bolder;
    text-transform: uppercase;
}

.less_imp_text{
    color: lightgray;
    font-size: 0.8em;
}

.slight_imp{
    color: #00abff;
    font-size: 0.8em;
}

.stat_lebontas {
    display: grid;
    align-items: center;
    text-align: left;
    padding-bottom: 0.5em;
}

.level_holocard{
    display: grid;
    grid-template-columns: 2fr 3fr 1fr 6fr;
    gap: 1em;
    border-radius: 1em;
    padding: 0.5em;
}

.level_holocard.locked{
    border: 2px solid gray;
    box-shadow: 0px 0px 6px black;
    background: linear-gradient(25deg, rgba(237, 237, 237, 0.27), rgba(115, 115, 115, 0.16));
}

.co_green.level_holocard{
    border: 2px solid #22cb36;
    box-shadow: 0px 0px 6px rgb(0, 255, 26);
    background: linear-gradient(25deg, rgba(42, 249, 132, 0.27), rgba(73, 125, 72, 0.16));
    color: #00ff8c;
}
.co_cyan.level_holocard {
    border: 2px solid #2284cb;
    box-shadow: 0px 0px 6px aqua;
    background: linear-gradient(25deg, rgba(42, 229, 249, 0.27), rgba(72, 72, 125, 0.16));
    color: #00abff;
}
.co_yellow.level_holocard {
    border: 2px solid #cbcb22;
    box-shadow: 0px 0px 6px rgb(242, 255, 0);
    background: linear-gradient(25deg, rgba(249, 242, 42, 0.27), rgba(125, 125, 72, 0.16));
    color: #e1ff00;
}
.co_purple.level_holocard {
    border: 2px solid #cb22c3;
    box-shadow: 0px 0px 6px rgb(238, 0, 255);
    background: linear-gradient(25deg, rgba(249, 42, 245, 0.27), rgba(125, 72, 117, 0.16));
    color: #f0aaf5;
}

.co_green .hexme_smaller{
    background:lightgreen;
}

.co_yellow .hexme_smaller{
    background:yellow;
}

.co_purple .hexme_smaller{
    background:#a5a5ff;
}

.co_red .hexme_smaller{
    background: red;
}

.co_cyan .hexme_smaller{
    background: cyan;
}

.co_locked .hexme_smaller{
    background: gray;
}

.locked{
    color:gray;
}

.level_list_holder {
    display: flex;
    flex-flow: column;
    gap: 0.5em;
}

#level_progress{
    width: 120px;
}

.csillagjelzo {
    display: grid;
    align-items: center;
}

.testing .csillagjelzo{
    display: flex;
    flex-flow: nowrap;
    gap: 0.25em;
}

.vizsga_mutato {
    width: 1.5em;
    height: 1.5em;
    border: 2px solid #580080;
    border-radius: 1em;
    display: grid;
    justify-items: center;
    align-items: center;
    box-shadow: 0px 0px 5px #e993fb, inset 2px 2px 2px #ed95f4;
    font-size: 0.7em;
}

.vizsga_mutato_full{
    background: #9740af;
    color: black;
    text-shadow: 1px 1px 1px gray;
}

.overunder_outer{
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5em;
}

.stat_newstar{
    display: flex;
    flex-flow: nowrap;
    gap: 0.25em;
}

.more_imp{
    font-weight: bold;
    color:#00abff;
}

.statcard{
    width: 100%;
    height: 75dvh;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    user-select: none;
    text-align: center;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.statcard{
    position: absolute;
    border: 2px solid var(--highlight_cyan);
    border-radius: 1.5em;
    box-shadow: 0px 0px 20px, inset 0px 0px 15px cyan;
    color: var(--highlight_cyan);
}

.stat_sidescroller {
    height: 75dvh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.stat_scroll_index {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    gap: 4px;
    padding-left: 1em;
    padding-right: 1em;
    box-sizing: border-box;
}

.smallholobox{
    border: 1px solid #2284cb;
    box-shadow: --var(--highlight_cyan);
    border-radius: 1em;
    display: grid;
    grid-template-columns: 1fr;
    width: fit-content;
    padding: 2em;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.stat_perc_display, .stat_total_display, .stat_fail_display, .stat_succ_display{
    font-size: large;
    font-weight: bold;
}

.stat_perc_display{
    color: #9740af;
}
.stat_total_display{
    color: #00abff;
}
.stat_fail_display{
    color: rgb(238, 55, 55);
}
.stat_succ_display{
    color:rgb(0, 255, 123);
}

.mainstats {
    overflow: hidden;
    padding-bottom: 1em;
    padding-top: 0.5em;
}

.globaldata {
    margin-top: 0.5em;
}

.netneg{
    color: pink;
    text-shadow: 0px 0px 5px rgba(255, 47, 47, 0.5);
}

.netpos{
    color: rgb(113, 255, 113);
    text-shadow: 0px 0px 20px rgba(173, 255, 47, 0.5);
}

.smallholoboxv2 {
    margin: 0.2em;
    display: grid;
    grid-template-columns: 1fr;
}

.globalstats .largenr {
    font-size: small;
}

.globaldata {
    display: inline-block;
    margin-bottom: 1em;
}

.largeholobox {
    border: 2px solid #64beff;
    border-radius: 1em;
    padding: 0.5em;
    box-shadow: 0px 0px 10px aqua, inset 0px 0px 5px lightcyan;
    margin: 0.5em;
    margin-top: 1em;
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
}

.admin_teszt_nehezseg_kijelzo span {
    color: white;
}

.smallholoboxv2 i {
    font-size: 1.5em;
}

#stat_tabs .ui-widget-header {
    background-color: white;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

#stat_tabs .ui-tabs-tab.ui-state-default {
    background: white;
}

#stat_tabs .ui-tabs-anchor {
    color: black;
}

#stat_tabs .ui-state-active .ui-tabs-anchor {
    color: darkblue;
    background: #e7e7e7;
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
    border-bottom: 0px;
    text-shadow: 0px 0px 6px aqua;
}

.portrait{
    box-shadow: 0px 0px 10px aqua;
    border: 1px solid blue;
    width: 480px;
    height: 480px;
}