/* Basic CSS Reset */

*,
 :after,
 :before {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    transition: 0.2s ease all;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

a {
    text-decoration: unset;
}

a:hover {
    color: #000000;
}


/* width */

::-webkit-scrollbar {
    width: 5px;
}


/* Track */

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #f1f1f1;
    border-radius: 8px;
}


/* Handle */

 ::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 8px;
}


/* Handle on hover */

 ::-webkit-scrollbar-thumb:hover {
    background: #c1c1c1;
}


/* table scroll style */

.scroll-inner::-webkit-scrollbar {
    width: 10px;
}

.scroll-inner::-webkit-scrollbar:horizontal {
    height: 10px;
}

.scroll-inner::-webkit-scrollbar-track {
    background-color: rgba(204, 204, 204, 0.3);
}

.scroll-inner::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #5a85fb;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}


/* insert font  */

@font-face {
    font-family: Phenomena-Bold;
    src: url(../fonts/Phenomena-Bold.otf);
}

@font-face {
    font-family: Phenomena-ExtraBold;
    src: url(../fonts/Phenomena-ExtraBold.otf);
}

@font-face {
    font-family: Phenomena-Regular;
    src: url(../fonts/Phenomena-Regular.otf);
}

@font-face {
    font-family: Tajawal-Bold;
    src: url(../fonts/Tajawal-Bold.ttf);
}

@font-face {
    font-family: Tajawal-Medium;
    src: url(../fonts/Tajawal-Medium.ttf);
}

@font-face {
    font-family: Tajawal-Regular;
    src: url(../fonts/Tajawal-Regular.ttf);
}

.with-tooltip {
    position: relative;
}

.with-tooltip::after {
    content: attr(data-tooltip-content);
    position: absolute;
    padding: 0 12px;
    border-radius: 200px;
    background-color: #3e3f5e;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    line-height: 24px;
    bottom: 80%;
    right: 0%;
    left: 50%;
    /* width: max-content; */
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 18px) scale(0.8);
    transition: visibility, opacity, transform 200ms;
    z-index: 1;
    width: 95px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    direction: rtl;
    text-align: center;
}

.with-tooltip:hover::after {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}


/* Start Login Style */

body {
    font-family: Tajawal-Regular;
    font-size: 16px;
    background-color: #f8f8fb;
    overflow-x: hidden;
}

@media screen and (max-width: 1025px) {
    .home_container {
        padding-bottom: 6em;
    }
    body {
        margin-bottom: 22%;
    }
}

.login {
    width: 100%;
    height: 100%;
    background: url(../img/landing-background.png) no-repeat;
    background-size: cover;
}

@media screen and (min-width: 1501px) {
    .login {
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 1500px) {
    .login .login-decoration {
        display: none;
    }
}

@media screen and (min-width: 992px) {
    .login_container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.login .login-decoration {
    width: 64%;
    height: 140%;
    border-radius: 50%;
    background: url(../img/dot-texture.png) repeat 0 0 #fff;
    position: absolute;
    top: -20%;
    right: -32%;
    pointer-events: none;
    z-index: -99;
}


/* .login .login_logo {
    width: 115px !important;
    height: 100px !important;
} */

.login .left_login_description {
    text-align: center;
    color: #ffffff;
}

.login .left_login_description .title {
    font-family: Phenomena-Bold;
    font-size: 3.5rem;
}

.login .left_login_description .login_description {
    font-family: Tajawal-Regular;
    width: 430px;
    margin: 20px auto 0;
    font-size: 1.150rem;
    line-height: 1.3333333333em;
    font-weight: 500;
    direction: rtl;
}

@media screen and (max-width: 991px) {
    /* .login .login_logo {
        width: 95px !important;
        height: 80px !important;
    } */
    .login_container {
        padding-top: 15px;
    }
    .login .left_login_description .title {
        font-size: 2.0rem;
        margin-bottom: 0;
    }
    .login .left_login_description .login_description {
        width: unset;
        display: none;
    }
}

.login .right_login_description {
    text-align: center;
    color: #000000;
    text-align: -webkit-center;
}

@media screen and (min-width: 1500px) {
    .login .left_login_description {
        justify-content: right;
    }
}

.tap_switch {
    border: 1px solid #ffffff;
    height: 50px;
    width: 298px;
    text-align: center;
    justify-content: center;
    margin: 0.6rem 0;
    border-radius: 12px;
    display: inline-block;
}

.but_login_reg {
    background-color: transparent;
    outline: none;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    width: 146px;
    height: 49px;
    color: #fff;
    font-size: 0.925rem;
    font-family: Tajawal-Regular;
    border: none;
    margin: 0;
}

.but_login_login {
    background-color: transparent;
    outline: none;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    width: 146px;
    height: 49px;
    color: #fff;
    font-size: 0.925rem;
    font-family: Tajawal-Regular;
    border: none;
    margin: 0;
}

.tap_switch .active {
    color: #3e3f5e;
    background-color: #fff;
    cursor: pointer;
    font-family: Tajawal-Regular;
    outline: none;
    font-weight: 700;
    border: 1px solid #ffffff;
}

#formLogin {
    display: none;
}

.box_form {
    width: 430px;
    padding: 25px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 60px 0 rgb(94 92 154 / 12%);
    position: relative;
}

@media screen and (max-width: 500px) {
    .box_form {
        width: 320px;
        padding: 20px;
    }
}

.create_title {
    font-size: 1.45rem;
    color: #3e3f5e;
    text-align: center;
    font-family: Tajawal-Bold;
}

.forget_password {
    color: #adafca;
    font-size: .875rem;
    font-weight: 700;
    line-height: 22px;
    float: right;
    padding: 8px;
    text-decoration: none;
    direction: rtl !important;
    text-align: right !important;
    cursor: pointer;
}

.forget_password:hover {
    color: #03C988;
}

.forget_password:active {
    color: #03C988;
}

label {
    font-size: 13px;
}

form {
    margin: 5px 0;
}

input[type=password],
input[type=number],
input[type=file],
input[type=text],
input[type=date],
select,
textarea {
    background-color: #fff;
    border: 1px solid #dedeea;
    color: #3e3f5e;
    transition: border-color .2s ease-in-out;
    border-radius: 12px;
}

input[type="text"],
input[type="number"],
input[type="date"],
input[type="email"],
input[type="password"],
input[type=file],
select,
textarea {
    font-family: Tajawal-Regular;
    box-sizing: border-box;
    width: 100%;
    height: calc(3em + 4px);
    margin: 0 0 0.5em;
    padding: 1em 0.5em;
    background: #fff;
    resize: none;
    outline: none;
    font-size: 1.0rem;
    letter-spacing: 0px !important;
    direction: rtl !important;
    text-align: right !important;
    border: 1px solid #dedeea;
    border-radius: 12px;
}

input[type="text"] [required]:focus,
input[type="number"] [required]:focus,
input[type="date"] [required]:focus,
input[type="email"] [required]:focus,
input[type=file] [required]:focus,
select:focus,
textarea:focus,
input[type="password"] [required]:focus {
    border-color: #adafca;
}

input[type="text"][required]:focus+label[placeholder]:before,
input[type="number"][required]:focus+label[placeholder]:before,
input[type="date"][required]:focus+label[placeholder]:before,
input[type="email"][required]:focus+label[placeholder]:before,
input[type="file"][required]:focus+label[placeholder]:before,
input[type="password"][required]:focus+label[placeholder]:before,
select:focus+label[placeholder]:before,
textarea:focus+label[placeholder]:before {
    color: #adafca;
    background-color: #fff;
    padding: 0 6px;
    font-size: .75rem;
    top: -6px !important;
    left: auto;
    right: 12px;
}

input[type="text"][required]:focus+label[placeholder]:before,
input[type="text"][required]:valid+label[placeholder]:before,
input[type="number"][required]:focus+label[placeholder]:before,
input[type="number"][required]:valid+label[placeholder]:before,
input[type="date"][required]:focus+label[placeholder]:before,
input[type="date"][required]:valid+label[placeholder]:before,
input[type="email"][required]:focus+label[placeholder]:before,
input[type="email"][required]:valid+label[placeholder]:before,
input[type="file"][required]:focus+label[placeholder]:before,
input[type="file"][required]:valid+label[placeholder]:before,
select:focus+label[placeholder]:before,
select:valid+label[placeholder]:before,
textarea:focus+label[placeholder]:before,
textarea:valid+label[placeholder]:before,
input[type="password"][required]:focus+label[placeholder]:before,
input[type="password"][required]:valid+label[placeholder]:before {
    transition-duration: 0.2s;
    transform: translate(0, -1.5em) scale(0.9, 0.9);
}

input[type="text"][required]:invalid+label[placeholder][alt]:before,
input[type="number"][required]:invalid+label[placeholder][alt]:before,
input[type="date"][required]:invalid+label[placeholder][alt]:before,
input[type="email"][required]:invalid+label[placeholder][alt]:before,
input[type="file"][required]:invalid+label[placeholder][alt]:before,
select:invalid+label[placeholder][alt]:before,
textarea:invalid+label[placeholder][alt]:before,
input[type="password"][required]:invalid+label[placeholder][alt]:before {
    content: attr(alt);
}

input[type="text"][required]+label[placeholder],
input[type="password"][required]+label[placeholder],
input[type="date"][required]+label[placeholder],
input[type="email"][required]+label[placeholder],
input[type="file"][required]+label[placeholder],
select+label[placeholder],
textarea+label[placeholder],
input[type="number"][required]+label[placeholder] {
    font-family: Tajawal-Regular;
    display: block;
    pointer-events: none;
    line-height: 1em;
    margin-top: calc(-3em - 10px);
    margin-bottom: calc((3em - 1em) + 14px);
    text-align: right;
    direction: ltr !important;
}

input[type="text"][required]+label[placeholder]:before,
input[type="password"][required]+label[placeholder]:before,
input[type="date"][required]+label[placeholder]:before,
input[type="email"][required]+label[placeholder]:before,
input[type="file"][required]+label[placeholder]:before,
select+label[placeholder]:before,
textarea+label[placeholder]:before,
input[type="number"][required]+label[placeholder]:before {
    content: attr(placeholder);
    display: inline-block;
    margin: 0 calc(1em + 2px);
    padding: 0 2px;
    color: #898989;
    white-space: nowrap;
    transition: 0.3s ease-in-out;
    background-image: linear-gradient(to bottom, #fff, #fff);
    background-size: 100% 5px;
    background-repeat: no-repeat;
    background-position: center;
}

input[type="text"][required]:focus-visible,
input[type="number"][required]:focus-visible,
input[type="date"][required]:focus-visible,
input[type="email"][required]:focus-visible,
input[type="file"][required]:focus-visible,
select:focus-visible,
textarea:focus-visible,
input[type="password"][required]:focus-visible {
    border: 1px solid #03C988 !important;
}

.form_select {
    width: 100%;
    height: 50px;
    position: relative;
    margin: 10px 0;
}

.form_select label {
    padding: 0 6px;
    background-color: #fff;
    color: #adafca;
    font-size: .75rem;
    font-weight: 600;
    position: absolute;
    top: -8px;
    right: 12px;
    left: auto;
    pointer-events: none;
}

.form_select select {
    width: 100%;
    height: 100%;
    padding-right: 20px;
    padding-left: 5px;
    font-size: .875rem;
    cursor: pointer;
}

.form-select {
    background-position: left 0.75rem center;
    border-radius: 12px;
}

textarea {
    height: 124px;
}

.label_textarea {
    line-height: 2em !important;
    margin-top: calc(-3em - 95px) !important;
    margin-bottom: calc((10em - 3em) + 20px) !important;
}


/* upload imag */

.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 50px;
    text-align: right;
    border: 1px solid #dedeea;
    border-radius: 12px;
    margin-bottom: 12px;
    z-index: 0;
}

.file-upload-wrapper:after {
    content: attr(data-text);
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    padding: 10px;
    display: block;
    width: calc(100% - 7px);
    pointer-events: none;
    z-index: 20;
    height: 48px;
    line-height: 30px;
    color: #adafca;
    /* border-radius: 5px 10px 10px 5px; */
}

.file-upload-wrapper:before {
    content: "تحميل";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    height: 48px;
    background: #03C988;
    color: #fff;
    font-weight: 600;
    z-index: 25;
    font-size: 1.0rem;
    line-height: 48px;
    padding: 0 15px;
    pointer-events: none;
    border-radius: 12px 0 0 12px;
}

.file-upload-wrapper:hover:before {
    background: #03C988;
}

.file-upload-wrapper input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: 48px !important;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
}

