:root {
  --primary-color: #0063b1;
  --secondarr-color: #3a3a3a;
  --green: #00b81c;
  --blue: #45A2C0;
  --darkblue: #0f1da0;
  --gold: #fdb40a;
  --red: #e7662a;
  --lime: #CDDC39;
  --yellow: #FFEB3B;
  --orange: #FF9800;
  --purple: #490963;
  --pink: #E91E63;
  --font-color: #333;
  --bg-primary: #000000;
  --bg-primary-light: #222;
  --bg-primary-dark: #48ebf6;
  --bg-secondary-light: #0079d6;
  --bg-secondary: #0063b1;
  --bg-secondary-dark: #005697;
  --hint-color: rgb(124, 124, 124);
  --border-color: #c2c2c2;
  --border-color-light: #d5d5d5;
  --border-color-dark: #dddddd;
  --border-color-darkest: #a5a5a5;
}

body .loader {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999988;
  background-color: #000;
}

body .loader #loader_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin: 0 auto;
  display: block;
  text-align: center;
  color: #888888;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-14deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(-14deg);
  transform: translateX(-50%) translateY(-50%) rotate(-14deg);
}

body .loader #loader_wrap .path {
  stroke-dasharray: 2110;
  stroke-dashoffset: 2110;
  stroke-width: 2;
  stroke-linecap: round;
  animation: dash 3s linear infinite;
  fill-opacity: 0;
  stroke: yellow;
}

@keyframes dash {
  0% {
    stroke-dashoffset: 2110;
    opacity: 0;
    stroke: #ff9400;
  }

  15% {
    opacity: 1;
    stroke: #ff9400;
  }

  70% {
    opacity: 1;
    stroke: #ff9400;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0;
    stroke: #ff9400;
  }
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
}

.pinter {
  cursor: pointer;
}

.hint {
  color: var(--hint-color)
}

.bg-primary {
  background-color: var(--bg-primary) !important;
}

.bg-primary-dark {
  background-color: var(--bg-primary-dark) !important;
}

.bg-primary-light {
  background-color: var(--bg-primary-light) !important;
}


.bg-secondary-light {
  background-color: var(--bg-secondary-light) !important;
}

.bg-secondary-dark {
  background-color: var(--bg-secondary-dark) !important;
}

.bg-secondary {
  background-color: var(--bg-secondary) !important;
}

.bg-dark {
  background-color: var(--bg-dark) !important;
}

