@import "/public/__Global/Styles/global.css?v=2.3.0";

:root {
    --pop-color: #1d1d1d;
    --bilt-color: #dedede;
    --boarder-color: #d4900a;
    --select-color: #2a2a25;
    --hover-color: #024502;
    --base-color: #2a2a29;
    --box-color: #474747;
    --back-color: #f0f0f0;

    --green-color: #3cb878;
    --snow-color: #f8f8f8;
    --red-color: #cd0303;

    --yellow-color: #ffcc00;
    --gold-color: gold;
}

html {
    position: fixed;
    direction: rtl;
    display: block;
    clear: both;
    height: 100vH;
    width: 100vW;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    overflow: hidden;
    z-index: 0;
    transform-style: preserve-3d;
    perspective: 1000px;
    perspective-origin: center;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

body {
    position: relative;
    direction: ltr;
    display: block;
    clear: both;
    height: 100%;
    width: 100%;
    margin: 0px auto;
    overflow: hidden;
    overflow-y: auto;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.base {
    position: relative;
    display: block;
    margin: 0px auto;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        55deg, var(--base-color), rgb(0 0 0 / 62%));
    background: -moz-linear-gradient(
        55deg, var(--base-color), rgb(0 0 0 / 62%));
    background: -webkit-linear-gradient(
        55deg, var(--base-color), rgb(0 0 0 / 62%));
    padding: 0;
    direction: rtl;
    overflow: hidden;
    clear: both;
    z-index: 0;
}

.clear {
    position: relative;
    display: block;
    height: 7px;
    clear: both;
}

.popup_box {
    position: fixed;
    margin: auto;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgb(226 226 226 / 20%);
    z-index: 500;
}

.popup_box object.box_show_link {
    position: relative;
    display: block;
    width: 95%;
    height: auto;
    max-height: 93vH;
    min-height: 200px;
    max-width: 540px;
    min-width: 200px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 0;
    border: 0px solid transparent;
    border-radius: 10px;
    margin: 2% auto;
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 24%), 0 16px 40px 0 rgb(0 0 0 / 32%);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    overflow: hidden;
}