.img-size {
    width: 115px !important;
    height: 100px !important;
}

.but_reg {
    width: 100%;
    font-family: Tajawal-Regular;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-block;
    height: 54px;
    line-height: 54px;
    border-radius: 10px;
    background-color: #03C988;
    box-shadow: 4px 7px 12px 0 rgb(3 201 136 / 20%);
    color: #fff;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: background-color .2s ease-in-out, color .2s ease-in-out, border-color .2s ease-in-out, box-shadow .2s ease-in-out;
}

.button_primary {
    background-color: #03C988;
    box-shadow: 4px 7px 12px 0 rgb(35 210 226 / 20%);
}

.button_secondary {
    background-color: #1C82AD;
    box-shadow: 4px 7px 12px 0 rgb(28 130 173 / 20%);
    margin-bottom: 0.8rem;
}

.cancel_color {
    background-color: #1C82AD;
}

.libyana_div {
    padding: 0.4rem 0px;
    direction: ltr;
    text-align: center;
}

.text_for_libyana {
    color: rgb(0, 0, 0) !important;
    font-size: 0.9rem;
    font-family: Tajawal-Regular;
}

.logo_libyana {
    border-radius: 6px;
    width: 25px;
    height: 25px;
}

.social-links {
    margin-top: 15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
}


/* End Login Style */


/* Start Top Navbar Style  */

header {
    position: sticky;
    top: 0;
    background: #034293;
    transition: 2s;
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    z-index: 999;
    margin-bottom: 0.5rem;
}

.logo_nav {
    margin-right: 15px;
    margin-bottom: 0rem;
}

.navbar_title {
    color: #fff;
    margin-left: 12px;
    font-family: Phenomena-Bold;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.5;
}

@media screen and (max-width: 1572px) {
    .navbar_title {
        display: none;
    }
}

.ul_top_navbar {
    list-style: none;
    position: relative;
    margin-bottom: 0rem;
    padding-left: 0rem;
}

.ul_top_navbar li {
    display: inline-block;
    padding: 0px 4px;
}

.nav_item a {
    display: inline-block;
    padding: 0px 10px;
    color: #ffffff;
    font-weight: 600;
    font-family: Tajawal-Regular;
    font-size: 0.825rem;
    text-decoration: none;
}

.nav_item a:hover {
    color: #FFFFFF;
}

@media screen and (max-width: 1365px) {
    header .navigation {
        display: none;
    }
}

.icon_size {
    width: 30px;
    height: 30px;
}

.input_container {
    padding-bottom: 1em;
}

.right_inner_addon {
    position: relative;
}

.right_inner_addon input {
    padding-right: 35px !important;
}

.form-control {
    background: url(../img/search.png) !important;
    background-repeat: no-repeat !important;
    background-position: bottom 12px right 12px !important;
    background-size: 20px !important;
    width: 350px !important;
    margin: 0em !important;
    height: 45px !important;
    outline: none !important;
    border: none !important;
    border-radius: 5px !important;
    padding: 0 40px 0 20px !important;
    box-sizing: border-box;
    font-family: Tajawal-Regular !important;
    font-size: 0.9rem !important;
    box-shadow: 0 1px 5px rgb(0 0 0 / 10%) !important;
    background-color: #ffffffe3 !important;
    color: #000 !important;
}

@media screen and (max-width:1024px) {
    .form-control {
        width: 275px !important;
    }
}

@media screen and (min-width:0px)and (max-width:530px) {
    .form-control {
        display: none;
    }
}

::placeholder {
    color: #00337c !important;
    font-weight: 500;
    opacity: 1;
}

.border_left_icon {
    border-left: 2px solid #ffffff6e;
}


/* End  Top Navbar Style*/


/* Start Button Navbar Style*/

.button_navbar {
    display: none !important;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    background-color: #034293;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
    align-items: center;
    padding: 15px 3%;
}

.streamer_icon {
    display: inline-block;
}

@media screen and (max-width: 1025px) {
    .button_navbar {
        display: flex !important;
    }
    .streamer_icon {
        display: none;
    }
    .streamer_icon_button {
        display: flex;
    }
    .logout_show {
        display: none;
    }
}


/* End Button Navbar Style*/


/* Start Left Sidebar Style */

.open_menu {
    opacity: 40%;
}

.open_menu:hover {
    opacity: 100%;
}

.open_menu:active {
    opacity: 100%;
}

.leftSidebar {
    min-height: -webkit-fill-available;
    height: calc(100vh - 75px);
    overflow: auto;
    position: fixed;
    background-color: #ffffff;
    /* position: absolute; */
    display: block;
    left: -200px;
    top: 80px;
    width: 300px;
    transition: all 0.45s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
    padding-top: 0px;
    overflow-y: visible;
}

.openNav .leftSidebar {
    transform: translate3d(200px, 0, 0);
    transition: transform .45s cubic-bezier(0.77, 0, 0.175, 1);
}

@media screen and (max-width:1024px) {
    .leftSidebar {
        left: -460px;
    }
    .openNav .leftSidebar {
        transform: translate3d(460px, 0, 0) !important;
    }
    /* .small_view {
        display: none;
    } */
}

.show_information_icon {
    display: none;
}

@media screen and (max-width:1365px) {
    .show_information_icon {
        display: block;
    }
}

.image_center {
    height: 170px;
    display: flex;
    justify-content: center;
    background-image: url(../img/border_stream.png);
    background-repeat: no-repeat;
    background-position: center;
}