.bg-gradient-dark {
  background: linear-gradient(135deg, #23bdb8, #43e794);
}

.bg-gradient-light {
  background: linear-gradient(90deg, #ee0979, #ff6a00);
}

.color-white {
  color: #fff !important;
}

.color-primary {
  color: var(--primary-color);
}


@font-face {
  font-family: 'iran';
  src: url('fonts/iran.woff');
  font-weight: normal;
  font-style: normal
}

@font-face {
  font-family: 'yekan';
  src: url('fonts/BYekan+.ttf');
  font-weight: normal;
  font-style: normal
}

@font-face {
  font-family: 'yekan';
  src: url('fonts/BYekan+\ Bold.ttf');
  font-weight: bold;
  font-style: normal
}

@font-face {
  font-family: 'en';
  src: url('fonts/Product\ Sans\ Regular.ttf');
  font-weight: normal;
  font-style: normal
}

@font-face {
  font-family: 'en';
  src: url('fonts/Product\ Sans\ Bold.ttf');
  font-weight: bold;
  font-style: normal
}

.en {
  font-family: en;
}

html {
  direction: rtl !important;
  text-align: right;
}

* {
  text-decoration: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* user-select: none; */
}

.card-header {
  padding: 0.4rem 1em;
}

.card-body {
  padding: 1rem;
}

.t-small {
  font-size: .9em
}

.t-smaller {
  font-size: .8em
}

.t-smallest {
  font-size: .7em
}

.t-big {
  font-size: 1.1em
}

.t-bigger {
  font-size: 1.2em
}

.t-biggest {
  font-size: 1.3em
}

.t-verybig {
  font-size: 1.5em
}

.blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.bold {
  font-weight: bold;
}

select {
  text-align-last: center;
}

a,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  text-decoration: none;
  font-size: inherit
}

span {
  display: inline-block;
}

.pager {
  height: 100%;
}

.pager .page {
  display: none;
  padding-bottom: 60px;
  height: 100%;
  overflow-y: scroll;
}

.pager .page.act {
  display: block;
}

.gslide {
  background-color: var(--bg-primary);
  display: none;
  width: 100%;
  min-height: 100%;
  position: relative;
}

.gslide.act {
  display: block;
}

input {
  color: var(--font-color);
}

input[type=range] {
  pointer-events: none;
}

input[type=range]::-webkit-slider-thumb {
  pointer-events: auto;
}

.btn:focus,
input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.btm-radius {
  border-radius: 0 0 15px 15px;
}

.btm-border {
  border-bottom: 1px solid var(--border-color);
}

.ltr {
  direction: ltr;
}

.rtl {
  direction: rtl;
}

.stretch {
  width: 100%;
}

a:hover {
  color: inherit;
  text-decoration: none;
  font-size: inherit
}

.row {
  margin-right: 0;
  margin-left: 0;
}

.hint {
  color: var(--hint-color);
}

.green {
  color: var(--green) !important;
}

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

.darkblue {
  color: var(--darkblue) !important;
}

.purple {
  color: var(--purple);
}

.gold {
  color: var(--gold);
}

.red {
  color: var(--red) !important;
}

.yellow {
  color: var(--yellow) !important;
}

.orange {
  color: var(--orange);
}

.pink {
  color: var(--pink);
}

.lime {
  color: var(--lime);
}

.primary-color {
  color: var(--primary-color);
}

.container-fluid {
  padding-right: 5px;
  padding-left: 5px;
}

.padd0 {
  padding-left: 0;
  padding-right: 0;
}

.padd2 {
  padding-left: 2px;
  padding-right: 2px;
}

.padd5 {
  padding-left: 5px;
  padding-right: 5px;
}

.padd7 {
  padding-left: 7px;
  padding-right: 7px;
}

.padd10 {
  padding-left: 10px;
  padding-right: 10px;
}

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

.padd20 {
  padding-left: 20px;
  padding-right: 20px;
}

.padd25 {
  padding-left: 25px;
  padding-right: 25px;
}

.padd30 {
  padding-left: 30px;
  padding-right: 30px;
}

.mbot5 {
  margin-bottom: 5px
}

.mbot10 {
  margin-bottom: 10px;
}

.mbot15 {
  margin-bottom: 15px
}

.mbot20 {
  margin-bottom: 20px
}

.mbot25 {
  margin-bottom: 25px
}

.mbot30 {
  margin-bottom: 30px
}

.pbot5 {
  padding-bottom: 5px;
}

.pbot10 {
  padding-bottom: 10px;
}

.pbot15 {
  padding-bottom: 15px;
}

.pbot20 {
  padding-bottom: 20px;
}

.paddall5 {
  padding: 5px
}

.paddall10 {
  padding: 10px
}

.paddall15 {
  padding: 15px
}

.paddall20 {
  padding: 20px
}

.relative {
  position: relative;
}


.fixed-top {
  z-index: 9;
}

.modal-content {
  font-family: iran;
}

.container {
  padding-right: 10px;
  padding-left: 10px;
}

.form-control {
  /* border-radius: 0; */
  padding: 8px 10px 6px 10px !important;
  height: auto !important;
  font-weight: 200 !important;
  -webkit-appearance: unset !important;
  /* border: none; */
  background-color: transparent;
  transition: .3s;
  font-size: .9em;
}

button:focus {
  outline: none
}

.topgap {
  height: 40px;
}

.form-control:focus {
  border-color: #888;
  outline: none;
  box-shadow: none;
}

::placeholder {
  color: var(--hint-color) !important;
}

.help-color {
  border: 2px solid;
  width: 14px;
  height: 14px;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  top: 3px;
}

.notification {
  position: fixed;
  top: 80px;
  right: 20px;
  max-width: calc(100% - 40px);
  z-index: 10000
}

.notification>div {
  min-width: 200px;
  padding: 10px 12px 10px 25px;
  border-radius: 5px;
  position: relative;
  margin-bottom: 10px;
  display: none;
  -webkit-animation-duration: .4s;
  animation-duration: .4s;
  cursor: pointer;
}

.pointer {
  cursor: pointer;
}

.notification span {
  text-align: justify;
  line-height: 25px;
  display: block;
  font-size: .9em;
}

.notification .danger {
  background-color: #ffcdd2;
  color: #d32f2f;
  border: 1px solid #ef9a9a
}

.notification .warning {
  background-color: #fff59d;
  color: #ee770e;
  border: 1px solid #fdd835
}

.notification .info {
  background-color: #81d4fa;
  color: #01579b;
  border: 1px solid #4fc3f7
}

.notification .success {
  background-color: #a5d6a7;
  color: #1b5e20;
  border: 1px solid #81c784
}

.notification i {
  position: absolute;
  right: 4px;
  top: 10px;
  font-size: 1.5em
}

.notification .icofont-close {
  left: 0px;
  top: 0px;
  font-size: 1em;
  right: unset;
}

.notification .notif {
  font-size: .9em;
  padding: 7px 38px 7px 16px;
  margin-bottom: 15px;
}

.notification .notif .pic {
  background-image: url(img/noimg0.jpg);
  width: 50px;
  min-width: initial;
  height: 50px;
  background-size: cover;
  background-position: center;
  padding: 0;
  margin: 0;
  position: absolute;
  border-radius: 50%;
  top: calc(50% - 25px);
  right: -12px;
}

.notif.warning .pic {
  border: 3px solid #fdd735;
}

.notif.success .pic {
  border: 3px solid #81c784;
}

.notif.danger .pic {
  border: 3px solid #ef9a9a;
}

.imgbox .profileimg {
  width: 160px;
  height: 160px;
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  background-color: var(--bg-primary-dark);
}

.imgbox i {
  position: absolute;
  left: calc(50% - 90px);
  top: 161px;
  font-size: 1.8em;
  background-color: var(--bg-primary);
  border-radius: 50%;
  padding: 5px;
}

.radius {
  border-radius: 10px !important
}

.radius2 {
  border-radius: 20px !important
}

.radius3 {
  border-radius: 30px !important
}



.beforeicon::before {
  font-family: 'icofont';
  content: attr(icon);
  position: absolute;
  right: -10px;
  top: 0;
  color: var(--primary-color);
  font-size: 17px;
}

.beforeicon::after {
  content: attr(label);
  position: absolute;
  right: 11px;
  top: 0;
  color: var(--primary-color);
  font-size: 12px;
}

.aftericon::after {
  font-family: 'icofont' !important;
  content: attr(icon) !important;
  position: absolute !important;
  right: 0 !important;
  bottom: 2px !important;
  color: var(--primary-color) !important;
  font-size: 18px !important;
  -webkit-text-security: initial;
}

[contenteditable=true] {
  outline: none;
  border-bottom: 1px solid #007eb5;
  ;
  padding: 2px 25px 3px 10px;
  color: var(--font-color);
  word-wrap: break-word;
  margin-bottom: 8px;
  display: block;
  position: relative;
}

[contenteditable=true]:empty:before {
  content: attr(placeholder);
  color: var(--hint-color);
}

[contenteditable=true]:empty {
  content: attr(placeholder);
  -webkit-text-security: initial;
}

[contenteditable=true]::after {
  content: "\ea54";
  font-family: 'icofont';
  position: absolute;
  right: -2px;
  bottom: 4px;
  color: var(--primary-color);
  font-size: 1.3em;
}

nav ul {
  margin: 0;
}

nav ul li {
  list-style-type: none;
  display: inline-block;
  padding: 5px 10px;
  margin-left: 15px;
  cursor: pointer;
  font-size: 1.1em;
  position: relative;
}

nav ul li ul {
  position: absolute;
  right: 0;
  z-index: 2;
  background-color: var(--bg-primary);
  top: 32px;
  padding: 0;
  font-size: .8em;
  width: 100%;
  box-shadow: initial;
  border-radius: 0 0 10px 10px;
  height: 0;
  overflow: hidden;
  transition: .3s;
  border-top: none;
}

nav ul li:hover ul {
  padding: 10px 5px;
  box-shadow: 0 1px 1px var(--bg-secondary);
  height: auto;
  border: 1px solid var(--font-color);
}

nav ul li ul li {
  margin: 4px 0;
  width: 100%;
  padding: 0;
  transition: .3s;
  border-bottom: 1px solid transparent;
}

nav ul li ul li a {
  transition: .3s;
  padding: 5px 10px;
  color: white;
  display: block;
}

nav ul li ul li:hover {
  color: var(--bg-secondary);
  border-bottom: 1px solid var(--bg-secondary);
}

nav ul li ul li:hover a {
  color: var(--bg-secondary);
}

nav ul li ul li a {
  width: 100%;
}

nav ul li a.act {
  color: var(--bg-secondary-light);
}

.title1 {
  background: var(--bg-secondary);
  /* background: linear-gradient(90deg, var(--bg-secondary) 50%, var(--bg-secondary-dark) 100%); */
  position: relative;
  padding: 10px 35px;
  border-radius: 20px;
  color: #000;
  font-size: 1.8em;
  box-shadow: 0 0 3px #00000029;
}

.title2 {
  background-color: white;
  position: relative;
  padding: 10px 60px;
  z-index: 2;
}

.title2::before {
  content: '';
  width: 70px;
  height: 12px;
  background-color: var(--bg-secondary);
  position: absolute;
  top: -10px;
  right: -7px;
}

.title2::after {
  content: '';
  width: 26px;
  height: 26px;
  background-color: var(--bg-primary-dark);
  position: absolute;
  top: 12px;
  left: -21px;
}

p {
  line-height: 3em;
}

.title3 {
  background-color: var(--bg-primary-dark);
  position: relative;
  padding: 10px 60px;
  z-index: 2;
}

.title3::before {
  content: '';
  width: 70px;
  height: 12px;
  background-color: var(--bg-secondary-dark);
  position: absolute;
  bottom: -10px;
  right: -7px;
}

.title3::after {
  content: '';
  width: 26px;
  height: 26px;
  background-color: var(--bg-secondary-dark);
  position: absolute;
  top: 12px;
  left: -21px;
}

.newsletter {
  background-color: var(--bg-secondary);
  padding: 10px 20px;
  text-align: center;
  position: relative;
}

.newsletter input {
  border: 2px solid rgb(0, 104, 104);
  border-radius: 30px !important
}

.newsletter .btn {
  border: 2px solid #009e4f;
  background-color: #009e4f !important;
  padding: 6px 13px;
  margin-top: 0 !important;
  border-radius: 30px !important;
  position: absolute;
  top: 0;
  left: 0;
}

.appcontainer {
  bottom: -65px;
  position: relative;
}

.footer {
  font-family: 'Courier New', Courier, monospace;
  color: #888;
  text-align: center;
  padding: 20px 0;
  position: relative;
}

.footer::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 2px;
  background-color: var(--primary-color);
  left: calc(50% - 224px);
  top: 26px;
}

