/* Start: Main Element */
*,
::after,
::before{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: inherit;
    outline: none;
    scroll-behavior: smooth;
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    background: transparent;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 100%;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: middle;
}
html {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    margin: 0!important;
}

body {
    /* background-color: #F0F0F0; */
    font-family: 'Yekan Bakh';
    line-height: 1.618;
    font-weight: normal;
    color: #333;
    left: 0;
    position: relative;
    transition-property: left;
    transition-duration: .2s;
    transition-timing-function: linear;
    direction: rtl;
    overflow-x: hidden;
}
sub, sup{
    background: transparent;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    outline: 0;
    padding: 0;
    direction: ltr;
    display: inline-block;
}
small {
    font-size: .8em;
}
nav {
    height: 100%;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
    direction: rtl;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}
h1 {
    font-size: 2em;
}
h2 {
    font-size: 1.5em;
}
h3 {
    font-size: 1.17em;
}
h4 {
    font-size: 1.12em;
}
h5 {
    font-size: .83em;
}
h6 {
    font-size: .75em;
}
nav ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    color: #30505C;
    background: transparent;
    margin: 0;
    font-size: 100%;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
}
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}
del {
    text-decoration: line-through;
}
abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
hr {
    border: 0;
    display: block;
    height: 1px;
    border-top: 2px dashed #ddd;
    margin: 1em 0;
    padding: 0;
    float: right;
    width: 100%;
}
input,
select {
    vertical-align: middle;
}

:root {
    --scroll-track: #e2e8f0;
    --scroll-thumb: #94a3b8;
    --scroll-thumb-hover: #1e293b;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        width: 6px;
        border-radius: 8px;
    }
    div::-webkit-scrollbar {
        border-radius: 8px;
        width: 3px;
    }
    ::-webkit-scrollbar-track {
        border-radius: 8px;
        background-color: var(--scroll-track);
    }
    ::-webkit-scrollbar-thumb {
        border-radius: 8px;
        background-color: var(--scroll-thumb);
    }
    ::-webkit-scrollbar-thumb:hover {
        background-color: var(--scroll-thumb-hover);
    }
}
  
/* for firefox */
@-moz-document url-prefix() {
    html,
    body,
    div {
        scrollbar-color: var(--scroll-thumb-hover) var(--scroll-track);
    }
    div {
        scrollbar-width: thin;
    }
}
/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear,
input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0; 
}
/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}
img {
    height: auto;
    max-height: 100%;
    max-width: 100%;
}
img.arz-custom-lazyload,
img.arz-lazyload {
    animation: lazyload-loading 1s forwards infinite;
    background: #f1f1f1;
    filter: unset!important;
}
@keyframes lazyload-loading{
    0%{
        background-color: #f1f1f1;
    }
    50%{
        background-color: #f9f9f9;
    }
    100%{
        background-color: #f1f1f1;
    }
}

.arz-opacity-animation{
    animation: opacity-animation 1s forwards infinite!important;
}
.arz-opacity-animation img.arz-custom-lazyload,
.arz-opacity-animation img.arz-lazyload{
    animation: none!important;
}
@keyframes opacity-animation{
    0%{
        opacity: 1;
    }
    50%{
        opacity: .8;
    }
    100%{
        opacity: 1;
    }
}

/* End: Main Element */