.hexagon-gallery {
    margin: auto;
    margin-top: 50px;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 200px;
    grid-gap: 14px;
    padding-bottom: 50px;
}

.hex {
    display: flex;
    position: relative;
    width: 109px;
    height: 121px;
    margin-top: 23px;
    background-color: #424242;
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.img_streamer {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.streamer_name_left_sidebar {
    font-size: 1.125rem;
    font-weight: 900;
    text-align: center;
    font-family: Tajawal-Regular;
    cursor: pointer !important;
    color: #3e3f5e;
}

.streamer_number_left_sidebar {
    color: #adafca;
    font-size: .6875rem;
    font-weight: 700;
    text-align: center;
}

.open {
    display: none;
}

.openNav .open_left_sidebar {
    display: contents;
}

.close {
    display: none;
}

.open_menu_active {
    opacity: 100% !important;
}

.cover {
    background: url(../img/01.jpg) center center / cover no-repeat;
    width: 100%;
    height: 100px;
    padding-top: 20px;
}

.ul_leftsidebar {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    padding-bottom: 5rem;
}

.margin_content {
    margin-top: 92px;
}

.left_menu_item {
    padding: 0 16px;
    margin-bottom: 10px;
}

.left_menu_item_a {
    display: block;
    height: 48px;
    text-align: right;
    padding-left: 0;
    padding-right: 44px;
    border-radius: 12px;
    font-size: .875rem;
    font-weight: 700;
    line-height: 48px;
    position: relative;
    direction: rtl;
    transition: all .2s ease-in-out;
    text-decoration: none;
    color: #3E3F5E;
}

.svg_left_icon {
    color: #3e3f5e;
    position: absolute;
    top: 14px;
    left: 0;
    right: 14px;
    pointer-events: none;
    transition: all .2s ease-in-out;
    width: 20px;
    height: 20px;
    filter: invert(54%) sepia(8%) saturate(13%) hue-rotate(318deg) brightness(98%) contrast(88%);
}

.left_menu_item .left_menu_item_a:hover {
    color: #3e3f5e;
    background-color: #fff;
    padding-left: 48px;
    box-shadow: 3px 5px 20px 0 rgb(94 92 154 / 12%);
}

.left_menu_item .left_menu_item_a:hover .svg_left_icon {
    filter: invert(54%) sepia(8%) saturate(13%) hue-rotate(318deg) brightness(98%) contrast(88%);
}

.left_menu_item_a.active {
    color: #fff;
    background-color: #03C988;
    box-shadow: 4px 7px 12px 0 rgb(3 201 136 / 20%);
    filter: unset !important;
}

.left_menu_item_a .svg_left_icon.active {
    filter: invert(0%) sepia(200%) saturate(0%) hue-rotate(230deg) brightness(129%) contrast(100%);
}


/* small view */

.hex_small {
    display: flex;
    position: relative;
    width: 59px;
    height: 70px;
    margin-top: 50px;
    margin-right: 11px;
}

.image_center_small {
    margin: -25px 12px 0;
    display: flex;
    justify-content: right;
    background-position: right;
    background-size: 80px 95px;
}

.left_menu_item_small {
    padding: 0 20px;
    margin-bottom: 10px;
    justify-content: right;
    float: right;
    overflow-x: clip;
    overflow-y: visible;
    position: relative;
}

.left_menu_item_a_small {
    display: block;
    width: 60px;
    height: 48px;
    text-align: right;
    padding-left: 0;
    padding-right: 0px;
    border-radius: 12px;
    font-size: .875rem;
    font-weight: 700;
    line-height: 48px;
    position: relative;
    direction: rtl;
    transition: all .2s ease-in-out;
    text-decoration: none;
    color: #3E3F5E;
}

.svg_left_icon_small {
    position: absolute;
    top: 14px;
    left: 0;
    right: 20px;
    pointer-events: none;
    transition: all .2s ease-in-out;
    width: 20px;
    height: 20px;
    filter: invert(54%) sepia(8%) saturate(13%) hue-rotate(318deg) brightness(98%) contrast(88%);
}

.left_menu_item_a_small:hover {
    background-color: #ffffff;
    color: #3e3f5e;
    padding-left: 60px;
    box-shadow: 3px 5px 20px 0 rgb(94 92 154 / 12%);
    /* filter: invert(0%) sepia(20%) saturate(1646%) hue-rotate(135deg) brightness(120%) contrast(110%); */
}

.left_menu_item_a_small.active {
    color: #fff;
    background-color: #03C988;
    box-shadow: 4px 7px 12px 0 rgb(3 201 136 / 20%);
    filter: unset !important;
}

.left_menu_item_a_small .svg_left_icon_small.active {
    filter: invert(0%) sepia(200%) saturate(0%) hue-rotate(230deg) brightness(129%) contrast(100%);
}


/* End Left Sidebar Style */


/* Start Right Sidebar Style */

.rightSidebar {
    min-height: -webkit-fill-available;
    height: calc(100vh - 75px);
    overflow: auto;
    position: fixed;
    background-color: #ffffff;
    /* position: absolute; */
    display: block;
    right: -200px;
    top: 80px;
    width: 300px;
    transition: all 0.45s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
    padding-top: 30px;
    overflow-y: visible;
}

.ul_rightSidebar {
    /* margin-top: 15px;
    margin-bottom: 25px; */
    padding-left: 0;
    list-style: none;
}

.topStreamer {
    min-height: -webkit-fill-available;
    /* height: calc(100vh - 75px);
    overflow: auto;
    margin-top: auto; */
}

.openNavStreamer .rightSidebar {
    transform: translate3d(-200px, 0, 0);
    transition: transform .45s cubic-bezier(0.77, 0, 0.175, 1);
}

.right_button {
    position: absolute;
    bottom: 80px;
    right: 0;
    z-index: 9999;
}

@media screen and (max-width: 1400px) {
    .right_button {
        position: sticky;
    }
}

.button_streamer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 80px;
    padding-left: 28px;
    background-color: #03C988;
    cursor: pointer;
    bottom: 0;
}

@media screen and (max-width: 1025px) {
    .rightSidebar {
        display: none;
    }
}

.image_center_small_rightSidebar {
    margin: -30px 25px 0;
    display: flex;
    justify-content: left;
    background-position: left;
    background-size: 50px 60px;
}

.hex_small_rightSidebar {
    display: flex;
    position: relative;
    width: 36px;
    height: 44px;
    margin-top: 22px;
    margin-left: 7px;
}

.image_center_rightSidebar {
    height: 90px;
    display: flow-root;
    justify-content: center;
    background-image: url(../img/border_stream.png);
    background-repeat: no-repeat;
    background-position: left;
}

.streamer_name_rightSidebar {
    text-align: right;
    float: left;
    margin-left: -35px;
    line-height: 1.3;
    font-size: 1.1rem;
    font-family: 'Tajawal-Regular';
    font-weight: 900;
    color: #332f6c;
    text-decoration: none;
    display: none;
}

.show_streamer_name {
    display: block;
}


/* End Right Sidebar Style */


/* Start Home Page style */

.container-image-banner {
    position: relative;
    text-align: center;
}

.banner-image {
    width: -webkit-fill-available;
    height: 100%;
    border-radius: 12px;
}

@media screen and (max-width: 1000px) {
    .banner-image {
        height: 100px;
        width: 100%;
    }
}

.section_banner {
    margin-top: 1rem;
    min-height: 160px;
    border-radius: 12px;
    background: url(../img/banner.png) no-repeat 50%;
    position: relative;
}

.bottom_left {
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.stream_ar_title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #fff;
    font-family: Tajawal-Regular;
    margin: 0;
    line-height: 0.8;
    margin-bottom: 0px;
}

.stream_en_title {
    color: #fff;
    font-size: 2.8rem;
    font-family: Phenomena-Bold !important;
    font-weight: bold;
    margin-bottom: 0px;
}

.streamboard_banner {
    position: absolute;
    top: 50px;
    right: 16px;
    text-align: right;
    text-decoration: none;
    cursor: pointer;
}

@media screen and (min-width: 1400px) {
    .bottom_left {
        left: 58px;
    }
    .streamboard_banner {
        right: 25px;
    }
}

@media screen and (max-width: 991px) {
    .streamboard_banner {
        top: 30px;
    }
}

@media screen and (max-width: 1000px) {
    .section_banner {
        margin-top: 0.5rem;
        min-height: 100px;
        background-size: contain;
    }
    .stream_en_title {
        font-size: 1.6rem;
    }
    .stream_ar_title {
        font-size: 1.6rem;
    }
    /* .man_stream_img {
        width: 180px;
        height: 107px;
    } */
    .en_stream {
        font-size: 2.0rem;
    }
}

.wallet_class {
    min-height: 205px;
    border-radius: 12px;
    background: url(../img/wallet_bg.png) no-repeat 50%;
    background-size: cover;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
    padding: 28px 20px;
    color: #ffffff;
    text-align: right;
}

.home_container {
    margin: 30px 0px;
}

@media screen and (min-width: 1400px) {
    .home_container {
        margin: 30px 55px;
    }
}

.wallet_title {
    margin: 0;
    font-family: Tajawal-Bold;
    font-weight: 700;
    font-size: 1.5rem;
}

.account_amount {
    font-family: Phenomena-Bold !important;
    font-size: 1.5rem !important;
    font-weight: 500;
    margin-bottom: 0;
}

.plus {
    fill: #03C988;
    color: #03C988;
    width: 8px;
    height: 8px;
    padding: 0 5px;
}

.charge_wallet {
    text-decoration: underline;
    font-size: 12px !important;
    cursor: pointer;
    color: #ffffff;
}

.charge_wallet:hover {
    color: #03C988;
}

.center_title {
    padding: 26px 0;
}

.box {
    padding: 30px 15px;
    margin: 0.8rem 0;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
    position: relative;
}

.title_icons {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: right;
    color: #3e3f5e;
    font-family: Tajawal-Bold;
}

.show_support_icon {
    justify-content: center;
    display: grid;
    text-align: center;
}

.number_support {
    margin-top: 5px;
    font-size: 1.375rem;
    font-weight: 700;
    color: #3e3f5e;
    font-family: Tajawal-Bold;
}

.slider_icon {
    width: 60px;
    height: 66px;
}

.icon_name {
    color: #adafca;
    font-size: .75rem;
    font-weight: 700;
    font-family: Tajawal-Regular;
}

.news_banner {
    display: block;
    width: 100%;
    max-width: 284px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto;
}

.new_Rahalista {
    width: -webkit-fill-available;
    /* height: 50% !important; */
    border-radius: 12px;
}

@media screen and (max-width: 991px) {
    .news_banner {
        max-width: unset;
    }
}

.box_welcome {
    min-height: 300px;
    padding-bottom: 32px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
}

.welcome_cover {
    height: 145px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background: url(../img/banner-profile-stats.png) no-repeat 50%;
    background-size: cover;
}

.pt-60 {
    padding-top: 60px;
}

.top_right {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.95rem;
    font-weight: 800;
    font-family: Tajawal-Bold;
    color: #3e3f5e;
}

.top_row {
    min-height: 44px;
    padding: 14px 40px 0 0 !important;
    position: relative;
    margin: 10px 0;
}

.image_center_small_top {
    margin: 0;
    display: flex;
    justify-content: left;
    background-position: left;
    background-size: 40px 50px;
}

.hex_small_top {
    width: 30px;
    height: 36px;
    margin-top: 11.8px;
    margin-right: -5px;
    float: right;
}

.image_center_top {
    position: absolute;
    top: 0;
    right: 0 !important;
    height: 60px;
    width: 45px;
    justify-content: center;
    background-image: url(../img/border_stream.png);
    background-repeat: no-repeat;
    background-position: right;
}

.follow {
    width: 32px;
    height: 32px;
}

.top_streamer_name {
    color: #3e3f5e;
    font-size: .875rem;
    font-weight: 500;
    text-align: right;
    line-height: 2.3;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
    float: right;
}

@media screen and (min-width:0px) and (max-width:991px) {
    .top_streamer_name {
        max-width: 160px;
    }
}

@media screen and (min-width:1299px) {
    .top_streamer_name {
        max-width: 145px;
    }
}

.div_follow {
    position: absolute;
    top: 6px;
    left: 0 !important;
    right: auto;
}

.button_follow {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #dedeea;
    border-radius: 10px;
    color: #adafca;
    font-size: .75rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color .2s ease-in-out, background-color .2s ease-in-out, color .2s ease-in-out;
}

.video_box {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    padding: 10px 0px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
    position: relative;
}

.iframe_wrap {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}

.iframe_wrap iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 2px;
    left: 0;
}