.footer::before {
  content: "";
  position: absolute;
  width: 56px;
  height: 2px;
  background-color: var(--primary-color);
  right: calc(50% - 224px);
  top: 26px;
}

.footer span::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: var(--primary-color);
  left: calc(50% - 235px);
  top: 24px;
  border-radius: 50%;
}

.footer span::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: var(--primary-color);
  right: calc(50% - 235px);
  top: 24px;
  border-radius: 50%;
}

.second-bar i {
  color: #fbd500;
  background-color: white;
  border-radius: 50%;
  padding: 5px;
  font-size: 2.5em;
  border: 2px solid #FBD501;
  position: relative;
  filter: drop-shadow(0px 0px 2px white);
  top: 8px;
  margin-right: 6px;
}

.footertitle {
  color: var(--primary-color);
  padding: 4px 5px;
  position: relative;
}

.footertitle::after {
  content: "";
  background-color: var(--primary-color);
  width: calc(100% - 10px);
  height: 2px;
  position: absolute;
  bottom: -2px;
  right: 13px;
}

.footertitle::before {
  content: "";
  background-color: var(--primary-color);
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: -5px;
  right: 0;
  border-radius: 50%;
}

.footerul {
  color: var(--primary-color);
  font-size: 1.3em;
  list-style-position: inside;
}

