@import "/public/__Global/Styles/global.css";

: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;
    --blue-color: #03a8cd;

    --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;
    position: relative;
    display: block;
    margin: auto;
    padding: 5px 50px 5px 5px;
    direction: rtl;
    text-align: right;
    width: calc(100% - 55px - 5%);
    height: auto;
    border-radius: 6px;
    border: 3px solid transparent;
    background: #423f3f;
    color: #181818;
    font-size: 14px;
    font-family: 'sans';
}

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%;
    border: 2px solid transparent;
    background: var(--blue-color);
    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;
}

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

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: -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));
}

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: 10px;
    left: 10px;
    margin: auto;
    cursor: pointer;
    z-index: 400;
    padding: 2.5px;
    border-radius: 7px;
    width: 40px;
    height: 40px;
}

.menofot .menubar {
    position: relative;
    box-sizing: border-box;
    color: #181818;
    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: 30px;
    width: 30px;
    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: #181818;
    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: 4px;
    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;
    min-height: 35px;
}
p.row loading {
    background: transparent;
}


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;
}

@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;
                    }
                }
            }
        }
    }
}


html body {
    overflow: hidden;
    position: relative;
    z-index: 0;
}

socket {
    position: absolute;
    margin: auto;
    z-index: 100;
    width: 100%;
    height: 100%;
    background: transparent url(/public/files/upload/bg_Web.jpg) center center no-repeat fixed;
    background-size: cover;
    box-shadow: 3px 3px 10px rgb(55 53 53 / 55%);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    clear: both;
    display: block;
    overflow: hidden;
}

socket info {
    display: none;
    visibility: hidden;
    z-index: -1;
    position: absolute;
    width: 0;
    height: 0;
}

socket transition {
    position: relative;
    margin: 0;
    width: 100%;
    height: 100%;
    clear: both;
    display: block;
    overflow: hidden;
    overflow-y: auto;
}

socket transition svg#Capa_1 {
    position: absolute;
    z-index: 1;
    width: 150px;
    height: 150px;
    margin: auto;
    top: -30%;
    right: 0;
    left: 0;
    bottom: 0;
    border-radius: 50%;
    padding: 15px;
    border: 4px solid #f8f8f8;
    overflow: hidden;
}

socket transition svg#Capa_1 path {
    fill: #181818;
}

socket transition svg#cloud2, socket transition svg#cloud4 {
    z-index: 2;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

socket transition svg#cloud2 path, socket transition svg#cloud4 path {
    fill: #c9c8c8;
}

socket transition svg#cloud1, socket transition svg#cloud3 {
    z-index: 0;
    transition: all 0.75s ease;
    -moz-transition: all 0.75s ease;
    -webkit-transition: all 0.75s ease;
}

socket transition svg#cloud1 path, socket transition svg#cloud3 path {
    fill: #494949;
}

socket transition svg#cloud1 {
    position: absolute;
    margin: auto;
    display: block;
    top: -25px;
    width: 230px;
    left: -100px;
}

socket transition svg#cloud2 {
    position: absolute;
    margin: auto;
    display: block;
    top: 10px;
    width: 250px;
    left: -120px;
}

socket transition svg#cloud3 {
    position: absolute;
    margin: auto;
    display: block;
    bottom: 10px;
    width: 300px;
    right: -120px;
}

socket transition svg#cloud4 {
    position: absolute;
    margin: auto;
    display: block;
    bottom: 34px;
    width: 350px;
    right: -215px;
}

socket transition list {
    position: absolute;
    margin: auto;
    display: block;
    width: 350px;
    height: 170px;
    /*border: 4px solid #f8f8f8;*/
    border-radius: 10px;
    /*box-shadow: 0px 5px 10px rgb(55 54 54 / 69%);*/
    max-width: 95%;
    max-height: 70%;
    overflow: hidden;
    right: 0;
    left: 0;
    bottom: -40%;
    top: 0;
    z-index: 3;
}

socket transition list li {
    display: block;
    position: relative;
    margin: 25px 10px;
    border: 2px solid #181818;
    height: 45px;
    border-radius: 5px;
    box-shadow: 1px 1px 1px #5a5a5a;
    direction: ltr;
    text-align: left;
    background: rgb(255 255 255 / 40%);
    cursor: pointer;
}