.option_video_box {
    padding: 5px 1px;
    min-height: 44px;
    line-height: 3;
    direction: rtl;
}

.button_show {
    display: flex;
    justify-content: space-around;
    padding: 9px 0;
}

.button_video_option {
    width: 120px;
    text-align: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    transition: box-shadow .2s ease-in-out, background-color .2s ease-in-out;
}

.option_text {
    color: #adafca;
    font-size: .75rem;
    font-weight: 700;
    transition: color .2s ease-in-out;
    text-decoration: none;
    padding: 7px 10px;
    opacity: .6;
}

.option_icon {
    margin-left: 5px !important;
    fill: #adafca;
    transition: fill .2s ease-in-out, opacity .2s ease-in-out;
    width: 20px;
    height: 20px;
}

.button_video_option.active,
.button_video_option:hover {
    background-color: #fff;
    box-shadow: 3px 5px 20px 0 rgb(94 92 154 / 10%);
}

.button_video_option .option_text.active,
.button_video_option .option_text:hover {
    color: #3e3f5e;
    opacity: 1;
}

.m_left_right {
    margin-left: 20px;
    margin-right: 20px;
}

.top_left {
    position: absolute;
    top: 28px;
    left: 16px;
    display: inline-flex;
}

.display_right_left {
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: none;
    outline: none;
    color: #adafca;
    opacity: .8;
    font-size: 16px;
    font-weight: 700;
}

.welcome_text_home {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    font-family: Tajawal-Regular;
    text-align: center;
}


/* End Home Page style */


/* Start Streamer Page Style */

.filter_streamer {
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    height: 96px;
    padding: 0 28px;
    margin-bottom: 5px;
    border-radius: 12px;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
    background-color: #fff;
}

.padding_all {
    padding: 15px 10px;
}

.form_input {
    width: 100%;
}

.form_input {
    position: relative;
}

.search_streamer {
    padding-right: 70px !important;
}

.search_streamer::placeholder {
    color: #adb0cd !important;
    opacity: 1;
}

.form_button_search {
    font-family: Tajawal-Regular;
    width: 65px;
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    height: 52px;
    border-radius: 10px;
    background-color: #3e3f5e;
    color: #fff;
    font-size: .875rem;
    font-weight: 700;
    text-align: center;
    line-height: 45px;
    cursor: pointer;
    transition: background-color .2s ease-in-out, color .2s ease-in-out, border-color .2s ease-in-out, box-shadow .2s ease-in-out;
}

.search_streamer:focus-visible {
    border: 1px solid #625cfa !important;
}

.search_streamer:focus {
    border-color: #adafca;
}

.search_icon {
    filter: invert(1);
    width: 20px;
    height: 20px;
}

.filter_tab {
    height: 96px;
    display: inline-flex;
    text-align: center;
    justify-content: center;
}

.tap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 162px;
    height: 100%;
    border-bottom: 4px solid transparent;
    cursor: pointer;
    position: relative;
    transition: border-color .2s ease-in-out;
}

.tap.active {
    border-bottom-color: #03C988;
}

.tap_text {
    padding: 4px 0;
    color: #adafca;
    font-size: .875rem;
    font-weight: 700;
    transition: color .2s ease-in-out;
    font-family: Tajawal-Regular;
}

.tap_text.active {
    color: #3e3f5e;
}

@media screen and (max-width: 992px) {
    .filter_streamer {
        height: 150px;
    }
    .filter_tab {
        height: 50px;
    }
    .tap {
        width: 100px;
    }
}

.box_streamer {
    min-height: 480px;
    max-height: 500px;
    padding-bottom: 10px;
    margin: 8px 0;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
}

@media screen and (max-width:335px) {
    .box_streamer {
        min-height: 520px;
    }
}

.streamer_cover {
    height: 100px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background: url(../img/banner-bg.png) no-repeat 50%;
    background-size: cover;
}

.pt-25 {
    padding-top: 25px;
}

.streamer_name {
    font-size: 1.125rem;
    font-weight: 900;
    text-align: center;
    font-family: Tajawal-Regular;
    cursor: pointer !important;
    color: #3e3f5e;
    margin-bottom: 0;
}

.fame_name {
    color: #adafca;
    font-weight: 700;
    font-family: Tajawal-Regular;
    text-align: center;
}

.rtl {
    direction: rtl;
}

.icon_social {
    text-decoration: none;
}

.image_icon {
    margin: 4px 1px;
    width: 40px;
    height: 42px;
}

.bio_text {
    width: 300px;
    color: #3e3f5e;
    margin: 8px auto 0;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.4em;
    text-align: center;
    font-family: Tajawal-Regular;
    height: 59px;
}

.social_media {
    height: 100px;
}

@media screen and (max-width:335px) {
    .social_media {
        min-height: 145px;
    }
}

.m-8 {
    margin: 5px 8px;
}

.display-flex {
    display: flex;
}

.action_but {
    height: 55px;
}

.button {
    padding: 10px;
    display: inline-block;
    width: 100%;
    margin: 3px;
    height: 48px;
    border-radius: 10px;
    color: #fff;
    font-size: .875rem;
    font-weight: 700;
    text-align: center;
    line-height: 2;
    cursor: pointer;
}