.footerul li span {
  color: white;
  font-size: .7em;
  vertical-align: text-top;
}

.btn-dark {
  color: #fff;
  background-color: #111 !important;
  border-color: #111 !important;
}

.searchbar {
  width: 90%;
  background-color: white;
  height: 100%;
  border-radius: 30px;
  text-align: right;
  position: relative;
}

.searchbar span {
  background-color: var(--bg-secondary);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 58px;
  text-align: center;
  border-radius: 30px;
  cursor: pointer;
}

.searchbar span i {
  color: black;
  font-size: 1.3em;
  position: relative;
  top: 11px;
}

.searchbar input {
  border: none;
  padding: 10px 20px !important;
}

.border-dark {
  border-color: #666 !important;
}

.asicon {
  border: 3px solid #999;
  border-radius: 20px;
  width: 170px;
  position: relative;
  z-index: 5;
  cursor: pointer;
}

.psicon {
  border: 3px solid black;
  border-radius: 20px;
  width: 170px;
  background-color: var(--bg-secondary-dark);
  position: relative;
  z-index: 5;
  cursor: pointer;
}

.btn.bg-secondary:hover {
  background-color: var(--bg-secondary) !important;
}

.btn.bg-secondary:focus {
  background-color: var(--bg-secondary) !important;
}

