
:root {
    --white-header-color: rgb(237, 237, 237);
    --gold-header-color: rgb(255, 187, 0);
    --blue-block-color: rgb(17, 17, 17);
    --transparent-block-color: rgba(0, 0, 0, 0.20);
    --orange-header-color: rgb(233, 93, 15);
    --devider-color: #C5C5C557;
    --black-color: #00142C;
    --normal-width: 1200px;

    --bg: #0b1b3a;
    --card: #162a55;
    --text: #e9f0ff;
    --muted: #b9c6e6;
    --accent: #ff8a00;
    --correct: #22c55e;
    --wrong: #f43f5e;
    --shadow: 0 10px 20px rgba(0, 0, 0, .35);
    --radius: 16px;
}

body {
    margin: 0;
    background-image: url(https://quiz.infoforce.ru/assets/images/bg11.jpg);
    background-repeat: no-repeat;
    background-color: #00132a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;


}

h2 {
    font-size: 24px;
    font-weight: 600;
    word-spacing: 0px;
    color: var( --gold-header-color );
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif!important;
}

h3 {
    font-family: "Marmelad", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    word-spacing: 0px;
    margin:8px;
    display: block;
    color: var(--white-header-color);
}

p {
    color: var(--mdc-theme-text-primary-on-background);
}

a {
    text-decoration: none!important;
}


table {
    display:block;
    width:100%;
    overflow-y: auto;

}

.main_body {

    display: block;
    flex-direction: column;
    flex: 1;

}

.quiz_container {
    display: block;
    height: 100%;
    margin: 0 auto;
    max-width: var(--normal-width);
    padding: 5px 20px 20px 20px;
}



.auth_warning {
    display:none;
    color: red;
    line-height: 60px;
    text-align: center;
    font-size: 14px;

}

.quiz-button {
    background-color: var(--mdc-protected-button-background-color)!important;

}


.quiz_numquest {
    width:100%;
    text-align: right;
    color: var(--muted);
    font-family: Inter, system-ui, sans-serif;
    font-size: 14px;
}

.quiz_txtquest {
    width:100%;
    text-align: center;
    text-transform: uppercase;
    color: var(--text);
    font-family: "Arial", sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    word-spacing: 10px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;

}

.quiz-decription-right {
    padding-left: 40px;
    padding-right: 40px;
}

.quiz_txtinfo {
    width:100%;
    text-align: center;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.44);;
    line-height: 36px;
    font-family: "Arial", sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-top:5px;
}

.quiz_progress {
    padding-right: 15px;
    padding-left: 15px;
}

.quiz_progress_area {
    margin-top:15px;
    margin-bottom:5px;
    display: flex;
    color: var(--mdc-theme-primary);
    font-family: "Arial", sans-serif;
    font-size: 12px;
    font-weight: 300
}

.quiz_numquest>span {
    color:rgba(255, 255, 255, 0.44);
}

.quiz_block_answer {
    display: grid;
    gap: 12px;
}