.secondary {
    background-color: #1C82AD;
    box-shadow: 4px 7px 12px 0 rgb(28 130 173 / 20%);
}

.primary {
    background-color: #03C988;
    box-shadow: 4px 7px 12px 0 rgb(3 201 136 / 20%);
}

.dark {
    background-color: #00337C;
    box-shadow: 4px 7px 12px 0 rgb(62 63 94 / 20%);
}

.yellow_but {
    background-color: #03C988;
    box-shadow: 4px 7px 12px 0 rgb(3 201 136 / 20%);
}


/* End  Streamer Page Style */


/* Start Wallet Page Style */

.wallet_box {
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100px;
    padding: 28px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
    margin-bottom: 15px;
}

.circle_wallet {
    background-color: #03C988;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    right: 0;
}

.wallet_icon {
    width: 20px;
    height: 20px;
    filter: invert(0%) sepia(200%) saturate(0%) hue-rotate(230deg) brightness(129%) contrast(100%);
}

.p_wallet {
    margin-right: 55px;
    margin-bottom: 0;
    direction: rtl;
    text-align: right;
    line-height: 1.2;
    margin-top: 8px;
    color: #00337c;
    font-size: .9rem;
    font-weight: 700;
    font-family: Tajawal-Regular;
}

.span_wallet_number {
    display: block;
    font-size: 1.1rem;
}

.button_div_convert {
    display: flex;
    text-align: center;
    justify-content: center;
}

@media screen and (max-width: 999px) {
    .button_div_convert {
        display: block;
    }
    .p_wallet {
        margin-bottom: 15px;
    }
}

.box_coin_wallet {
    padding: 15px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
    position: relative;
    height: 295px;
    text-align: center;
    justify-content: center;
    margin: 8px 0;
}

.cion_number_box {
    position: absolute;
    top: 10px;
    right: -6px;
    height: 32px;
    padding: 0 14px;
    border-radius: 200px;
    background-color: #fff;
    box-shadow: 3px 5px 20px 0 rgb(94 92 154 / 12%);
}

.span_cion_text {
    font-size: .875rem;
    font-weight: 700;
    line-height: 32px;
}

.coin_image {
    display: block;
    margin: 40px auto 10px;
}

.text_cion {
    margin-top: 15px;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    color: #3e3f5e;
    margin-bottom: 0;
}

.coin_price {
    margin: 16px auto 0;
    color: #3e3f5e;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.4285714286em;
    text-align: center;
}


/* End  Wallet Page Style */


/* Start Convert To Stream Page Style */

.text_convert {
    color: #3e3f5e;
    text-align: right;
    margin: 15px 5px;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: Tajawal-Regular;
}

.box_convert {
    padding: 20px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
    position: relative;
    text-align: center;
    justify-content: center;
    margin: 8px 0;
    direction: rtl;
}

.person_data {
    color: #3e3f5e;
    text-align: right;
    margin: 20px 5px;
    font-size: 1.0rem;
    font-weight: 600;
    font-family: Tajawal-Regular;
}

.mt-60 {
    margin-top: 60px;
}


/* End Convert To Stream Page Style */


/* Start Support Page Style */

.Support_box {
    margin: 10px 0px;
    padding: 32px 28px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
    position: relative;
    text-align: center;
    direction: ltr;
}

.support_currency {
    font-size: 1.0rem !important;
    color: #3e3f5e;
    line-height: 1em;
    font-weight: 700;
    font-family: Tajawal-Regular;
}

.support_price {
    font-size: 1.5rem !important;
    color: #3e3f5e;
    line-height: 1em;
    font-weight: 900;
    font-family: Tajawal-Regular;
    direction: rtl;
}

.currency_text {
    font-size: 0.9rem;
    color: #00337C;
    font-family: Tajawal-Regular;
}

.support_items {
    display: grid;
    grid-template-columns: repeat(auto-fit, 70px) !important;
    grid-gap: 15px !important;
    justify-content: center;
    direction: rtl;
}

.support_item {
    justify-content: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 70px !important;
    height: 70px !important;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 3px 5px 20px 0 rgb(94 92 154 / 10%);
    cursor: pointer;
}

.support_item:hover {
    border: 1.5px solid #35bfa7;
}

.support_item.active {
    border: 1.5px solid #35bfa7;
}

.support_icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 32px;
    height: 35px;
    position: relative;
}

.support_icon .support_image {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 45px !important;
    height: 48px !important;
    position: relative;
}

.top_left_support {
    position: absolute;
    top: -18px;
    left: 18px;
    margin: 0.3rem;
    z-index: 3;
}

.checked {
    height: 23px;
    width: 23px;
}

.radio_place {
    display: inline-flex;
    justify-content: center;
    text-align: center;
    direction: rtl;
}


/*start radio button */

.form__radio-input {
    display: none;
}

.form__label-radio {
    font-size: 1.0rem;
    cursor: pointer;
    position: relative;
    padding-left: 10px;
    padding-right: 30px;
    font-weight: 800;
    display: block;
    margin: 0;
    color: #3e3f5e;
}

.form__radio-button {
    height: 1.5rem;
    width: 1.5rem;
    border: 3px solid #03C988;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0rem;
}

.form__radio-button::after {
    content: "";
    display: block;
    height: 0.7rem;
    width: 0.7rem;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #03C988;
    opacity: 0;
    transition: opacity 0.2s;
}

.form__radio-input:checked~.form__label-radio .form__radio-button::after {
    opacity: 1;
}


/* End radio button */

.gifs_title {
    font-size: .875rem;
    font-weight: 700;
    text-align: right;
}

.sub_title_gifs {
    text-align: right;
    margin-top: 4px;
    color: #8f91ac;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.4285714286em;
}

.gifs {
    display: none;
}

.top_left_switch {
    position: absolute;
    top: 25px;
    left: 16px;
}

switch {
    font-size: 1rem;
    position: relative;
}

.switch input {
    position: absolute;
    height: 1px;
    width: 1px;
    background: none;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    padding: 0;
}

.switch input+label {
    position: relative;
    min-width: calc(calc(2.375rem * .8) * 2);
    border-radius: calc(2.375rem * .8);
    height: calc(2.375rem * .8);
    line-height: calc(2.375rem * .8);
    display: inline-block;
    cursor: pointer;
    outline: none;
    user-select: none;
    vertical-align: middle;
    text-indent: calc(calc(calc(2.375rem * .8) * 2) + .5rem);
}

.switch input+label::before,
.switch input+label::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(calc(2.375rem * .8) * 2);
    bottom: 0;
    display: block;
}

.switch input+label::before {
    right: 0;
    background-color: #dee2e6;
    border-radius: calc(2.375rem * .8);
    transition: 0.2s all;
}

.switch input+label::after {
    top: 2px;
    left: 2px;
    width: calc(calc(2.375rem * .8) - calc(2px * 2));
    height: calc(calc(2.375rem * .8) - calc(2px * 2));
    border-radius: 50%;
    background-color: white;
    transition: 0.2s all;
}

.switch input:checked+label::before {
    background-color: #03C988;
}

.switch input:checked+label::after {
    margin-left: calc(2.375rem * .8);
}

.switch input:focus+label::before {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(35, 210, 226, 0.25);
}

.switch input:disabled+label {
    color: #868e96;
    cursor: not-allowed;
}

.switch input:disabled+label::before {
    background-color: #e9ecef;
}

.switch+.switch {
    margin-left: 1rem;
}

.dropdown-menu {
    margin-top: 0.75rem;
}

.center_check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checked_gif {
    height: 23px;
    width: 23px;
}

.image_gif {
    height: 100% !important;
    width: 100% !important;
    padding: 0.5rem;
}

@media screen and (max-width:1020px) {
    .image_gif {
        height: 80px !important;
        width: 80px !important;
    }
}

.more_but_pos {
    text-align: end;
    direction: rtl;
    margin-top: 1rem;
}

.more_gifs {
    width: 95px;
    height: 35px;
    line-height: 1;
}

.send_img {
    filter: invert(1);
}


/* End Support Page Style */


/* Start Loader Page Style */

.page_loader {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #3e3f5e;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999;
    transition: opacity .4s ease-in-out, visibility .4s ease-in-out;
}

.loader_logo {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    /* width: 80px;
    height: 80px;
    border-radius: 28px;
    background-color: #03C988; */
}

.loader_title {
    font-family: Phenomena-Bold !important;
    color: #ffffff;
    font-size: 2.8rem;
    margin-top: 10px;
}