p {
  line-height: 38px;
}

.slideimage {
  border: 6px solid var(--primary-color);
  border-radius: 30px;
}

.slidetext {
  background-color: var(--bg-secondary);
  position: relative;
  left: -30px;
  z-index: 2;
  padding: 40px 30px;
  border-radius: 30px;
  font-weight: bold;
}

.slidetext .showmore {
  background-color: white;
  font-size: 1.2em;
  border-radius: 20px;
  padding: 10px 20px;
}

.swiper-next {
  font-size: 2.5em;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: black;
  color: white;
  padding: 1px 5px;
  cursor: pointer;
}

.swiper-prev {
  font-size: 2.5em;
  position: absolute;
  right: 44px;
  bottom: 0;
  background-color: black;
  color: white;
  padding: 1px 5px;
  cursor: pointer;
}

#anim1,
#anim2,
#anim3,
#anim4,
#anim5,
#anim6 {
  opacity: 0;
}

.golden_number {
  width: 106px;
  height: 106px;
  margin: auto;
  background-position: top center;
  background-size: 85%;
  border: 6px solid var(--bg-secondary);
  border-radius: 50%;
  padding: 5px;
  background-color: white;
  position: relative;
  top: -65px;
  background-repeat: no-repeat;
}

.golden_title {
  width: 106px;
  height: 40px;
  margin: auto;
  border: 5px solid white;
  border-radius: 20px;
  padding: 0px;
  background-color: var(--bg-secondary);
  position: relative;
  top: -90px;
  font-size: 18px;
  font-weight: bold;
}

.im-text {
  position: relative;
  padding-right: 85px;
}

.im-text::before {
  content: "";
  position: absolute;
  width: 56px;
  height: 2px;
  background-color: var(--primary-color);
  right: 15px;
  top: 14px;
}

.im-text::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  right: 0;
  top: 11px;
  border-radius: 50%;
}

.btn-success {
  background-color: #009e4f !important;
  border-color: #009e4f !important;
}

.help-title {
  font-size: 1.4em;
  color: #fff;
  border-bottom: 1px solid #444;
  margin-bottom: 20px;
  padding-bottom: 5px;
}

.help-list {
  font-size: 1em;
  color: #aaa;
  margin-bottom: 12px;
}

.help-list i {
  margin-left: 6px;
  font-size: 1.2em;
  position: relative;
  top: -1px;
}

.article-box {
  background-color: #1d1d1d;
  padding: 15px 15px 25px;
  color: #eee;
  cursor: pointer;
  position: relative;
  border-radius: 7px;
}

.article-box .a-img {
  padding-top: 100%;
  border-radius: 10px;
  background-position: center;
  background-size: 160%;
  background-repeat: no-repeat;
  transition: .3s;
}

.article-box:hover>div>div>.a-img {
  background-size: 200%;
}

.article-box::before {
  content: "";
  background-color: var(--primary-color);
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: 9px;
  right: 15px;
  border-radius: 50%;
}

.article-box::after {
  content: "";
  background-color: var(--primary-color);
  width: calc(100% - 45px);
  height: 2px;
  position: absolute;
  bottom: 12px;
  right: 30px;
}

.article-box-big {
  position: relative;
}

.article-box-big .a-img {
  padding-top: 65%;
  position: relative;
  background-position: center;
  background-size: cover;
  border: 4px solid var(--bg-secondary);
}