socket transition list li:after {
    content: attr(title);
    display: block;
    position: absolute;
    width: auto;
    max-width: 95%;
    overflow: hidden;
    padding: 2.5%;
    background: #181818;
    border-radius: 5px;
    z-index: 4;
    top: -22px;
    right: 10px;
    font-family: 'sans';
    font-size: 14px;
    direction: rtl;
    color: #eee;
}

socket transition list li text, socket transition list li .text {
    border-radius: 5px;
    position: relative;
    margin: auto;
    z-index: 1;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    display: block;
    overflow: hidden;
    font-size: 18px;
    text-align: center;
    padding: 10px;
    font-family: 'per_add';
    text-overflow: ellipsis;
    white-space: nowrap;
    justify-content: center;
    cursor: text;
    color: #181818;
    font-weight: lighter;
    direction: ltr;
    cursor: pointer;
}

socket transition footer-text {
    position: fixed;
    margin: auto;
    text-align: center;
    font-size: 12px;
    font-family: 'titr_r';
    bottom: 0;
    right: 0;
    left: auto;
    color: #181818;
    z-index: 10;
    width: 100%;
    display: block;
}

socket transition button {
    cursor: pointer;
    display: block;
    position: absolute;
    width: auto;
    max-width: 95%;
    overflow: hidden;
    padding: 10px 15px;
    background: #f8f8f8;
    border-radius: 5px;
    z-index: 5;
    top: 15px;
    right: 15px;
    font-family: 'sans_b';
    font-size: 15px;
    border: unset;
}

form pre, .form pre {
    display: none;
}

socket transition chats {
    position: relative;
    margin: auto;
    display: block;
    clear: both;
    width: 100%;
}

socket transition chats chat {
    position: relative;
    display: block;
    margin: 15px 10px 5px 10px;
    border-bottom: 2px solid rgb(74 74 74 / 50%);
    width: calc(100% - 20px);
    height: 80px;
    overflow: hidden;
    clear: both;
    background: rgb(255 255 255 / 50%);
    cursor: pointer;
    border-radius: 15px;
    box-shadow: 0px 0px 5px #2d2d2d;
}

socket transition chats chat picture, socket transition chats chat name, socket transition chats chat message {
    cursor: pointer;
    position: absolute;
    margin: auto;
    display: block;
}

socket transition chats chat name {
    width: calc(100% - 100px);
    color: #181818;
    font-family: 'sans_b';
    font-size: 18px;
    direction: rtl;
    text-align: right;
    text-shadow: 0px 0px 2px #eee;
    top: 3px;
    right: 2px;
    padding: 5px 10px;
}

socket transition chats chat message {
    width: calc(100% - 100px);
    color: #181818;
    font-family: 'sans';
    font-size: 13px;
    direction: rtl;
    text-align: right;
    text-shadow: 0px 0px 2px #e6e6e6;
    bottom: 5px;
    right: 2px;
    padding: 5px 10px;
}

socket transition chats chat picture {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    top: 0;
    left: 10px;
    bottom: 0;
    box-shadow: inset 1px -1px 1px #757575;
    border: 2px solid #d6d6d6;
}

socket transition chats chat c {
    position: absolute;
    margin: auto;
    display: block;
    font-family: 'per_add';
    padding: 5px;
    background: var(--red-color);
    width: 18px;
    height: 18px;
    text-align: center;
    font-size: 15px;
    font-weight: 900;
    color: #f8f8f8;
    border-radius: 50%;
    bottom: 10px;
    left: 55px;
    cursor: pointer;
    box-shadow: 0px 0px 10px var(--red-color), inset 0px 0px 10px rgb(56 53 53 / 52%);
    zoom: 1;
}

socket transition r_header {
    position: absolute;
    margin: auto;
    width: 100%;
    height: 40px;
    display: block;
    background: #181818;
    z-index: 100;
    box-shadow: 0px 5px 15px rgb(37 37 37 / 70%);
    top: 0;
    right: 0;
    left: 0;
    direction: rtl;
}

socket transition r_header img {
    position: absolute;
    clear: both;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: auto;
    top: 0px;
    right: 5px;
    border: 5px solid #181818;
    box-shadow: 0px 10px 10px rgb(37 37 37 / 50%);
    background: #181818;
}