.loader_text {
    margin-top: 8px;
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.loader_wave {
    margin: 20px 0;
}

.loader_bars {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
}

.loader_bars .loader_bar:first-child {
    background-color: #03C988;
}

.loader_bars .loader_bar {
    width: 4px;
    height: 100%;
    margin-right: 4px;
    border-radius: 200px;
    -webkit-transform: scaleY(.2);
    transform: scaleY(.2);
    -webkit-animation: loader_bars .5s ease-in infinite alternate;
    animation: loader_bars .5s ease-in infinite alternate;
}

.loader_bars .loader_bar:nth-child(2) {
    background-color: #0ADB93;
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}

.loader_bars .loader_bar:nth-child(3) {
    background-color: #0CE397;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.loader_bars .loader_bar:nth-child(4) {
    background-color: #0FEA9B;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.loader_bars .loader_bar:nth-child(5) {
    background-color: #0D9ACC;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.loader_bars .loader_bar:nth-child(6) {
    background-color: #1095C5;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.loader_bars .loader_bar:nth-child(7) {
    background-color: #158DBB;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.loader_bars .loader_bar:nth-child(8) {
    background-color: #1C82AD;
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
}

.loader_bars .loader_bar:last-child {
    margin-right: 0;
}

@-webkit-keyframes loader_bars {
    0% {
        -webkit-transform: scaleY(.2);
        transform: scaleY(.2)
    }
    to {
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }
}

@keyframes loader_bars {
    0% {
        -webkit-transform: scaleY(.2);
        transform: scaleY(.2)
    }
    to {
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }
}


/* End Loader Page Style */


/* Start FAQs Page Style */

.mt-20 {
    margin-top: 20px;
}

.box_faq {
    padding: 20px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
    position: relative;
    text-align: center;
    justify-content: center;
    margin: 8px 0;
    direction: rtl;
}

.accordion-item {
    border: none;
    cursor: pointer;
    padding: 10px;
}

.accordion-item .accordion-title h3 {
    font-weight: 600;
    margin: 0;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    text-align: center;
    font-family: Tajawal-Regular;
    text-align: right;
}

.accordion-item .accordion-title i.fa-chevron-down {
    transform: rotate(0);
    transition: 0.4s;
    color: #03C988;
}

.accordion-item .accordion-title i.fa-chevron-down.chevron-top {
    transform: rotate(-180deg);
    color: #03C988;
}

.accordion-item .accordion-content {
    display: none;
    line-height: 1.7;
}

.accordion-item .accordion-content.active {
    display: block;
}

.accordion-item .accordion-content p {
    font-family: Tajawal-Regular;
    font-weight: 500;
    font-size: 16px;
    text-align: right;
    margin: 5px 0;
    margin-right: 15px;
}


/* End FAQs Page Style */


/* Start Notification Modal style*/

.modal_noti {
    /* left: -350px !important; */
}

.notification_modal {
    position: absolute;
    z-index: 9999;
    top: 64px;
    right: 12px;
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
    transition: transform 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s;
}

.notification_box {
    width: 384px;
    padding-bottom: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 3px 5px 40px 0 rgb(94 92 154 / 6%);
}

.notification_header {
    width: 100%;
    justify-content: space-between;
    padding: 28px 28px 20px;
    text-align: right;
    float: right;
}

.notification_title {
    font-size: 1rem;
    font-weight: 800;
    font-family: Tajawal-Bold;
    color: #3e3f5e;
    margin-bottom: 0;
}

.dropdown_box_list {
    height: 420px;
    width: 100%;
    overflow-y: auto;
    direction: rtl;
    float: right;
}

.dropdown_box_list_item {
    display: flex;
    padding: 10px 28px;
}

.dropdown_box_list_item:hover {
    background-color: #eaeaf5;
}

.status_data {
    min-height: 44px;
    padding: 2px 9px 0px 0px !important;
    position: relative;
}

.status_title {
    color: #3e3f5e;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.4285714286em;
    margin-bottom: 0;
}

.status_timestamp {
    margin-top: 5px;
    color: #8f91ac;
    font-size: .75rem;
    font-weight: 500;
}

@media screen and (max-width: 1026px) {
    /* .modal_noti {
        left: 0px !important;
    } */
    .notification_box {
        width: 300px;
    }
    .dropdown_box_list_item {
        padding: 5px 12px;
    }
}


/* End  Notification Modal style*/


/* Start Profile Sidebar Style */

@media screen and (max-width: 992px) {
    .setting_profile {
        display: none;
    }
    .label_profile {
        display: flex;
        flex-direction: column;
        width: 70px;
        cursor: pointer;
    }
    .label_profile .span_profile {
        background: #03C988;
        border-radius: 10px;
        height: 7px;
        margin: 7px 0;
        transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }
    .span_profile:nth-of-type(1) {
        width: 45%;
    }
    .span_profile:nth-of-type(2) {
        width: 75%;
    }
    .span_profile:nth-of-type(3) {
        width: 65%;
    }
    input[type="checkbox"] {
        display: none;
    }
    input[type="checkbox"]:checked~.span_profile:nth-of-type(1) {
        transform-origin: bottom;
        transform: rotatez(45deg) translate(-4px, 19px)
    }
    input[type="checkbox"]:checked~.span_profile:nth-of-type(2) {
        transform-origin: top;
        transform: rotatez(-45deg)
    }
    input[type="checkbox"]:checked~.span_profile:nth-of-type(3) {
        transform-origin: bottom;
        width: 50%;
        transform: translate(0px, -17px) rotatez(45deg);
    }
}

@media screen and (min-width: 992px) {
    .phone_sidebarBox {
        display: none !important;
    }
}

.setting_icon {
    width: 20px;
    height: 20px;
    float: right;
}

.setting_profile {
    padding: 10px 0;
    background-color: #fff;
    text-align: right;
    cursor: pointer;
    position: relative;
    border-radius: 12px;
}

.setting-item {
    border: none;
    cursor: pointer;
    padding: 10px 0;
}

.setting-item .setting-title h3 {
    font-weight: 600;
    margin-bottom: 14px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    text-align: center;
    font-family: Tajawal-Regular;
    text-align: right;
    padding: 5px 15px;
}

.setting-item .setting-title i.fa-chevron-down {
    transform: rotate(0);
    transition: 0.4s;
    color: #03C988;
}

.setting-item .setting-title i.fa-chevron-down.chevron-top {
    transform: rotate(-180deg);
    color: #03C988;
}

.setting-item .setting-content {
    display: none;
    line-height: 1.7;
}

.setting-item .setting-content.active {
    display: block;
}

.setting-item .setting-content p {
    font-family: Tajawal-Regular;
    text-align: right;
    margin-top: -25px;
    color: #8f91ac;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.3333333333em;
    margin-bottom: 0px !important;
    padding: 5px 42px;
}

.setting-disc {
    font-family: Tajawal-Regular;
    text-align: right;
    margin-top: -25px;
    color: #8f91ac;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.3333333333em;
    margin-bottom: 0px !important;
    padding: 5px 42px;
}

.setting_subtitle {
    font-size: 0.9rem;
    font-weight: 900;
    padding-right: 5px;
    line-height: 1.5;
}

.ul_setting {
    padding: 12px 40px 12px 0;
    border-top: 1px solid #eaeaf5;
    background-color: #fcfcfd;
    text-align: right;
    text-align: right;
    padding-left: 0;
    list-style: none;
}

.li_setting_title {
    display: block;
    height: 34px;
    font-size: .875rem;
    font-weight: 700;
    line-height: 34px;
    cursor: pointer;
    letter-spacing: 0px !important;
    direction: rtl !important;
    text-align: right !important;
    text-decoration: none;
    color: #3e3f5e;
}

.li_setting_title:hover,
.li_setting_title.active {
    color: #03C988;
}


/* End Profile Sidebar Style */


/* Start personal Information Page Style */

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    list-style: none;
    background-color: transparent;
    border-radius: 0.25rem;
}

.breadcrumb-item a {
    font-family: Tajawal-Regular;
    color: #3e3f5e;
    padding-left: 0.5rem;
}

.breadcrumb-item.active a {
    color: #6c757d;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 0.5rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: right;
    padding-left: 0.5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, "/");
}

.user_box {
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
    height: 135px;
    margin: 10px 0px;
    position: relative;
}

.cover_profile_info {
    background: url(../img/banner-bg.png) center center / cover no-repeat;
    width: 100%;
    height: 70px;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    padding-top: 12px;
}