.quiz_block_media_answer {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.quiz_panel {
    background-color: #00142CA3;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #b0b0b021;
    box-shadow: 2px 0px 22px 5px rgba(0,0,0,0.5);

}

.quiz_answer {
    width: 100%;
    color: rgb(237, 237, 237);
    font-family: marmelad;
    font-size: 24px;
    font-weight: 800;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 14px 18px;
    cursor: pointer;
    transition: background 0.3s
    ease, transform 0.2s
    ease;
}

.quiz_answer:hover {
    background-color: #0A1A3D;


}

.quiz_media_answer {
    overflow: hidden;
    border-radius: 10px;
}

.quiz_media_answer div{
    transition: transform 0.2s;

}

.quiz_media_answer:hover div{
    transform: scale(1.1);

}


.quiz_media_answer span {
    color: var(--mdc-theme-primary);
    font-family: "Marmelad", sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
}


.quiz_answer span {
    color: rgb(233, 93, 15);
    font-family: marmelad;
    font-size: 24px;
    font-weight: 800;
    margin-right:15px;


}

tbody tr:nth-child(2n) {
    background-color: #134e9512;
}

.agree {
    margin-top:15px;
    margin-bottom:15px;
}

.auth_type {

    color: rgba(255, 255, 255, 0.71);
    margin-top:0px;
    font-family: Roboto, sans-serif;

}

hr {
    border-color: rgba(196, 196, 196, 0.2)!important;
}

.quiz-button .mdc-button__label {
    color:var(--mdc-protected-button-label-text-color)!important;
}


.quiz-main-answer {
    margin-top:25px;

}


.quiz_banner_count  {
    background-image: url("https://quiz.infoforce.ru/assets/images/counterbg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top:45px;
    height:200px;
    border-radius: 10px 10px 10px 10px;
}

.quiz_footer_container {
    display: flex;
    height: 100%;
    margin: 0 auto;
    margin: 0 auto;
    max-width: var(--normal-width);
    align-items: center;
    justify-content: space-between;
}

.quiz_menu {
    width:100%;
    max-width:1200px;
    height: 70px;
    display: inline-flex;
    justify-content: space-between;
    margin-bottom: 5px;
    margin-top: 5px;
}

.quiz_menu_small {
    display: none;
    width:100%;
    max-width:1180px;
    height: 50px;
    background-color: var(--transparent-block-color);
    justify-content: space-between;
}

.quiz_menu_bottom_small {
    display: none;
    position: fixed;
    bottom:0px;
    left:0px;
}

.quiz-list {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;
    scrollbar-width: thin;
    scrollbar-color: var(--mdc-theme-scroll) #4444441c;
    scroll-behavior: smooth;
    gap:25px;
    padding-top:25px;
    padding-left:15px;
    padding-right:15px;
    padding-bottom:25px;
}

.quiz_menu_logo {
    min-width:50px;
}

.quiz-heading-type {
    font-family: "Marmelad", Sans-serif;
    font-size: 36px;
    font-weight: 600;
    word-spacing: 0px;
    color: var( --white-header-color);
}

#login_phone {
    margin-top: -150px;
}

.myscroll {
    scrollbar-width: thin;
    scrollbar-color: var(--mdc-theme-scroll) #4444441c;
    scroll-behavior: smooth;
}

.quiz-heading-title {
    font-family: "JetBrains Mono", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    word-spacing: 0px;
    color: var(  --gold-header-color);
}

.quiz-info-txt {
    align-items: center;
    box-sizing: border-box;
    color: rgb(197, 197, 197);
    display: flex;
    text-align: center;
    font-family: "Noto Sans", sans-serif;
    font-size: 27px;
    font-weight: 600;
    justify-content: center;
}

.quiz-info-balls {
    color: rgb(233, 93, 15);
    flex-grow: 0;
    font-family: "Noto Sans", sans-serif;
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    line-height: 36px;

}

.quiz-home-block {
    display:block;
    background-color: #1f14ff29 !important;
}

.text-block {

    background-repeat: no-repeat;
    background-size: cover;
    margin-top:15px;
    font-family: "Marmelad", Sans-serif!important;
    font-size: 20px!important;
    background-color: #00142C00;
    letter-spacing: 0px!important;
    word-spacing: 6px!important;
    color: #ededede8 !important;
}

.text-block-header {
    padding-left:25px;
    padding-right:35px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top:15px;
    font-family: "Marmelad", Sans-serif!important;
    font-size: 16px!important;
    background: radial-gradient(1200px 400px at 10% 10%, rgba(90, 176, 255, .18), transparent), linear-gradient(135deg, #142a58, #0f244d);
    line-height: 26px!important;
    letter-spacing: 0px!important;
    word-spacing: 6px!important;
    color: #ededede8 !important;
}


.quiz_score span{
    color: rgb(255 255 0);
    font-size: 12px;
}

.quiz_player {
    color: rgb(237, 237, 237);
    font-family: "Marmelad", Sans-serif;
    font-size:14px;
    font-weight: 900;
    text-transform: uppercase;

}

.quiz_score {
    color: white;
    font-family: "Marmelad", Sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: right;
    margin-right: 5px;
}

table {
    scrollbar-width: thin;
    scrollbar-color: var(--mdc-theme-scroll) #4444441c;
    scroll-behavior: smooth;
}

.quiz-info-ratio-url {
    font-family: "JetBrains Mono", Sans-serif;
    color: rgb(197, 197, 197);

}

.quiz-info-ratio-text {
    font-family: "Arial", Sans-serif;
    font-size: 18px;
    font-weight: 900;
    word-spacing: 0px;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    color: #FFBB00;
    margin-top:20px;
}

  .quiz-heading-game-over {
    font-family: "Marmelad", Sans-serif;
    font-size: 42px;
    font-weight: 600;
    word-spacing: 0px;
    color: var( --white-header-color);
}

.quiz-text-game-over {
    font-family: "JetBrains Mono", Sans-serif;
    font-size: 29px;
    font-weight: 400;
    word-spacing: 0px;
    letter-spacing: -0.1px;
    color: var(  --gold-header-color);
}

.quiz-svg-ico {
    fill: var( --gold-header-color );
    color: var( --gold-header-color );
    width: 20px;
}

.quiz-icon-box-title {
    font-family: "Arial", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    word-spacing: 0;
    color: var( --white-header-color);
    line-height:25.2px;
    align-content: end;
}


.quiz-ico-container {
    text-align: center;
    padding: 5px;
}

.quiz-ico-container:hover span {
    color:rgb(255, 187, 0);

}

.quiz-button {
<!--    padding: 5px; -->
}


.quiz-footer-content {
    width:100%;
    background-color: var( --blue-block-color);
    position: relative;
    bottom: 0px;
    line-height: 30px;
}


.quiz-footer-title {
    font-size: 14px;
    font-weight: 900;
    word-spacing: 0px;
    color: var( --white-header-color);
    margin-bottom: 0px;
}

.quiz-block-agreement {
    display: flex;
    gap:20px;
    list-style: none;
    margin-bottom: 0px;
}

.quiz-link {
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    text-decoration: underline!important;
    color: var( --white-header-color);
}

.quiz-link:hover {
    color: var( --orange-header-color);
    transition: all .3s ease-in-out;
}


.quiz-main {
    box-shadow: 2px 0px 22px 5px rgba(0,0,0,0.5);
    border-radius: 15px;

}

.quiz-title {
    font-family: "Noto Sans", Sans-serif;
    font-size: 24px;
    font-weight: 600;
    word-spacing: 0px;
    text-align: center;
    color: var( --gold-header-color );

}


.quiz-item-title {
    font-family: "Marmelad", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    word-spacing: 0px;
    margin: 8px;
    display: block;
    color: var(--white-header-color);
}

.quiz-item {
    width:100%;
    text-align: left;
    transition: transform .3s;
}

.quiz-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgb(255, 187, 0), 0 0 30px rgb(233, 93, 15);
}

.quiz-devider {
    width: 100%;
    border-bottom: 1px solid var( --devider-color);

}

.quiz-action {
    padding: 3px;
    color: rgba(242, 240, 240, 0.6);

}

.quiz-action:hover {
    color: white;

}


.pafe-form-builder-image-upload-button i
{
    height: 20px;
    width: 20px;
    font-size: 12px;
}

.badge_quest_media {
    color: #00142c;
    background-color: #0eff0e85;
}

.badge_answer_media {
    color: #00142c;
    background-color: #0ee8ff85;
}

.badge_quest_text {
    color: #00142c;
    background-color: #fb0;
    line-height: 15px;
}


.panel-default > .panel-heading {
    color: #010f21;
    background-color: #041c39;
    border-color: #465569;
}

.note-editor.note-airframe .note-editing-area .note-editable, .note-editor.note-frame .note-editing-area .note-editable {
    background-color: #00142c !important;
    color: #cacaca;
}

.note-toolbar {
    background-color: #00142c !important;
    border-bottom: 1px solid;
    border-bottom-color: currentcolor;
    border-color: #27374a;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    color: #333;
    padding: 10px 5px;
}

.note-btn {
    border-color: #465569;
    background-color: #000E203D;
    font-family: "Arial", Sans-serif;
    color: #fb0;

}

.note-editor:hover {
    border: 1px solid rgb(150, 157, 166)!important;
}

.note-editor.note-airframe, .note-editor.note-frame {
    border: 1px solid rgb(70, 85, 105);
    width: 100%;
}

.note-editor.note-airframe .note-statusbar, .note-editor.note-frame .note-statusbar {
    background-color: hsl(212.7, 100%, 8.6%);
}

.note-editor.note-airframe .note-status-output:empty, .note-editor.note-frame .note-status-output:empty {
    background-color: #041c39;
}


.note-editor.note-airframe .note-editing-area .note-codable, .note-editor.note-frame .note-editing-area .note-codable {
    background-color: #01132ae8;
}



.swal2-styled {
    font-size: 16px;
}


#swal2-html-container {
    font-size: 14px;
    font-weight: 500;
    font-family: monospace;
    color: #c8c9c9;
}