.popup_box object.box_show_link .close {
    position: relative !important;
    background: #181818;
    display: block;
    margin: 0px auto auto 0px;
    font-size: 17px;
    font-weight: 100;
    padding: 15px 20px;
    border-radius: 3px 3px 0px 0px;
    text-align: right;
    direction: ltr;
    color: #f8f8f8;
    z-index: 20;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.popup_box object.box_show_link .close:before {
    cursor: pointer;
}

.popup_box object.box_show_link .show_responsive {
    position: relative;
    width: 100%;
    height: auto;
    max-height: calc(93vH - 50px);
    min-height: calc(200px - 50px);
    margin: auto;
    display: block;
    direction: ltr;
    overflow: auto;
}

.popup_box object.box_show_link .show_responsive iframe {
    position: relative;
    overflow: hidden;
    display: block;
    clear: both;
    width: calc(95vW - 40px);
    max-width: calc(100% - 40px);
    margin: auto 20px 20px 20px;
    height: calc(88vH - 40px);
    max-height: calc(100% - 40px);
    z-index: 0;
    border-radius: 5px;
    box-shadow: inset 0px 0px 50px #181818;
}

.hr {
    margin: 14px 0;
    display: flex;
    flex-direction: row;
    clear: both;
    width: 100%;
    font-family: naz_300;
    font-size: 12px;
    text-align: center;
}

.hr i {
    margin: auto 2px;
    position: relative !important;
    color: var(--red-color);
}

.hr:before, .hr:after {
    content: '';
    flex: 1 1;
    margin: auto 5px;
    border-bottom: 2px dashed var(--box-color);
}

.hr span {
    margin: -5px 7px;
    font-size: 13px;
    color: var(--red-color);
    direction: rtl;
}

hidden, .hidden {
    opacity: 0 !important;
    position: absolute !important;
    top: -10px !important;
    right: -10px !important;
    width: 0px !important;
    height: 0px !important;
    z-index: -999 !important;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    display: none !important;
    pointer-events: none;
    -ms-pointer-events: none;
    -moz-pointer-events: none;
    -webkit-pointer-events: none;
}

.icon {
    position: absolute;
    margin: auto;
    display: block;
    z-index: 1;
}

input {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    outline: unset !important;
}

input[type="text"], input[type="search"], textarea {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -o-user-select: text;
    user-select: text;
}

form, .form {
    position: relative;
    margin: 5px auto;
    z-index: 0;
    display: block;
}

form label, .form label {
    position: relative;
    display: block;
    margin: 10px auto;
    padding: 0px;
    direction: rtl;
}

form label input[type="text"], form label input[type="file"], form label input[type="search"], form label input[type="tel"], form label input[type="email"], form label input[type="password"], .form label input[type="text"], .form label input[type="file"], .form label input[type="search"], .form label input[type="tel"], .form label input[type="email"], .form label input[type="password"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    border: 0;
    margin: 0;
    position: relative;
    display: block;
    margin: auto;
    background: none;
    padding: 10px 50px 10px 10px;
    font-size: 14px;
    font-family: naz_500;
    direction: rtl;
    text-align: right;
    color: #f8f8f8;
    width: calc(100% - 120px - 5%);
    height: auto;
    border-radius: 6px;
    border: 3px solid #f8f8f8;
}

form label i, .form label i {
    font-size: 20px;
    top: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    right: 55px;
    color: #f8f8f8;
    text-shadow: 0px 0px 1px #181818;
}

form label input[type="submit"], .form label input[type="submit"] {
    display: block;
    margin: 10px calc(5% + 10px) 10px 2%;
    background: unset;
    border: 2px solid #f8f8f8;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 15px;
    font-family: naz_900;
    direction: inherit;
    text-align: center;
    color: #f8f8f8;
    width: unset;
    min-width: 100px;
    height: auto;
    cursor: pointer;
    box-shadow: 0px 0px 0px transparent, inset 0px 0px 0px transparent;
    -webkit-transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
}

form label input[type="submit"]:hover, .form label input[type="submit"]:hover {
    background: unset;
    color: #f8f8f8;
    border: 2px solid var(--red-color);
    box-shadow: 0px 0px 150px var(--red-color), inset 0px 0px 10px var(--red-color);
}

form label select, .form label select {
    padding: 10px 50px 10px 17px;
    cursor: pointer;
    border-radius: 3px;
    display: block;
    margin: 15px auto 25px auto;
    border: unset;
    /*border-bottom: 5px solid var(--red-color);*/
    /*background-color: #181818;*/
    font-family: 'naz_300';
    width: calc(100% - 50px - 5%);
    direction: rtl;
    color: rgb(253 253 253 / 90%);
}

form label select option, .form label select option {
    border: none;
    padding: 10px;
    font-family: naz_300;
    font-size: 12px;
    cursor: pointer;
    direction: rtl;
    color: #181818;
}

form label select optgroup, .form label select optgroup {
    padding: 10px;
    position: relative;
    font-family: naz_500;
    font-size: 15px;
    cursor: none;
    direction: rtl;
    color: #181818;
}

form svg.icon path, .form svg.icon path {
    fill: #f8f8f8;
    stroke: #d8d8d8;
}

input:-internal-autofill-selected {
    background-color: unset !important;
    background: none !important;
    color: rgb(133, 133, 133) !important;
}

input[type="file"]::before {
    content: attr(placeholder);
    display: inline-block;
    background: -webkit-linear-gradient(top, var(--base-color), var(--hover-color));
    background: linear-gradient(top, var(--base-color), var(--hover-color));
    background: -moz-linear-gradient(top, var(--base-color), var(--hover-color));
    border: 1px solid #999;
    border-radius: 3px;
    padding: 5px 8px;
    outline: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    font-weight: 700;
    font-size: 10pt;
    direction: rtl;
}

input[type="file"]::-webkit-file-upload-button {
    visibility: hidden;
    display: none;
}

input[type="file"]:active::before {
    background: linear-gradient(top, #f9f9f9, #e3e3e3);
    background: -webkit-linear-gradient(top, #f9f9f9, #e3e3e3);
    background: -moz-linear-gradient(top, #f9f9f9, #e3e3e3);
}

input[type="checkbox"], input[type="radio"] {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 0.01px;
    width: 0.01px;
    margin: auto;
    padding: 0;
}

input[type="radio"] + span {
    box-shadow: 3px 3px 3px #00000091;
    position: relative;
    display: inline-block;
    text-indent: 0px;
    background: #e7e5e566;
    border: 1px solid #0b0b0b;
    width: 24px;
    height: 24px;
    border-radius: 3px;
    cursor: pointer;
    top: 7px;
    margin: 0px 5px;
    -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
    transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
}

input[type="radio"] + span i {
    display: none !important;
    position: absolute;
    color: var(--gold-color) !important;
    font-size: 0% !important;
    text-align: center;
    z-index: 10;
    top: -20px !important;
    bottom: 0 !important;
    height: 105% !important;
    width: 105% !important;
    right: -15px;
    left: 0 !important;
    margin: 10px auto;
    -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
    transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
}

input[type="radio"]:checked + span i {
    display: block !important;
    font-size: 220% !important;
}

input[type="checkbox"] + span {
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-indent: -9999px;
    background: #ccc;
    width: 60px;
    height: 30px;
    border-radius: 100px;
    margin: 0px 10px;
    top: 0px;
    cursor: pointer;
    -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
    transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
}

input[type="checkbox"] + span:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--pop-color);
    color: #f8f8f8;
    border-radius: 100px;
    -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9) 0.1s;
    transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9) 0.1s;
    -webkit-transform: translateZ(0) scale(0);
    transform: translateZ(0) scale(0);
}