.image_center_info {
    height: 125px;
    display: flex;
    justify-content: center;
    background-image: url(../img/border_stream.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100px 112px;
}

.hex_info_image {
    display: flex;
    position: relative;
    width: 75px;
    height: 82px;
    margin-top: 21px;
    background-color: #424242;
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.circle_info {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: absolute;
    top: 45px;
    right: 15px;
}

.purple_color {
    background-color: #03C988;
}

.primary_color {
    background-color: #00337c;
}

.icons_info {
    width: 20px;
    height: 20px;
    filter: invert(0%) sepia(8%) saturate(13%) hue-rotate(362deg) brightness(160%) contrast(88%);
}

.user_info {
    padding-left: 10px;
    position: relative;
    text-align: right;
    padding-right: 70px;
    top: 45px;
}

.name_info {
    font-size: 1.0rem!important;
    font-weight: 800;
    color: #3e3f5e;
    margin-bottom: 0;
}

.phone_number_info {
    margin-top: 5px;
    color: #00337c;
    font-size: .9rem;
    font-weight: 700;
}

.ltr {
    direction: ltr;
}

.mt_count {
    margin-top: -7px;
}

.wallet_info {
    font-size: 1.2rem !important;
    color: #3e3f5e;
    font-weight: 900;
    font-family: Tajawal-Regular;
}

.display-flex {
    display: -ms-flexbox;
    display: flex;
}

.general_box {
    -ms-flex-align: center;
    align-items: center;
    min-height: 120px;
    padding: 15px 28px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
    margin: 10px 0;
}

.bio_info {
    color: #023B87;
    margin: 5px 15px 0;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.4em;
    font-family: Tajawal-Regular;
}

.bio_color {
    color: #03C988;
}

.link_support {
    position: relative;
}

.mb-10 {
    margin-bottom: 10px;
}

.button_link_support {
    position: absolute;
    top: -15px;
    left: 1px;
    right: auto;
    width: 51px!important;
    height: 51px!important;
    margin-top: 1rem;
    background-color: #00337c;
    padding: 0.5rem;
    border-radius: 5px;
    border: none;
    transition: all .4s;
}

.copy_input {
    width: 100%;
    cursor: pointer !important;
    background-color: #f2f2ff !important;
    border: none !important;
    color: #00337c !important;
    text-align: left !important;
    border-radius: 5px !important;
    padding-left: 3.5rem !important;
    box-shadow: 0 3px 15px #b8c6db;
    -moz-box-shadow: 0 3px 15px #b8c6db;
    -webkit-box-shadow: 0 3px 15px #b8c6db;
    font-weight: 600;
}

.copied {
    font-family: 'Montserrat', sans-serif;
    width: 100px;
    display: none;
    position: relative;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: right;
    margin: auto;
    color: #000;
    padding: 15px 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 15px #b8c6db;
    -moz-box-shadow: 0 3px 15px #b8c6db;
    -webkit-box-shadow: 0 3px 15px #b8c6db;
}


/* End personal Information Page Style */


/* Start Table Style */

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: none;
    background-color: #ffffff;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: Tajawal-Regular;
    color: #3e3f5e;
}

th,
td {
    text-align: center;
    padding: 10px 8px;
}

th {
    font-size: 14px;
}

tbody {
    display: table-row-group;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
    border-radius: 12px;
}

.image_table {
    background-image: url(../img/border_stream.png);
    background-repeat: no-repeat;
    height: 65px;
    width: 59px;
    margin: 0 10px;
}

.image_center_table {
    background-size: cover;
}

.hex_table {
    display: flex;
    position: relative;
    width: 43px;
    height: 48px;
    margin-top: 8px;
    margin-left: 0px;
    margin-right: 8px;
}

.table_stream_name {
    text-align: right !important;
    line-height: 4;
}

.mr-12 {
    margin-right: 12px;
}


/* End Table Style */

.button_cancel {
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 0;
}

.social_link {
    position: absolute;
    top: 13px;
    right: 8px;
    left: auto;
    pointer-events: none;
    display: flex;
    border-radius: 10px;
}

.social_input {
    padding-right: 64px;
    padding-left: 0;
}

.mr-30 {
    margin-right: 30px;
}

.mt-10 {
    margin-top: 10px;
}


/* Start My Profile Page Style */

.my_profile_box {
    padding-bottom: 20px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
}

.my_profile_cover {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background: url(../img/banner-bg.png) no-repeat 50%;
    background-size: cover !important;
    height: 150px;
}

.display_none {
    display: none;
}

.button-wrap {
    position: relative;
}

.new-button {
    display: inline-block;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 10px;
    background-color: #3e3f5e;
    font-size: 16px;
    color: #fff;
}

.top-right {
    position: absolute;
    top: 8px;
    right: 16px;
}

@media screen and (min-width: 1025px) {
    .top-right-screen {
        position: absolute;
        top: 220px;
        display: block;
    }
    .w-120 {
        width: 110px;
        padding: 10px 5px;
    }
}

.ul_profile_social {
    list-style: none;
    display: inline-block;
    justify-content: space-between;
}

.user_data {
    display: inline-flex;
}

.div_data {
    margin: 5px 8px;
}

.number_data {
    font-weight: 700;
    text-align: center;
    font-size: 1.375rem;
    color: #3e3f5e;
    margin-bottom: 0;
}

.text_data {
    font-size: .75rem;
    font-weight: 700;
    color: #adafca;
}

.mt-65 {
    margin-top: 65px;
}

@media screen and (max-width: 992px) {
    .mt-110 {
        margin-top: 110px;
    }
}

.tooltip_section {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 80px;
    padding: 0 43px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
    position: relative;
    margin: 20px 0;
}

.tooltip_section_item {
    float: left;
    width: 122px;
    height: 80px;
    position: relative;
}

.tooltip_section .tooltip_section_item:hover {
    border-bottom: 4px solid #03C988;
}

.tooltip_section_item .tooltip_section_item_icon {
    position: absolute;
    width: 24px;
    height: 24px;
    filter: invert(54%) sepia(8%) saturate(13%) hue-rotate(318deg) brightness(98%) contrast(88%);
    opacity: .6;
    top: 30px;
    left: 50%;
    margin-left: -10px;
    transition: opacity .25s ease-in-out, visibility .25s ease-in-out, transform .25s ease-in-out, -webkit-transform .25s ease-in-out;
}

.tooltip_section_item:hover .tooltip_section_item_icon {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
}

.tooltip_section_item_text {
    width: 100%;
    color: #3e3f5e;
    font-size: .875rem;
    font-weight: 700;
    text-align: center;
    top: 34px;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: opacity .25s ease-in-out, visibility .25s ease-in-out, transform .25s ease-in-out, -webkit-transform .25s ease-in-out;
}

.tooltip_section .tooltip_section_item:hover .tooltip_section_item_text {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
    visibility: visible;
}

.tooltip_section .tooltip_section_item:after {
    content: "";
    width: 1px;
    height: 20px;
    background-color: #eaeaf5;
    position: absolute;
    top: 30px;
    right: 0;
}

.support_items_my_profile {
    display: grid;
    grid-template-columns: repeat(auto-fit, 65px) !important;
    grid-gap: 5px !important;
    justify-content: center;
    direction: rtl;
    padding-top: 20px;
}

.support_item_my_profile {
    justify-content: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 60px !important;
    height: 60px !important;
    border-radius: 12px;
    cursor: pointer
}

.top5_streamer_support_name {
    color: #3e3f5e;
    font-size: .875rem;
    font-weight: 500;
    text-align: right;
    line-height: 2.3;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    float: right;
    max-width: 185px;
}

@media screen and (max-width:991px) {
    .top5_streamer_support_name {
        max-width: 270px;
    }
}

.highlighted {
    color: #00337C;
}

.information_line {
    display: flex;
}

.mt-15 {
    padding-top: 15px;
}

.information_line_title {
    width: 80px;
    color: #00337C;
    font-weight: 600;
}

.information_line_text {
    color: #3e3f5e;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.4285714286em;
    margin-right: 15px;
}

.text_sms_support {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3em;
}

.sms_line_text {
    color: #3e3f5e;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4285714286em;
    margin-bottom: 0;
}

.ul_sms {
    list-style: circle;
    direction: rtl;
    margin-bottom: 0;
    padding-right: 2rem;
}

.bold {
    font-weight: 800;
}

.top_row_block {
    min-height: 44px;
    padding: 6px 42px 0 0 !important;
    position: relative;
    margin: 10px 0;
}

.display_inline_grid {
    display: inline-grid;
}

.text_from_follow {
    margin-bottom: 0;
    font-size: 0.75rem;
    color: #888888;
    font-weight: 500;
    margin-top: -5px;
}

.div_block {
    position: absolute;
    top: 10px;
    left: 0 !important;
    right: auto;
}


/* End My Profile Page Style */


/* Start Support Setting Page Style */

.general_title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0;
}

.sub_small_title {
    margin-top: 1px;
    color: #8f91ac;
    font-size: 0.675rem;
    font-weight: 500;
    line-height: 1.4285714286em;
}

.mr-10 {
    margin-right: 10px;
}


/* Start checkbox style */

.checkbox {
    --background: #fff;
    --border: #d1d6ee;
    --border-hover: #bbc1e1;
    --border-active: #00337C;
    --tick: #fff;
    position: relative;
}

.checkbox input,
.checkbox svg {
    width: 21px;
    height: 21px;
    display: block;
}

.checkbox input {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    outline: none;
    background: var(--background);
    border: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
    border-radius: 4px;
    transition: box-shadow 0.3s;
    box-shadow: inset 0 0 0 var(--s, 1px) var(--b, var(--border));
}

.checkbox input:hover {
    --s: 2px;
    --b: var(--border-hover);
}

.checkbox input:checked {
    --b: var(--border-active);
}

.checkbox svg {
    pointer-events: none;
    fill: none;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--stroke, var(--border-active));
    position: absolute;
    top: 0;
    left: 0;
    width: 21px;
    height: 21px;
    transform: scale(var(--scale, 1)) translateZ(0);
}