#all-struc-tabs table  td:nth-child(1n) {
    width:5%;
}

#all-struc-tabs table  td:nth-child(2n) {
    width:10%;
}

#all-struc-tabs table  td:nth-child(3n) {
    width:35%;
}

#all-struc-tabs table  td:nth-child(4n) {
    width:15%;
}

#all-struc-tabs table  td:nth-child(5n) {
    width:15%;
}

#all-struc-tabs table  td:nth-child(6n) {
    width:15%;
}

#all-struc-tabs table  td:nth-child(7n) {
    width:20%;
}


.quiz-data-table thead tr th {
    padding: 10px 15px;
    background: #4a48934f;
    /* font-family: "Noto Sans", Sans-serif; */
    font-family: Arial, "Times New Roman", "Bitstream Charter", Times, serif;
    font-weight:400;
    font-size:12px;
    text-transform: uppercase;
    color: #bbbbbbd9;
}



.td-action {
    font-size:16px;
    color:var(--gold-header-color);
    text-align: center;
}

.td-action .material-icons {
    font-size:16px!important;
}

/* GalleryWidget */

.e-gallery-image-item {
    padding:0px;
    transition: 0.3s;
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    pointer-events:none;
}

.e-gallery-image-item-disabled {
    filter: grayscale(90%) brightness(100%) contrast(60%);
    padding:0px;
    transition: 0.3s;
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}


a:hover .e-gallery-image-item {
    filter: grayscale(0);
}

.text-action {
    position: absolute;
    top: 37px;
    left: 86%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.quiz_edit_struc {
    padding: 25px;

}

.left_side {
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.right_side {
    padding: 25px;
}

.tab_main_vmenu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
}

.rael-data-table tbody tr td {
    padding: 10px 15px;
    color: white;
}

#all-questions-tabs table td:nth-child(2n) {
    width:5%;
}

#all-questions-tabs table td:nth-child(3n) {
    width:60%;
}

#all-questions-tabs table td:nth-child(4n) {
    width:20%;
}

#all-questions-tabs table td:nth-child(5n) {
    width:10%;
}

#all-questions-tabs table td:nth-child(6n) {
    width:5%;
}


#all-struc-tabs table  td:nth-child(1n) {
    width:5%;
}

#all-struc-tabs table  td:nth-child(2n) {
    width:10%;
}

#all-struc-tabs table  td:nth-child(3n) {
    width:35%;
}

#all-struc-tabs table  td:nth-child(4n) {
    width:15%;
}

#all-struc-tabs table  td:nth-child(5n) {
    width:15%;
}

#all-struc-tabs table  td:nth-child(6n) {
    width:15%;
}

#all-struc-tabs table  td:nth-child(7n) {
    width:20%;
}

.tablequiz tbody tr  {
    color: rgba(255, 255, 255, 0.69)
}

#schema_quest_menu {
    width:100px;
}

.header-schema {

    font-family: "Noto Sans", Sans-serif;
    font-size: 28px;
    font-weight: 600;
    word-spacing: 0px;
    color: var(--white-header-color);
}

#QuestForm .mdc-dialog__surface {
    width:800px;
    max-width: 920px!important;
}

.header-schema-text {

    font-family: "Noto Sans", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    word-spacing: 0px;
    color: var(--white-header-color);
}


.tablequiz thead tr th {
    padding: 0px 15px;
    background: #27264b;
    font-family: "Noto Sans", Sans-serif;
    font-family: Arial, "Times New Roman", "Bitstream Charter", Times, serif;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    color: #bbbbbbd9;
    text-align: left;
}

.table-footer {
    color: #7b808f;
    margin-top: 10px;
    font-size:12px;
}

.md-action-icons {
    color: var(--gold-header-color);
    font-size: 16px!important;
    border: 1px solid #8080803d;
    padding: 5px;
    background-color: rgba(0, 0, 255, 0);
}

.md-category-action-icons {
    color: var(--gold-header-color);
    font-size: 16px!important;
    width:26px;
    height:26px;
    background-color: rgba(0, 0, 255, 0);
    border: none;
    cursor: pointer;
}