.article-box-big p {
  color: white;
  line-height: 28px;
  font-size: .9em;
  padding: 10px;
  height: 95px;
  overflow: hidden;
}

.article-box-big .btm {
  color: white;
  box-shadow: 0 0 4px var(--bg-secondary);
  font-size: .82em;
  padding: 6px 0;
  text-align: center;
}

.article-box-big .btm i {
  color: var(--bg-secondary);
  display: inline-flex;
  margin-left: 5px;
  font-size: 1.2em;
}

.article-box-big .a-img .ttl {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 45px;
  background: linear-gradient(180deg, rgba(225, 178, 1, 0) 45%, var(--bg-secondary) 45%);
}

.article-box-big .a-img .ttl span {
  z-index: 1;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  padding: 13px 5px 5px;
  font-size: 1.1em;
}

.article-box-big .a-img .ttl::before {
  content: "";
  position: absolute;
  border-bottom: 20px solid var(--bg-secondary);
  border-left: 16px solid transparent;
  width: 100%;
  right: 0;
  z-index: 0;
  top: 0;
}

.article-box-big .a-img .author {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 45px;
  background: linear-gradient(180deg, rgba(225, 178, 1, 0) 45%, var(--bg-secondary) 45%);
  text-align: left;
}

.article-box-big .a-img .author>span {
  z-index: 1;
  position: relative;
  text-align: left;
  padding: 7px;
  line-height: 17px;
  direction: ltr;
}

.article-box-big .a-img .author::before {
  content: "";
  position: absolute;
  border-bottom: 20px solid var(--bg-secondary);
  border-right: 16px solid transparent;
  width: 100%;
  left: 0;
  z-index: 0;
  top: 0;
}

.article-box2 .subtitle {
  position: relative;
  height: 50px;
}

.article-box2 .subtitle::before {
  content: "";
  background-color: var(--primary-color);
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: 0;
  right: 15px;
  border-radius: 50%;
}

.article-box2 .subtitle::after {
  content: "";
  background-color: var(--primary-color);
  width: calc(100% - 32px);
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 30px;
}

.article-box2 .subtitle .ttl {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 45px;
}

.article-box2 .subtitle .ttl span {
  z-index: 1;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  padding: 6px 1px 5px;
}

.article-box2 .subtitle .author {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  height: 45px;
  text-align: left;
  font-size: .8em;
}

.article-box2 .subtitle .author>span {
  z-index: 1;
  position: relative;
  text-align: left;
  padding: 3px;
  line-height: 17px;
  direction: ltr;
}

.article-box2 .a-img .ttl {
  height: 25px;
  background: linear-gradient(180deg, rgba(225, 178, 1, 0) 80%, var(--bg-secondary) 80%);
}

.article-box2 .a-img .author {
  height: 25px;
  background: linear-gradient(180deg, rgba(225, 178, 1, 0) 80%, var(--bg-secondary) 80%);
}



.pagination .page-item {
  display: none;
}

.page-link {
  color: #ffd500 !important;
  background-color: #1d1d1d !important;
  border: 1px solid #302f2f !important;
}

.page-item:hover {
  cursor: pointer;
}

.page-item.act .page-link {
  color: #000 !important;
  background-color: #ffd500 !important;
  border: 1px solid #f3b200 !important;
}

.page-item.disabled {
  opacity: .7;
}

.loading {
  position: fixed;
  width: 100%;
  height: 4px;
  top: 0;
  left: 0;
  z-index: 10000;
  direction: ltr
}

.loading .prgs {
  width: 40%;
  height: 3px;
  background-color: #ffd500;
  box-shadow: 0 0 1px #ffc800;
  transition: 1s;
}

.qrbox {
  position: absolute;
  z-index: 2;
  background-color: var(--bg-primary);
  padding: 10px;
  border-radius: 5px;
  top: 40px;
  border: 1px solid #999999;
  border-top-right-radius: 0;
  right: 4px;
}

.qrbox .code {
  margin-left: 10px;
}

.qrbox .links {
  text-align: center;
  font-size: 1.2em;
  padding-top: 20px;
}

.qrbox .code img {
  width: 100px;
}

.mybtn {
  background-color: var(--bg-secondary-dark);
}

.qrbtn.act {
  border-bottom: none;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding-bottom: 13px;
  z-index: 3;
}