input[type="checkbox"] + span:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    display: block;
    height: 26px;
    width: 26px;
    background: white;
    border-radius: 100%;
    -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
    transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
    -webkit-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0);
}

input[type="checkbox"]:checked + span, span[checked="checked"], span:checked {
    background: #1f5823;
}

input[type="checkbox"]:checked + span:after, span[checked="checked"]:after, span:checked:after {
    left: calc(100% - 28px);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-name: start;
    -webkit-animation-duration: 0.3s;
    -webkit-animation-iteration-count: 1;
    -moz-animation-name: start;
    -moz-animation-duration: 0.3s;
    -moz-animation-iteration-count: 1;
    animation-name: start;
    animation-duration: 0.3s;
    animation-iteration-count: 1;
}

input[type="file"] {
    direction: rtl;
    text-align: right;
}

textarea {
    direction: rtl;
}

form label div, .form label div {
    direction: rtl;
    margin: 10px 15px;
    display: block;
    font-family: 'naz_900';
    padding: 5px;
    font-size: 16px;
    color: #f8f8f8;
    text-align: right;
}

form label div span, .form label div span {
    top: 10px !important;
}


all {
    position: relative;
    margin: auto;
    display: table;
    clear: both;
    padding: 1vH 1vW;
    max-width: 91vW;
    max-height: 81vH;
    min-width: 100px;
}

.btn-p {
    padding: 5px 10px;
    background: var(--box-color);
    color: var(--back-color) !important;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'naz_300';
}

pre {
    position: relative;
    display: block;
    clear: both;
    text-align: left;
    direction: ltr;
    font-family: fantasy;
    background: var(--base-color);
    margin: 10px;
    border-radius: 5px;
    padding: 10px;
    font-size: 13px;
    color: var(--snow-color);
    font-weight: 200 !important;
    -webkit-animation-name: rot_alrt;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: 1;
    -moz-animation-name: rot_alrt;
    -moz-animation-duration: 1s;
    -moz-animation-iteration-count: 1;
    animation-name: rot_alrt;
    animation-duration: 1s;
    animation-iteration-count: 1;
}

.menofot {
    display: block;
    position: fixed;
    top: 15px;
    left: 15px;
    margin: auto;
    cursor: pointer;
    z-index: 400;
    background: rgb(42 42 41 / 62%);
    padding: 0px 5px 5px 5px;
    border-radius: 7px;
    width: 50px;
    height: 50px;
}

.menofot .menubar {
    position: relative;
    box-sizing: border-box;
    color: #f8f8f8;
    transition: 0.7s cubic-bezier(0.53, 0, 0.15, 1.3);
    z-index: 100;
    width: 100%;
    height: 100%;
    display: block;
    margin: auto;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
}

.menofot .containerz {
    position: absolute;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    top: 0px;
    bottom: 0;
    display: block;
    right: 0;
    left: 0;
    margin: auto;
    height: 100%;
    width: 100%;
}

.menofot .toggle {
    position: absolute;
    height: 35px;
    width: 35px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    left: 0;
}

.menofot .toggle:before {
    top: -20px !important;
}

.menofot .toggle:after {
    top: 20px !important;
}