.md-category-action-icons:hover {
    background-color: rgba(0, 0, 255, 0);
    border: 1px solid grey;
}

.md-action-icons:hover {
    background-color: rgb(17, 35, 57);
}

.item-list-selected {
    background-color: rgb(17, 35, 57);
}

.quest-tab-active {
    display: block;
    opacity: 1;
    transition: opacity 0.8s linear;
}


.quest-tab-hidden {
    display: none;
    opacity: 0;
    transition: visibility 0s 0.8s, opacity 0.8s linear;
}

.md-action-button .mdc-button__label {
    color:var(--gold-header-color)!important;
}

.mdc-list-item:hover {
    background-color: rgb(10, 23, 40);
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 10px;
}

.w-100 {
    width:100%;
}

.w-60 {
    width:60%;
}

.w-50 {
     width:50%;
 }

.w-70 {
    width:70%;
}

.w-20 {
    width:20%;
}

.w-30 {
    width:30%;
}

.td-lock {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 38px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 0;

}


.link_href {
    color: rgba(255, 255, 255, 0.71);
    border-bottom: 1px solid #ffffff5c;
}

.text-description {
    position: relative;
    left: 10%;
    transform: translate(-10%, -0%);
    color: #fb0;
    width:100%;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .2px;
    text-shadow: 1px 0 1px #515151, 0 1px 1px #515151, -1px 0 1px #515151, 0 -1px 1px #515151;
    line-height: 20px;
}

.card-description {
    line-height: 18px;
    text-align: left;
    color: #b9c6e6;
    font-size: 14px;
    font-weight: 700;
}

.card-body {
    position: relative;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 180px;
}

.text-description-disabled {
    position: relative;
    left: 10%;
    transform: translate(-10%, -0%);
    color: palegoldenrod;
    width:100%;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 0 1px #515151, 0 1px 1px #515151, -1px 0 1px #515151, 0 -1px 1px #515151;
}

/* TabsWidget */

.item_tab {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.item_tab a {
    padding: 5px;
    color: rgb(255, 187, 0);
    font-size: 16px;
}


.question-tabs .e-n-tab-title {
    padding: 4px 4px 4px 15px!important;;
    justify-content: flex-start;

}

.title_rubrica  {
    background: #1a274f;
    font-size: 12px;
    color: rgba(187, 187, 187, 0.85);
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    padding-top: 8px;
    padding-bottom: 7px;
}


.md-lock {
    border:none!important;
}

.ratio_item {
    color:white;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.td-timer {
    display: flex;
    margin: 10px;
    justify-content: center;
}

.td-timer:before {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    background-size: contain;
    background-position: center;
    margin-left: 2.75rem;
    margin-right: 0.65rem;
}

.flash {
    --interval: 1s;
    color: yellow;
    --color1: goldenrod;
    --color2: orangered;
    --color3: mediumblue;
    --color4: purple;
    display: block;
    text-shadow: 0 0 10px var(--color1), 0 0 20px var(--color2), 0 0 40px var(--color3), 0 0 80px var(--color4);
    will-change: filter, color;
    filter: saturate(60%);
    animation: flicker steps(100) var(--interval) 1s infinite;
}

div:where(.swal2-container).swal2-center > .swal2-popup {
    background-color:#031225 !important;
    color:white!important;
}

div:where(.swal2-icon).swal2-error {
    border-color: #E95D0F!important;
    color: #E95D0F!important;
}

div:where(.swal2-container) div:where(.swal2-popup) {
    display: none;
    position: relative;
    box-sizing: border-box;
    grid-template-columns: minmax(0, 100%);
    width: 32em;
    max-width: 70%;
    padding: 0 0 1.25em;
    border: none;
    border-radius: 5px;
    background: #fff;
    background-color: rgb(255, 255, 255);
    color: hsl(0,0%,33%);
    font-family: inherit;
    font-size: 1rem;
}

div:where(.swal2-container) h2:where(.swal2-title) {
    position: relative;
    max-width: 100%;
    margin: 0;
    padding: .8em 1em 0;
    color: inherit;
    font-size: 1.875em;
    font-weight: 600;
    text-align: center;
    text-transform: none;
    word-wrap: break-word;
    font-family: 'Roboto';
}

.quiz-info-ratio-podpiska-slogan {
    font-family: "Arial", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    word-spacing: 0px;
    color: #FFBB00;
    margin-top: 20px;
}

.quiz-info-ratio-podpiska-period {
    font-family: "Arial", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    word-spacing: 0px;
    color: rgb(255, 255, 255);
    margin-top: 20px;
}

#auth_phone {
    background-color: #021e40;
    border-radius: 50%;

}

#auth_phone:hover {
    color: gold;
    background-color: #03326a;
}

#auth_code {
    background-color: #021e40;
    border-radius: 50%;

}

#auth_code:hover {
    color: gold;
    background-color: #03326a;
}

#auth_main {
    background-color: #021e40;
    border-radius: 50%;

}

#auth_main:hover {
    color: gold;
    background-color: #03326a;
}

.auth_active {
    color: gold;
    background-color: #03326a!important;
}



@media (max-width: 968px) {
    footer {
        display: none;
    }

}


.quiz-dbl-button button {
    margin-right: 5px;
}

.quiz-vmenu-width {
    width:200px;
}

#status_vict label{
    font-size: 16px;
}

#ViewQuestDialogs .mdc-dialog__surface {
    max-width: 1024px!important;
    width: 1024px!important;

}

.toast-message {
    font-family: "Noto Sans", Sans-serif;
}

.toast-info {
    background-color: #e95d0f;
}