.cus-ul {
  font-size: 1.2em;
  line-height: 36px;
}

.cus-ul li {
  list-style-image: url(../img/star-1.png);
  padding-right: 15px;
}

.bold-art {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 15px;
}

.bold-art .title {
  color: white;
  padding: 7px 13px;
  position: absolute;
  bottom: 14px;
  right: 4%;
  width: 92%;
  border-radius: 12px;
}

.bold-art .ttl {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 1.2em;
}

.bold-art .date {
  font-size: .9em;
  margin-bottom: 3px;
  margin-right: 8px;
}

.bold-art .grd {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.4;
}

.bold-art .t1 {
  background: linear-gradient(90deg, rgba(0, 94, 112, 1) 0%, rgba(0, 158, 81, 1) 100%);
}

.bold-art .t2 {
  background: linear-gradient(90deg, rgba(225, 0, 175, 1) 0%, rgba(232, 17, 14, 1) 100%);
}

.bold-art .t3 {
  background: linear-gradient(90deg, rgba(5, 29, 159, 1) 0%, rgba(0, 187, 224, 1) 100%);
}

.bold-art .t4 {
  background: linear-gradient(90deg, rgba(208, 2, 222, 1) 0%, rgba(122, 0, 223, 1) 100%);
}

.art-title-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.art-title-bg span {
  font-size: 1.2em;
  background-color: #000;
  color: white;
  padding: 7px 28px 9px;
  border-radius: 30px;
}

#symbols .btm-border {
  border-color: #ddd;
}

.mltbtn {
  position: relative;
  height: 36px;
}

.mltbtn .btn {
  width: 55%;
  background-color: var(--bg-primary);
  position: absolute;
  color: white;
  top: 0;
  z-index: 1;
}

.mltbtn .btn.act {
  background-color: var(--bg-secondary);
  z-index: 2;
  color: black;
}

.sellbox .brd {
  border: 2px solid var(--green);
  border-radius: 60px;
}

.qsbox {
  margin-bottom: 12px;
  position: relative;
}

.qsbox .qs {
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 1.1em;
  border-radius: 10px;
  cursor: pointer;

}

.qsbox.open1 .qs {
  background-color: red;
  color: white;
}

.qsbox.close1 .qs {
  background-color: white;
}

.qsbox.open1 .qs::before {
  content: '\ef9a';
  position: relative;
  right: -12px;
  top: 1px;
  color: white;
  font-family: 'icofont';
}

.qsbox.close1 .qs::before {
  content: '\efc2';
  position: relative;
  right: -12px;
  top: 1px;
  color: var(--bg-secondary);
  font-family: 'icofont';
}

.qsbox .ans {
  padding: 0;
  height: 0;
  overflow: hidden;
  transition: .3s;
}

.qsbox.open1 .ans {
  height: initial;
  padding: 5px 25px;
  margin-bottom: 25px;
}

.faqbox {
  border-top: 1px dashed var(--border-color);
  padding: 20px;
  line-height: 34px;
  position: relative;
  transition: .3s;
}

.faqbox:last-of-type {
  border-bottom: 1px dashed var(--border-color);
}

.faqbox:hover {
  background-color: #f5f5f5;
  cursor: pointer;
}

.faqbox .faq {
  font-size: 1.1em;
  font-weight: bold;
}

.faqbox .desc {
  color: var(--hint-color);
  display: none;
  padding-top: 15px;
}

.faqbox::after {
  font-family: 'icofont' !important;
  content: '\eac8';
  position: absolute;
  left: -4px;
  top: 4px;
  font-size: 2em;
  transition: .3s;
  transform: rotate(0deg);
}

.faqbox.open::after {
  transform: rotate(-180deg);
}

.giftCard {
  text-align: center;
  position: relative;
  padding: 60px 8px;
  transition: .3s;
  border-radius: 30px;
  cursor: pointer;
}

.giftCard:hover {
  transform: scale(1.1);
}

.giftCard .holder {
  position: absolute;
  width: 80px;
  left: calc(50% - 40px);
  top: 18px;
}

.giftCard .dPrice {
  position: absolute;
  right: 12px;
  top: 12px;
  direction: ltr;
  font-size: 1.2em;
}

.giftCard .title {
  font-size: .8em;
  opacity: .6;
}

.giftCard.apple,
.giftCard.gplay {
  background-color: black;
  color: white;
}