.checkbox.path input:checked {
    --s: 2px;
    transition-delay: 0.4s;
}

.checkbox.path input:checked+svg {
    --a: 16.1 86.12;
    --o: 102.22;
}

.checkbox.path svg {
    stroke-dasharray: var(--a, 86.12);
    stroke-dashoffset: var(--o, 86.12);
    transition: stroke-dasharray 0.6s, stroke-dashoffset 0.6s;
}

.checkbox.bounce {
    --stroke: var(--tick);
}

.checkbox.bounce input:checked {
    --s: 11px;
}

.checkbox.bounce input:checked+svg {
    -webkit-animation: bounce 0.4s linear forwards 0.2s;
    animation: bounce 0.4s linear forwards 0.2s;
}

.checkbox.bounce svg {
    --scale: 0;
}

@-webkit-keyframes bounce {
    50% {
        transform: scale(1.2);
    }
    75% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    50% {
        transform: scale(1.2);
    }
    75% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}


/* End checkbox style */

.top_left_switch_text {
    position: absolute;
    top: 10px;
    left: 16px;
}

.gifs_support {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    padding: 0.3rem;
}


/* End Support Setting Page Style */


/*start pagination  style*/

.section-pager-bar {
    height: 60px;
    margin: 32px auto 0;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
    position: relative;
    overflow: hidden;
}

@media screen and (min-width:1025px) {
    .section-pager-bar {
        width: 494px;
    }
}

.section-pager-bar .section-pager {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    position: absolute;
    top: 0;
    left: 2px !important;
    right: 60px !important;
    z-index: 1;
}

.section-pager .section-pager-item {
    padding: 0 8px;
    cursor: pointer;
    position: relative;
}

.section-pager .section-pager-item:before {
    content: "";
    width: 1px;
    height: 20px;
    background-color: #eaeaf5;
    position: absolute;
    top: 12px;
    left: 0;
}

.section-pager .section-pager-item .section-pager-item-text {
    background-color: #fff;
    padding: 16px;
    border-radius: 12px;
    font-size: .875rem;
    font-weight: 700;
    transition: color .2s ease-in-out, box-shadow .2s ease-in-out, background-color .2s ease-in-out;
    margin-bottom: 0;
}

.section-pager .section-pager-item:last-child:after {
    content: "";
    width: 1px;
    height: 20px;
    background-color: #eaeaf5;
    position: absolute;
    top: 12px;
    right: 0;
}

.section-pager .section-pager-item.active .section-pager-item-text,
.section-pager .section-pager-item:hover .section-pager-item-text {
    background-color: #fff;
    color: #00337C;
    box-shadow: 3px 5px 20px 0 rgb(94 92 154 / 12%);
}

.slider-control {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.section-pager-bar .section-pager-controls .slider-control.left {
    left: 0;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.section-pager-bar .section-pager-controls .slider-control {
    width: 60px;
    height: 60px;
    background-color: #fff;
    position: absolute;
    top: 0;
    z-index: 2;
}

.slider-control .slider-control-icon {
    fill: #adafca;
    pointer-events: none;
    opacity: .6;
    transition: fill .2s ease-in-out, opacity .2s ease-in-out;
}

.icon-small-arrow {
    width: 35px;
    height: 15px;
}

.section-pager-bar .section-pager-controls .slider-control.right {
    right: 0;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.slider-control.disabled,
.slider-control[aria-disabled=true] {
    opacity: .5;
}


/*End pagination  style*/

.top_left_switch_streamLabs {
    position: absolute;
    top: 10px;
    left: 0px;
}

.date_text_record {
    color: #3e3f5e;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 12px;
    font-family: Tajawal-Bold;
}

.account_balance {
    padding-left: 10px;
    position: relative;
    text-align: right;
}

.justify-content-space-between {
    justify-content: space-between;
}

.circle_info_statistics {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: absolute;
}

.user_info_statistics {
    padding-left: 10px;
    text-align: right;
    padding-right: 70px;
    top: 45px;
}

.padding-lr {
    padding: 0 30px;
}

@media screen and (max-width: 960px) {
    .padding-lr {
        padding: 0 3px;
    }
}

.put_center {
    text-align: right;
    padding-right: 55px;
}

.img_thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
}


/* Start Contract Page Style */

.contract_text {
    font-size: 1rem;
    font-weight: 700;
}

.table_contract {
    width: 100%;
    border: 1px solid #000;
    text-align: center;
    font-family: Tajawal-Bold;
}

.table_contract .th_contract,
.td_contract {
    border: 1px solid #000;
    text-align: center;
}

.table_contract th {
    background-color: #cbe2f8;
    font-weight: bold;
    font-size: 1.1rem;
}

.table_contract td {
    background-color: #EDEDED;
}

.title_style {
    text-align: center;
    background-color: #D9D9D9;
    padding: 0.4rem;
    margin: 0.4rem;
    font-weight: 700;
}

.center_sub_title {
    text-align: center;
    text-decoration: underline;
    line-height: 2.5;
    font-weight: 700;
}

.sub_title {
    text-decoration: underline;
    font-weight: 600;
}

.text_weight {
    font-weight: 600;
}

.sign tbody {
    width: 100%;
    border: none;
    text-align: center;
    background: none;
    box-shadow: none;
}

.th_sign {
    border: none;
}


/* Start Contract Page Style */

.support_icon_details {
    padding-right: 11px;
    padding-left: 1px;
    text-align: right;
}

.support_icon_name {
    font-size: 1.125rem;
    font-weight: 700;
}

@media (max-width: 576px) {
    .col-xs-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .general_box {
        padding: 15px 12px;
    }
}

.border-radius-20 {
    border-radius: 20px;
}

.box_follow {
    margin: 8px 0;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
    height: 290px;
    margin: 10px 0;
}

.follow_cover {
    height: 100px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background: url(../img/01.jpg) no-repeat 50%;
    background-size: cover;
}

.user_footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 65px;
    border-top: 1px solid #eaeaf5;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    background-color: #fcfcfd;
}

.footer_action {
    width: 100%;
    text-align: center;
}

.button_block_user {
    background-color: transparent;
    color: #adafca;
    box-shadow: none;
}


/* Start Modal Style */

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 2rem 1.5rem 1rem;
}

.zoom-in {
    transform: scale(0)!important;
    opacity: 0;
    -webkit-transition: 1.5s all 0s;
    -moz-transition: 1.5s all 0s;
    -ms-transition: 1.5s all 0s;
    -o-transition: 1.5s all 0s;
    transition: 1.5s all 0s;
    display: block !important;
}

.zoom-in.show {
    opacity: 1;
    transform: scale(1)!important;
    transform: none;
}

.is-invalid {
    border: 1px solid #dc3545 !important;
}

.form-box {
    width: 457px !important;
    padding: 30px 45px !important;
}

.popup-close-button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: #00337c;
    cursor: pointer;
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 2;
    transition: background-color .2s ease-in-out;
}

.popup-close-button:hover {
    background-color: #03C988;
}

.popup-close-button .popup-close-button-icon {
    pointer-events: none;
}

@media screen and (max-width:540px) {
    .modal-dialog {
        position: relative;
        width: auto;
        margin: 0.5rem 1.3rem;
        pointer-events: none;
    }
}

.input_search_gifs {
    background: url(../img/search.png) !important;
    background-repeat: no-repeat !important;
    background-position: bottom 12px right 12px !important;
    background-size: 20px !important;
    width: 100%;
    margin: 0em !important;
    height: 45px !important;
    outline: none !important;
    border: none !important;
    border-radius: 5px !important;
    padding: 0 40px 0 20px !important;
    box-sizing: border-box;
    font-family: Tajawal-Regular !important;
    font-size: 0.9rem !important;
    box-shadow: 0 1px 5px rgb(0 0 0 / 10%) !important;
    background-color: #ffffff !important;
    color: #4e4ac8 !important;
}


/* End Modal Style */

.page_live {
    display: inline-grid;
    align-items: center;
    width: 100%;
    z-index: 999999;
    transition: opacity .4s ease-in-out, visibility .4s ease-in-out;
}

.center_image {
    margin-top: 10px;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.user_box_day {
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgb(94 92 154 / 6%);
    height: 120px;
    margin: 10px 0px;
    position: relative;
}

.circle_info_day {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: absolute;
    top: 35px;
    right: 10px;
}

.user_info_day {
    padding-left: 12px;
    position: relative;
    text-align: right;
    padding-right: 65px;
    top: 30px;
}

.invalid-feedback {
    text-align: right !important;
    direction: rtl;
}

label {
    font-size: 12px !important;
}

@media screen and (max-width:380px) {
    label {
        font-size: 11px !important;
        line-height: 1.5;
    }
    input[type="text"],
    input[type="number"],
    input[type="date"],
    input[type="email"],
    input[type="password"],
    input[type=file],
    select,
    textarea {
        height: calc(3em + -2px);
    }
}

@media screen and (max-width: 991px) {
    .column_reverse {
        flex-direction: column-reverse;
    }
}