/**
 * Flips any values
 */
/**
 * Flips left for right, right for left
 */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------
    01. Convert from px to rem
---------------------------------------------------------------------------------------------------------------------------------------------------- */
:root {
  font-size: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  --main-color: #f37021;
  --vividVermilion: #e36419;
  --main-color-55: rgba(243, 114, 33, 0.55);
  --richBlack: #0b0b12;
  --raisinBlack: #252527;
  --darkCharcoal: #2c2c32;
  --cultured: #f7f7f7;
  --brightGray: #e7e8ea;
  --lightSilver: #d4d5d8;
  --antiFlash: #f0f1f4;
  --metalSaurus: #6e7b83;
  --metalSaurus-30: rgba(110, 123, 131, 0.3);
  --metalSaurus-85: rgba(110, 123, 131, 0.85);
  --outerSpace: #464749;
  --eggShell: #efecdc;
  --paleGoldenrod: #dce8a7;
  --chineseGold: #cc9900;
  --persianGreen: #00a988;
  --seaBlue: #00679c;
  --seaBlack: #000;
  --flirt: #990066;
  --silverSand: #c2c3c5;
  --jet: #343434;
  --graniteGray: #656668;
  --white: #fff;
  --black: #000;
  --steelTeal: #607d86;
  --oldLace: #fdf3ea;
  --danger: #f03131;
  --linkColor: #0c62d8;
}

[data-theme=dark] {
  --black: #fff;
  --richBlack: #fff;
  --raisinBlack: #fff;
  --brightGray: #7F7F81;
  --cultured: #7F7F81;
}
[data-theme=dark] body {
  background-color: #1B1E1F;
}

:root {
  font-size: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  --main-color: #f37021;
  --vividVermilion: #e36419;
  --main-color-55: rgba(243, 114, 33, 0.55);
  --richBlack: #0b0b12;
  --raisinBlack: #252527;
  --darkCharcoal: #2c2c32;
  --cultured: #f7f7f7;
  --brightGray: #e7e8ea;
  --lightSilver: #d4d5d8;
  --antiFlash: #f0f1f4;
  --metalSaurus: #6e7b83;
  --metalSaurus-30: rgba(110, 123, 131, 0.3);
  --metalSaurus-85: rgba(110, 123, 131, 0.85);
  --outerSpace: #464749;
  --eggShell: #efecdc;
  --paleGoldenrod: #dce8a7;
  --chineseGold: #cc9900;
  --persianGreen: #00a988;
  --seaBlue: #00679c;
  --seaBlack: #000;
  --flirt: #990066;
  --silverSand: #c2c3c5;
  --jet: #343434;
  --graniteGray: #656668;
  --white: #fff;
  --black: #000;
  --steelTeal: #607d86;
  --oldLace: #fdf3ea;
  --danger: #f03131;
  --linkColor: #0c62d8;
}

[data-theme=dark] {
  --black: #fff;
  --richBlack: #fff;
  --raisinBlack: #fff;
  --brightGray: #7F7F81;
  --cultured: #7F7F81;
}
[data-theme=dark] body {
  background-color: #1B1E1F;
}

body {
  scrollbar-width: thin;
  scrollbar-color: #454247 #272329;
  /* Track */
  /* Handle */
}
body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
body::-webkit-scrollbar-track {
  border: var(--metalSaurus) 2px solid;
  background-color: var(--metalSaurus);
}
body::-webkit-scrollbar-thumb {
  background: var(--main-color);
}

@-webkit-keyframes pulse-animation {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

@keyframes pulse-animation {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
@-webkit-keyframes grow {
  0% {
    display: none;
    opacity: 0;
  }
  50% {
    display: block;
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes grow {
  0% {
    display: none;
    opacity: 0;
  }
  50% {
    display: block;
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    opacity: 0;
  }
}
@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    opacity: 0;
  }
}
.swiper-pagination {
  position: static;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--lightSilver);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--outerSpace);
  width: 26px;
  border-radius: 4px;
}

div[class^=swiper-button] {
  font-size: 16px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  margin: 0;
  background-color: #fff;
  color: var(--black);
}
div[class^=swiper-button]::after {
  display: none;
}
div[class^=swiper-button].swiper-button-disabled {
  display: none;
}
[data-theme=dark] div[class^=swiper-button] {
  background-color: #707070;
  border: 1px solid #707070;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  color: #45424b;
}

.parsley-error {
  border-color: var(--danger);
}
.parsley-error::-webkit-input-placeholder {
  color: var(--danger);
}
.parsley-error::-moz-placeholder {
  color: var(--danger);
}
.parsley-error:-ms-input-placeholder {
  color: var(--danger);
}
.parsley-error::-ms-input-placeholder {
  color: var(--danger);
}
.parsley-error::placeholder {
  color: var(--danger);
}

.parsley-required,
.parsley-equalto {
  color: var(--danger);
  font-size: 0.75rem;
}

.parsley-errors-list {
  color: var(--danger);
  font-size: 0.75rem;
}

.fancybox__backdrop::after {
  content: "";
  position: absolute;
  width: 10%;
  height: 10%;
  -webkit-filter: blur(2px);
          filter: blur(2px);
  left: 50%;
  top: 50%;
  -webkit-transform: scale(11);
          transform: scale(11);
  opacity: 0.3;
  background-image: var(--bg-image);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.fancybox__toolbar {
  padding: 16px;
}

.fancybox__toolbar,
.fancybox__nav {
  --f-button-border-radius: 50%;
  --f-button-bg: rgb(91 78 76 / 64%);
  --f-button-hover-bg: rgb(91 78 76 / 74%);
  --f-button-active-bg: rgb(91 78 76 / 84%);
}

.fancybox__nav {
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
}

.fancybox__thumbs.is-classic {
  --f-thumb-width: 48px;
  --f-thumb-height: 48px;
  --f-thumb-gap: 16px;
  --f-thumb-border-radius: 6px;
  --f-thumb-outline: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  overflow-wrap: break-word;
  color: var(--raisinBlack);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: var(--raisinBlack);
}

.mark, mark {
  background-color: rgba(244, 127, 55, 0.5);
}

@font-face {
  font-family: AlWatanLight;
  src: url("../fonts/Al Watan Light.otf");
}
@font-face {
  font-family: AlWatanBold;
  src: url("../fonts/Al Watan Bold.otf");
}
.section-title-More {
  font-size: 1.125rem;
  font-family: AlWatanBold;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

body {
  font-family: AlWatanLight, var(--bs-body-font-family);
  color: var(--richBlack);
  direction: rtl;
  text-align: right;
  background-color: var(--white);
  line-height: 1.25rem;
}

::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: var(--main-color);
}

::selection {
  color: #fff;
  background: var(--main-color);
}

.mt-n1 {
  margin-top: -0.25rem;
}

.mt-n2 {
  margin-top: -5rem;
}

.mt-n3 {
  margin-top: -1rem;
}

.mt-n4 {
  margin-top: -1.5rem;
}

.mt-n5 {
  margin-top: -3rem;
}

[dir=ltr] .to-be-rotated-dir {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.border-row > div {
  position: relative;
}
.border-row > div::after {
  content: "";
  background-color: var(--brightGray);
  left: 0;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -10px;
}
@media only screen and (min-width: 992px) {
  .border-row > div::after {
    height: 100%;
    width: 1px;
    top: 1px;
    bottom: 0;
  }
}
.border-row > div:last-child::after {
  display: none;
}

.gx-20px {
  --bs-gutter-x: 20px;
}

.mt-20px {
  margin-top: 1.25rem !important;
}

.mb-20px {
  margin-bottom: 1.25rem !important;
}

.loadmore-wrapper {
  position: relative;
}
.loadmore-wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 4.0625rem;
  background-image: url(../images/!important/transparentlayer.png);
  background-size: 100% 100%;
  bottom: 100%;
}

.main-title {
  font-size: 2.5rem;
  font-family: AlWatanBold;
  line-height: 3rem;
  color: var(--richBlack);
}

.form-title {
  font-size: 2rem;
  font-family: AlWatanBold;
  line-height: 2.375rem;
  color: var(--richBlack);
}

.small-title {
  font-size: 1.125rem;
  font-family: AlWatanBold;
  line-height: 1.375rem;
  color: var(--richBlack);
}

.section-title {
  font-size: 1.5rem;
  font-family: AlWatanBold;
  border-top: 1px solid var(--outerSpace);
  position: relative;
  margin-bottom: 20px;
  margin-top: 5px;
  padding-top: 7px;
  color: var(--black);
}
.section-title h2 {
  display: inline;
  position: relative;
}
.section-title h2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  top: -8px;
  right: 0;
}
.section-title.primary h2::before {
  background-color: var(--main-color);
}
.section-title.sport h2::before {
  background-color: #5c7f2d;
}
.section-title.steelTeal h2::before {
  background-color: var(--steelTeal);
}
.section-title.flirt h2::before {
  background-color: var(--flirt);
}
.section-title.seaBlue h2::before {
  background-color: var(--seaBlue);
}
.section-title.metalSaurus h2::before {
  background-color: var(--metalSaurus);
}
.section-title.persianGreen h2::before {
  background-color: var(--persianGreen);
}
.section-title.chineseGold h2::before {
  background-color: var(--chineseGold);
}

.text-bg-primary {
  background-color: var(--main-color) !important;
}

.font-b {
  font-family: AlWatanBold;
}

.fs-7 {
  font-size: 0.8rem;
}

.btn {
  --bs-btn-padding-x: 1rem;
  --bs-btn-padding-y: 0.4rem;
  --bs-btn-font-size: 0.9rem;
  --bs-btn-border-radius: 5px;
  --bs-btn-line-height: 1.5;
}
.btn i {
  font-size: 0.8rem;
}
.btn:hover {
  text-decoration: none;
}

.btn-primary {
  --bs-btn-bg: var(--main-color);
  --bs-btn-border-color: var(--main-color);
  --bs-btn-color: var(--white);
  --bs-btn-hover-bg: var(--vividVermilion);
  --bs-btn-hover-border-color: var(--vividVermilion);
  --bs-btn-hover-color: var(--white);
  --bs-btn-active-bg: var(--vividVermilion);
  --bs-btn-active-border-color: var(--vividVermilion);
  --bs-btn-disabled-color: #A1A2A8;
  --bs-btn-disabled-bg: #E7E8EA;
  --bs-btn-disabled-border-color: #E7E8EA;
}

.btn-outline-primary {
  --bs-btn-color: var(--main-color);
  --bs-btn-border-color: var(--main-color);
  --bs-btn-hover-bg: var(--main-color);
  --bs-btn-hover-border-color: var(--main-color);
  --bs-btn-active-bg: var(--main-color);
  --bs-btn-active-border-color: var(--main-color);
  --bs-btn-disabled-color: var(--main-color);
  --bs-btn-disabled-border-color: var(--main-color);
}

.share-comment {
  background-color: var(--brightGray);
  border-radius: 25px;
  display: block;
  padding: 10px 25px;
  font-size: 0.9375rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.share-comment:hover {
  background-color: var(--lightSilver);
  text-decoration: none;
}

.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 1%;
  z-index: 20;
  background-color: var(--white);
  border: 2px solid var(--main-color);
  border-radius: 50%;
  height: 45px;
  width: 45px;
  color: var(--main-color);
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  visibility: hidden;
  font-size: 14px;
}
@media only screen and (min-width: 992px) {
  .back-to-top {
    right: 15px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: -20px;
    position: absolute;
  }
}
.back-to-top:hover {
  background-color: var(--main-color);
  color: var(--white);
  border-color: var(--white);
}