.quiz-header {
    text-transform: uppercase;
    margin-bottom:0px!important;

}


.mui-timer-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0;
    position: absolute;
    left: 25px;
    top: 20px;
}
.mui-timer-circle {
    width: 30px;
    overflow: hidden;
    text-align: center;
    line-height: 28px;
    margin-left: 1px;
}

.mui-timer-svg {
    position: absolute;
    left: -4px; top: -4px;
    width: 55px; height: 55px;
    transform: rotate(-90deg);
}
.mui-timer-val {
    position: relative;
    z-index: 2;
    font-size: 1.1em;
    color: rgb(42 255 0);
    font-weight: 500;
}
/* Анимация: 10 секунд от 0% до 100% */
.mui-timer-circle circle {
    stroke-dasharray: 157;   /* 2πR, R=50 */
    stroke-dashoffset: 0;
    stroke: rgb(1 22 45 / 92%);
    stroke-width: 5;
    fill: none;
}
@keyframes timerAnim {
    from {stroke-dashoffset: 157;}
    to   {stroke-dashoffset: 0;}
}
.mui-timer-label {
    margin-top: 0px;
    color: #888;
    font-size: 0.8em;
    font-family: "Arial", sans-serif;
}

.btn-close {
    /* Подставьте нужный filter для вашего цвета */
    filter: invert(31%) sepia(25%) saturate(7145%) hue-rotate(198deg) brightness(95%) contrast(103%);
}

.cursor {
    position: relative;
    min-height: 2em; /* Чтобы высота сохранялась */

    margin: 0 auto;
    border-right: 2px solid rgba(25,118,210,.75);
    font-size: 16px;
    text-align: left;
    white-space: pre-line; /* Позволяет переносы + отображать \n */
    overflow: hidden;
}
.blink {
    animation: blinkingCursor 0.8s steps(2) infinite;
}
@keyframes blinkingCursor {
    0% { border-right-color: rgba(25,118,210,.75);}
    50% { border-right-color: transparent;}
    100% { border-right-color: rgba(25,118,210,.75);}
}

.mdc---description {
    margin-top:-8px;
}

.quiz_panel_info {
    background-color: #00142CA3;
    padding-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    height:36px;
    box-shadow: 2px 0px 22px 5px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgb(244 140 7), rgb(233, 93, 15), rgb(128, 0, 128));
}

#drop_menu_currency span.money {
    color:rgb(255 255 0);
    font-family: "Marmelad", Sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left:5px;
}

button.mdc-ripple-upgraded  {
    color: white!important;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

#drop_menu_currency:hover {
    background-color: #ffffff0f!important;
}

.quiz_item {
    background: #22374f61;
    border-radius: 16px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .4);
    width: 250px;
}

.text-anim {

    position: relative;
    margin-top: 15px;
    margin-bottom: 10px;
    left: 0%;
    color: white;
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 20px;
    border: 1px solid rgb(255 187 0 / 25%);
    transform: scale(1);
    transform-origin: left;
    transition: background 0.32s cubic-bezier(.4,0,.2,1),
    color 0.32s cubic-bezier(.4,0,.2,1);
    cursor: pointer;

}

.quiz_item:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 12px 3px rgb(159 159 159 / 40%);
}


.quiz_item:hover .text-anim {
    border-radius: 20px;
    background: linear-gradient(135deg, rgb(255, 187, 0), rgb(233, 93, 15));
    color: #000;

}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 rgba(255,0,255,0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(233, 93, 15,0.9); }
    100% { transform: scale(1); box-shadow: 0 0 0 rgba(255,0,255,0.7); }
}


.quiz-button-pulse {
    border-radius: 20px;
    background: linear-gradient(135deg, rgb(255, 187, 0), rgb(233, 93, 15));
    color: #000;
    width: 80%;
    animation: 2s ease 0s infinite normal none running pulse;
}

.mdc-text-field:not(.mdc-text-field--disabled) + .mdc-text-field-helper-line .mdc-text-field-helper-text
{
    color: grey;
}

.mdc-tab-indicator .mdc-tab-indicator__content--underline
{
    border-color: #6200ee;
}

.quiz_container_nav {
    background-color: var(--transparent-block-color);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(120%) blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.lock {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    /* font-weight: 700; */
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .12);
    color: black;
    background-color: #ffffff4d;
}

.btn-more {
    background-color: #8d8d8db8 !important;
    color: #cbcbcb;
    border-radius: 5px;
    padding: 2px;
}

.slider {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    padding-bottom: 20px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 25px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    backdrop-filter: blur(6px);
    transition: background 0.3s ease;
    z-index: 10;
    width: 60px;
}
.slider-btn:hover { background: rgba(255,255,255,0.3); }
.slider-btn.left { left: 10px; }
.slider-btn.right { right: 10px; }