/* Start: Main Classes */
/* Start: Button & Link Classes */
.arz-btn {
    border: 0;
    color: #333;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    margin: 0;
    outline: none;
    padding: .5em 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    transition-duration: .4s;
    transition-property: background-color, color;
    transition-timing-function: ease;
}
.arz-btn-sm {
    font-size: .8rem;
}
.arz-btn-primary {
    background-color: #085591;
    color: #FFF;
}
.arz-btn-info {
    background-color: #30505C;
    color: #FFF;
}
.arz-btn-warning {
    background-color: #F6C120;
    color: #333;
}
.arz-btn-success {
    background-color: #65C087;
    color: #FFF;
}
.arz-btn-danger {
    background-color: #E52927;
    color: #FFF;
}
.arz-btn-primary:hover {
    background-color: #1664A1;
}
.arz-btn-info:hover {
    background-color: #1F333B;
}
.arz-btn-warning:hover {
    background-color: #DAA609;
}
.arz-btn-success:hover {
    background-color: #46AC6C;
}
.arz-btn-danger:hover {
    background-color: #C21917;
}
.arz-btn-outline {
    background-color: #FFF;
    border: 1px solid #333;
    border-radius: 5px;
    color: #333;
    transition: all .2s linear;
}
.arz-btn-outline-primary {
    border-color: #085591;
    color: #085591;
}
.arz-btn-outline-info {
    border-color: #30505C;
    color: #30505C;
}
.arz-btn-outline:hover {
    background-color: #333;
    color: #FFF;
}
.arz-btn-outline-primary:hover {
    background-color: #085591;
    color: #FFF;
}
.arz-btn-outline-info:hover {
    background-color: #30505C;
    color: #FFF;
}
/* End: Button & Link Classes */
/* Start: Display Classes */
.arz-d-block {
    display: block!important;
}
.arz-d-flex {
    display: flex!important;
}
.arz-d-flex-column{
    display: flex!important;
    flex-direction: column!important;
}
.arz-d-inline-block {
    display: inline-block!important;
}
.arz-d-none {
    display: none!important;
}
.arz-v-hidden{
    visibility: hidden;
}
/* sm sizes */
@media (min-width: 576px) {
    .arz-d-block-sm {
        display: block!important;
    }
    .arz-d-flex-sm {
        display: flex!important;
    }
    .arz-d-inline-block-sm {
        display: inline-block!important;
    }
    .arz-d-none-sm {
        display: none!important;
    }
}
/* lg sizes */
@media (min-width: 1024px) {
    .arz-d-block-lg {
        display: block!important;
    }
    .arz-d-none-lg {
        display: none!important;
    }
}
@media (min-width: 1112px) {
    .arz-d-block-xl {
        display: block!important;
    }
}
/* End: Display Classes */
/* Start: Form Classes */
.arz-form {
    display: block;
    margin: 1rem 0;
    padding: 1rem;
    position: relative;
}
.arz-label {
    color: #494949;
    font-size: 1rem;
    margin: 0;
    padding: .5rem 0;
}
.arz-input,
.arz-textarea {
    background-color: #FFF;
    border: 1px solid #707070;
    color: #494949;
    display: block;
    font-size: 1rem;
    margin: 0;
    outline: none;
    padding: .75rem;
    transition: all .4s linear;
    width: 100%;
}
.arz-input::-webkit-input-placeholder,
.arz-textarea::-webkit-input-placeholder {
    color: #707070;
    direction: rtl;
}
.arz-input:-moz-placeholder,
.arz-textarea::-moz-placeholder {
    color: #707070;
    direction: rtl;
}
.arz-input:-ms-input-placeholder,
.arz-textarea:-ms-input-placeholder {
    color: #707070;
    direction: rtl;
}
.arz-input::placeholder,
.arz-textarea::placeholder {
    color: #707070;
    direction: rtl;
}
.arz-input:-webkit-internal-autofill-selected {
    background-color: #FFF!important;
}
.arz-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    box-shadow: 0 0 0 30px white inset !important;
}
.arz-textarea {
    font-size: 14px;
}
.arz-input:active,
.arz-input:focus,
.arz-textarea:active,
.arz-textarea:focus {
    border-color: #30505C;
    outline: none;
}
/* End: Form Classes */
/* Start: Grid Classes */
.arz-container {
    border: 0;
    margin: auto;
    padding: 0;
    width: 100%;
    z-index:1;
    position: relative;
}
.arz-fluid {
    max-width: unset!important;
    padding: 0!important;
    width: 100%!important;
}
.arz-row {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.arz-row-sb {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.arz-col {
    width: auto;
    max-width: 100%;
}
.arz-col-3 {
    width: 25%;
}
.arz-col-4 {
    width: 33.333333%;
}
.arz-col-6 {
    width: 50%;
}
.arz-col-8 {
    width: 66.666666%;
}
.arz-col-12 {
    width: 100%;
}
.arz-col-sb {
    width: auto;
    max-width: 100%;
}
.arz-col-sb-3 {
    width: calc(25% - 1rem);
}
.arz-col-sb-4 {
    width: calc(33.333333% - 1rem);
}
.arz-col-sb-5 {
    width: calc(41.666666% - 1rem);
}
.arz-col-sb-6 {
    width: calc(50% - 1rem);
}
.arz-col-sb-12 {
    width: 100%;
}
/* sm sizes */
@media (min-width: 576px) {
    
    .arz-col-sm {
        width: auto;
        max-width: 100%;
    }
    .arz-col-sm-1 {
        width: 8.333333%;
    }
    .arz-col-sm-5 {
        width: 41.666666%;
    }
    .arz-col-sm-6 {
        width: 50%;
    }
    .arz-col-sm-sb {
        width: auto;
        max-width: 100%;
    }
    .arz-col-sm-sb-6 {
        width: calc(50% - 1rem);
    }
    .arz-col-sm-sb-12 {
        width: 100%;
    }
}
/* md sizes */
@media (min-width: 768px) {
    
    .arz-col-md {
        width: auto;
        max-width: 100%;
    }
    .arz-col-md-6 {
        width: 50%;
    }
    .arz-col-md-sb {
        width: auto;
        max-width: 100%;
    }
    .arz-col-md-sb-4 {
        width: calc(33.333333% - 1rem);
    }
    .arz-col-md-sb-5 {
        width: calc(41.666666% - 1rem);
    }
    .arz-col-md-sb-6 {
        width: calc(50% - 1rem);
    }
    .arz-col-md-sb-7 {
        width: calc(58.333333% - 1rem);
    }
    .arz-col-md-sb-8 {
        width: calc(66.666666% - 1rem);
    }
}
/* lg sizes */
@media (min-width: 1024px) {
    
    .arz-col-lg {
        width: auto;
        max-width: 100%;
    }
    .arz-col-lg-2 {
        width: 16.666666%;
    }
    .arz-col-lg-3 {
        width: 25%;
    }
    .arz-col-lg-4 {
        width: 33.333333%;
    }
    .arz-col-lg-6 {
        width: 50%;
    }
    .arz-col-lg-8 {
        width: 66.666666%;
    }
    .arz-col-lg-10 {
        width: 83.333333%;
    }
    .arz-col-lg-12 {
        width: 100%;
    }
    .arz-col-lg-sb {
        width: auto;
        max-width: 100%;
    }
    .arz-col-lg-sb-3 {
        width: calc(25% - 1rem);
    }
    .arz-col-lg-sb-4 {
        width: calc(33.333333% - 1rem);
    }
    .arz-col-lg-sb-5 {
        width: calc(41.666666% - 1rem);
    }
    .arz-col-lg-sb-6 {
        width: calc(50% - 1rem);
    }
    .arz-col-lg-sb-7 {
        width: calc(58.333333% - 1rem);
    }
    .arz-col-lg-sb-8 {
        width: calc(66.666666% - 1rem);
    }
    .arz-col-lg-sb-9 {
        width: calc(75% - 1rem);
    }
    .arz-col-lg-sb-12 {
        width: 100%;
    }
}
/* xl sizes */
@media (min-width: 1112px) {
    .arz-container {
        max-width: 1080px;
    }
    .arz-col-xl {
        width: auto;
        max-width: 100%;
    }
    .arz-col-xl-2 {
        width: 16.666666%;
    }
    .arz-col-xl-3 {
        width: 25%;
    }
    .arz-col-xl-4 {
        width: 33.333333%;
    }
    .arz-col-xl-6 {
        width: 50%;
    }
    .arz-col-xl-9 {
        width: 75%;
    }
    .arz-col-xl-sb {
        width: auto;
        max-width: 100%;
    }
    .arz-col-xl-sb-2 {
        width: calc(16.666666% - 1rem);
    }
    .arz-col-xl-sb-3 {
        width: calc(25% - 1rem);
    }
    .arz-col-xl-sb-4 {
        width: calc(33.333333% - 1rem);
    }
    .arz-col-xl-sb-5 {
        width: calc(41.666666% - 1rem);
    }
    .arz-col-xl-sb-6 {
        width: calc(50% - 1rem);
    }
    .arz-col-xl-sb-7 {
        width: calc(58.333333% - 1rem);
    }
    .arz-col-xl-sb-8 {
        width: calc(66.666666% - 1rem);
    }
    .arz-col-xl-sb-12 {
        width: 100%;
    }
}
/* xxl sizes */
@media (min-width: 1312px) {
    .arz-container {
        max-width: 1280px;
    }
    .arz-col-xxl {
        width: auto;
        max-width: 100%;
    }
    .arz-col-xxl-3 {
        width: 25%;
    }
    .arz-col-xxl-9 {
        width: 75%;
    }
    .arz-col-xxl-sb {
        width: auto;
        max-width: 100%;
    }
    .arz-col-xxl-sb-2 {
        width: calc(16.666666% - 1rem);
    }
    .arz-col-xxl-sb-3 {
        width: calc(25% - 1rem);
    }
    .arz-col-xxl-sb-9 {
        width: calc(75% - 1rem);
    }
    .arz-col-xxl-sb-10 {
        width: calc(83.333333% - 1rem);
    }
}
/* End: Grid Classes */

/* Start: Path Classes */
.arz-path {
    display: block;
    font-size: .8rem;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}
.arz-path-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.arz-path__item {
    display: inline-block;
    padding: .75em .3em;
    position: relative;
    white-space: nowrap;
}
.arz-path__item-child-1 {
    padding-right: 0;
}
.arz-path__item:last-child {
    padding-left: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}
.arz-path__item:not(:last-child)::after {
    content: '>';
    color: #999;
    position: relative;
    right: 2px;
}
/* End: Path Classes */
/* Start: Popover Classes */
.arz-popover-group {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: right;
}
.arz-popover-group .arz-popover:not(:first-child):not(:last-child) {
    margin: 0 .5rem;
}
.arz-popover-group .arz-popover:first-child {
    margin-left: .5rem;
}
.arz-popover-group .arz-popover:last-child {
    margin-right: .5rem;
}
.arz-popover {
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
}
.arz-popover .arz-popover-content {
    display: none;
    position: relative;
}
.arz-popover-container {
    position: absolute;
    opacity: 0;
    transition: opacity .25s ease;
    top: -10000px;
    left: -10000px;
    z-index: 1044;
}
.arz-popover-container .arz-popover-content {
    display: block!important;
}
.arz-popover-bottom,
.arz-popover-bottom-right,
.arz-popover-bottom-left {
    margin-top: 12px;
}
.arz-popover-bottom .arz-popover-arrow,
.arz-popover-bottom-right .arz-popover-arrow,
.arz-popover-bottom-left .arz-popover-arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: .5rem;
    margin: 0 .3rem;
    top: calc((.5rem + 1px) * -1);
}
.arz-popover-bottom .arz-popover-arrow {
    left: calc(50% - .25rem);
    transform: translate(-50%, 0);
}
.arz-popover-bottom-right .arz-popover-arrow {
    right: 0;
    transform: translate(-50%, 0);
}
.arz-popover-bottom-left .arz-popover-arrow {
    left: 0;
    transform: translate(50%, 0);
}
.arz-popover-bottom .arz-popover-arrow::before,
.arz-popover-bottom-right .arz-popover-arrow::before,
.arz-popover-bottom-left .arz-popover-arrow::before {
    border-color: transparent;
    border-bottom-color: rgba(0, 0, 0, .1);
    border-width: 0 .5rem .5rem .5rem;
    border-style: solid;
    position: absolute;
    display: block;
    content: "";
    top: 1px;
}
.arz-popover-bottom .arz-popover-arrow::after,
.arz-popover-bottom-right .arz-popover-arrow::after,
.arz-popover-bottom-left .arz-popover-arrow::after {
    border-color: transparent;
    border-width: 0 .5rem .5rem .5rem;
    border-bottom-color: #FFF;
    border-style: solid;
    display: block;
    content: "";
    position: absolute;
    top: 2px;
}
.arz-popover-top,
.arz-popover-top-right,
.arz-popover-top-left {
    margin-top: -12px;
}
.arz-popover-top .arz-popover-arrow,
.arz-popover-top-right .arz-popover-arrow,
.arz-popover-top-left .arz-popover-arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: .5rem;
    margin: 0 .3rem;
    bottom: calc((.5rem + 1px) * -1);
}
.arz-popover-top .arz-popover-arrow {
    left: calc(50% - .25rem);
    transform: translate(-50%, 0);
}
.arz-popover-top-right .arz-popover-arrow {
    right: 0;
    transform: translate(-50%, 0);
}
.arz-popover-top-left .arz-popover-arrow {
    left: 0;
    transform: translate(50%, 0);
}
.arz-popover-top .arz-popover-arrow::before,
.arz-popover-top-right .arz-popover-arrow::before,
.arz-popover-top-left .arz-popover-arrow::before {
    bottom: 1px;
    border-color: transparent;
    border-top-color: rgba(0, 0, 0, .1);
    border-width: .5rem .5rem 0 .5rem;
    border-style: solid;
    position: absolute;
    display: block;
    content: "";
}
.arz-popover-top .arz-popover-arrow::after,
.arz-popover-top-right .arz-popover-arrow::after,
.arz-popover-top-left .arz-popover-arrow::after {
    bottom: 2px;
    border-color: transparent;
    border-width: .5rem .5rem 0 .5rem;
    border-top-color: #FFF;
    border-style: solid;
    display: block;
    content: "";
    position: absolute;
}
.arz-popover-right,
.arz-popover-right-top,
.arz-popover-right-bottom {
    margin-left: 12px;
}
.arz-popover-right .arz-popover-arrow,
.arz-popover-right-top .arz-popover-arrow,
.arz-popover-right-bottom .arz-popover-arrow {
    position: absolute;
    display: block;
    height: 1rem;
    width: .5rem;
    margin: .3rem 0;
    left: calc((.5rem + 1px) * -1);
}
.arz-popover-right .arz-popover-arrow {
    transform: translate( 0, -50%);
    top: calc(50% - .25rem);
}
.arz-popover-right-top .arz-popover-arrow {
    transform: translate( 0, 50%);
    top: 0;
}
.arz-popover-right-bottom .arz-popover-arrow {
    bottom: 0;
    transform: translate( 0, -50%);
}
.arz-popover-right .arz-popover-arrow::before,
.arz-popover-right-top .arz-popover-arrow::before,
.arz-popover-right-bottom .arz-popover-arrow::before {
    left: 1px;
    border-color: transparent;
    border-right-color: rgba(0, 0, 0, .1);
    border-width: .5rem .5rem .5rem 0;
    border-style: solid;
    position: absolute;
    display: block;
    content: "";
}
.arz-popover-right .arz-popover-arrow::after,
.arz-popover-right-top .arz-popover-arrow::after,
.arz-popover-right-bottom .arz-popover-arrow::after {
    left: 2px;
    border-color: transparent;
    border-width: .5rem .5rem .5rem 0;
    border-right-color: #FFF;
    border-style: solid;
    display: block;
    content: "";
    position: absolute;
}
.arz-popover-left,
.arz-popover-left-top,
.arz-popover-left-bottom {
    margin-left: -12px;
}
.arz-popover-left .arz-popover-arrow,
.arz-popover-left-top .arz-popover-arrow,
.arz-popover-left-bottom .arz-popover-arrow {
    position: absolute;
    display: block;
    height: 1rem;
    width: .5rem;
    margin: .3rem 0;
    right: calc((.5rem + 1px) * -1);
}
.arz-popover-left .arz-popover-arrow {
    transform: translate( 0, -50%);
    top: calc(50% - .25rem);
}
.arz-popover-left-top .arz-popover-arrow {
    transform: translate( 0, 50%);
    top: 0;
}
.arz-popover-left-bottom .arz-popover-arrow {
    bottom: 0;
    transform: translate( 0, -50%);
}
.arz-popover-left .arz-popover-arrow::before,
.arz-popover-left-top .arz-popover-arrow::before,
.arz-popover-left-bottom .arz-popover-arrow::before {
    right: 1px;
    border-color: transparent;
    border-left-color: rgba(0, 0, 0, .1);
    border-width: .5rem 0 .5rem .5rem;
    border-style: solid;
    position: absolute;
    display: block;
    content: "";
}
.arz-popover-left .arz-popover-arrow::after,
.arz-popover-left-top .arz-popover-arrow::after,
.arz-popover-left-bottom .arz-popover-arrow::after {
    right: 2px;
    border-color: transparent;
    border-width: .5rem 0 .5rem .5rem;
    border-left-color: #FFF;
    border-style: solid;
    display: block;
    content: "";
    position: absolute;
}
.arz-popover-body {
    background-color: #FFF;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    border: 0;
    border-radius: .3rem;
    padding: .5rem .75rem;
    height: auto;
    transition: height .2s linear;
}
.arz-popover-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: auto;
    right: 0;
    opacity: 1;
    z-index: 99999;
}
.arz-popover-fullscreen .arz-popover-body {
    border-radius: 0;
    min-height: 100%;
}
.arz-popover-fullscreen .arz-popover-close {
    background-color: #eee;
    border-radius: 50%;
    cursor: pointer;
    height: 25px;
    margin-right: auto;
    text-align: center;
    width: 25px;
}
.arz-popover-fullscreen-open {
    overflow: hidden!important;
}
.arz-popover-container-has-more:not(.arz-popover-fullscreen) .arz-popover-body {
    border-radius: 0;
    overflow-y: scroll;
}
.arz-popover-container-has-more.arz-popover-container-scrolled:not(.arz-popover-fullscreen) .arz-popover-body {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}
.arz-popover-container-has-more:not(.arz-popover-fullscreen) .arz-popover-body::after {
    background: #FFF;
    border-radius: .3rem;
    content: '';
    display: block;
    left: 1px;
    height: 100%;
    position: absolute;
    top: 0px;
    bottom: 0;
    width: 20px;
}
.arz-popover-container-has-more.arz-popover-container-scrolled:not(.arz-popover-fullscreen) .arz-popover-body::after {
    display: none;
}
.arz-popover-container-has-more:not(.arz-popover-fullscreen) .arz-popover-footer {
    background-color: #F5F5F5;
    border: 0;
    border-radius: 0;
    font-size: 14px;
    color: #666;
    line-height: 17px;
    bottom: 0;
    cursor: pointer;
    height: 24px;
    padding: 0.3rem 0;
    position: absolute;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-focus: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    z-index: 1024;
}
.arz-popover-container-has-more.arz-popover-container-scrolled:not(.arz-popover-fullscreen) .arz-popover-footer {
    display: none;
}
.arz-popover-container img {
    width: 100%;
}
/* End: Popover Clases */