@-webkit-keyframes movebtn {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  75% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes movebtn {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  75% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.form-control {
  padding: 0.68rem 0.75rem;
  font-size: 0.875rem;
  color: var(--metalSaurus);
}
.form-control:focus {
  background-color: #e8f0fe;
  border-color: #7199eb;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-floating {
  color: var(--metalSaurus);
}
.form-floating label {
  color: var(--metalSaurus);
}

.password-field {
  position: relative;
}
.password-field .pw-click-area {
  position: absolute;
  left: 15px;
  top: 10px;
  cursor: pointer;
}
.password-field .pw-click-area:hover {
  color: #7199eb;
}

.link-more {
  font-size: 1rem;
  color: var(--black);
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-family: AlWatanBold;
}
.link-more i {
  font-size: 12px;
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.link-more:hover {
  color: var(--seaBlack);
}

.rate-item {
  color: #a5a5a5;
  font-size: 14px;
}
.rate-item.active {
  color: var(--flirt);
}

.rate-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.rate-wrapper .rating-title {
  font-size: 14px;
  font-family: AlWatanBold;
  -webkit-margin-end: 8px;
          margin-inline-end: 8px;
}
.rate-wrapper .rating-val {
  font-size: 14px;
  font-family: AlWatanBold;
  -webkit-margin-start: 8px;
          margin-inline-start: 8px;
}

hr {
  border-color: var(--brightGray);
  opacity: 1;
}
hr.outerSpace {
  border-color: var(--outerSpace);
}

@-webkit-keyframes spinner_animation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner_animation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.loader {
  display: inline-block;
  overflow: hidden;
  background: #fff;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
}
[data-theme=dark] .loader {
  background: #252527;
}

.loader__item {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transform: translateZ(0) scale(1);
          transform: translateZ(0) scale(1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0; /* see note above */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
[data-theme=dark] .loader__item img {
  -webkit-filter: brightness(20);
          filter: brightness(20);
}

.loader__item div {
  position: absolute;
  -webkit-animation: spinner_animation 1s linear infinite;
          animation: spinner_animation 1s linear infinite;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 0 0 var(--main-color);
          box-shadow: 0 4px 0 0 var(--main-color);
  -webkit-transform-origin: 125px 125px;
          transform-origin: 125px 125px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.tag {
  background-color: var(--antiFlash);
  border-radius: 18px;
  font-size: 0.875rem;
  font-family: AlWatanBold;
  padding: 8px 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tag::after {
  display: inline-block;
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  -webkit-margin-start: 8px;
          margin-inline-start: 8px;
  font-size: 0.75rem;
}
.tag:hover {
  background-color: aliceblue;
  text-decoration: none;
}

.badge {
  --bs-badge-padding-x: 0.8em;
  --bs-badge-padding-y: 0.5em;
  --bs-badge-font-size: 0.8rem;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: 0.2rem;
}
.badge.fann {
  background-color: #990066;
}
.badge-light {
  background-color: #f0f1f4;
  font-size: 13px;
  font-family: AlWatanBold;
  color: #000;
  padding: 8px 15px;
}
.badge-light a {
  color: #000;
}
.badge-primary {
  background-color: var(--main-color);
}

.pagination {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination .page-item .page-link {
  all: unset;
  font-size: 0.875rem;
  width: 1.5625rem;
  height: 1.5625rem;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  margin: 0 2px;
}
@media only screen and (min-width: 768px) {
  .pagination .page-item .page-link {
    width: 2rem;
    height: 2rem;
  }
}
.pagination .page-item.active .page-link {
  background-color: var(--main-color);
  color: var(--white);
}
.pagination .page-item:hover .page-link {
  background-color: var(--main-color);
  color: var(--white);
}

.page-link.previous, .page-link.next {
  font-size: 1.25rem;
  font-family: AlWatanBold;
}
.page-link.previous i, .page-link.next i {
  font-size: 0.875rem;
}
.page-link.disabled {
  color: #d4d5d8;
  pointer-events: none;
}

.alert-dark {
  background-color: var(--darkCharcoal);
  border: none;
}
.alert-dark button {
  --bs-btn-close-bg: url("../images/x.svg");
  --bs-btn-close-opacity: 1;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.alert-dark button:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.alert-dark .alert-main-title {
  color: #fff;
  font-size: 1.0625rem;
  line-height: 1.625rem;
  font-family: AlWatanBold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.alert-dark .alert-main-title::after {
  content: "";
  background-color: #d4d5d8;
  width: 1px;
  height: 24px;
  display: inline-block;
  font-family: AlWatanLight;
  -webkit-margin-start: 1.5625rem;
          margin-inline-start: 1.5625rem;
}
.alert-dark .alert-title {
  color: #fe3b2f;
  font-size: 1.0625rem;
  line-height: 1.625rem;
  font-family: AlWatanBold;
}
@media only screen and (min-width: 992px) {
  .alert-dark .alert-title {
    color: #fff;
    background-color: #fe3b2f;
    font-size: 0.875rem;
    line-height: 1.375rem;
    border-radius: 2px;
    padding: 0px 7.8px;
  }
}
.alert-dark p {
  font-size: 1.0625rem;
  line-height: 1.625rem;
  color: var(--white);
  font-family: AlWatanBold;
  margin-top: 15px;
}
@media only screen and (min-width: 992px) {
  .alert-dark p {
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-family: AlWatanLight;
  }
}

.overlay-details-card {
  position: relative;
}
.overlay-details-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.overlay-details-card .card-content {
  padding: 15px;
  position: absolute;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.84357493)), color-stop(45%, rgba(0, 0, 0, 0.4)), color-stop(60%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.84357493) 0%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 60%);
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.overlay-details-card .card-content-title {
  font-family: AlWatanBold;
  font-size: 1.375rem;
  line-height: 2.0625rem;
  color: var(--white);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.overlay-details-card .card-content-text {
  color: var(--white);
  font-size: 0.875rem;
}
.overlay-details-card.info-graph .card-content-title {
  font-size: 1.125rem;
  line-height: 1.5rem;
}

.mini-news-card img {
  -o-object-fit: cover;
     object-fit: cover;
}
.mini-news-card a {
  display: inline-block;
}
@media only screen and (min-width: 992px) {
  .mini-news-card a {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1400px) {
  .mini-news-card a {
    font-size: 20px;
  }
}
.mini-news-card .card-image {
  position: relative;
}
.mini-news-card .card-category {
  color: var(--metalSaurus);
  font-family: AlWatanBold;
  font-size: 0.875rem;
  line-height: 1.0625rem;
}
.mini-news-card .card-text {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  line-height: 1.5rem;
  font-size: 1rem;
  color: var(--richBlack);
  margin-top: 11px;
  font-family: AlWatanBold;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.mini-news-card .card-text.two-lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.mini-news-card .card-text.three-lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.mini-news-card .article-image {
  position: relative;
}
.mini-news-card .article-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.mini-news-card .article-image.video::before {
  content: "";
  position: absolute;
  background: url(../images/video-icon.svg) no-repeat center center rgba(0, 0, 0, 0.2);
  left: 0;
  width: 100%;
  bottom: 0;
  height: 100%;
  top: 0;
  background-size: 1.875rem;
}
@media only screen and (min-width: 992px) {
  .mini-news-card .article-image.video::before {
    background-size: 2.8125rem;
  }
}
.mini-news-card.no-title .card-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  margin-top: 0;
}

.large-news-card-title {
  font-size: 1.375rem;
  font-family: AlWatanBold;
  line-height: 2.0625rem;
  color: var(--richBlack);
  margin-bottom: 0.625rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.large-news-card-text {
  font-size: 0.875rem;
  color: var(--richBlack);
}
.large-news-card-link {
  font-size: 1rem;
  color: var(--richBlack);
  font-family: AlWatanBold;
  line-height: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #e7e8ea;
  padding-top: 0.625rem;
}

.fav-card {
  padding: 6px 0 14.2px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fav-card img {
  width: 110px;
}
.fav-card .card-category {
  font-family: AlWatanBold;
  font-size: 14px;
  line-height: 17px;
  color: var(--metalSaurus);
}
.fav-card .card-text {
  font-size: 1rem;
  line-height: 1.25rem;
  font-family: AlWatanBold;
  margin-top: 3px;
}
@media only screen and (min-width: 1200px) {
  .fav-card .card-text {
    -webkit-padding-end: 5px;
            padding-inline-end: 5px;
  }
}

.mini-cover-news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mini-cover-news-card img {
  width: 105px;
  height: 105px;
}
.mini-cover-news-card .card-category {
  font-family: AlWatanBold;
  font-size: 14px;
  line-height: 17px;
  color: var(--metalSaurus);
}
.mini-cover-news-card .card-text {
  font-size: 1rem;
  line-height: 1.375rem;
  font-family: AlWatanBold;
  margin-top: 5px;
}

.extra-news-overlay {
  position: relative;
}
.extra-news-overlay img {
  display: block;
}
.extra-news-overlay::after {
  content: " +" attr(data-extra) "";
  background-color: rgba(0, 0, 0, 0.39);
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--white);
  direction: ltr;
  font-family: AlWatanBold;
  font-size: 1.75rem;
}

.mini-video-card {
  position: relative;
}
.mini-video-card > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mini-video-card::before {
  content: "";
  position: absolute;
  background: url(../images/video-icon.svg) no-repeat center center;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 100%;
  top: 0;
  z-index: 2;
  zoom: 0.7;
}
@media only screen and (min-width: 992px) {
  .mini-video-card::before {
    zoom: 1;
  }
}
.mini-video-card a {
  min-height: 100px;
  position: absolute;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.84357493)), color-stop(20%, rgba(0, 0, 0, 0.4402135854)), color-stop(40%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.84357493) 0%, rgba(0, 0, 0, 0.4402135854) 20%, rgba(0, 0, 0, 0) 40%);
  top: 0;
  height: 100%;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--white);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 15px 15px 19px;
  font-family: AlWatanBold;
  line-height: 1.375rem;
  font-size: 0.875rem;
  z-index: 3;
}
@media only screen and (min-width: 992px) {
  .mini-video-card a {
    font-size: 1rem;
  }
}
.mini-video-card a span {
  height: 4.125rem;
  line-height: 1.375rem;
  overflow: hidden;
}

.rating-card .card-img {
  height: 165px;
  width: 110px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.rating-card .card-title {
  font-family: AlWatanBold;
  font-size: 16px;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.rating-card .card-text {
  margin-top: 5px;
  font-family: AlWatanLight;
  font-size: 14px;
  color: var(--outerSpace);
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.rating-card .card-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rating-card .card-rating-val {
  font-size: 14px;
  font-family: AlWatanBold;
  -webkit-margin-start: 8px;
          margin-inline-start: 8px;
}

.wide-card .card-signature {
  color: var(--metalSaurus);
  font-family: AlWatanBold;
  font-size: 0.875rem;
}
.wide-card .card-title {
  font-size: 0.9375rem;
  font-family: AlWatanBold;
  color: var(--richBlack);
  line-height: 1.6875rem;
}
@media only screen and (min-width: 768px) {
  .wide-card .card-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 1.125rem;
  }
}
.wide-card .card-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  font-size: 0.875rem;
  font-family: AlWatanLight;
  color: var(--outerSpace);
  line-height: 1.375rem;
  margin-top: 8px;
  display: none;
}
@media only screen and (min-width: 768px) {
  .wide-card .card-text {
    display: block;
  }
}
.wide-card .card-img-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.wide-card .card-img-link img {
  max-width: 100%;
  height: auto;
}

.suggest-card {
  border-radius: 3px;
  padding: 5px 10px;
  background-color: var(--antiFlash);
}
.suggest-card .card-title {
  font-size: 0.9375rem;
  font-family: AlWatanBold;
  color: var(--richBlack);
  line-height: 1.6875rem;
}
@media only screen and (min-width: 768px) {
  .suggest-card .card-title {
    font-size: 1rem;
  }
}

.alwanSLiderSide {
  margin: 25px 0;
}
.alwanSLiderSide .alwanLeftSide .mini-cover-news-card img {
  width: 100%;
  height: auto;
}

.twoSliderSide {
  margin: 25px 0;
}
.twoSliderSide .twoSlidesWidjet .mini-cover-news-card {
  padding: 0 1rem;
  border-left: 1px solid #E7E8EA;
}
.twoSliderSide .twoSlidesWidjet .mini-cover-news-card img {
  width: 100%;
  height: auto;
}
.twoSliderSide .twoSlidesWidjet .swiper-pagination {
  margin-top: 10px;
}

.tiny-card-category {
  color: var(--metalSaurus);
  font-family: AlWatanBold;
  font-size: 0.875rem;
  line-height: 1.0625rem;
}
.tiny-card-text {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  line-height: 1.40625rem;
  font-size: 0.9375rem;
  color: var(--richBlack);
  margin-top: 8px;
  font-family: AlWatanBold;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.tiny-card-text.two-lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.tiny-card-text.three-lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media only screen and (min-width: 992px) {
  .tiny-card-text {
    margin-top: 11px;
    line-height: 1.5rem;
    font-size: 1rem;
  }
}
.tiny-card-image {
  position: relative;
}
.tiny-card-image img {
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  height: 70px;
  width: 120px;
}
@media only screen and (min-width: 992px) {
  .tiny-card-image img {
    height: 100px;
    width: 179px;
  }
}
.tiny-card a {
  display: inline-block;
}
@media only screen and (min-width: 992px) {
  .tiny-card a {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1400px) {
  .tiny-card a {
    font-size: 20px;
  }
}

.news-ver-card a {
  display: inline-block;
}
@media only screen and (min-width: 992px) {
  .news-ver-card a {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1400px) {
  .news-ver-card a {
    font-size: 20px;
  }
}
.news-ver-card .card-category {
  color: var(--metalSaurus);
  font-family: AlWatanBold;
  font-size: 0.875rem;
  line-height: 1.0625rem;
}
.news-ver-card .card-text {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: var(--richBlack);
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: AlWatanBold;
}
.news-ver-card .card-text.two-lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-ver-card .card-text.three-lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-ver-card .card-date {
  font-size: 0.875rem;
  line-height: 1.0625rem;
  font-family: AlWatanLight;
  margin-top: 0.75rem;
}
.news-ver-card .article-image {
  position: relative;
  height: 150px;
}
.news-ver-card .article-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.news-ver-card .article-image.video::before {
  content: "";
  position: absolute;
  background: url(../images/video-icon.svg) no-repeat center center rgba(0, 0, 0, 0.2);
  left: 0;
  width: 100%;
  bottom: 0;
  height: 100%;
  top: 0;
  background-size: 1.875rem;
}
@media only screen and (min-width: 992px) {
  .news-ver-card .article-image.video::before {
    background-size: 2.8125rem;
  }
}
.news-ver-card.no-title .card-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  margin-top: 0;
}

.comics-card {
  position: relative;
}
.comics-card > img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
}
.comics-card::before {
  content: "";
  position: absolute;
  background: url(../images/!important/gallary-layers.svg) no-repeat center;
  right: 15px;
  top: 10px;
  z-index: 2;
  width: 24px;
  height: 24px;
}
.comics-card-content {
  cursor: pointer;
  min-height: 100px;
  position: absolute;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.84357493)), color-stop(20%, rgba(0, 0, 0, 0.4402135854)), color-stop(40%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.84357493) 0%, rgba(0, 0, 0, 0.4402135854) 20%, rgba(0, 0, 0, 0) 40%);
  top: 0;
  height: 100%;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--white);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 15px 15px 19px;
  font-family: AlWatanBold;
  line-height: 1.375rem;
  font-size: 0.875rem;
  z-index: 3;
}
@media only screen and (min-width: 992px) {
  .comics-card-content {
    font-size: 1rem;
  }
}
.comics-card-content .card-title {
  height: 4.125rem;
  line-height: 1.375rem;
  overflow: hidden;
}
.comics-card-content .card-date {
  margin-top: 12px;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  font-family: AlWatanLight;
}

.storyVideos .comics-card::before {
  background: url(../images/videostory.png) no-repeat center;
}

#autoComplete-box {
  width: 100%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 992px) {
  #autoComplete-box {
    padding: 5px 0;
    display: unset;
    position: absolute;
    left: 35%;
    bottom: -2px;
    width: 60%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    direction: rtl;
    text-align: right;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  body.search-open #autoComplete-box {
    left: 20%;
    opacity: 1;
    visibility: visible;
    background: #fff;
    top: 4px;
    border: 2px solid #f26e2e;
    bottom: auto;
    border-radius: 10px;
    padding: 0.3rem 1rem;
    max-width: 370px;
  }
  body.search-open #autoComplete-box input.autoComplete {
    width: calc(100% - 46px);
    border: none;
    outline: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  body.search-open #autoComplete-box {
    left: 25%;
  }
}

.autoComplete_wrapper {
  width: calc(100% - 70px);
  z-index: 2;
}
@media only screen and (min-width: 992px) {
  .autoComplete_wrapper {
    padding: 5px 0;
    width: calc(100% - 100px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    direction: rtl;
    text-align: right;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  body.search-open .autoComplete_wrapper {
    left: 50%;
    opacity: 1;
    visibility: visible;
  }
}
.autoComplete_wrapper > input {
  width: 100%;
  height: 2.5rem;
  border-color: var(--lightSilver);
  border-radius: 4px;
  background-position: right 1rem top 0.5rem;
  padding: 0 3.2rem 0 2rem;
  color: var(--metalSaurus);
  background-image: url("../.~/assets/images/search.svg");
}
.autoComplete_wrapper > input:hover {
  color: var(--metalSaurus);
}
.autoComplete_wrapper > input:hover::-webkit-input-placeholder {
  color: var(--metalSaurus);
}
.autoComplete_wrapper > input:hover::-moz-placeholder {
  color: var(--metalSaurus);
}
.autoComplete_wrapper > input:hover:-ms-input-placeholder {
  color: var(--metalSaurus);
}
.autoComplete_wrapper > input:hover::-ms-input-placeholder {
  color: var(--metalSaurus);
}
.autoComplete_wrapper > input:hover::placeholder {
  color: var(--metalSaurus);
}
.autoComplete_wrapper > input:focus {
  color: var(--richBlack);
  border-color: var(--lightSilver);
  background-color: var(--brightGray);
}
.autoComplete_wrapper > input:focus::-webkit-input-placeholder {
  color: var(--richBlack);
}
.autoComplete_wrapper > input:focus::-moz-placeholder {
  color: var(--richBlack);
}
.autoComplete_wrapper > input:focus:-ms-input-placeholder {
  color: var(--richBlack);
}
.autoComplete_wrapper > input:focus::-ms-input-placeholder {
  color: var(--richBlack);
}
.autoComplete_wrapper > input:focus::placeholder {
  color: var(--richBlack);
}
.autoComplete_wrapper > input::-webkit-input-placeholder {
  color: var(--metalSaurus);
}
.autoComplete_wrapper > input::-moz-placeholder {
  color: var(--metalSaurus);
}
.autoComplete_wrapper > input:-ms-input-placeholder {
  color: var(--metalSaurus);
}
.autoComplete_wrapper > input::-ms-input-placeholder {
  color: var(--metalSaurus);
}
.autoComplete_wrapper > input::placeholder {
  color: var(--metalSaurus);
}
.autoComplete_wrapper > input::-webkit-search-cancel-button {
  position: relative;
  right: 20px;
  height: 22px;
  width: 22px;
  border-radius: 10px;
  -webkit-appearance: none;
  background-image: url("../.~/assets/images/x-close.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
body[dir=ltr] {
  padding: 0 2rem 0 3.2rem;
}

.autoComplete_wrapper #SiteSearchBtn {
  margin-top: -5px;
}
.autoComplete_wrapper > ul {
  margin: 0;
  direction: rtl;
  text-align: right;
  overflow: auto;
}
.autoComplete_wrapper > ul > li {
  direction: rtl;
  text-align: right;
}
.autoComplete_wrapper > ul > li::before {
  position: relative;
  display: inline-block;
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--metalSaurus-85);
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  top: 2px;
}
.autoComplete_wrapper > ul > li:hover {
  background-color: var(--lightSilver);
}
.autoComplete_wrapper > ul > li[aria-selected=true] {
  background-color: var(--metalSaurus);
}
.autoComplete_wrapper > ul > li[aria-selected=true]::before {
  color: var(--white);
}

.search i:last-child {
  display: none;
}
.search.open i:first-child {
  display: none;
}
.search.open i:last-child {
  display: inline-block;
}

.subscription-box {
  border-top: 1px solid var(--black);
  text-align: center;
  margin-top: 30px;
}
.subscription-box-title {
  font-family: AlWatanBold;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.subscription-box .btn {
  --bs-btn-padding-x: 1.2rem;
  --bs-btn-padding-y: 0.68rem;
}

.social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 12;
}
.social-media .social-item a {
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 0.625rem;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
}
.social-media .social-item a i,
.social-media .social-item a svg {
  font-size: 1rem;
  position: relative;
  z-index: 5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
}
.social-media .social-item a:hover {
  color: var(--main-color);
}
.social-media .social-item a:hover i,
.social-media .social-item a:hover svg {
  display: block;
}
.social-media .social-item:last-child a {
  margin-left: 0;
}

.register-box {
  padding: 0 20px;
  text-align: center;
}
.register-box p {
  font-family: AlWatanBold;
  font-size: 0.9375rem;
}

.opnion-book-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 5px;
  font-size: 1.125rem;
  font-family: AlWatanBold;
  color: var(--richBlack);
  height: 100%;
  -webkit-padding-end: 15px;
          padding-inline-end: 15px;
  line-height: 1.5rem;
}
.opnion-book-box p,
.opnion-book-box a {
  color: var(--richBlack);
}
@media only screen and (min-width: 1200px) {
  .opnion-book-box {
    font-size: 1.125rem;
  }
}
.opnion-book-box-quote {
  position: relative;
}
.opnion-book-box-quote::before {
  content: "";
  background: url(../../../assets/images/watan-opnion/Quote.png) center no-repeat;
  display: block;
  width: 30px;
  height: 17px;
  margin-bottom: 8px;
}
body[dir=ltr] .opnion-book-box-quote::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.opnion-book-box-quote-signature {
  color: var(--metalSaurus);
  font-size: 0.875rem;
  margin-top: 7px;
  line-height: 1.1875rem;
}
@media only screen and (min-width: 1200px) {
  .opnion-book-box-quote-signature {
    font-size: 1rem;
  }
}
.opnion-book-box-image {
  border: 1px solid var(--metalSaurus-30);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  overflow: hidden;
}
.opnion-book-box-image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 55px;
  height: 55px;
}
@media only screen and (min-width: 992px) {
  .opnion-book-box-image {
    width: 100px;
    height: 100px;
  }
  .opnion-book-box-image img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100px;
    height: 100px;
  }
}

.opinion-book .container {
  position: relative;
}
.opinion-book .swiper-button-next {
  left: 2px;
  right: inherit;
}
.opinion-book .swiper-button-prev {
  right: 2px;
  left: inherit;
}
.opinion-book div[class^=swiper-button] {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.opinion-book-swiper .swiper-slide {
  height: auto;
  position: relative;
}
.opinion-book-swiper .swiper-slide .opnion-book-box::after {
  content: "";
  background-color: var(--brightGray);
  left: 0;
  position: absolute;
  height: 100%;
  width: 1px;
  top: 1px;
  bottom: 0;
}
.opinion-book-swiper .swiper-slide:last-child .opnion-book-box::after {
  display: none;
}

.media-links-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.media-links-boxes li {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}
.media-links-boxes li:last-child {
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}
.media-links-boxes a {
  width: 2.8125rem;
  height: 2.8125rem;
  border-radius: 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--silverSand);
  text-decoration: none;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  border: 1px solid;
}
.media-links-boxes a:hover {
  border-radius: 50%;
}

.selection-card {
  padding: 0.9375rem;
  border-radius: 3px;
  border: 1px solid var(--lightSilver);
}
.selection-card img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 4.375rem;
  height: 4.375rem;
}
.selection-card-title {
  font-family: AlWatanBold;
  font-size: 1.25rem;
  color: var(--raisinBlack);
  -webkit-margin-start: 0.9375rem;
          margin-inline-start: 0.9375rem;
}
.selection-card input {
  outline: none;
  cursor: pointer;
}
.selection-card input::after {
  content: "";
  background: url("../images/plus-circle.svg") #fff;
  width: 1.875rem;
  height: 1.875rem;
  display: block;
  left: 0.875rem;
  top: -6px;
  position: relative;
}
.selection-card input:checked::after {
  border-radius: 50%;
  background-image: none;
  background-color: var(--main-color);
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.most-read-list {
  counter-reset: section;
}
.most-read-list-item {
  border-bottom: 1px solid var(--brightGray);
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-family: AlWatanLight;
  line-height: 24px;
}
.most-read-list-item > .row {
  --bs-gutter-x: 0.5rem;
}
.most-read-list-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.most-read-list-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 24px;
}
.most-read-list-item-content::before {
  counter-increment: section;
  content: counter(section);
  color: var(--main-color);
  font-size: 1.5rem;
  -webkit-margin-end: 6px;
          margin-inline-end: 6px;
  width: 25px;
  display: inline-block;
}
.most-read-list-item-image {
  width: 65px;
  height: 65px;
}
.most-read-list-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.most-read-list-item.hero {
  font-size: 1rem;
  font-family: AlWatanBold;
}
.most-read-list-item.hero .most-read-list-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.most-read-list-item.hero .most-read-list-item-content::before {
  font-size: 2.1875rem;
}
.most-read-list-item.down, .most-read-list-item.rise {
  position: relative;
}
.most-read-list-item.down::before, .most-read-list-item.rise::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 27px;
  right: -6px;
}
.most-read-list-item.down::before {
  background: url("../images/down.svg") no-repeat;
}
.most-read-list-item.rise::before {
  background: url("../images/up.svg") no-repeat;
}