/* Точки */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}
.slider-dots button {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.slider-dots button.active {
    background: #ff8a00;
    transform: scale(1.2);
}

.slider-track {
    display: flex;
    gap: 40px;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Leaderboard */
.leader {
    max-width: 1200px;
    display: grid; grid-template-columns: 1fr;
    width: 40%;
}
.panel {
    background: linear-gradient(180deg, #142a58, #102449);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,.35);
    overflow: hidden;
}
.panel-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.panel-title
{ font-weight: 700;
  color:white;
  font-size:24px;

}

.leader .table {
    border-collapse: collapse;
    margin: auto;
    width: 353px;
}
.leader .table th, .table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    text-align: left;
    font-size: 14px;
    background-color: transparent;
    color: white;
}
.leader .table tr:hover { background: rgba(255,255,255,.04); }

.btn.secondary {
    background: rgba(255, 255, 255, .08);
    color: #e9f0ff;
    font-weight: 600;
}

/* Banner */
.banner {
    width: 60%;
}

.banner-item {
    padding-bottom: 25px;
    padding-top: 25px;
}


.banner-inner {
    border-radius: 18px;
    padding: 24px;
    background: radial-gradient(800px 220px at 10% 10%, rgba(90, 176, 255, .15), transparent), linear-gradient(135deg, rgba(34, 197, 94, .18), rgba(79, 70, 229, .18));
    border: 1px solid rgba(255,255,255,.08);
    display: grid;
    grid-template-columns: 1.1fr;
    gap: 20px;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,.35);
    color: #e9f0ff;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    height: 100%;
    position: relative;
}
.banner h1 { margin: 0 0 8px; font-size: 28px; letter-spacing: .2px; }
.banner p { margin: 0 0 16px; color: #b9c6e6; line-height: 28px; }
.banner-cta { display: flex; gap: 12px; margin-top: 25px; }
.banner-art {
    height: 160px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,138,0,.25), rgba(34,197,94,.25));
    border: 1px solid rgba(255,255,255,.08);
    position: relative; overflow: hidden;
}

.banner .btn {
    padding: 10px 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    color: #091634;
    background: linear-gradient(135deg, #ffb700, #ff8a00);
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0,0,0,.35);
    font-size: 13px;

}

.banner .btn.secondary {
    background: rgba(255, 255, 255, .08);
    color: #e9f0ff;
    font-weight: 600;
}

#tab_quiz {
    background: radial-gradient(800px 220px at 10% 10%, rgba(90, 176, 255, .15), transparent), linear-gradient(135deg, rgba(34, 197, 94, .18), rgba(79, 70, 229, .18));
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    overflow: hidden;
}

#typewriter {
    color: #b9c6e6;
    font-weight: 700;

}

.quiz_item .dropdown-toggle::after {
    display: none;
}

.quiz_item .dropdown {
    position: relative;
    display: inline-block;
}
.quiz_item .dropdown-toggle {
    background: #ff970069;
    border: none;
    padding: 6px;
    cursor: pointer;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s;

}
.quiz_item .dropdown-toggle:hover {
    background: #f0f0f0;
}
.quiz_item .dropdown-toggle svg {
    fill: #888;
}
.quiz_item .dropdown-menu {
    display: none;
    position: absolute;
    top: 110%;
    right: 0;
    min-width: 140px;
    background: #011837c2;
    box-shadow: 0 8px 16px rgba(33,150,243,0.10);
    border-radius: 8px;
    z-index: 1000;
    padding: 8px 0;
    color: white;
}
.quiz_item .dropdown-menu.active {
    display: block;
}
.quiz_item .dropdown-menu button {
    display: block;
    width: 100%;
    background: none;
    border: none;
    padding: 5px 20px;
    text-align: left;
    font-size: 15px;
    color: #bcc0c5;
    cursor: pointer;
    transition: background 0.15s;
}
.quiz_item .dropdown-menu button:hover {
    background: #e6e6e626;
}

.quiz_item .material-icons {
    margin-right: 5px;
    color:gold;
    font-size: 26px;
    margin-top: 4px;

}

.underline-lower {
    position: relative;
    display: inline-block;
}

.underline-lower::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: #ffbb00;
    bottom: -1px;
    background: repeating-linear-gradient(to right, #ffbb00 0 1px, transparent 1px 3px);
    border-radius: 1px;
    pointer-events: none;
}

.image_banner {
    position: absolute;
    right: 20px;
    bottom: 15px;
    pointer-events: none;
}

.quiz-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    display: grid;
    gap: 20px;
    position: relative;
}

.quiz-image {
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #1f3b6d, #0f254b);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3);
    padding: 10px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.timer-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    animation: pulse 1s infinite;
    background: rgba(255,255,255,0.05);
}

.media-answer {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s
    ease, box-shadow 0.3s
    ease;
    position: relative;
}

.mdc-dialog {
    top:80px;
    height:80%;
}

.prize-badge {
    position: absolute;
    top: 20px;
    left: 14px; /* Или right: 14px; — если в правый верх */
    background: #ffc107; /* Желтый, как у призов, или под стиль сайта */
    color: #222;
    font-size: 1.1em;
    font-weight: bold;
    padding: 3px 14px;
    border-radius: 22px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    z-index: 2;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 7px;
}

.text-note::before {
    content: "*";
    margin-right:5px;
}

.text-note {
    font-size: 12px !important;
    color: #979797 !important;
    line-height: 14px !important;
}

.member_txt {
    color: white!important;
}

.quiz-heading-text {
    font-family: "JetBrains Mono", Sans-serif;
    font-size: 24px;
    font-weight: 400;
    word-spacing: 0px;
    color: var( --gold-header-color);
}

.panel-right {
    width: 100%;
}

.status-radio {
    background-color: #0b5ed7;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    border: none;
}

.act-drop-item .material-icons, .btn_darag  .material-icons {
    color:#bcc0c5!important;
    font-size: 16px !important;
    margin-right: 5px;
    margin-top: 4px;
}

.act-drop-item  {
    color:#bcc0c5!important;
    display: flex;
    gap: 3px;
    font-size: 16px!important;
}

.act-drop-item:hover {
    background-color: #e6e6e626;
}

.active .tree-node-row {
    background: #112339;
}

#table_container {
    padding-bottom: 10px;
    height: 600px; /* Фиксированная высота контейнера */
    overflow: hidden;
    margin-right: 20px;

}

.table-toolbar {
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s
    cubic-bezier(0.4, 0, 0.2, 1), color 0.3s
    cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 20px;
}

.table-toolbar.bulk-mode
{
    background-color: #edf4fb0f;
}