.menofot .toggle:after, .toggle:before, span#line_3 {
    content: '';
    cursor: pointer;
    background: #f8f8f8;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    transition: 0.6s cubic-bezier(0.53, 0, 0.15, 1.3);
    -webkit-transition: 0.6s cubic-bezier(0.53, 0, 0.15, 1.3);
    -moz-transition: 0.6s cubic-bezier(0.53, 0, 0.15, 1.3);
    width: 100%;
    height: 4.5px;
    border-radius: 3px;
}

.menofot .toggle.close:before {
    transform: rotate(-225deg);
    -webkit-transform: rotate(-225deg);
    top: 0 !important;
}

.menofot .toggle.close:after {
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    top: 0 !important;
}

.rotate {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.right_tolbar {
    position: fixed;
    margin: auto;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgb(26 26 26 / 60%);
    z-index: 490;
}

.right_tolbar object.box_show_link .show_responsive {
    position: absolute;
    width: 100%;
    height: calc(100% - 65px);
    bottom: 0;
    margin: auto;
    right: 0;
    left: 0;
    direction: ltr;
    overflow: hidden;
    overflow-y: auto;
    background: var(--base-color);
    display: block;
}

.right_tolbar object.box_show_link {
    position: absolute;
    width: 0%;
    max-width: 320px;
    opacity: 0;
    height: 100%;
    background: var(--base-color);
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    box-shadow: -5px 0px 15px 0px #3333337d;
    overflow: hidden;
    -moz-transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.show_object {
    width: 85% !important;
    opacity: 1 !important;
    -moz-transition: all 1s ease !important;
    -webkit-transition: all 1s ease !important;
    transition: all 1s ease !important;
}

.right_tolbar object.box_show_link .close.icon.fui-cross {
    position: relative;
    top: 0;
    margin: auto;
    background: #2a2a29;
    border-bottom: unset;
    box-shadow: unset;
    padding: 25px 0px;
    color: #f8f8f8;
    font-size: 18px;
    font-weight: 900;
    overflow: hidden;
    text-align: right;
    padding-right: 20px;
    display: block;
    z-index: 2;
}

.right_tolbar object.box_show_link .close.icon.fui-cross:before {
    color: #f8f8f8;
    position: absolute;
    width: 25px;
    height: 25px;
    margin: auto;
    top: 0;
    bottom: 0;
    font-weight: 100;
    font-size: 20px;
    cursor: pointer;
    left: 20px;
}

.inline {
    position: relative;
    display: inline-flex;
    margin: -2px 5px;
}

.ajaxer_pervision {
    position: absolute;
    margin: 2.5% 5%;
    display: block;
    background: linear-gradient(31deg, rgb(19 18 18 / 45%), rgb(23 22 22 / 90%));
    background: -moz-linear-gradient(31deg, rgb(19 18 18 / 45%), rgb(23 22 22 / 90%));
    background: -webkit-linear-gradient(31deg, rgb(19 18 18 / 45%), rgb(23 22 22 / 90%));
    width: calc(100% - 10%);
    height: calc(100% - 10%);
    border-radius: 5px;
    overflow: hidden;
    overflow-y: auto;
    direction: ltr;
    box-shadow: 0px 0px 10px #1d1b1b, inset 0px 0px 5px #1b1919;
}

ul.panel_menu {
    position: relative;
    margin: auto;
    display: block;
    height: auto;
    width: 100%;
    clear: both;
    z-index: 0;
}

ul.panel_menu li {
    position: relative;
    direction: rtl;
    display: block;
    margin: 10px 15px;
    font-family: naz_500;
    text-align: right;
    padding: 5px 10px 5px 35px;
    color: var(--snow-color);
    font-size: 15px;
    background: rgb(23 22 22 / 20%);
    /*border-right: 5px solid var(--red-color);*/
    border-radius: 5px;
    cursor: pointer;
}

ul.panel_menu li:hover {
    background: rgb(23 22 22 / 40%);
    /*border-right: 10px solid var(--red-color);*/
}

ul.panel_menu li i {
    top: 6px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: var(--red-color);
    left: 10px;
}

ul.panel_menu li ul.in_menu {
    position: relative;
    margin: auto;
    display: none;
    height: auto;
    width: 100%;
    clear: both;
    z-index: 0;
    -webkit-animation-name: rot_alrt;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-iteration-count: 1;
    -moz-animation-name: rot_alrt;
    -moz-animation-duration: 0.5s;
    -moz-animation-iteration-count: 1;
    animation-name: rot_alrt;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
}

ul.panel_menu li ul.in_menu li {
    position: relative;
    direction: rtl;
    display: block;
    margin: 10px 0px;
    font-family: naz_300;
    text-align: right;
    padding: 5px 10px 5px 25px;
    /*color: var(--yellow-color);*/
    color: #f8f8f8;
    font-size: 14px;
    /*border-right: 2px solid var(--gold-color);*/
    border-right: 2px solid var(--red-color);
    border-radius: 3px;
    cursor: pointer;
}

ul.panel_menu li ul.in_menu li:hover {
    border-right: 3px solid var(--gold-color);
}

ul.panel_menu li ul.in_menu li i {
    color: var(--gold-color);
    width: 15px;
    height: 15px;
    font-size: 15px;
    top: 8px;
}


table {
    direction: rtl;
    border-spacing: 1px;
    border-collapse: collapse;
    overflow: hidden;
    max-width: 1000px;
    width: 99%;
    min-width: 85%;
    margin: 0 auto;
    position: relative;
    border-radius: 5px;
}

table * {
    position: relative;
}

table tbody {
    border-bottom: var(--base-color) 3px solid;
    box-shadow: 0px 0px 5px #231f1fa1;
}

table td, table th {
    min-width: 30px;
    max-height: 200px;
    overflow: hidden;
    overflow-y: auto;
    padding: 10px;
    font-family: 'naz_900';
}

table thead tr {
    padding: 10px;
    background: var(--base-color);
    font-size: 16px;
    min-height: 45px;
}

table thead td {
    font-family: naz_900;
    background: var(--red-color);
    color: var(--back-color);
    font-size: 18px;
}

table tbody tr:nth-of-type(2n) {
    background: var(--base-color);
}

table tbody tr:nth-child(2n) {
    background: var(--box-color);
}

table tbody tr:nth-child(2n) td {
    color: #7d7d7b;
}

table tbody tr {
    min-height: 48px;
    border-bottom: 1px solid var(--green-color);
    background: var(--base-color);
}

table tbody tr:last-child {
    border: 0;
}

table td, table th {
    text-align: center;
    border-right: var(--base-color) 1.5px solid;
    border-left: var(--base-color) 1.5px solid;
}

table td.l, table th.l {
    text-align: right;
}

table td.c, table th.c {
    text-align: center;
}

table td.r, table th.r {
    text-align: center;
}

table th {
    color: var(--gold-color);
    text-align: center;
}

table td {
    font-family: naz_500;
    color: #b1afaf;
    font-size: 16px;
    direction: rtl;
}

table td img {
    display: table;
    position: relative;
    margin: auto;
    max-width: 100px;
    max-height: 100px;
    width: 100%;
    height: 100%;
    padding: 5px;
}

table td i.icon {
    position: relative !important;
    display: inline-block;
    width: 25px;
    height: 25px;
    font-size: 25px;
    color: #626262;
    cursor: pointer;
    padding: 5px;
    right: unset !important;
    left: unset !important;
    -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
    transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
}

table td i.icon:hover {
    color: var(--back-color);
}

table tfoot td {
    background: #535758 !important;
    color: #f7f7f7 !important;
}

h1.titr {
    position: relative;
    direction: rtl;
    display: block;
    padding: 10px 15px;
    margin: 20px;
    background: var(--green-color);
    font-size: 19px;
    font-family: 'naz_900';
    border-radius: 5px;
    color: #e1e1e1;
    text-align: center;
    text-shadow: 0px 0px 3px #0e0e0e;
}

.gride {
    display: grid;
    margin: auto;
    position: relative;
    height: auto;
    grid-template-columns: 20% 20% 20% 20% 20%;
}

.gride span {
    position: relative;
    display: block;
    margin: 10px;
    max-width: calc(100% - 20px);
    max-height: 300px;
    overflow: hidden;
    background: #dedede;
    border-radius: 5px;
}

.gride span img {
    position: relative;
    display: block;
    margin: 10px auto;
    max-width: calc(100%);
    max-height: 150px;
}

.gride span h1 {
    position: relative;
    margin: 10px auto 0px auto;
    text-align: center;
    font-size: 16px;
    font-family: 'naz_500';
    background: var(--base-color);
    color: var(--green-color);
    padding: 10px;
}

.gride span i {
    top: 15px;
    color: var(--red-color);
    left: 15px;
    cursor: pointer;
    width: 25px;
    height: 25px;
    font-size: 25px;
    display: none;
    z-index: 5;
    -webkit-animation-name: rot_alrt;
    -webkit-animation-duration: 0.3s;
    -webkit-animation-iteration-count: 1;
    -moz-animation-name: rot_alrt;
    -moz-animation-duration: 0.3s;
    -moz-animation-iteration-count: 1;
    animation-name: rot_alrt;
    animation-duration: 0.3s;
    animation-iteration-count: 1;
}

.gride span:hover i {
    display: block;
}

.gride span i:hover {
    display: block;
    left: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    font-size: 30px;
    z-index: 7;
    -webkit-animation-name: rote;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-name: rote;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    animation-name: rote;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

span.is_asl {
    box-shadow: 0px 0px 10px var(--gold-color);
}

span.is_zir {
    box-shadow: inset 0px 0px 10px var(--yellow-color);
}

@-moz-keyframes rote {
    0% {
        transform: rotate(
            0deg
        );
        -webkit-transform: rotate(
            0deg
        );
        -moz-transform: rotate(
            0deg
        );
    }
    50% {
        transform: rotate(
            360deg
        );
        -webkit-transform: rotate(
            360deg
        );
        -moz-transform: rotate(
            360deg
        );
    }
    100% {
        transform: rotate(
            0deg
        );
        -webkit-transform: rotate(
            0deg
        );
        -moz-transform: rotate(
            0deg
        );
    }
}

@-webkit-keyframes rote {
    0% {
        transform: rotate(
            0deg
        );
        -webkit-transform: rotate(
            0deg
        );
        -moz-transform: rotate(
            0deg
        );
    }
    50% {
        transform: rotate(
            360deg
        );
        -webkit-transform: rotate(
            360deg
        );
        -moz-transform: rotate(
            360deg
        );
    }
    100% {
        transform: rotate(
            0deg
        );
        -webkit-transform: rotate(
            0deg
        );
        -moz-transform: rotate(
            0deg
        );
    }
}

@keyframes rote {
    0% {
        transform: rotate(
            0deg
        );
        -webkit-transform: rotate(
            0deg
        );
        -moz-transform: rotate(
            0deg
        );
    }
    50% {
        transform: rotate(
            360deg
        );
        -webkit-transform: rotate(
            360deg
        );
        -moz-transform: rotate(
            360deg
        );
    }
    100% {
        transform: rotate(
            0deg
        );
        -webkit-transform: rotate(
            0deg
        );
        -moz-transform: rotate(
            0deg
        );
    }
}

.row {
    position: relative;
    display: block;
    margin: 10px auto;
    clear: both;
}

textarea {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    position: relative;
    display: block;
    margin: auto;
    background: none;
    padding: 10px 50px 10px 10px;
    font-size: 14px;
    font-family: naz_500;
    direction: rtl;
    text-align: right;
    color: #f8f8f8;
    width: calc(100% - 120px - 5%);
    height: auto;
    border-radius: 6px;
    border: 3px solid #f8f8f8;
    resize: vertical;
    max-height: 400px;
    min-height: 100px;
}

.progress {
    position: relative;
    display: block;
    margin: 5px auto;
    width: 90%;
    border-radius: 5px;
    background: #f8f8f8;
    border: 1px solid grey;
    overflow: hidden;
    direction: ltr;
    height: 5px;
}

.progress bar {
    position: absolute;
    margin: auto;
    background: linear-gradient(0deg, var(--pop-color), var(--box-color));
    background: -moz-linear-gradient(0deg, var(--pop-color), var(--box-color));
    background: -webkit-linear-gradient(0deg, var(--pop-color), var(--box-color));
    height: 100%;
    width: 0%;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    overflow: hidden;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    text-overflow: ellipsis;
    white-space: nowrap;
}

._audio, ._video, ._img, ._file, ._embed {
    max-width: 100% !important;
    clear: both !important;
    display: block !important;
    margin: 3% auto 3% auto !important;
    position: relative !important;
    max-height: 350px !important;
    overflow: hidden !important;
    border-radius: 5px !important;
    direction: rtl;
    text-align: center;
}

._embed {
    min-height: 210px;
}

.body {
    position: relative;
    display: block;
    margin: 2%;
    background: var(--back-color);
    padding: 20px 10px;
    border-radius: 10px;
    opacity: 0.8;
    box-shadow: inset 0px 0px 10px var(--base-color);
}

.gride .leve {
    display: block;
    margin: 5px;
    height: auto;
    position: relative;
    z-index: 0;
}

.num_user {
    position: relative;
    margin: 10px auto;
    width: 30px;
    height: 200px;
    background: var(--base-color);
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid var(--snow-color);
    box-shadow: inset 0px 0px 5px rgb(23 22 22 / 82%);
}

.num_user bar {
    position: absolute;
    width: 100%;
    display: block;
    margin: auto;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--red-color);
    height: 0%;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.num_user p {
    position: absolute;
    width: 100%;
    display: block;
    margin: auto;
    right: 0;
    left: 0;
    bottom: 5px;
    height: 16px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    font-size: 15px;
    font-family: 'naz_500';
    text-align: center;
    color: #f8f8f8;
}

.gride .leve h1 {
    position: relative;
    display: block;
    margin: 5px auto;
    font-size: 18px;
    font-family: 'naz_900';
    text-align: center;
    color: var(--snow-color);
}

.num_user.mini {
    height: 80px;
}

.num_user.yellow bar {
    background: var(--yellow-color);
}

.num_user.green bar {
    background: var(--green-color);
}

.grid .list-group {
    position: relative;
    margin: 5px;
    padding: 3px;
    background: rgb(21 20 20 / 84%);
    border-radius: 5px;
    display: block;
    overflow: hidden;
}

#base {
    position: relative;
    display: block;
    width: 150px;
    height: 150px;
    margin: 15px auto;
}

#contatore {
    width: 150px;
    height: 150px;
    background-color: rgb(33 31 31 / 38%);
    border-radius: 50%;
    border-right: 2px solid var(--red-color);
    border-left: 2px solid var(--green-color);
    border-top: 2px solid var(--yellow-color);
    border-bottom: 2px solid transparent;
    position: relative;
    margin: auto;
}

#lancetta {
    width: 3px;
    height: 70px;
    background-color: var(--red-color);
    border-radius: 30%;
    border: 2px solid var(--base-color);
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    bottom: 85px;
    transform-origin: 0% 100%;
    box-shadow: 0px 0px 10px #ff4040;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

#centro {
    background-color: var(--base-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    left: 60px;
    top: 60px;
}


.flickity-viewport {
    position: absolute;
    width: 100%;
    height: 100% !important;
    margin: auto;
    touch-action: pan-y;
    -ms-touch-action: pan-y;
    -webkit-touch-action: pan-y;
}

.flickity-slider {
    position: relative;
    width: 100%;
    height: 100% !important;
}


ol.flickity-page-dots {
    position: absolute;
    width: 100%;
    bottom: -6px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1;
    direction: ltr;
}

ol.flickity-page-dots li.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 8px;
    background: var(--gold-color);
    border-radius: 50%;
    opacity: 0.2;
    cursor: pointer;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    direction: rtl;
}