socket transition r_header h1 {
    position: relative;
    margin: 5px 80px 2px 50px;
    color: #f8f8f8;
    font-family: 'sans_b';
    font-size: 17px;
}

socket transition r_header i {
    width: 22px;
    height: 22px;
    font-size: 22px;
    color: #f8f8f8;
    left: 11px;
    top: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 2;
}

socket transition r_messages {
    position: relative;
    display: block;
    margin: 39px auto auto auto;
    width: 100%;
    height: calc(100% - 39px);
    overflow: hidden;
    overflow-y: auto;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

socket transition r_form {
    position: absolute;
    margin: auto;
    width: 100%;
    height: auto;
    display: block;
    background: #181818;
    z-index: 100;
    box-shadow: 0px -5px 15px rgb(37 37 37 / 70%);
    bottom: 0;
    right: 0;
    left: 0;
    direction: rtl;
}

socket transition r_form textarea[type="text"] {
    position: relative;
    padding: 5px 50px 5px 10px;
    margin: 5px auto;
    width: calc(100% - 65px);
    display: block;
    background: unset;
    z-index: 0;
    max-height: 200px !important;
    min-height: 20px !important;
    color: #f8f8f8;
    border: unset;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'sans';
    resize: inherit;
}

article.comment span[role="time"] {
    position: relative;
    margin: 10px auto 0px auto;
    font-family: 'per_add';
    font-size: 10px;
    text-align: right;
    padding: 5px 5px 0px 5px;
    border-top: 1px solid #181818;
    color: #181818;
    opacity: 0.6;
    display: block;
}

socket transition r_form i {
    color: snow;
    text-shadow: 0px 0px 2px #181818;
    top: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    font-size: 17px;
    border-radius: 50%;
    padding: 5px;
    text-align: center;
    justify-content: center;
    background: linear-gradient(
        70deg, #0a79ac 45%, #43c6e3 90%);
    background: -webkit-linear-gradient(
        70deg, #0a79ac 45%, #43c6e3 90%);
    background: -moz-linear-gradient(70deg, #0a79ac 45%, #43c6e3 90%);
    z-index: 4 !important;
    cursor: pointer;
    right: 7px;
    box-shadow: 0px 0px 10px #09425d;
}

socket transition r_form span.list-icons {
    position: absolute;
    margin: auto;
    direction: ltr;
    text-align: left;
    display: block;
    width: calc(100% - 20px);
    right: 0;
    left: 0;
    top: -22px;
    z-index: 5;
    padding: 1px 10px;
}

socket transition r_form span.list-icons i {
    position: relative;
    background: #181818;
    color: #f8f8f8;
    font-size: 18px;
    width: 18px;
    height: 18px;
    top: -5px;
    margin: auto 0px auto 7px;
    border-radius: 5px 5px 0px 0px;
    cursor: pointer;
    box-shadow: unset;
    text-shadow: unset;
    display: inline-block;
    float: left;
}

socket transition r_form span.list-icons i img {
    position: relative;
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    cursor: pointer;
}

camera * {
    z-index: 120;
}

video#photo, video#video, camera, camera canvas {
    position: absolute;
    margin: auto;
    z-index: 110;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #181818;
    width: 100%;
    height: 100%;
    display: block;
    clear: both;
}

video#screen_shut {
    position: absolute;
    margin: auto;
    z-index: 110;
    width: 250px;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    top: 10px;
    right: 10px;
    background: #181818;
    border-radius: 15px;
    border: 2px solid #181818;
    display: block;
    clear: both;
}

.comment-box {
    background: #c3c3c3;
    margin: 0px auto;
    border-radius: 4px;
}

ul.comment-header {
    display: block;
    position: relative;
    margin: auto;
    background: var(--pop-color);
}

ul.comment-header li {
    position: relative;
    display: inline-block;
    margin: auto;
    padding: 10px 15px;
    direction: rtl;
    text-align: center;
    float: right;
    font-family: 'naz_500';
    color: #eee;
    cursor: pointer;
}

ul.comment-header li:hover {
    font-family: 'naz_900';
    color: #ccc;
}

ul.comment-header li:focus, ul.comment-header li:active {
    font-family: 'naz_900';
    color: var(--select-color);
}

p.text {
    position: relative;
    font-size: 15px;
    font-family: 'm3dfont';
    text-align: justify;
    direction: unset;
    background: #f7f7f7;
    padding: 10px 15px;
    margin: 15px;
    border: 2px solid #eee;
    border-radius: 3px;
    box-shadow: inset -1px -1px 2px #c7c6c6;
    line-height: 30px;
    overflow: hidden;
    overflow-y: auto;
    max-height: 400px;
}

.comment.right {
    margin-right: 90px;
    background-color: #f8f8f8;
    float: right;
}

.comment .row {
    font-size: 14px;
    font-family: 'sans';
    color: #181818;
}

.comment.right:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 100%;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #333333;
}

.comment.left {
    margin-left: 90px;
    background-color: #48c0fc;
    float: left;
}

.comment.left:after {
    content: '';
    position: absolute;
    top: 10px;
    right: 100%;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #4cc4ff;
}

.comment {
    margin-bottom: 20px;
    border: 1px #333 solid;
    padding: 10px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -webkit-border-radius: 5px;
    font: 12px 'B Helal', '2 Helal', 'Helal', 'BHelal', Tahoma;
    max-width: calc(80% - 60px);
    position: relative;
    text-align: right;
}

article.comment {
    display: block;
    clear: both;
    padding: 15px;
}

img.comment-avatar {
    position: absolute;
    margin: auto;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    top: 0px;
}

.right img.comment-avatar {
    right: -75px;
}

.left img.comment-avatar {
    left: -75px;
}

span.comment-name {
    position: relative;
    display: block;
    padding: 2px 0px 10px 0px;
    margin: -5px 5px 5px 5px;
    font-weight: bold;
    font-family: 'titr_r';
}

span.comment-like {
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 3px;
    margin: auto;
    bottom: -5px;
    right: calc(100% - 30px);
    text-align: center;
    font-family: 'naz_500';
    font-size: 11px;
    overflow: hidden;
}

span.comment-like i {
    height: 15px;
    width: 15px;
    font-size: 15px;
    right: 0;
    left: 0;
    top: 5px;
    color: #bb0d0d;
    text-shadow: 0px 0px 1px #ffffff;
    cursor: pointer;
}

video#test {
    position: fixed;
    z-index: 300;
    width: 100vW;
    height: 100vH;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #181818;
}