#bulkActions .material-icons {
    font-size:16px;
    line-height: 26px;
}


#bulkActions button {
    padding: 2px 8px;
}

#questionsTable {
    display: block;
    overflow-y: auto;
    height: 580px;

}

.bulk-actions.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}
.bulk-actions {
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateX(-12px);
    transition: all 0.3s
    cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

#tree_container {
    display: block;
    overflow-y: auto;
    height: 590px;
    scrollbar-width: thin;
    scrollbar-color: var(--mdc-theme-scroll) #4444441c;
    scroll-behavior: smooth;
}


#table_container thead {
position: sticky;
top: 0;
z-index: 1;
}

.form-check-input
{
border-color: #86b7fe;
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.item_gray {
opacity: 0.3;
}

#tree_container {
max-width: 280px;
border-radius: 14px;
color: white;
}

#add_root {
display: block;
margin: 0 auto 18px auto;
padding: 13px 27px;
font-size: 17px;
border-radius: 25px;
border: none;
color: #fff;
background: #1976d2;
font-weight: 600;
box-shadow: 0 2px 8px rgba(25,118,210, 0.13);
cursor: pointer;
transition: background .19s;
}
#add_root:hover {
background: #1566af;
}
#add_root i { margin-right: 9px; }

ul.tree {
padding-left: 0;
list-style: none;
}
.tree li {
position: relative;
margin: 0;
padding: 0;
}

/* === Ветки, подчеркивание вложенности, визуализация иерархии === */
.tree-branch {
    overflow: hidden;
    transition: max-height .36s cubic-bezier(.5, .9, .48, 1);
    max-height: 1000px;
    border-left: 2px solid #e3e8ef;
    margin-left: 18px;
    padding-left: 15px;
}
.collapsed > .tree-branch {
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-left: 2px solid #e3e8ef;
}
/* Корень без линии */
ul.tree > li > .tree-branch {
    border-left: none;
    margin-left: 0;
}

.tree-node-row {
    display: flex;
    align-items: center;
    border-radius: 7px;
    padding: 2px 14px 2px 7px;
    font-size: 16.5px;
    box-sizing: border-box;
    cursor: pointer;
    border: 1.3px solid transparent;
    transition: background .15s, border .16s;
    position: relative;
}
.tree-node-row:hover, .tree li.drag-over .tree-node-row {
    background: #112339;
    z-index: 1;
}
.tree li.dragged .tree-node-row {
    background: #fffde7 !important;
    opacity: 0.55;
}

/* Экспандер (стрелка) с плавным вращением */
.expand-btn {
    background: none;
    border: none;
    font-size: 1.36em;
    color: #1976d2;
    width: 34px;
    height: 34px;
    transition: color .16s;
    cursor: pointer;
    outline: none;
    margin-right: 0;
    margin-left: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .16s;
}
/* Вращение */
.expand-btn span,
.expand-btn .fa-chevron-down {
    transition: transform 0.27s cubic-bezier(.85,0,.25,1);
    display: inline-block;
}
/* На закрытой ветке - повёрнуты вправо */
.collapsed>.tree-node-row .fa-chevron-down,
.collapsed>.tree-node-row .fa-chevron-right {
    transform: rotate(0deg);
}
/* На открытой - вниз (90 градусов) */
.expand-btn.expanded span {
    transform: rotate(90deg);
}
.expand-btn.expanded .fa-chevron-down {
    transform: rotate(0deg);
}
/* Сделаем стрелку поярче при ховере */
.expand-btn:hover {
    color: #1256a5;
}

.tree-node-title {
    min-width: 53px;
    font-weight: 400;
    margin-right: 6px;
    color: rgba(242, 240, 240, 0.6);
    letter-spacing: .01em;
    flex-shrink: 1;
    user-select: text;
}

.tree li[data-leaf="1"] .expand-btn {
    visibility: hidden;
    width: 22px;
    pointer-events: none;
    height: 34px;
}
.tree ul { margin-top: 2px; }