.giftCard.xbox {
  background-color: #0a7910;
  color: white;
}

.giftCard.xbox .holder {
  filter: invert();
  opacity: .7;
}

.giftCard.xbox .logo {
  padding: 15px;
}

.giftCard .actBtn {
  position: absolute;
  bottom: 3px;
  left: 3px;
  width: calc(100% - 6px);
  padding: 10px;
  transition: .5s;
  border-radius: 0 0 30px 30px;
  font-size: .9em;
}

.giftCard .actBtn i {

  font-size: 1.4em;
}

.giftCard:hover>.actBtn {
  background-color: white;
  color: black;
}

.giftbox {
  position: relative;
  background-color: #e9e9e9
}

.giftbox .htitle {
  background-color: var(--primary-color);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  color: white;
  padding: 20px 10px;
  border-radius: 15px;
  position: absolute;
  text-align: center;
  top: -10px;
  bottom: -10px;
  right: 0px;
  font-size: 1.1em;
}

.panel-menu {
  background: #FFFFFF;
  box-shadow: 0px 10px 20px rgba(90, 82, 128, 0.31);
  border-radius: 20px;
  width: 220px;
  position: relative;
  margin-left: 20px;
  transition: .4s;
  height: max-content;
  padding: 20px 5px;
  border: 1px solid var(--border-color-dark);
  text-align: right;
  font-size: .9em;
}

.panel-menu span {
  opacity: 1;
  transition: .3s;
}

.panel-menu:hover {
  width: 220px;
}

.panel-menu:hover span {
  opacity: 1;
}

.panel-menu li {
  white-space: nowrap;
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-color-light);
  overflow: hidden;
}

.panel-menu .panel-btn img {
  width: 30px;
  transition: .3s;
  margin-left: 12px;
}

.panel-menu .panel-btn.act img {
  filter: invert(23%) sepia(93%) saturate(7426%) hue-rotate(367deg) brightness(100%) contrast(79%)
}

.panel-menu .panel-btn.act {
  color: var(--primary-color);
}

.panel-menu ul {
  margin: 0;
  padding: 10px 0;
  display: block;
}

.panel-menu .panel-btn.open ul {
  display: block;
}

.panel-menu ul li {
  margin: 0;
  padding: 5px;
  border-bottom: none;
  color: #444;
}

.panel-menu li i {
  font-size: 1.5em;
}

.panel-menu ul li.act {
  color: var(--primary-color);
}

.panel-loader {
  display: inline-block;
  width: calc(100% - 220px);
}

ul.striped li:nth-child(odd) {
  background-color: #F9F9F9;
}

ul.striped li {
  padding: 8px 15px
}

div.striped>div:nth-child(odd) {
  background-color: #F5F5F7;
  border: 1px solid var(--border-color);
}

div.striped>div {
  padding: 8px 15px;
  border-radius: 25px;
  border: 1px solid transparent;
  transition: .2s;
}
@media only screen and (max-width: 768px) {


  #invite-img {
    opacity: .5;
  }

  .appcontainer {
    bottom: unset;
    padding: 20px 0;
  }

  .mpadd0 {
    padding-left: 0;
    padding-right: 0;
  }

  .footer::after,
  .footer::before,
  .footer span::after,
  .footer span::before {
    display: none;
  }

  .slidetext {
    left: unset;
    margin-bottom: 20px;
  }

  .im-text {
    padding-right: 0;
  }

  .im-text::before {
    display: none;
  }

  .im-text::after {
    display: none;
  }
}

@media (min-width: 1405px) {
  .container {
    max-width: 1400px;
  }
}

@media only screen and (max-width: 991px) {
  .panel-menu {
    margin-bottom: 30px;
    position: fixed;
    z-index: 3;
    top: 0;
    right: -260px;
    width: 250px;
    height: 100%;
    border-radius: 0;
    transition: .3s;
    opacity: 0;
  }

  .panel-loader {
    width: 100% !important;
  }

  .panel-menu:hover {
    width: 250px;
  }

  .panel-menu.open {
    right: 0;
    opacity: 1;
  }

  .panel-menu span {
    opacity: 1;
  }

  .panel-menu .panel-btn img {
    max-width: 30px;
    transition: .3s;
    width: 100%;
    margin: 0;
  }
}