socket transition header {
    position: relative;
    margin: 0px auto;
    display: block;
    clear: both;
    padding: 10px;
    width: calc(100% - 20px);
    min-height: 40px;
    z-index: 10;
    top: 0;
    right: 0;
    left: 0;
    background: #f8f8f8;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 5px 10px #232323;
    font-size: 19px;
    font-family: 'sans_b';
    color: #181818;
    text-align: center;
}

socket transition header img {
    position: relative;
    display: block;
    margin: 10px auto;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    background: #f8f8f8;
    border: 2px solid #181818;
    padding: 5px;
}

socket transition header h3 {
    font-size: 15px;
    margin: 5px auto;
    font-family: 'naz_300';
}

socket transition header h1 {
    font-size: 20px;
    margin: 5px auto;
    font-family: 'titr';
}

input#search::placeholder {
    font-size: 14px;
    color: #f8f8f8;
    font-family: 'sans';
}

input#search {
    width: 80%;
    border: 3px solid transparent;
    background: #cdcccc;
    color: #181818;
    font-size: 14px;
    font-family: 'sans';
}

input:focus ~ i:nth-child(2), input:focus ~ svg:nth-child(2) path {
    color: var(--blue-color) !important;
    fill: var(--blue-color) !important;
}

input:focus {
    color: var(--blue-color) !important;
}

@media only screen and (max-height: 500px) {
    socket transition svg#Capa_1 {
        display: none;
        visibility: hidden;
    }
}

center {
    overflow: hidden;
    position: relative;
    margin: auto;
    background: center center repeat;
    background-size: calc(100px * 3) calc(57.5px * 3);
    z-index: 0;
    box-shadow: 0px 0px 10vW rgb(43 41 41 / 86%) inset;
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

center img {
    position: relative;
    display: block;
    margin: auto;
    border-radius: 50%;
    max-width: 100%;
    width: 120px;
    height: 120px;
    max-height: 100%;
}