/* MUI-like floating menu for actions */
.actions-menu-btn {
    background: none;
    border: none;
    font-size: 1.22em;
    cursor: pointer;
    outline: none;
    color: #6c829745;
    margin-left: auto;
    margin-right: -5px;
    padding: 1px 7px;
    border-radius: 5px;
    transition: background .16s, color .16s;
}
.actions-menu-btn:hover {
    background: #1976d210;
    color: #1976d2;
}
.actions-menu {
    position: fixed; /* Было: absolute */
    top: 0;  /* Базовое смещение, позже поправим через JS */
    left: 0;
    z-index: 9999;   /* Очень большое значение, чтобы быть над всем */
    background: #011837f2;
    border-radius: 9px;
    border: 1px solid #ffd70012;
    box-shadow: 0 7px 18px rgba(25,118,210,0.11);
    padding: 7px 0;
    min-width: 145px;
    display: none;
    flex-direction: column;
    animation: showMenu .18s;
}
.actions-menu.show { display: flex; }
@keyframes showMenu {
    from { opacity: 0; transform: translateY(-11px);}
    to { opacity: 1; transform: none;}
}
.actions-menu button {
    background: none;
    border: none;
    color: #495f76;
    padding: 9px 24px 9px 26px;
    font-size: 16.3px;
    text-align: left;
    width: 100%;
    border-radius: 0;
    font-family: inherit;
    cursor: pointer;
    outline: none;
    transition: background .17s, color .13s;
    letter-spacing: .01em;
}
.actions-menu button.add-btn { color: #bcc0c5;display: flex;gap:3px;font-size: 16px }
.actions-menu button.add-btn:hover { background: #e6e6e626;}
.actions-menu button.edit-btn:hover { background: #e6e6e626;}
.actions-menu button.del-btn      { color: #bcc0c5;display: flex;gap:3px;font-size: 16px}
.actions-menu button.del-btn:hover{ background: #e6e6e626;}
.actions-menu button.edit-btn { color: #bcc0c5;display: flex;gap:3px;font-size: 16px}
.actions-menu i.fa { width: 17px; text-align: center; }

.add-btn .material-icons {
    font-size: 16px!important;
    margin-right: 5px;
    color: gold;
    margin-top: 4px;
}

.edit-btn .material-icons {
    font-size: 16px!important;
    margin-right: 5px;
    color: gold;
    margin-top: 4px;
}

.del-btn .material-icons {
    font-size: 16px!important;
    margin-right: 5px;
    color: gold;
    margin-top: 4px;
}

/* Отступы к потомкам, имитация MUI */
ul.tree > li { margin-left: 0; }
ul.tree ul.tree > li { margin-left: 21px; }

/*---------------------*/
/* Адаптив для мобилки */
@media (max-width: 700px) {
    #tree_container { padding: 10px; }
}


.actions-menu-btn .material-symbols-outlined {
    line-height: 32px;
}

#panel_rubric {
    width: 380px;
    background: #00000047;
    border-radius: 14px;
    box-shadow: 0 4px 32px 0 rgba(25, 118, 210, 0.09), 0 1.5px 6px 0 rgba(60, 79, 104, 0.08);
    color: white;
}

.highlight-last-row {
    font-weight: 600;
    color: white!important;
}

.logo-item {
    position: absolute;
    z-index: 99999;
    right: 50%;
    bottom: 43%;
    padding: 10px;
}

.quiz-info-inline {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
    background: linear-gradient(90deg, rgba(36,44,77,0.92) 88%, rgba(90,118,180,0.08) 100%);
    color: #fff;
    border-radius: 18px;
    padding: 12px 32px 12px 22px;
    box-shadow: 0 7px 40px 0 rgba(40,60,120,.18), 0 3px 14px 0 rgba(60,79,104,.08);
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 26px;
    min-width: 255px;
    border: 1.3px solid #344169;
    backdrop-filter: blur(8px);
    opacity: .98;
    transition: box-shadow .19s, background .22s;
    letter-spacing: .01em;
}

.quiz-image-container:hover .quiz-info-inline {
    box-shadow: 0 10px 65px 0 #6496db36, 0 5px 22px 0 #101e2a25;
    background: linear-gradient(90deg, #252e54f8 92%, #3c5ba422 100%);
}

.quiz-entry {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border-radius: 12px;
    padding: 4px 14px 4px 8px;
    font-weight: 500;
    background: rgba(48,57,103,0.19);
    box-shadow: 0 1px 6px rgba(120,160,225,0.08);
    transition: background .2s;
    user-select: none;
}

.quiz-entry svg {
    width: 22px; height: 22px;
    display: block;
    opacity: 0.88;
    filter: drop-shadow(0 1px 1.5px #203b711a);
}

.quiz-entry.q-questions svg { fill: #ffd600; }
.quiz-entry.q-prize    svg { fill: #65de9c; }
.quiz-entry.q-cup      svg { fill: #48cbfa; }
.quiz-entry.q-time     svg { fill: #fec171; }

.quiz-entry.q-questions span:last-child { color: #ffd600;}
.quiz-entry.q-prize    span:last-child { color: #65de9c;}
.quiz-entry.q-cup      span:last-child { color: #48cbfa;}
.quiz-entry.q-time     span:last-child { color: #fec171;}

.quiz-entry:hover {
    background: rgba(120,160,240,0.13);
}
@media (max-width: 600px) {
    .quiz-info-inline {
        font-size: 13px;
        padding: 6px 5px 6px 7px;
        gap: 8px;
        min-width: 120px;
    }
    .quiz-entry svg {width:17px;height:17px;}
    .quiz-entry {padding: 1px 4px 1px 3px;}
}

.w-45 {
    width:45%;
}

.b_quest_title {
    color: rgb(237, 237, 237);
    font-family:Rajdhani, sans-serif;
    font-size:42px;
    font-weight:700
}

.b_quest_descr {
    color: rgb(237, 237, 237);
    font-family: Rajdhani, sans-serif;
    font-size: 26px;
    font-weight: 800;
}

.b_quest_title_gold {
    color: #FFBB00;
    font-family:Rajdhani, sans-serif;
    font-size:42px;
    font-weight:700
}

.quiz-header-big {
    color: #ff783c!important;
    font-family:Rajdhani, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

.panel-style2 {
    overflow: hidden;
    padding: 24px;
}

.quiz-block-header {
    padding-top:35px;
    padding-bottom:35px;
    padding-left:20px;
    padding-right:20px
}

.redesign {
    display: none!important;
}

.mobile_image_ban {
    pointer-events: none;
}

.quiz-media-quest {
    pointer-events: none;
}

.table-records
{
    color: #7b808f;
    font-size: 12px;
}
.custom-dropdown button {
    color: #bcc0c5 !important;
    font-size: 16px !important;
    margin-right: 5px;
    margin-top: 4px;
    width: 100%;
}

.custom-dropdown button:hover {
    background-color: #e6e6e626;
    border-radius: 0px;
}

#ViewQuestDialogs .mdc-dialog__surface {
    overflow: visible;
}

.previewLeft {
    position: absolute;
    left: -135px;
    color: gold;
}


.previewRight {
    position: absolute;
    right: -120px;
    color: gold;
}

.navQuestDialog {
    position: absolute;
    top:50%;
    width:100%;
}

.mobile_app_txt {
    color: #ffffff7d;
    font-size: 11px;
    margin-top: 12px;
}