ol.flickity-page-dots li.is-selected {
    opacity: 1;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    direction: rtl;
    width: 30px;
    display: inline-block;
    border-radius: 5px;
}

.carousel-cell.is-selected svg {
    display: block;
}

button.flickity-button {
    display: none;
    opacity: 0;
    visibility: hidden;
}

form pre {
    direction: rtl !important;
    background: unset !important;
    font-size: 12px;
    font-family: 'sans';
    color: #a9a9a9;
    display: block;
    text-align: right !important;
}

* {
    -webkit-user-select: auto;
    -khtml-user-select: auto;
    -moz-user-select: auto;
    -o-user-select: auto;
    user-select: auto;
    touch-callout: auto;
    -moz-touch-callout: auto;
    -o-touch-callout: auto;
    -webkit-touch-callout: default;
    pointer-events: auto;
    -ms-pointer-events: auto;
    -moz-pointer-events: auto;
    -webkit-pointer-events: auto;
}
@media only screen and (max-width: 1000px) {
    .gride {
        grid-template-columns: 25% 25% 25% 25%;
    }

    @media only screen and (max-width: 800px) {
        .gride {
            grid-template-columns: auto auto auto;
        }

        @media only screen and (max-width: 730px) {

            footer .grid[role="3"] {
                grid-template-columns: auto;
            }

            @media only screen and (max-width: 600px) {
                .gride {
                    grid-template-columns: 50% 50%;
                }

                @media only screen and (max-width: 400px) {
                    .gride {
                        grid-template-columns: auto;
                    }
                }
            }
        }
    }
}