/* Start: Main Post Categories */
.arz-main-categories {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    position: relative;
    text-align: left;
    width: 100%;
}
.arz-main-category {
    display: inline-block;
    margin: 2px;
}
.arz-main-category__link {
    border-color: #5d879700;
    background: #30505c;
    color: #FFF;
    font-size: 14px;
    line-height: 100%;
    padding: .25em 1em!important;
}
.arz-main-category__link:hover {
    background-color: #5d8797;
    color: #FFF;
}
/* End: Main Post Categories */

/* Start: Tab Classes */
.arz-tab-menu {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin: 0 0 1rem 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}
.arz-tab-item {
    border-radius: 99em;
    cursor: pointer;
    font-size: 14px;
    line-height: 26px;
    margin-left: .5em;
    padding: 0 1em;
    text-align: center;
    transition-duration: .2s;
    transition-property: background-color, color;
    transition-timing-function: ease;
}
.arz-item-active {
    background-color: #30505C;
    color: #FFF;
}
.arz-tab-item:not(.arz-item-active):hover {
    background-color: #497383;
    color: #FFF;
}
.arz-tab-card:not(.arz-card-active) {
    display: none;
}
.arz-tab-card-fade .arz-tab-card {
    transition-duration: .4s;
    transition-property: opacity;
    transition-timing-function: ease;
}
.arz-tab-content {
    transition-duration: .4s;
    transition-property: height;
    transition-timing-function: ease;
}
.arz-tab-card-row .arz-tab-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    overflow: hidden;
}
.arz-tab-card-row.arz-tab-card-row-d-none .arz-tab-card:not(.arz-card-active) {
    display: none;
}
.arz-tab-card-row .arz-tab-card {
    display: block;
    right: 0;
    height: 100%;
    position: relative;
    /* transition-duration: .4us; */
    /* transition-property: right;
    transition-timing-function: ease; */
    min-width: 100%;
    width: 100%;
}
/* End: Tab Classes */
/* Start: Utility Classes */
.arz-pump {
    box-shadow: 0 0 0 rgba(101, 192, 135, 0.69);
    animation: pumps 1.5s infinite;
}
@keyframes pumps {
    0% {
        box-shadow: 0 0 0 0 rgba(101, 192, 135, 0.69);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(101, 192, 135, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(101, 192, 135, 0);
    }
}
.arz-dump {
    box-shadow: 0 0 0 rgba(239, 98, 98, 0.69);
    animation: dumps 1.5s infinite;
}
@keyframes dumps {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 98, 98, 0.69);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(239, 98, 98, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 98, 98, 0);
    }
}
.arz-coin-sprite {
    width: 32px;
    height: 32px;
}
.arz-slidedown {
    font-size: 1rem;
    position: relative;
}
.arz-slidedown__title {
    cursor: pointer;
    position: relative;
    padding: .5rem;
}
.arz-slidedown__title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 1rem;
    border: 5px solid transparent;
    border-top-color: #CCC;
    transform: translate(0, -50%);
}
.arz-slidedown__content {
    display: none;
    padding-top: .5rem;
}
.arz-table {
    table-layout: fixed;
    width: 100%;
}
.arz-table-responsive {
    overflow: auto;
    width: 100%
}
.arz-direction-ltr {
    direction: ltr;
}
.arz-direction-ltr-imp {
    direction: ltr !important;
}
.arz-direction-rtl {
    direction: rtl;
}
.arz-direction-rtl-imp {
    direction: rtl !important;
}
.arz-title-box {
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.arz-title-box::after {
    border-top: 1px solid #ccc;
    content: '';
    display: inline-block;
    margin-left: 1rem;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
    z-index: 1;
}
.arz-title {
    box-shadow: inset 0 0 24px #fff;
    display: inline-block;
    color: #000;
    font-size: 15px;
    font-weight: bold;
    vertical-align: middle;
    margin: 0;
    padding-left: 1rem;
    transition: all 0.3s;
    z-index: 2;
}
.arz-center {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
}
.arz-main {
    direction: rtl;
    padding-top: 15px;
    min-height: calc(100vh - 417px);
}
.arz-icon {
    display: inline-block;
    height: 27px;
    transition-duration: .4s;
    transition-property: fill;
    transition-timing-function: ease;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 27px;
}
.arz-icon.arz-icon-small {
    height: 17px;
    width: 17px;
}
.arz-icon.arz-icon-large {
    height: 37px;
    width: 37px;
}
.arz-icon>svg {
    display: block;
    height: 100%;
    width: 100%;
}
.arz-icon.arz-icon-hover {
    color: #fff;
}
.arz-icon.arz-icon-hover:hover {
    color: #CCC;
}
.arz-icon.arz-icon-instagram {
    background-image: url("../fonts/instagram.svg");
}
.arz-round {
    border-radius: 99rem;
}
.arz-card {
    background-color: #FFF;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    padding: 1rem 1.4rem;
}
.arz-card-title {
    color: #666;
    font-size: 1.17em;
    margin-bottom: 1.5rem;
}
.arz-card-title__badge{
    background-color: #30505c;
    font-size: 10px;
    color: #FFF;
    border-radius: 5px;
    padding: 5px 10px;
    margin-top: 5px;
    float: left;
    line-height: 1;
    text-align: center;
    transition: background-color .2s linear;
}
.arz-card-title__badge:hover{
    background-color: #6DB4D0;
}
.arz-owl-carousel-nav {
    cursor: pointer;
    color: #666;
    height: 27px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 100;
}
.arz-owl-carousel-next{
    right: -28px;
    font-size: 27px;
}
.arz-owl-carousel-prev{
    left: -28px;
    font-size: 27px;
}
.arz-icon-right-arrow,
.arz-icon-left-arrow {
    height: 19px;
    width: 19px;
}

.arz-avatar {
    border-radius: 50%;
    display: inline-block;
    height: 62px;
    overflow: hidden;
    width: 62px;
}
.arz-avatar.arz-avatar-small {
    height: 27px;
    width: 27px;
}
.author-name-selected {
    position: relative;
    top: -11px;
    right: 4px;
}
.arz-avatar.arz-avatar-large {
    height: 96px;
    width: 96px;
}
.arz-avatar>svg,
.arz-avatar>img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.arz-blue {
    color: #74BAEE!important
}
.arz-red {
    color: #D32F2F!important
}
.arz-white {
    color: #FFF!important
}
.arz-bg-red {
    background-color: #E52927!important
}
.arz-bg-orange {
    background-color: #FF470F!important
}
.arz-bg-green {
    background-color: #65C087!important
}
.arz-mousedown{
    cursor: pointer;
}
.arz-badge {
    font-size: .7rem;
    float: left;
    line-height: 1;
    padding: .5rem;
    text-align: center;
}
.arz-icon-right-arrow,
.arz-icon-left-arrow {
    color: #9a9a9a;
    height: 19px;
    width: 19px;
}
.arz-text-overflow-content {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.arz-text-overflow-text {
    left: 0;
    position: relative;
    transition-duration: .4s;
    transition-property: left, right;
    transition-timing-function: linear;
    white-space: nowrap;
}
.arz-text-overflow-toright .arz-text-overflow-text {
    left: auto;
    right: 0;
}

.arz-ads{
    position: relative;
    display: inline-block!important;
}

.arz-ads::after {
    z-index: 800;
    content: 'AD';
    position: absolute;
    top: 6px;
    left: 6px;
    height: 15px;
    width: 20px;
    border-radius: 3px;
    background-position: center;
    background-color: rgba(255, 255, 255, .36);
    font-size: 10px;
    line-height: 18px;
    display: block;
    color: #000;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
}


@media (min-width: 1024px) {
    .arz-slide-menu {
        display: none;
    }
}
/* End: Utility Classes */
/* End: Main Classes */
#tools{
    background-color: #30505b;
    height: 220px;
}

.idealikebtn:hover,
.idealikebtn.current-user-liked{
    background-color: rgb(13 148 136 / 1 );
    color: rgb(255 255 255 / 1 );
    fill: #fff;
    border-color: transparent !important;
}

/****************** snackbar css start **********************/

.arz-snackbar-response-message {
    background-color: #94A3B8;
    border-right: .5rem solid #475569;
    box-shadow: 0 0 4px #00000050;
    color: var(--arz-black);
    padding: 1rem 1rem 1rem 3rem;
    position: fixed;
    opacity: 0;
    right: 1rem;
    top: 2rem;
    transform: translate(100%, 0);
    transition: top .2s linear;
    min-width: 300px;
    z-index: 9999;
}

.arz-snackbar-response-message-success {
    background: #34D399;
    border-right-color: #059669;
    color: #FFF;
}

.arz-snackbar-response-message-error {
    background: #F87171;
    border-right-color: #DC2626;
    color: #FFF;
}

.arz-snackbar-response-message-show {
    animation: arz-snackbar-response-message-show .5s cubic-bezier(0.175, 0.885, 0.320, 1.275) forwards;
}

.arz-snackbar-response-message-hide {
    animation: arz-snackbar-response-message-hide .25s cubic-bezier(0.600, -0.280, 0.735, 0.045) forwards;
}

@keyframes arz-snackbar-response-message-show {
    0% {
        opacity: 0;
        transform: translate(100%, 0);
    }
    75% {
        opacity: 1;
        transform: translate(-3rem, 0);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes arz-snackbar-response-message-hide {
    0% {
        opacity: 1;
        transform: translate(0, 0);
    }
    25% {
        opacity: 1;
        transform: translate(-3rem, 0);
    }
    100% {
        opacity: 0;
        transform: translate(100%, 0);
    }
}

/****************** snackbar css end **********************/




.arz-post__content h3 {
    margin-bottom: 0.5rem!important;
    margin-top: 1.2rem!important;
    padding-top: 0.6rem!important;
    font-size: 1.15rem!important;
    line-height: 1.45rem!important;
    --tw-text-opacity: 1 !important;
    color: rgb(0 0 0/var(--tw-text-opacity))!important;
    
}
    
.arz-post__content ol li {
    line-height: 1.7rem!important;
    --tw-text-opacity: 1 !important;
    color: rgb(0 0 0/var(--tw-text-opacity))!important;
}
    
.arz-post__content ol, .arz-post__content ul {
    margin-right: 0rem!important;
}

.info-page-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

/**********************pulser******************************/
.pulse-box {
    position: absolute;
    top: 3px;
    left: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}
  
svg.pulse-svg {
    overflow: visible;
}
  
svg.pulse-svg .first-circle {
    fill: #365fc4;
    transform: scale(0.5);
    transform-origin: center center;
    animation: pulse-me 3s linear infinite;
}
  
svg.pulse-svg .second-circle {
    fill: #365fc4;
    transform: scale(0.5);
    transform-origin: center center;
    animation: pulse-me 3s linear infinite;
    animation-delay: 1s;
}
  
svg.pulse-svg .third-circle {
    fill: #365fc4;
    transform: scale(0.5);
    transform-origin: center center;
    animation: pulse-me 3s linear infinite;
    animation-delay: 2s;
}
  
  
@keyframes pulse-me {
    0% {
      transform: scale(0.5);
      opacity: 0;
    }
    50% {
      opacity: 0.1;
    }
    70% {
      opacity: 0.09;
    }
    100% {
      transform: scale(5);
      opacity: 0;
    }
}
/**********************\pulser******************************/

.arz-collapse-btn{
    text-align: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background-color 0.5s ease;
    border-radius: 0 0 10px 10px;
}
.arz-collapse-btn:hover{
    
    background: #f5f5f5;
    
}

.arz-collapse-btn hr{
    padding-top: 10px;
    border-width: 3px;
}

.arz-spiner-loading-container {
    position: relative;
    flex-shrink: 0;
    mask-image: radial-gradient(closest-side, transparent calc(100% - 2px - 1px),
        white calc(100% - 2px) calc(100% - 1px), transparent 100%);
    background-color: #1AA0895E;
    color: #1AA089;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: spiner-loading-container;
}
.arz-spiner-loading {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    mask-image: conic-gradient(transparent 105deg, white 105deg);
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
    animation-name: spiner-loading;
}
.arz-spiner-loading::before, 
.arz-spiner-loading::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    animation: inherit;
      animation-name: inherit;
    background-image: conic-gradient(currentcolor 135deg, transparent 135deg);
}
.arz-spiner-loading::before{
    animation-name: spiner-loading-before;
} 
.arz-spiner-loading::after {
    animation-name: spiner-loading-after;
}

@keyframes spiner-loading-container {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes spiner-loading {
    0% {
        transform: rotate(-135deg);
    }
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(225deg);
    }
}
@keyframes spiner-loading-before {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(105deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
@keyframes spiner-loading-after {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(225deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.animate-show {
    animation: show .2s linear forwards;
}
.animate-hide {
    animation: hide .2s linear forwards!important;
}

@keyframes show {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes hide {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-16px);
    }
}

/*------------search----------------*/
[data-search-section-result-inner="viewedCoins"]{
    display: flex;
    overflow: auto;
    margin-top: 10px;
    padding-bottom: 3px;
}

[data-search-section-result-inner="viewedCoins"]::-webkit-scrollbar {
    height: 3px;
    border-radius: 8px;
}

[data-search-section-result-inner="viewedCoins"]::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: var(--scroll-track);
}

[data-search-section-result-inner="viewedCoins"]::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: var(--scroll-thumb);
}

.eachTrendCoinInSearch{
    display: flex;
    align-items: center;
    background: #F1F5F9;
    padding: 3px 7px;
    margin: 0 2px;
    border-radius: 13px;
    flex: 0 0 auto;
    gap: 4px;
}
.eachTrendCoinInSearch img{
    margin-right: -4px;
    border-radius: 50%;
    width:20px;
    height:20px;
}

.eachTrendCoinInSearch .title1{
    font-size: 12px ;
    color: #47505e;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
/*------------/search----------------*/

.arz-clickable-elem {
    cursor:pointer;
}



.breakinglike.voted{
    background: #aafff2;
}
.breakingdislike.voted{
    background: #fca5a5;
}

.app-mockup-back{
    position: absolute;
    height: 100%;width: 100%;
    z-index:-1;
    top:0;
    border-radius: 1.5rem;
}



.adsLogoImg {
    width: 20px;height: 20px;border-radius: 50%;
}