.most-read-list-with-images-item, .most-read-list-with-images-item-large {
  border-bottom: 1px solid var(--brightGray);
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-family: AlWatanLight;
  line-height: 24px;
}
.most-read-list-with-images-item > .row, .most-read-list-with-images-item-large > .row {
  --bs-gutter-x: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.most-read-list-with-images-item:last-child, .most-read-list-with-images-item-large:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.most-read-list-with-images-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 24px;
  font-family: AlWatanBold;
}
.most-read-list-with-images-item-content-title {
  font-size: 1rem;
  line-height: 1.1875rem;
}
.most-read-list-with-images-item-content-signature {
  font-size: 0.875rem;
  line-height: 1.0625rem;
  color: var(--metalSaurus);
  position: relative;
  margin-top: 4px;
}
.most-read-list-with-images-item-content-signature::before {
  content: "";
  background-image: url("../images/!important/qoutes.svg");
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  background-repeat: no-repeat;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.most-read-list-with-images-item-image {
  width: 62px;
  height: 62px;
}
.most-read-list-with-images-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.most-read-list-with-images-item.down .most-read-list-with-images-item-image, .down.most-read-list-with-images-item-large .most-read-list-with-images-item-image, .most-read-list-with-images-item.rise .most-read-list-with-images-item-image, .rise.most-read-list-with-images-item-large .most-read-list-with-images-item-image {
  position: relative;
}
.most-read-list-with-images-item.down .most-read-list-with-images-item-image::before, .down.most-read-list-with-images-item-large .most-read-list-with-images-item-image::before, .most-read-list-with-images-item.rise .most-read-list-with-images-item-image::before, .rise.most-read-list-with-images-item-large .most-read-list-with-images-item-image::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: 10px;
  bottom: -17px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.most-read-list-with-images-item.down .most-read-list-with-images-item-image::before, .down.most-read-list-with-images-item-large .most-read-list-with-images-item-image::before {
  background: url("../images/down.svg") no-repeat;
}
.most-read-list-with-images-item.rise .most-read-list-with-images-item-image::before, .rise.most-read-list-with-images-item-large .most-read-list-with-images-item-image::before {
  background: url("../images/up.svg") no-repeat;
}

.most-read-list-with-images-item-large .most-read-list-with-images-item-image {
  width: 95px;
  height: 95px;
  border: 1px solid var(--metalSaurus-30);
  border-radius: 50%;
}
.most-read-list-with-images-item-large .most-read-list-with-images-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.most-read-list-with-images-item-large .most-read-list-with-images-item-content-title {
  font-size: 1.125rem;
  line-height: 1.375rem;
  font-family: AlWatanBold;
}
.most-read-list-with-images-item-large .most-read-list-with-images-item-content-signature {
  font-size: 0.875rem;
  line-height: 0.875rem;
  font-family: AlWatanBold;
  margin-top: 0.8125rem;
}

.header {
  z-index: 12;
  background-color: #fff;
  position: sticky;
  top: 0;
}
@media only screen and (min-width: 992px) {
  .header {
    position: relative;
  }
}
.header .header-btn {
  color: #fff;
  padding: 2px 8px;
}
@media only screen and (min-width: 992px) {
  .header {
    border-bottom: 5px solid var(--main-color);
  }
}
.header.fann-section {
  border-bottom: 2px solid var(--flirt);
}
@media only screen and (min-width: 992px) {
  .header.fann-section {
    border-bottom: 5px solid var(--flirt);
  }
}
.header .container {
  position: relative;
}
.header-panal {
  background-color: #2c2c32;
  padding: 4px 0;
  height: 36px;
}
.header-panal .time-weather {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
}
.header-panal .time-weather .weather-deg {
  font-size: 1.0625rem;
  font-family: AlWatanBold;
  display: inline-block;
  direction: ltr;
}
.header-panal .time-weather .weather-deg .weather-style {
  display: inline-block;
}
.header .theme-controls {
  background-color: #464749;
  padding: 3px 12px;
  border-radius: 4px;
}
.header .theme-controls button {
  font-size: 1.125rem;
  all: unset;
  cursor: pointer;
  color: #707070;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.header .theme-controls button:first-child {
  -webkit-margin-end: 4px;
          margin-inline-end: 4px;
}
.header .theme-controls button:hover {
  color: #fff;
}
.header .theme-controls .active {
  color: #fff;
}
.header .navbar-toggler {
  color: black;
  font-size: 20px;
}
.header .navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.header .top-header-row {
  padding: 0.4375rem 0;
}
@media only screen and (min-width: 992px) {
  .header .top-header-row {
    padding: 0.5625rem 0;
  }
}
.header .top-header-row .logo-wrapper-image > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .top-header-row .logo-wrapper-image > a .main-img {
  width: 70px;
}
@media only screen and (min-width: 576px) {
  .header .top-header-row .logo-wrapper-image > a .main-img {
    width: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  .header .top-header-row .logo-wrapper-image > a .main-img {
    width: 140px;
    height: auto;
  }
}
@media only screen and (min-width: 1400px) {
  .header .top-header-row .logo-wrapper-image > a .main-img {
    width: 150px;
  }
}
.header .top-header-row .logo-wrapper-image > a .second-img {
  max-width: 45px;
  height: auto;
  margin-right: 6px;
}
@media only screen and (min-width: 576px) {
  .header .top-header-row .logo-wrapper-image > a .second-img {
    max-width: 50px;
  }
}
@media only screen and (min-width: 1400px) {
  .header .top-header-row .logo-wrapper-image > a .second-img {
    max-width: 70px;
  }
}
.header .top-header-row .logo-wrapper-manger {
  text-align: center;
  font-family: AlWatanBold;
}
.header .top-header-row .logo-wrapper-manger .title {
  font-size: 10px;
  color: #f37021;
  font-family: AlWatanLight;
}
@media only screen and (min-width: 768px) {
  .header .top-header-row .logo-wrapper-manger .title {
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  .header .top-header-row .logo-wrapper-manger .title {
    font-size: 0.8125rem;
  }
}
.header .top-header-row .logo-wrapper-manger .name {
  font-size: 0.8125rem;
  color: #0b0b12;
}
@media only screen and (min-width: 768px) {
  .header .top-header-row .logo-wrapper-manger .name {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 992px) {
  .header .top-header-row .logo-wrapper-manger .name {
    margin-top: 6px;
  }
}
.header .top-header-row .header-logos-item {
  max-width: 3.125rem;
  max-height: 3.125rem;
  width: 100%;
  height: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid;
  border-radius: 50%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.header .top-header-row .header-logos-item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.header .top-header-row .header-logos-item:hover img {
  -webkit-filter: contrast(0) brightness(10);
          filter: contrast(0) brightness(10);
}
.header .top-header-row .header-logos-item.sport {
  border-color: #00492b;
}
.header .top-header-row .header-logos-item.sport:hover {
  background-color: #00492b;
}
.header .top-header-row .header-logos-item.alwan {
  border-color: #f37021;
}
.header .top-header-row .header-logos-item.alwan:hover {
  background-color: #f37021;
}
.header .top-header-row .header-logos-item.honna {
  border-color: #b7569d;
}
.header .top-header-row .header-logos-item.honna:hover {
  background-color: #b7569d;
}
.header .top-header-row .main-adsense {
  padding: 10px 0;
  border: unset;
}
@media only screen and (min-width: 768px) {
  .header .top-header-row .main-adsense {
    border: 1px solid #000;
    margin: 12px 0;
    padding: 10px 10px;
  }
}
.header .pipe {
  background-color: #d4d5d8;
  width: 1px;
  height: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.main-header-menu {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .main-header-menu {
    border-top: 1px solid var(--brightGray);
  }
}
.main-header-menu .sticky-menu-img {
  display: none;
}
.main-header-menu .navbar {
  padding: 0;
}
.main-header-menu .navbar-nav {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.main-header-menu .navbar-nav .nav-item {
  margin-left: 0.9375rem;
}
@media only screen and (min-width: 1200px) {
  .main-header-menu .navbar-nav .nav-item {
    margin-left: 1.875rem;
  }
}
body.search-open .main-header-menu .navbar-nav .nav-item {
  opacity: 0.2;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.main-header-menu .navbar-nav .nav-item .nav-link {
  color: var(--metalSaurus-85);
  font-family: AlWatanBold;
  font-size: 1rem;
  height: 100%;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  padding: 0.8rem 1px 1.08125rem;
}
.main-header-menu .navbar-nav .nav-item .nav-link.active {
  color: #0b0b12;
}
.main-header-menu .navbar-nav .nav-item .nav-link:hover {
  color: #0b0b12;
  text-decoration: none;
}
.main-header-menu .navbar-nav .nav-item:last-child {
  margin-left: 0;
}
.main-header-menu .dropdown .dropdown-toggle::after {
  display: none;
}
.main-header-menu .dropdown .dropdown-menu {
  background-color: #fff;
  margin-top: 0;
  border: none;
  border-radius: 0 0 4px 4px;
  padding: 0;
}
[data-theme=dark] .main-header-menu .dropdown .dropdown-menu {
  background-color: var(--darkCharcoal);
}

.main-header-menu .dropdown .dropdown-menu li a {
  display: block;
  text-align: right;
  font-size: 0.875rem;
  color: var(--richBlack);
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid var(--lightSilver);
  position: relative;
}
.main-header-menu .dropdown .dropdown-menu li a:hover {
  background-color: #424242;
  color: #fff;
}
.main-header-menu .dropdown .dropdown-menu li a:focus, .main-header-menu .dropdown .dropdown-menu li a:active {
  color: #fff;
  background-color: #bed747;
}
.main-header-menu .search .search-icon {
  color: #0b0b12;
  font-size: 1.125rem;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .main-header-menu .main-menu {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 35px;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    display: block;
  }
  .main-header-menu .main-menu .mobile-menu-logo {
    max-width: 50%;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
    height: auto;
    margin-bottom: 25px;
    -webkit-padding-start: 15px;
            padding-inline-start: 15px;
  }
  .main-header-menu .main-menu .close-mobile-icon {
    all: unset;
    color: #fff;
    font-size: 30px;
    margin-left: auto;
    display: block;
    cursor: pointer;
  }
  .main-header-menu .main-menu .navbar-collapse {
    display: block;
    width: calc(100% - 60px);
    background: #fff;
    position: fixed;
    top: 40px;
    bottom: 0;
    overflow-y: auto;
    z-index: 21;
    right: 0;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    padding: 20px 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .main-header-menu .main-menu .navbar-collapse .navbar-nav,
  .main-header-menu .main-menu .navbar-collapse #autoComplete-box,
  .main-header-menu .main-menu .navbar-collapse .social-media {
    padding: 15px;
  }
  .main-header-menu .main-menu .navbar-collapse .dropdown-toggle::after {
    display: inline-block;
  }
  .main-header-menu .main-menu .navbar-toggler {
    all: unset;
    color: #fff;
    font-size: 1.875rem;
    position: fixed;
    left: 20px;
    top: 50px;
  }
  .main-header-menu .main-menu .social-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .main-header-menu .main-menu .social-media .social-item a {
    color: #0b0b12;
  }
  .main-header-menu .main-menu .social-media .social-item a i,
  .main-header-menu .main-menu .social-media .social-item a svg {
    font-size: 20px;
  }
  .main-header-menu .main-menu.show {
    opacity: 1;
    visibility: visible;
  }
  .main-header-menu .main-menu.show .navbar-collapse {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .main-header-menu .time-weather {
    color: #0b0b12;
  }
}
@media only screen and (min-width: 992px) {
  .main-header-menu.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: #fff;
    border-bottom: 5px solid var(--main-color);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main-header-menu.sticky .autoComplete_wrapper {
    bottom: 7px;
  }
  .main-header-menu.sticky .sticky-menu-img {
    display: block;
  }
  .main-header-menu.sticky .sticky-menu-img a {
    padding: 8px 0 12px;
    display: block;
  }
  .main-header-menu.sticky .more-dropdown .text {
    display: none;
  }
  .main-header-menu.sticky .navbar-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (min-width: 992px) and (min-width: 1200px) {
  .main-header-menu.sticky .navbar-nav .nav-item {
    margin-left: 1.625rem;
  }
  .main-header-menu.sticky .navbar-nav .nav-item:first-child {
    margin-left: 1.3125rem;
  }
}

.mega-dropdown-item {
  position: absolute;
  right: 0;
  left: 0;
  background-color: #464749;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0 15px 0;
  border: unset;
  margin-top: 0;
  border-radius: unset;
  border-top: 2px solid #666;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  visibility: hidden;
}
.mega-dropdown-item .mega-menu-card {
  margin-top: 24px;
}
.mega-dropdown-item .mega-menu-card img {
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 1400px) {
  .mega-dropdown-item .mega-menu-card img {
    height: 175px;
  }
}
.mega-dropdown-item .show-more {
  padding-bottom: 15px;
}
.mega-dropdown-item .show-more a {
  font-size: 1rem;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.mega-dropdown-item .show-more a:hover {
  color: #000;
}
.mega-dropdown-item.show {
  z-index: 3;
}

.mega-menu-card a {
  display: block;
}
.mega-menu-card a:hover .mega-menu-card-text {
  color: #fff;
}
.mega-menu-card-text {
  font-family: AlWatanBold;
  font-size: 16px;
  color: #aeb0b3;
  line-height: 26px;
  text-align: right;
  margin-top: 8px;
  max-height: 82px;
  min-height: 82px;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.aside-news-card img {
  -o-object-fit: cover;
     object-fit: cover;
}
.aside-news-card a {
  display: block;
  color: #000;
  font-size: 17.5px;
  font-family: AlWatanLight;
  font-weight: normal;
  line-height: 26px;
}
@media only screen and (min-width: 992px) {
  .aside-news-card a {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1400px) {
  .aside-news-card a {
    font-size: 20px;
  }
}
.aside-news-card a:hover {
  text-decoration: underline;
}
.aside-news-card .card-image {
  position: relative;
}
.aside-news-card .card-text {
  margin-top: 8px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  line-height: 30px;
  font-size: 1.1875rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media only screen and (min-width: 768px) {
  .aside-news-card .card-text {
    font-size: 1.0625rem;
    line-height: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .aside-news-card .card-text {
    font-size: 1.25rem;
    line-height: 30px;
  }
}
.aside-news-card .card-text.two-lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.useful-header-links {
  background-color: #fff;
  padding: 8px 22px;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #eeeeee;
}
@media only screen and (min-width: 992px) {
  .useful-header-links {
    display: none;
  }
}
.useful-header-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.useful-header-links ul li a {
  font-size: 0.9375rem;
  color: var(--metalSaurus);
  line-height: 1.4375rem;
}

.pipe {
  background-color: #d4d5d8;
  width: 1px;
  height: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

#openMenuSearchMobile {
  all: unset;
  font-size: 1.25rem;
  color: #0b0b12;
}

.footer {
  background-color: var(--darkCharcoal);
  z-index: 2;
}
.footer-main {
  padding: 1.125rem 0 1.875rem;
}
.footer-main-logo {
  padding-top: 1.5625rem;
  position: relative;
}
.footer-main-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 15.5px;
  padding-bottom: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 992px) {
  .footer-main-links {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border-bottom: 1px solid var(--outerSpace);
  }
}
.footer-main-links li {
  padding: 0 15px;
}
@media only screen and (min-width: 992px) {
  .footer-main-links li {
    padding: 0;
    width: auto;
    -webkit-margin-end: 30px;
            margin-inline-end: 30px;
  }
  .footer-main-links li:last-child {
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
}
.footer-main-links li a {
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-family: AlWatanBold;
  font-size: 1rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (min-width: 992px) {
  .footer-main-links li a {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer-main-links li a:hover {
  color: var(--main-color);
}
.footer-main-links.bullets a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  display: inline-block;
  background-color: var(--graniteGray);
}
.footer-main-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0.9375rem;
  border-top: 1px solid var(--outerSpace);
}
@media only screen and (min-width: 992px) {
  .footer-main-social {
    border-top: 0;
  }
}
.footer-main-social li {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  position: relative;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.footer-main-social li:last-child {
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}
.footer-main-social li::after {
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 6px;
  background-color: var(--outerSpace);
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-main-social li a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--silverSand);
  text-decoration: none;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-main-social li a:hover {
  color: #fff;
}
.footer-copyright {
  background-color: #0b0b12;
  color: #c2c3c5;
  font-size: 0.875rem;
  padding: 8px 0;
  line-height: 19px;
}
@media only screen and (min-width: 992px) {
  .footer-copyright .dev-comp {
    position: relative;
  }
  .footer-copyright .dev-comp::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    -webkit-margin-end: 10px;
            margin-inline-end: 10px;
    display: inline-block;
    background-color: var(--silverSand);
  }
}

.breadcrumb a,
.breadcrumb .breadcrumb-item {
  color: var(--metalSaurus);
  font-size: 14px;
  font-family: AlWatanBold;
}
.breadcrumb .breadcrumb-item::before {
  color: var(--metalSaurus);
}

#content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
#content-wrapper main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-bottom: 3.75rem;
  padding-top: 1.875rem;
}
@media only screen and (min-width: 992px) {
  #content-wrapper main {
    padding-bottom: 8.125rem;
  }
}

.ratio-lg {
  --bs-aspect-ratio: 50%;
}

.ratio-md {
  --bs-aspect-ratio: 33.8%;
}

.content-section {
  padding: 2.5rem 0;
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1144px;
  }
}
.side-bar-col {
  margin-top: 1.875rem;
}
@media only screen and (min-width: 992px) {
  .side-bar-col {
    margin-top: 0;
    width: 300px;
  }
}

.content-col {
  position: relative;
}
@media only screen and (min-width: 992px) {
  .content-col {
    width: calc(100% - 300px);
    -webkit-padding-end: 2.625rem;
            padding-inline-end: 2.625rem;
  }
  .content-col::after {
    content: "";
    height: 100%;
    width: 1px;
    background-color: var(--lightSilver);
    left: 1.3125rem;
    position: absolute;
    top: 1px;
  }
  [data-theme=dark] .content-col::after {
    background-color: #7F7F81;
  }
}

.inner-content {
  padding-top: 1.875rem;
}
.inner-content .container {
  max-width: calc(740px + 1.5rem);
}
.inner-content-title {
  font-size: 2rem;
  line-height: 2.375rem;
  font-family: AlWatanBold;
  margin-bottom: 1.5rem;
}
.inner-content-subtitle {
  font-size: 1.5rem;
  line-height: 1.8125rem;
  font-family: AlWatanBold;
}
.inner-content-details p {
  margin-bottom: 2.8125rem;
  font-size: 1.125rem;
  line-height: 1.875rem;
  font-family: AlWatanLight;
}
@media only screen and (min-width: 992px) {
  .inner-content-details p {
    font-size: 1.25rem;
    line-height: 1.875rem;
    font-family: AlWatanLight;
  }
}
.inner-content-details p:last-child {
  margin-bottom: 0;
}

.gutters-container {
  display: none;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) {
  .gutters-container {
    display: block;
  }
}
.gutters-container .gutter-bar {
  width: 160px;
  height: 600px;
  position: absolute;
  top: 100%;
}
.gutters-container .gutter-bar.start-side {
  right: -160px;
}
.gutters-container .gutter-bar.end-side {
  left: -160px;
}

.middle-adsense .adsense-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-height: 250px;
}
.middle-adsense .adsense-container img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.adsense-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.details-page .content-col .adsense-container {
  margin: 30px 0;
}

.offcanvas {
  background-color: transparent;
}
.offcanvas.offcanvas-start {
  border: none;
  width: 100%;
}
.offcanvas .offcanvas-close {
  position: absolute;
  left: 20px;
  top: 40px;
}
.offcanvas .offcanvas-close button {
  all: unset;
  color: var(--white);
  font-size: 1.875rem;
}
.offcanvas .offcanvas-content {
  width: calc(100% - 60px);
  height: 100%;
  background-color: var(--white);
  top: 40px;
  position: relative;
}
.offcanvas .offcanvas-content .offcanvas-header {
  padding: 0;
}
.offcanvas .offcanvas-content .offcanvas-header .btn-close {
  background: none;
  color: #000;
  opacity: 1;
  font-size: 20px;
}
.offcanvas .offcanvas-content .offcanvas-header .offcanvas-title {
  padding: 10px;
}
.offcanvas .offcanvas-content .offcanvas-header .offcanvas-title a {
  line-height: 0;
}
.offcanvas .offcanvas-content .offcanvas-header .offcanvas-title a img {
  width: 53px;
}
.offcanvas .offcanvas-content .offcanvas-body {
  padding: 0;
  height: 80vh;
  overflow: auto;
}
.offcanvas .offcanvas-content .offcanvas-body .social-media {
  width: 40px;
}
.offcanvas .offcanvas-content .offcanvas-body .social-media .social-item a {
  margin: 0;
  height: auto;
  width: 100%;
  padding: 10px 0;
  border-radius: 0;
  color: #aeb0b3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
  border-bottom: 1px solid;
  border-top: 1px solid;
  border-color: #dbdbdb;
  -webkit-transition: 0;
  transition: 0;
}
.offcanvas .offcanvas-content .offcanvas-body .social-media .social-item a:hover {
  color: #fff;
}
.offcanvas .offcanvas-content .offcanvas-body .social-media .social-item a i,
.offcanvas .offcanvas-content .offcanvas-body .social-media .social-item a svg {
  font-size: 18px;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion {
  --main-color: #f37021;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-link {
  background-color: #f5f4f4;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  font-size: 16px;
  border-right: 1px solid #e40613;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-link i {
  -webkit-transform: rotate(320deg);
          transform: rotate(320deg);
  margin-left: 6px;
  font-size: 16px;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-link.danger {
  color: #e40613;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item {
  padding: 0;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  border-top: 1px solid #dbdbdb;
  border-radius: 0;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item .accordion-header {
  background-color: #f5f4f4;
  border-right: 1px solid var(--main-color);
  padding: 10px;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item .accordion-header a {
  color: #000;
  font-size: 16px;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item .accordion-header .accordion-button {
  padding: 0;
  background-color: #f5f4f4;
  font-size: 16px;
  border-radius: 0;
  min-width: 40px;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item .accordion-header .accordion-button > a {
  color: #000;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item .accordion-header .accordion-button::after {
  background: none;
  content: "+";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  width: auto;
  height: auto;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true] {
  color: var(--main-color);
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true] > a {
  color: var(--main-color);
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  -webkit-transform: inherit;
          transform: inherit;
  content: "\f068";
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item .accordion-header .accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item .accordion-body {
  padding: 0;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item .accordion-body .accordion-menu {
  background-color: #fff;
  border-right: 3px solid var(--main-color);
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item .accordion-body .accordion-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  color: #666;
  padding: 11px 10px;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item.danger {
  --main-color: #ca0025;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item.dark {
  --main-color: #000;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item.ocean {
  --main-color: #069;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item.purple {
  --main-color: #906;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item.limestone {
  --main-color: #0c9;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item.dark-yellow {
  --main-color: #c90;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item.light-orange {
  --main-color: #f96;
}
.offcanvas .offcanvas-content .offcanvas-body .mobile-accordion .accordion-item.dark-green {
  --main-color: #4a8455;
}
.offcanvas .offcanvas-content .offcanvas-body .menu-mobile {
  --main-color: #f37021;
}
.offcanvas .offcanvas-content .offcanvas-body .menu-mobile .nav-item.limestone {
  --main-color: #0c9;
}
.offcanvas .offcanvas-content .offcanvas-body .menu-mobile .nav-item .nav-link {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  font-size: 16px;
}

.offcanvas-backdrop {
  top: 40px;
}

.main-content {
  position: relative;
}

.latest-news-section-floating {
  border-radius: 4px;
  padding: 10.5px 24px;
  background-color: var(--lightSilver);
  bottom: 0;
  right: 0;
  font-family: AlWatanBold;
  margin-bottom: 25px;
  cursor: pointer;
  position: fixed;
  margin-bottom: 0;
  z-index: 2;
  display: none;
}
@media only screen and (min-width: 992px) {
  .latest-news-section-floating {
    display: block;
  }
}
.latest-news-section-floating-title {
  position: relative;
  display: block;
  line-height: 1.1875rem;
  font-size: 1rem;
}
.latest-news-section-floating-title::after {
  content: attr(data-counter);
  position: absolute;
  left: -22px;
  top: -3px;
  width: 20px;
  height: 20px;
  background-color: #dd2d2d;
  border-radius: 50%;
  color: #fff;
  font-size: 0.9em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.latest-news-popup {
  position: fixed;
  z-index: 8;
  width: 100%;
  left: calc(var(--bs-gutter-x) * 0.5);
  right: calc(var(--bs-gutter-x) * 0.5);
  margin-top: 15px;
}
@media only screen and (min-width: 0) {
  .latest-news-popup {
    bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  .latest-news-popup {
    bottom: 0;
    right: 0;
    background-color: var(--darkCharcoal);
    margin-top: 0;
  }
}
.latest-news-popup .container {
  z-index: 99;
}
.latest-news-popup .alert {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.latest-news-popup .alert:first-child {
  opacity: 1;
}
.latest-news-popup .alert .alert-main-title {
  display: none;
}
@media only screen and (min-width: 992px) {
  .latest-news-popup .alert .alert-main-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 992px) {
  .latest-news-popup .alert {
    margin: 0;
    border-radius: 0;
  }
}

.latest-news {
  position: relative;
  z-index: 1;
}
.latest-news .latest-news-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.latest-news .latest-news-grid .latest-news-title {
  width: 100px;
  margin-left: 8px;
}
.latest-news .latest-news-grid .latest-news-carousel {
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .latest-news .latest-news-grid .latest-news-carousel {
    width: calc(100% - 108px);
  }
}
@media only screen and (min-width: 0) {
  .latest-news .swiper {
    width: 90%;
    margin: auto;
    padding-bottom: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .latest-news .swiper {
    width: 100%;
  }
}
.latest-news div[class^=swiper-button] {
  top: 18%;
}
@media only screen and (min-width: 1200px) {
  .latest-news div[class^=swiper-button] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.latest-news div[class^=swiper-button]::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.62);
  z-index: -1;
  left: 0;
  -webkit-filter: blur(6px);
          filter: blur(6px);
}
[data-theme=dark] .latest-news div[class^=swiper-button]::before {
  display: none;
}

.latest-news div[class^=swiper-button].swiper-button-next {
  left: -17px;
  right: auto;
}
.latest-news div[class^=swiper-button].swiper-button-prev {
  right: -15px;
  left: auto;
}
.latest-news div[class^=swiper-button].swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}

.latest-news-title {
  font-size: 1.25rem;
  font-family: AlWatanBold;
}

.latest-news-carousel-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 768px) {
  .latest-news-carousel-card {
    border-left: 1px solid var(--brightGray);
    padding-left: 25px;
  }
}
.latest-news-carousel-card img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
}
.latest-news-carousel-card-body {
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
}
.latest-news-carousel-card-body-title {
  font-family: AlWatanBold;
  margin-bottom: 10px;
  padding-top: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-news-carousel-card-body-text {
  font-size: 15px;
  font-family: AlWatanLight;
  color: var(--outerSpace);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sport-section {
  margin-top: 2.875rem;
}
.sport-section .section-title {
  margin-bottom: 18px;
}
.sport-section .content-col img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.sport-section .content-col .main-image {
  max-height: 300px !important;
  display: block;
}
.sport-section .content-col a {
  text-decoration: none;
  font-family: AlWatanBold;
  line-height: 1.5rem;
  color: var(--richBlack);
}
.sport-section .content-col a.heading-link {
  font-size: 1.375rem;
  color: var(--black);
  line-height: 2.0625rem;
}
.sport-section .content-col a:hover {
  text-decoration: underline;
}
.sport-section hr {
  margin: 10px 0 12px;
}

.main-section {
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .main-section .main-news-carousel {
    margin: 0;
  }
}
.main-section .main-news-carousel img {
  display: block;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .main-section .main-news-carousel img {
    height: auto;
  }
}
.main-section .main-news-carousel a {
  text-decoration: none;
  min-height: 100px;
  position: absolute;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.84357493)), color-stop(20%, rgb(0, 0, 0)), color-stop(40%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.84357493) 0%, rgb(0, 0, 0) 20%, rgba(0, 0, 0, 0) 40%);
  top: 0;
  height: 100%;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--white);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 40px 22px 50px;
  font-family: AlWatanBold;
  z-index: 3;
}
@media only screen and (min-width: 0) {
  .main-section .main-news-carousel a {
    padding: 40px 22px 10px;
  }
}
.main-section .main-news-carousel a h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 2rem;
  font-size: 1.4375rem;
  margin-top: 15px;
}
@media only screen and (min-width: 0) {
  .main-section .main-news-carousel a h2 {
    font-size: 1.1875rem;
  }
}
.main-section .main-news-carousel a span {
  display: block;
  font-size: 12px;
  font-family: AlWatanBold;
  line-height: 14px;
}
@media only screen and (min-width: 992px) {
  .main-section .main-news-carousel a {
    padding: 40px 22px 30px;
  }
  .main-section .main-news-carousel a h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 2.25rem;
    font-size: 1.875rem;
    margin-top: 15px;
  }
}
.main-section .main-news-carousel .swiper-pagination-bullet-active {
  background-color: var(--brightGray);
}
.main-section .main-news-carousel .swiper-button-prev, .main-section .main-news-carousel .swiper-button-next {
  display: none;
}
@media only screen and (min-width: 992px) {
  .main-section .main-news-carousel .swiper-button-prev, .main-section .main-news-carousel .swiper-button-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.flipdown.flipdown__theme-dark {
  font-family: sans-serif;
  font-weight: bold;
}

.flipdown.flipdown__theme-dark .rotor-group-heading:before {
  color: #84715f;
  font-family: AlWatanBold;
}

.flipdown.flipdown__theme-dark .rotor-group:nth-child(n+2):nth-child(-n+3):before, .flipdown.flipdown__theme-dark .rotor-group:nth-child(n+2):nth-child(-n+3):after {
  background-color: #3e3b3c;
}

.flipdown.flipdown__theme-dark .rotor, .flipdown.flipdown__theme-dark .rotor-top, .flipdown.flipdown__theme-dark .rotor-leaf-front {
  color: #fff;
  background-color: #413d3e;
}

.flipdown.flipdown__theme-dark .rotor-bottom, .flipdown.flipdown__theme-dark .rotor-leaf-rear {
  color: #efefef;
  background-color: #413d3e;
}

.flipdown.flipdown__theme-dark .rotor:after {
  border-top: solid 1px #151515;
}

.flipdown.flipdown__theme-light {
  font-family: sans-serif;
  font-weight: bold;
}

.flipdown.flipdown__theme-light .rotor-group-heading:before {
  color: #eee;
}

.flipdown.flipdown__theme-light .rotor-group:nth-child(n+2):nth-child(-n+3):before, .flipdown.flipdown__theme-light .rotor-group:nth-child(n+2):nth-child(-n+3):after {
  background-color: #ddd;
}

.flipdown.flipdown__theme-light .rotor, .flipdown.flipdown__theme-light .rotor-top, .flipdown.flipdown__theme-light .rotor-leaf-front {
  color: #222;
  background-color: #ddd;
}

.flipdown.flipdown__theme-light .rotor-bottom, .flipdown.flipdown__theme-light .rotor-leaf-rear {
  color: #333;
  background-color: #eee;
}

.flipdown.flipdown__theme-light .rotor:after {
  border-top: solid 1px #222;
}

.bigMuseumCountdown {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 300px;
  margin: 20px auto;
}
.bigMuseumCountdown.mobileBigMuseumCountdown {
  border: 2px solid red;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 992px) {
  .bigMuseumCountdown.mobileBigMuseumCountdown {
    display: none !important;
  }
}
.bigMuseumCountdown.hidebigMuseumCountdown {
  display: none;
}
@media only screen and (min-width: 992px) {
  .bigMuseumCountdown.hidebigMuseumCountdown {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.flipdown {
  overflow: visible;
  width: 195px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 0 13px;
  position: absolute;
  bottom: 15px;
  right: 0;
}

.flipdown .rotor-group {
  position: relative;
  float: left;
}

.rotor-group-heading {
  display: block;
  clear: both;
}

.flipdown .rotor-group:last-child {
  padding-right: 0;
}

.flipdown .rotor-group:last-child {
  padding-right: 0;
}

.flipdown .rotor-group-heading:before {
  display: block;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.flipdown .rotor-group:nth-child(1) .rotor-group-heading:before {
  content: attr(data-before);
}

.flipdown .rotor-group:nth-child(2) .rotor-group-heading:before {
  content: attr(data-before);
}

.flipdown .rotor-group:nth-child(3) .rotor-group-heading:before {
  content: attr(data-before);
}

.flipdown .rotor-group:nth-child(4) .rotor-group-heading:before {
  content: attr(data-before);
}

.flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):before {
  content: "";
  position: absolute;
  top: 20px;
  left: -10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):after {
  content: "";
  position: absolute;
  top: 7px;
  left: -10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.flipdown .rotor {
  position: relative;
  float: left;
  width: 25px;
  height: 34px;
  margin: 0 2px 0 0;
  border-radius: 4px;
  font-size: 2rem;
  text-align: center;
  -webkit-perspective: 200px;
          perspective: 200px;
}

.flipdown .rotor:last-child {
  margin-right: 0;
}

.flipdown .rotor-top, .flipdown .rotor-bottom {
  overflow: hidden;
  position: absolute;
  width: 25px;
  height: 17px;
}

.flipdown .rotor-leaf {
  z-index: 1;
  position: absolute;
  width: 25px;
  height: 34px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0s;
  transition: -webkit-transform 0s;
  transition: transform 0s;
  transition: transform 0s, -webkit-transform 0s;
}

.flipdown .rotor-leaf.flipped {
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.flipdown .rotor-leaf-front, .flipdown .rotor-leaf-rear {
  overflow: hidden;
  position: absolute;
  width: 25px;
  height: 17px;
  margin: 0;
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.flipdown .rotor-leaf-front {
  line-height: 34px;
  border-radius: 4px 4px 0 0;
}

.flipdown .rotor-leaf-rear {
  line-height: 0;
  border-radius: 0 0 4px 4px;
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
}

.flipdown .rotor-top {
  line-height: 34px;
  border-radius: 4px 4px 0 0;
}

.flipdown .rotor-bottom {
  bottom: 0;
  line-height: 0;
  border-radius: 0 0 4px 4px;
}

.flipdown .rotor:after {
  content: "";
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 17px;
  border-radius: 0 0 4px 4px;
}

.egyptnews {
  margin-top: 30px;
}
.egyptnews .heading-link {
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-family: AlWatanBold;
  margin-bottom: 10px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media only screen and (min-width: 992px) {
  .egyptnews .heading-link {
    font-size: 1.375rem;
    line-height: 2.0625rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}
.egyptnews picture img {
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media only screen and (min-width: 992px) {
  .egyptnews picture img {
    -o-object-fit: inherit;
       object-fit: inherit;
    height: 300px;
  }
}
.egyptnews--text {
  font-family: AlWatanBold;
  line-height: 1.5rem;
}
.egyptnews .reloadLink {
  color: var(--metalSaurus);
  font-size: 0.9375rem;
}
.egyptnews .fav-card {
  border-bottom: 1px solid var(--brightGray);
}

.multi-sections {
  padding: 1.5625rem 0;
}
.multi-sections .container .content-col > .row > div {
  position: relative;
}
.multi-sections .container .content-col > .row > div::after {
  content: "";
  background-color: var(--brightGray);
  left: 0;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -10px;
}
@media only screen and (min-width: 992px) {
  .multi-sections .container .content-col > .row > div::after {
    height: 100%;
    width: 1px;
    top: 1px;
    bottom: 0;
  }
}
.multi-sections .container .content-col > .row > div:last-child::after {
  display: none;
}
.multi-sections .container .content-col > .row > div img {
  height: 100px;
  width: 179px;
  max-width: 100%;
}
.multi-sections .mini-news-card {
  border-bottom: 1px solid var(--brightGray);
  padding-bottom: 13px;
  margin-bottom: 14px;
}
.multi-sections .mini-news-card .card-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 4px;
}
.multi-sections .mini-news-card:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}

.governorates-news {
  margin-top: 2.375rem;
}
.governorates-news .container .swiper-slide {
  position: relative;
  height: auto;
}
@media only screen and (min-width: 1200px) {
  .governorates-news .container .swiper-slide::after {
    content: "";
    background-color: var(--brightGray);
    position: absolute;
    height: 100%;
    width: 1px;
    top: 1px;
    bottom: 0;
    left: -20.5px;
  }
}
.governorates-news .container .swiper-slide:last-child::after {
  display: none;
}
.governorates-news .article-image {
  height: 140px;
  margin-bottom: 2px;
}
.governorates-news .container {
  position: relative;
}
.governorates-news .swiper-button-next {
  left: 2px;
  right: inherit;
}
.governorates-news .swiper-button-prev {
  right: 2px;
  left: inherit;
}
.governorates-news div[class^=swiper-button] {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.governorates-news .mini-news-card .card-category {
  margin-top: 3px;
}
.governorates-news .mini-news-card .card-text {
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media only screen and (min-width: 992px) {
  .governorates-news .mini-news-card .article-image img {
    height: 140px;
  }
}

.fann-entertainment {
  overflow: hidden;
  margin-top: 1.875rem;
}
@media only screen and (min-width: 1200px) {
  .fann-entertainment .large-news-card img {
    height: 300px;
    width: 513px;
  }
}
.fann-entertainment .alwatan-images-carousel {
  position: relative;
  width: 240px;
  margin: 0 auto;
}
@media only screen and (min-width: 992px) {
  .fann-entertainment .alwatan-images-carousel {
    width: auto;
  }
}
.fann-entertainment .alwatan-images-carousel .badge {
  font-size: 0.8125rem;
  font-family: AlWatanBold;
}
.fann-entertainment .alwatan-images-carousel .overlay-details-card .card-content-title {
  font-size: 0.9375rem;
}
.fann-entertainment .alwatan-images-carousel .overlay-details-card .card-content {
  padding: 15px 15px 12px;
  height: 375px;
}
@media only screen and (min-width: 992px) {
  .fann-entertainment .alwatan-images-carousel .overlay-details-card .card-content {
    height: auto;
  }
}
.fann-entertainment .alwatan-images-carousel div[class^=swiper-button] {
  -webkit-transform: translateY(-80%);
          transform: translateY(-80%);
  display: none;
}
@media only screen and (min-width: 992px) {
  .fann-entertainment .alwatan-images-carousel div[class^=swiper-button] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.fann-entertainment .alwatan-images-carousel div[class^=swiper-button].swiper-button-next {
  left: 0;
  right: auto;
}
@media only screen and (min-width: 992px) {
  .fann-entertainment .alwatan-images-carousel div[class^=swiper-button].swiper-button-next {
    left: -17px;
  }
}
.fann-entertainment .alwatan-images-carousel div[class^=swiper-button].swiper-button-prev {
  right: 0;
  left: auto;
}
@media only screen and (min-width: 992px) {
  .fann-entertainment .alwatan-images-carousel div[class^=swiper-button].swiper-button-prev {
    right: -17px;
  }
}
.fann-entertainment .alwatan-images-carousel div[class^=swiper-button].swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
.fann-entertainment img {
  display: block;
}

.variety-news {
  background-color: var(--oldLace);
  padding: 2.4375rem 0 1.9375rem;
  margin-top: 30px;
}
[data-theme=dark] .variety-news {
  background-color: #252527;
}

.variety-news .mini-news-card .card-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 5px;
}
.variety-news .border-row > div::after {
  background-color: var(--lightSilver);
  display: none;
}
@media only screen and (min-width: 992px) {
  .variety-news .border-row > div::after {
    display: block;
  }
}
.variety-news .border-row > div:nth-child(3)::after {
  display: none !important;
}
.variety-news .mini-news-card .article-image img {
  width: 165px;
  height: 94px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.variety-news .digital-copy {
  position: relative;
}
.variety-news .digital-copy img {
  border: 2px solid var(--main-color);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
  height: 232px;
  width: 173px;
}
.variety-news .digital-copy-title {
  font-size: 1.375rem;
  font-family: AlWatanBold;
}
.variety-news .digital-copy-dates {
  margin-top: 15px;
  display: block;
  color: var(--metalSaurus);
  font-size: 1rem;
}
.variety-news .digital-copy .btn {
  margin-top: 20px;
}
.variety-news .digital-copy .link-more {
  margin-top: 30px;
}

.investigations-files {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
.investigations-files img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.investigations-files .main-image {
  max-height: 300px !important;
  display: block;
}
.investigations-files a {
  text-decoration: none;
  font-family: AlWatanBold;
  line-height: 1.5rem;
  color: var(--raisinBlack);
}
.investigations-files a.heading-link {
  font-size: 1.375rem;
  color: var(--black);
  line-height: 2.0625rem;
}
.investigations-files a:hover {
  text-decoration: underline;
}
.investigations-files hr {
  margin: 10px 0 12px;
}

.honn {
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 992px) {
  .honn .gx-lg-5 {
    --bs-gutter-x: 40px;
  }
}
.honn img {
  max-width: 100%;
}
@media only screen and (min-width: 992px) {
  .honn .article-image img {
    width: 180px;
    height: 100px;
  }
}
.honn .middle-card.mini-news-card .card-text {
  font-size: 1.375rem;
  font-family: AlWatanBold;
  line-height: 2.0625rem;
}
@media only screen and (min-width: 1200px) {
  .honn .mini-news-card.middle-card img {
    height: 198px;
    width: 346px;
  }
}

.alwan {
  margin-top: 1.875rem;
}
@media only screen and (min-width: 992px) {
  .alwan .gx-lg-5 {
    --bs-gutter-x: 40px;
  }
}
.alwan img {
  max-width: 100%;
}
@media only screen and (min-width: 992px) {
  .alwan .article-image img {
    width: 180px;
    height: 100px;
  }
}
.alwan .middle-card.mini-news-card .card-text {
  font-size: 1.375rem;
  font-family: AlWatanBold;
  line-height: 2.0625rem;
}
.alwan hr {
  margin: 33px 0 20px;
}

.alwatan-tv {
  position: relative;
  margin-top: 20px;
  margin-bottom: 28.5px;
}
.alwatan-tv .swiper-button-next {
  left: 2px;
  right: inherit;
}
.alwatan-tv .swiper-button-prev {
  right: 2px;
  left: inherit;
}
.alwatan-tv div[class^=swiper-button] {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.alwatan-tv .swiper img {
  height: 378px;
}
@media only screen and (min-width: 992px) {
  .alwatan-tv .swiper img {
    height: 333px;
  }
}
.alwatan-tv .mini-video-card {
  height: 378px;
}
@media only screen and (min-width: 992px) {
  .alwatan-tv .mini-video-card {
    height: 333px;
  }
}

.wizard-form {
  padding-bottom: 40px;
}
.wizard-form .wizard {
  width: 100%;
}
.wizard-form .wizard .clearfix:before,
.wizard-form .wizard .clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.wizard-form .wizard > .steps .current-info {
  position: absolute;
  left: -99999px;
}
.wizard-form .wizard .content .title {
  position: absolute;
  left: -99999px;
}
.wizard-form .wizard .content .title.current {
  position: static;
}
.wizard-form .wizard .content .content {
  position: relative;
  width: auto;
  padding: 0;
}
.wizard-form .wizard .content .body {
  opacity: 0;
  visibility: hidden;
  display: none;
}
@media only screen and (min-width: 992px) {
  .wizard-form .wizard .content .body {
    padding: 0 40px;
  }
}
.wizard-form .wizard .content .body.current {
  opacity: 1;
  visibility: visible;
  display: block;
}
.wizard-form .wizard .content .body .form-control.error,
.wizard-form .wizard .content .body .form-select.error {
  border-color: #f94349;
}
.wizard-form .wizard .content iframe {
  border: 0 none;
  width: 100%;
  height: 100%;
}
.wizard-form .wizard .steps {
  position: relative;
  display: block;
  width: 100%;
  overflow: auto;
}
@media only screen and (min-width: 992px) {
  .wizard-form .wizard .steps {
    overflow: visible;
  }
}
.wizard-form .wizard .steps > ul {
  display: table;
  width: 100%;
  table-layout: fixed;
  margin: 0;
  padding: 0;
  list-style: none;
}
.wizard-form .wizard .steps > ul > li {
  display: table-cell;
  vertical-align: top;
  text-align: center;
  position: relative;
  width: 100px;
}
@media only screen and (min-width: 992px) {
  .wizard-form .wizard .steps > ul > li {
    width: auto;
  }
}
.wizard-form .wizard .steps > ul > li:first-child .number::after {
  content: "\f007";
}
.wizard-form .wizard .steps > ul > li:nth-child(2) .number::after {
  content: "\f0b1";
}
.wizard-form .wizard .steps > ul > li:nth-child(3) .number::after {
  content: "\f2c2";
}
.wizard-form .wizard .steps > ul > li:first-child:before, .wizard-form .wizard .steps > ul > li:last-child:after {
  content: none;
}
.wizard-form .wizard .steps > ul > li:before, .wizard-form .wizard .steps > ul > li:after {
  content: "";
  display: block;
  position: absolute;
  top: 25px;
  width: 50%;
  height: 2px;
  background-color: var(--main-color);
  z-index: 1;
}
.wizard-form .wizard .steps > ul > li:before {
  left: 0;
}
.wizard-form .wizard .steps > ul > li:after {
  right: 0;
}
.wizard-form .wizard .steps > ul > li a {
  position: relative;
  padding-top: 55px;
  margin-bottom: 40px;
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  min-width: 50px;
}
.wizard-form .wizard .steps > ul > li a .number {
  background-color: #1a161c;
  color: #a5aeb7;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -19px;
  width: 48px;
  height: 48px;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  z-index: 2;
  text-align: center;
  font-size: 0;
  margin-bottom: 10px;
}
.wizard-form .wizard .steps > ul > li a .number:after {
  display: inline-block;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 34px;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--main-color);
}
.wizard-form .wizard .steps > ul > li.current .number {
  border-color: var(--main-color);
  color: #fff;
  background-color: var(--main-color);
}
.wizard-form .wizard .steps > ul > li.current .number::after {
  color: #fff;
}
.wizard-form .wizard .steps > ul > li.current a {
  color: #fff;
  cursor: default;
}
.wizard-form .wizard .steps > ul > li.current::after,
.wizard-form .wizard .steps > ul > li.current li::before,
.wizard-form .wizard .steps > ul > li.current li::after {
  background-color: var(--main-color);
}
.wizard-form .wizard .steps > ul > li.disabled a,
.wizard-form .wizard .steps > ul > li.disabled a:hover,
.wizard-form .wizard .steps > ul > li.disabled a:focus {
  color: #a5aeb7;
  cursor: default;
}
.wizard-form .wizard .actions {
  position: relative;
  display: block;
  text-align: right;
  padding-top: 20px;
}
@media only screen and (min-width: 992px) {
  .wizard-form .wizard .actions {
    padding: 40px;
  }
}
.wizard-form .wizard .actions ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wizard-form .wizard .actions ul li a {
  background: var(--main-color);
  color: #fff;
  display: block;
  padding: 10px 25px;
  border-radius: 0px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  border: 2px solid var(--main-color);
  border-radius: 40px;
  text-decoration: none;
}
.wizard-form .wizard .actions ul li a[href="#previous"] {
  background-color: transparent;
  color: #4a4a49;
  color: var(--main-color);
  border: 2px solid var(--main-color);
}
.wizard-form .wizard .actions ul li.disabled {
  opacity: 0;
  visibility: hidden;
}
.wizard-form .wizard .actions ul li.disabled a,
.wizard-form .wizard .actions ul li.disabled a:hover,
.wizard-form .wizard .actions ul li.disabled a:focus {
  background-color: #fff;
  color: #4a4a49;
  border: 2px solid #ededed;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.wizard-form .wizard label.error {
  color: #f94349;
  font-size: 12px;
  margin-top: 5px;
}

.sections-most-views-wrapper {
  position: relative;
}
.sections-most-views-wrapper .displayDateBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 10px;
}
.sections-most-views-wrapper .displayDateBlock p {
  margin-top: 8px;
  color: var(--outerSpace);
  font-size: 0.9375rem;
  font-family: AlWatanLight;
}
.sections-most-views-wrapper .displayDateBlock p:nth-child(1) {
  margin-left: 5px;
}
.sections-most-views-wrapper .displayDateBlock p:nth-child(2) {
  margin-right: 5px;
}
.sections-most-views-wrapper .sections-most-views .mini-video-card {
  height: 300px;
}
.sections-most-views-wrapper div[class^=swiper-button] {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 1200px) {
  .sections-most-views-wrapper div[class^=swiper-button] {
    display: none;
  }
}

.section-filter .form-select.form-select-sm {
  font-size: 15px;
  font-family: AlWatanLight;
}
.section-filter .btn {
  font-size: 16px;
  font-family: AlWatanLight;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-color: var(--lightSilver);
  color: black;
  line-height: 1;
}
.section-filter .btn i {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  line-height: 1.1;
  padding-top: 4px;
}
.section-filter .btn:hover {
  background-color: var(--lightSilver);
}

.loadmore {
  background-color: var(--flirt);
  color: var(--white);
  font-size: 1rem;
  font-family: AlWatanBold;
  border: none;
  border-radius: 4px;
  padding: 10px 32px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border: 1px solid var(--flirt);
}
.loadmore:hover {
  background-color: transparent;
  border: 1px solid var(--flirt);
  color: var(--flirt);
}

.sections-listing-news.writer-profile .wide-card .card-title {
  position: relative;
}
.sections-listing-news.writer-profile .wide-card .card-title::before {
  position: relative;
  top: -4px;
  content: "";
  background-image: url("../images/!important/qoutes.svg");
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background-repeat: no-repeat;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-filter: brightness(0);
          filter: brightness(0);
  background-size: contain;
}

.sections-listing-load-more > div {
  display: none;
}

.details-page .articlePageDetails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 15px 0;
}
.details-page .articlePageDetails .authorName {
  max-width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.details-page-sign {
  margin-top: 8px;
  color: var(--outerSpace);
  font-size: 0.9375rem;
  font-family: AlWatanLight;
}
.details-page .imageDescriptionSize small {
  font-size: 14px;
}
.details-page .content-text-wrapper h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 15px 0;
}
.details-page .ralated-topics .row > div .mini-news-card {
  border-bottom: 1px solid var(--lightSilver);
  padding-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .details-page .ralated-topics .row > div .mini-news-card {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.details-page .ralated-topics .row > div:last-child .mini-news-card {
  border-bottom: none;
  padding-bottom: 0;
}

.content-text-wrapper {
  margin-top: 1.875rem;
}
.content-text-wrapper p {
  margin-bottom: 1.875rem;
  font-size: 1.25rem;
  line-height: 1.875rem;
  color: var(--richBlack);
}
.content-text-wrapper p:last-child {
  margin-bottom: 0;
}
.content-text-wrapper p a {
  color: blue;
  text-decoration: underline;
}

.content-text-wrapper-title {
  font-size: 1.5rem;
  line-height: 1.8125rem;
  font-family: AlWatanBold;
  margin-bottom: 15px;
}

.search-result-page-founded {
  font-size: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-result-page-founded .badge {
  font-size: 1.125rem;
  font-family: AlWatanBold;
  margin: 0 10px;
}
.search-result-page #result-value {
  font-family: AlWatanBold;
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.search-result-page .form-control[type=search] {
  position: relative;
  background: url("../images/search-black.svg") no-repeat right center/40px 20px;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  font-size: 20px;
  color: var(--black);
}
.search-result-page .form-control[type=search]::-webkit-input-placeholder {
  color: var(--black);
}
.search-result-page .form-control[type=search]::-moz-placeholder {
  color: var(--black);
}
.search-result-page .form-control[type=search]:-ms-input-placeholder {
  color: var(--black);
}
.search-result-page .form-control[type=search]::-ms-input-placeholder {
  color: var(--black);
}
.search-result-page .form-control[type=search]::placeholder {
  color: var(--black);
}
.search-result-page .form-control[type=search]::-webkit-search-cancel-button {
  position: relative;
  left: 0;
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  background: url("../images/x-close.svg") no-repeat center center;
  cursor: pointer;
}
.search-result-page .form-control[type=search]:focus {
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.highlight {
  background-color: yellow;
}

.signup-customization .container {
  max-width: 764px;
}
.signup-customization-title {
  text-align: center;
  font-size: 15;
  color: var(--outerSpace);
}

.user-profile {
  padding-top: 1.875rem;
}
@media only screen and (min-width: 992px) {
  .user-profile {
    padding-top: 3.0625rem;
  }
}
.user-profile a {
  color: var(--linkColor);
  font-family: AlWatanBold;
  text-decoration: underline;
  font-size: 0.875rem;
}
.user-profile a:hover {
  color: var(--richBlack);
}
.user-profile-title {
  font-family: AlWatanBold;
  font-size: 2.5rem;
  line-height: 3.0625rem;
}
.user-profile-subtitle {
  font-size: 1.5rem;
  line-height: 1.875rem;
  margin-top: 1.6875rem;
}
.user-profile-note {
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin-top: 0.84375rem;
}
.user-profile-mailtext {
  margin-top: 1rem;
}
.user-profile-mailtext p {
  font-size: 0.875rem;
}
.user-profile-mailtext a {
  color: var(--linkColor);
  -webkit-margin-start: 4px;
          margin-inline-start: 4px;
}
.user-profile table td {
  font-size: 1.0625rem;
  font-family: AlWatanLight;
  color: var(--richBlack);
}
.user-profile table [scope=row] {
  font-size: 1rem;
  font-family: AlWatanBold;
}
.user-profile-sidetitle {
  font-size: 1.375rem;
  line-height: 1.625rem;
  border-bottom: 1px solid var(--brightGray);
  padding-bottom: 0.875rem;
}
.user-profile-links-list li {
  border-bottom: 1px solid var(--brightGray);
  padding: 1rem 0;
}
.user-profile-links-list li a {
  font-family: AlWatanBold;
  font-size: 1rem;
  line-height: 1.1875rem;
  color: var(--metalSaurus);
  text-decoration: none;
}
.user-profile-links-list li a:hover {
  color: var(--richBlack);
}
.user-profile-links-list li:last-child {
  border-bottom: 0;
}

.profile-user-information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.profile-user-information-img {
  width: 7.8125rem;
  height: 7.8125rem;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  -webkit-margin-end: 0.9375rem;
          margin-inline-end: 0.9375rem;
  overflow: hidden;
}
.profile-user-information-img img {
  width: 100%;
  height: 100%;
}
.profile-user-information-content-title {
  font-size: 1.5625rem;
  font-family: AlWatanBold;
  line-height: 2.5rem;
}
.profile-user-information-content-job {
  font-size: 1.125rem;
  line-height: 2.5rem;
  color: var(--metalSaurus);
}
.profile-user-information .social-media {
  margin-top: 10px;
}
.profile-user-information .social-media .social-item a {
  color: inherit;
  margin: 0;
  -webkit-margin-end: 14px;
          margin-inline-end: 14px;
}

.profile-user-information-dec {
  margin-top: 1.125rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.privacy-page {
  padding-top: 1.875rem;
}
.privacy-page-title {
  font-size: 2rem;
  line-height: 2.375rem;
  font-family: AlWatanBold;
}
.privacy-page-subtitle {
  font-size: 1.5rem;
  line-height: 1.8125rem;
  font-family: AlWatanBold;
}
.privacy-page-date {
  margin-top: 1.0625rem;
  font-size: 1rem;
  line-height: 1.1875rem;
  font-family: AlWatanLight;
}
.privacy-page .inner-content-details {
  margin-top: 2.6875rem;
}
.privacy-page .privacy-page-questions {
  margin-top: 30px;
  counter-reset: questions;
}
.privacy-page .privacy-page-questions-item {
  position: relative;
  -webkit-padding-start: 2.5rem;
          padding-inline-start: 2.5rem;
  margin-bottom: 4.0625rem;
}
.privacy-page .privacy-page-questions-item:last-child {
  margin-bottom: 0;
}
.privacy-page .privacy-page-questions-item::before {
  counter-increment: questions;
  content: counter(questions);
  position: absolute;
  top: 0;
  right: 0;
  width: 2rem;
  height: 2rem;
  background-color: var(--main-color);
  color: var(--white);
  font-size: 0.875rem;
  line-height: 1rem;
  font-family: AlWatanLight;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.privacy-page .privacy-page-questions-item-title {
  font-size: 1.375rem;
  line-height: 1.625rem;
  font-family: AlWatanBold;
  margin-bottom: 1rem;
}
.privacy-page .privacy-page-questions-item-answer {
  font-size: 1.3125rem;
  line-height: 1.875rem;
  font-family: AlWatanLight;
  margin-bottom: 15px;
}
.privacy-page.terms-page .privacy-page-questions-item {
  -webkit-padding-start: 0 !important;
          padding-inline-start: 0 !important;
}
.privacy-page.terms-page .privacy-page-questions-item::before {
  display: none !important;
}
.privacy-page.itemTeams .privacy-page-questions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.privacy-page.itemTeams .privacy-page-questions .privacy-page-questions-item {
  width: 50%;
}

.opnions-page .suggest-article {
  margin-bottom: 1.875rem;
}
@media only screen and (min-width: 768px) {
  .opnions-page .suggest-article-list > div {
    border-left: 1px solid var(--brightGray);
  }
}
.opnions-page .suggest-article-list > div > div {
  padding-bottom: 1.5rem;
  padding-top: 18px;
  border-bottom: 1px solid var(--brightGray);
}
@media only screen and (min-width: 1200px) {
  .opnions-page .suggest-article-list > div > div {
    padding-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  .opnions-page .suggest-article-list > div:nth-child(2n) {
    border-left: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .opnions-page .suggest-article-list > div:nth-child(2n) {
    border-left: 1px solid var(--brightGray);
  }
  .opnions-page .suggest-article-list > div:nth-child(4n) {
    border-left: 0;
    padding-top: 0;
  }
}
.opnions-page .suggest-article .suggest-article-list:last-child:not(.opnions-page .suggest-article .suggest-article-list:first-child) > div > div {
  padding-top: 18px;
}
@media only screen and (min-width: 1200px) {
  .opnions-page .suggest-article .suggest-article-list:last-child:not(.opnions-page .suggest-article .suggest-article-list:first-child) > div > div {
    padding-bottom: 0rem;
    border-bottom: 0;
  }
}

.gallery-page {
  padding-top: 2.5rem;
  background-color: #1b1e1f;
  color: #fff;
}
.gallery-page .section-title,
.gallery-page .news-ver-card .card-text {
  color: #fff;
}
.gallery-page-intro-title {
  font-size: 2rem;
  line-height: 2.375rem;
  font-family: AlWatanBold;
  margin-top: 1.25rem;
}
.gallery-page-intro-date {
  font-size: 0.875rem;
  line-height: 1.0625rem;
  font-family: AlWatanLight;
  margin-top: 0.8125rem;
}

.gallery-page-news-eg,
.gallery-page-news-country,
.gallery-page-news-sport,
.gallery-page-news-fann {
  margin: 2.5rem 0;
}
.gallery-page-news-eg .container,
.gallery-page-news-country .container,
.gallery-page-news-sport .container,
.gallery-page-news-fann .container {
  position: relative;
}
.gallery-page-news-eg .swiper-button-next,
.gallery-page-news-country .swiper-button-next,
.gallery-page-news-sport .swiper-button-next,
.gallery-page-news-fann .swiper-button-next {
  left: 2px;
  right: inherit;
}
.gallery-page-news-eg .swiper-button-prev,
.gallery-page-news-country .swiper-button-prev,
.gallery-page-news-sport .swiper-button-prev,
.gallery-page-news-fann .swiper-button-prev {
  right: 2px;
  left: inherit;
}
.gallery-page-news-eg div[class^=swiper-button],
.gallery-page-news-country div[class^=swiper-button],
.gallery-page-news-sport div[class^=swiper-button],
.gallery-page-news-fann div[class^=swiper-button] {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.comics-section {
  position: relative;
}
.comics-section .swiper-button-next {
  left: 2px;
  right: inherit;
}
.comics-section .swiper-button-prev {
  right: 2px;
  left: inherit;
}
.comics-section div[class^=swiper-button] {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.galleryPageListing {
  padding: 30px 0;
}
.galleryPageListing .viewAlbumMainTitle {
  margin-bottom: 30px;
}
.galleryPageListing .social-media {
  margin: 45px 0;
}
.galleryPageListing .social-media .social-item a {
  color: #1b1e1f;
}
.galleryPageListing .albumDetailsDescription p {
  font-size: 0.875rem;
  line-height: 1.0625rem;
  font-family: AlWatanLight;
  font-size: 1.0625rem;
  line-height: 2.1875rem;
}
.galleryPageListing .viewAlbumListingColl .viewAlbumOneRow {
  margin: 25px auto;
  text-align: center;
}
.galleryPageListing .viewAlbumListingColl .viewAlbumOneRow img {
  max-width: 100%;
  display: block;
  margin: auto;
}
.galleryPageListing .viewAlbumListingColl .viewAlbumOneRow .viewAlbumOneRowRight {
  margin-left: 1rem;
}
.galleryPageListing .viewAlbumListingColl .viewAlbumOneRow .viewAlbumOneRowRight small {
  color: #F37021 !important;
}

.albumsListingPage .page-intro {
  background: #e9e9e9;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 25px;
}
.albumsListingPage .innerPageListing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (min-width: 576px) {
  .albumsListingPage .innerPageListing .news-ver-card {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .albumsListingPage .innerPageListing .news-ver-card {
    width: calc((100% - 40.1px) / 2);
  }
}
@media only screen and (min-width: 992px) {
  .albumsListingPage .innerPageListing .news-ver-card {
    width: calc((100% - 40.1px) / 3);
  }
}
.albumsListingPage .innerPageListing .news-ver-card .album::before {
  content: "";
  position: absolute;
  background: url(../images/!important/gallary-layers.svg) no-repeat center;
  right: 15px;
  top: 10px;
  z-index: 2;
  width: 24px;
  height: 24px;
}

.EpapersContainer {
  padding: 32px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.EpapersContainer .EpaperBlock {
  margin-bottom: 45px;
  margin-left: 20px;
}
.EpapersContainer .EpaperBlock:nth-child(6) {
  margin-left: 0;
}
.EpapersContainer .EpaperBlock img {
  max-width: 170px;
}
.EpapersContainer .EpaperBlock p {
  color: #000000;
}

.userNotLogin {
  position: absolute;
  background: rgba(255, 255, 255, 0.9019607843);
  z-index: 99999;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.userNotLogin .userNotLoginContainer {
  width: 100%;
  max-width: 430px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.userNotLogin .userNotLoginContainer img {
  max-width: 170px;
  display: block;
  margin: 0 auto;
}
.userNotLogin .userNotLoginContainer p, .userNotLogin .userNotLoginContainer h2, .userNotLogin .userNotLoginContainer h4 {
  color: #000000;
  text-align: center;
  margin: 15px 0;
}

.podcastOneContainer .podcastDetailsBLock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.podcastOneContainer .podcastDetailsBLock p {
  margin-left: 2rem;
}

.podcastListingPage {
  padding: 30px 0;
}

.podcastSeriesHeader {
  padding: 0 0 30px 0;
}
.podcastSeriesHeader .podcastSeriesHeaderRight {
  margin-left: 2rem;
}
.podcastSeriesHeader .podcastSeriesHeaderLeft h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 15px;
}
.podcastSeriesHeader .podcastSeriesHeaderLeft p {
  color: #fff;
  font-size: 0.8rem;
}
.podcastSeriesHeader .podcastSeriesHeaderLeft div {
  margin-top: 26px;
}
.podcastSeriesHeader .podcastSeriesHeaderLeft div img {
  margin-left: 1rem;
}
.podcastSeriesHeader .podcastSeriesHeaderLeft div p {
  color: #BABABC;
  font-size: 0.7rem;
  margin-left: 2rem;
}

.podcastSeriesAvailable {
  border-top: 1px solid #464749;
  border-bottom: 1px solid #7F7F81;
  padding: 30px 0;
}
.podcastSeriesAvailable p {
  color: #BABABC;
  font-size: 0.7rem;
  text-align: center;
  margin-bottom: 15px;
}
.podcastSeriesAvailable div img {
  margin-left: 1.5rem;
}

.previousSeriesContainer {
  margin-top: 15px;
}
.previousSeriesContainer .section-title {
  border-top: none;
}
.previousSeriesContainer .prevOneSerie {
  border-bottom: 1px solid #464749;
  padding-bottom: 20px;
  margin-top: 20px;
}
.previousSeriesContainer .prevOneSerie .prevOneSerieRight {
  margin-left: 1rem;
}

.liveStreamPage .tab-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.liveStreamPage .tab-container .tab {
  margin: 0 0.5rem;
  font-size: 16px;
  font-weight: normal;
  position: relative;
  padding: 20px 5px 10px 5px;
  cursor: pointer;
}
.liveStreamPage .tab-container .tab.active-tab {
  font-weight: bold;
}
.liveStreamPage .tab-container .tab.active-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 3px;
  background: red;
  width: 100%;
}
.liveStreamPage .tab-content {
  display: none;
}
.liveStreamPage .tab-content.active-content {
  display: block;
}
.liveStreamPage .liveStreamHeader {
  padding: 22px 0;
  border-top: 1px solid #464749;
}
.liveStreamPage .liveStreamHeader:first-child p {
  margin-left: 1.5rem;
}
.liveStreamPage .liveStreamHeader:first-child p:first-child {
  margin-right: 15px;
}
.liveStreamPage .liveStreamHeader:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  width: 10px;
  height: 10px;
  background: #FF433E;
  border-radius: 100px;
}
.liveStreamPage .liveStreamHeader p {
  font-size: 16px;
  font-weight: bold;
}
.liveStreamPage .liveStreamHeader .watchliveStream {
  padding: 0.8rem 1.5rem;
  border: 1px solid #7F7F81;
  border-radius: 8px;
}
.liveStreamPage .liveStreamDetails {
  padding: 22px 0;
  border-top: 1px solid #464749;
}
.liveStreamPage .liveStreamDetails p {
  font-size: 16px;
  font-weight: bold;
  margin-left: 1.5rem;
}

.watchLiveStreamPage {
  padding: 40px 0 30px 0;
}
.watchLiveStreamPage .rightWatchLive iframe {
  width: 100%;
  height: 100%;
}
.watchLiveStreamPage .sideLiveDetails {
  margin-bottom: 20px;
  border-bottom: 1px solid #464749;
  padding-bottom: 20px;
}
.watchLiveStreamPage .sideLiveDetails p {
  font-size: 16px;
  font-weight: bold;
  margin-left: 1.5rem;
  margin-bottom: 15px;
}
.watchLiveStreamPage .sideLiveDetails .watchliveStream {
  padding: 0.8rem 1.5rem;
  border: 1px solid #7F7F81;
  border-radius: 8px;
  max-width: 140px;
  font-weight: bold;
}

.HoroscopesPage .HoroscopesContainer {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 45px 0 0 0;
}
.HoroscopesPage .HoroscopesContainer .HoroscopeBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
  padding: 0 11px;
}
@media only screen and (min-width: 768px) {
  .HoroscopesPage .HoroscopesContainer .HoroscopeBlock {
    width: 23%;
  }
}
@media only screen and (min-width: 992px) {
  .HoroscopesPage .HoroscopesContainer .HoroscopeBlock {
    width: 18%;
  }
}
@media only screen and (min-width: 1200px) {
  .HoroscopesPage .HoroscopesContainer .HoroscopeBlock {
    width: 16%;
  }
}
.HoroscopesPage .HoroscopesContainer .HoroscopeBlock .HoroscopeImgBlock {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.HoroscopesPage .HoroscopesContainer .HoroscopeBlock .HoroscopeImgBlock::before {
  content: "";
  display: block;
  padding-top: 20%;
}
.HoroscopesPage .HoroscopesContainer .HoroscopeBlock .HoroscopeImgBlock::after {
  content: "";
  display: block;
  padding-bottom: 20%;
}
.HoroscopesPage .HoroscopesContainer .HoroscopeBlock h3 {
  margin: 12px 0;
  color: #000;
  font-weight: bold;
}
.HoroscopesPage .HoroscopesContainer .HoroscopeBlock p {
  color: #6E7B83;
}

.HoroscopeDetailsPage .HoroscopesContainer {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 15px;
}
.HoroscopeDetailsPage .HoroscopesContainer .HoroscopeBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  padding: 0 11px;
}
@media only screen and (min-width: 768px) {
  .HoroscopeDetailsPage .HoroscopesContainer .HoroscopeBlock {
    width: 28%;
  }
}
@media only screen and (min-width: 992px) {
  .HoroscopeDetailsPage .HoroscopesContainer .HoroscopeBlock {
    width: 22%;
  }
}
@media only screen and (min-width: 1200px) {
  .HoroscopeDetailsPage .HoroscopesContainer .HoroscopeBlock {
    width: 20%;
  }
}
.HoroscopeDetailsPage .HoroscopesContainer .HoroscopeBlock .HoroscopeImgBlock {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.HoroscopeDetailsPage .HoroscopesContainer .HoroscopeBlock .HoroscopeImgBlock::before {
  content: "";
  display: block;
  padding-top: 20%;
}
.HoroscopeDetailsPage .HoroscopesContainer .HoroscopeBlock .HoroscopeImgBlock::after {
  content: "";
  display: block;
  padding-bottom: 20%;
}
.HoroscopeDetailsPage .HoroscopesContainer .HoroscopeTextBlock {
  border-bottom: 1px solid #E7E8EA;
  margin-bottom: 25px;
  padding-bottom: 15px;
}
.HoroscopeDetailsPage .HoroscopesContainer .HoroscopeTextBlock h3 {
  margin: 12px 0;
  color: #000;
  font-weight: bold;
}
.HoroscopeDetailsPage .HoroscopesContainer .HoroscopeTextBlock p {
  color: #6E7B83;
  margin-bottom: 15px;
}
.HoroscopeDetailsPage .famousDetailsBlock {
  padding: 15px 0;
  margin: 30px 0;
  border-top: 1px solid #E7E8EA;
  border-bottom: 1px solid #E7E8EA;
}
.HoroscopeDetailsPage .famousDetailsBlock h3 {
  margin: 12px 0;
  color: #000;
  font-weight: bold;
  font-size: 1.5rem;
}
.HoroscopeDetailsPage .famousDetailsBlock .famousDetailsNames p {
  color: #6E7B83;
  margin-bottom: 15px;
  line-height: 1.8;
  margin-left: 1rem;
}
.HoroscopeDetailsPage .famousDetailsBlock .famousDetailsImages img {
  width: calc((100% - 1rem) / 3);
  margin-left: 1rem;
}
.HoroscopeDetailsPage .luckTodayOneType {
  margin: 25px 0;
}
.HoroscopeDetailsPage .luckTodayOneType h3 {
  margin: 12px 0;
  color: #000;
  font-weight: bold;
  font-size: 1.5rem;
}
.HoroscopeDetailsPage .luckTodayOneType p {
  color: #6E7B83;
  margin-bottom: 15px;
  line-height: 1.8;
}

.videoListingPage {
  padding: 2.5rem 0;
}
.videoListingPage select {
  background: none;
  border: none;
  border-radius: 4px;
  display: inline-block;
  line-height: 1.5em;
  padding: 0.5em 1em 0.5em 2.5em;
  /* reset */
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), radial-gradient(#ddd 70%, transparent 72%);
  background-position: calc(26% - 20px) calc(1em + 2px), calc(26% - 15px) calc(1em + 2px), calc(5% - 0em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1.5em 1.5em;
  background-repeat: no-repeat;
}
.videoListingPage select:focus {
  background-image: linear-gradient(45deg, white 50%, transparent 50%), linear-gradient(135deg, transparent 50%, white 50%), radial-gradient(gray 70%, transparent 72%);
  background-position: calc(26% - 15px) 1em, calc(26% - 20px) 1em, calc(5% - 0em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1.5em 1.5em;
  background-repeat: no-repeat;
  border-color: green;
  outline: 0;
}
.videoListingPage .videosSectionListing .cardVideoDetails {
  position: absolute;
  bottom: 7px;
  left: 10px;
  background: rgba(0, 0, 0, 0.5019607843);
  padding: 0.3rem;
  border-radius: 4px;
  color: #fff;
}

.videoListingPage .page-intro {
  background: #e9e9e9;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 25px;
}
.videoListingPage .innerPageListing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (min-width: 576px) {
  .videoListingPage .innerPageListing .news-ver-card {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .videoListingPage .innerPageListing .news-ver-card {
    width: calc((100% - 40.1px) / 2);
  }
}
@media only screen and (min-width: 992px) {
  .videoListingPage .innerPageListing .news-ver-card {
    width: calc((100% - 40.1px) / 3);
  }
}
.videoListingPage .innerPageListing .news-ver-card.album {
  border: 1px dotted red;
}
.videoListingPage .innerPageListing .news-ver-card.album ::before {
  content: "";
  position: absolute;
  background: url(../images/!important/gallary-layers.svg) no-repeat center;
  right: 15px;
  top: 10px;
  z-index: 2;
  width: 24px;
  height: 24px;
}

.coverageListingPage .sections-listing-news {
  border-top: 1px solid var(--outerSpace);
  padding-top: 20px;
  background: #f8f8f8;
}
.coverageListingPage .ps-lg-5 {
  padding-left: 0.5rem;
}

.thanaweyaFormHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.thanaweyaFormHead h3 {
  color: #f37021;
  font-family: AlWatanBold;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.thanaweyaFormHead p {
  color: #000;
  font-family: AlWatanBold;
  font-size: 1.3rem;
  line-height: 1.8;
}

.thanaweyaFormRegistration {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 25px 0;
}
.thanaweyaFormRegistration .registrationFormInputBlock {
  width: calc(50% - 10px);
  margin-bottom: 15px;
}
.thanaweyaFormRegistration .registrationFormInput {
  width: 100%;
  height: 40px;
  border: 1.5px solid rgba(110, 123, 131, 0.8509803922);
  text-align: right;
  border-radius: 5px;
  color: rgba(110, 123, 131, 0.8509803922);
  font-size: 1rem;
  font-family: AlWatanLight;
  margin-bottom: 5px;
  padding: 0 10px;
}
.thanaweyaFormRegistration .registrationFormSubmitBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.thanaweyaFormRegistration .registrationFormSubmit {
  margin: auto;
  background: none;
  border: 1.5px solid rgba(110, 123, 131, 0.8509803922);
  border-radius: 5px;
  color: rgba(110, 123, 131, 0.8509803922);
  font-size: 1.1rem;
  font-family: AlWatanBold;
  outline: none;
  padding: 8px 12px;
}
.thanaweyaFormRegistration .registrationFormInputError {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 5px;
}
.thanaweyaFormRegistration .registrationFormInputError i {
  color: red;
}
.thanaweyaFormRegistration .registrationFormInputError p {
  color: red;
  font-size: 0.9rem;
  font-family: AlWatanLight;
}
.thanaweyaFormRegistration .registrationFormSuccess {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 5px;
  margin-top: 10px;
}
.thanaweyaFormRegistration .registrationFormSuccess i {
  color: forestgreen;
}
.thanaweyaFormRegistration .registrationFormSuccess p {
  color: forestgreen;
  font-size: 1.1rem;
  font-family: AlWatanLight;
}

.thanaweyaFormPref p {
  color: #000;
  font-family: AlWatanBold;
  font-size: 1rem;
  line-height: 1.8;
}

.thanaweyaContentBlock {
  margin: 25px 0;
}
.thanaweyaContentBlock .thanaweyaContentH3 {
  color: #f37021;
  font-family: AlWatanBold;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.thanaweyaContentBlock ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
}
.thanaweyaContentBlock ul li span {
  color: #f37021;
  font-family: AlWatanBold;
  font-size: 1rem;
}
.thanaweyaContentBlock ul li p {
  margin-right: 5px;
  color: #000;
  font-family: AlWatanLight;
  font-size: 1rem;
}
.thanaweyaContentBlock .thanaweyaContentDetailsBlock P {
  color: #000;
  font-family: AlWatanBold;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield; /* Firefox */
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .registrationFormInputBlock {
    width: 100% !important;
  }
}
@media (max-width: 500px) {
  .registrationFormInputBlock {
    width: 100% !important;
  }
}