@charset "UTF-8";
/*=============== FONTS ===============*/
@font-face {
  font-family: "IBM-Regular";
  src: url("../fonts/IBMPlexSansArabic-Regular.ttf");
}
@font-face {
  font-family: "IBM-Light";
  src: url("../fonts/IBMPlexSansArabic-Light.ttf");
}
@font-face {
  font-family: "IBM-SemiBold";
  src: url("../fonts/IBMPlexSansArabic-Medium.ttf");
}
@font-face {
  font-family: "IBM-Bold";
  src: url("../fonts/IBMPlexSansArabic-Bold.ttf");
}
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?meefpp");
  src: url("../fonts/icomoon.eot?meefpp#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?meefpp") format("truetype"), url("../fonts/icomoon.woff?meefpp") format("woff"), url("../fonts/icomoon.svg?meefpp#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-twitter-x:before {
  content: "";
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "IBM-Regular", sans-serif;
  font-size: 16px;
  background-color: #fff;
  color: #111111;
  transition: 0.3s;
  scroll-behavior: smooth;
  /* For animation dark mode */
}

h1,
h2,
h3 {
  color: #111111;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

input,
button {
  outline: none;
  border: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.grid {
  display: grid;
}

.section {
  padding: 4rem 0 4rem;
}

.section_title {
  position: relative;
  font-family: "IBM-Bold";
  font-size: 25px;
  width: fit-content;
  margin-bottom: 1rem;
}
.section_title::after {
  content: " ";
  width: 108%;
  background-color: #FEF201;
  height: 53%;
  position: absolute;
  bottom: 2px;
  z-index: -1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.section_title span {
  color: var(--second-color);
}

.section_subtitle {
  display: block;
  font-size: 19px;
  color: #777E90;
}

.main {
  overflow: hidden;
  /* For the animations ScrollReveal*/
}
.main .main-content-inner {
  padding-top: 95.37px;
}

/*=============== HEADER & NAV ===============*/
header.main-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 12px 0;
  z-index: 1000;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
header.main-header .inner-header {
  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;
}
header.main-header .inner-header .logo {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
header.main-header .inner-header .logo img {
  max-width: 45px;
}
header.main-header .inner-header .logo .mazad_titles {
  font-family: "IBM-SemiBold";
  vertical-align: middle;
  font-size: 15px;
  color: #111;
  margin-right: 10px;
  display: inline-block;
  white-space: pre-line;
  margin-top: -17px;
}
header.main-header .inner-header .nav-links nav .nav-items {
  list-style: none;
  margin: 0;
}
header.main-header .inner-header .nav-links nav .nav-items > li {
  position: relative;
  font-family: "IBM-SemiBold";
  display: inline-block;
  color: #111111;
  font-size: 15px;
  padding: 0 10px;
  vertical-align: middle;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
header.main-header .inner-header .nav-links nav .nav-items > li a {
  position: relative;
  z-index: 2;
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
header.main-header .inner-header .nav-links nav .nav-items > li .toggle-theme {
  background-color: #fff;
  width: 42.5px;
  height: 42.5px;
  color: #000;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.2);
}
header.main-header .inner-header .nav-links nav .nav-items > li .toggle-theme i {
  line-height: 0;
}
header.main-header .inner-header .nav-links nav .nav-items > li.loginBtn {
  padding-left: 0;
}
header.main-header .inner-header .nav-links nav .nav-items > li.loginBtn .btnLink {
  background-color: #070707;
  padding: 10px 10px 10px 10px;
  min-width: 110px;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  height: 42.5px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
header.main-header .inner-header .nav-links nav .nav-items > li.loginBtn .btnLink i {
  font-size: 17px;
  vertical-align: middle;
  line-height: 0.5;
  margin-left: 4px;
}
header.main-header .inner-header .nav-links nav .nav-items > li.loginBtn .dropdown-toggle::after {
  content: "";
  border: 0;
  font-family: uicons-regular-rounded !important;
  font-style: normal;
  line-height: 0;
  vertical-align: middle;
}
header.main-header .inner-header .nav-links nav .nav-items > li.loginBtn .dropdown-menu {
  padding: 0;
  background-color: #fff;
  border-color: #fff;
  min-width: 200px;
  -webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
}
header.main-header .inner-header .nav-links nav .nav-items > li.loginBtn .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 14px 14px;
}
header.main-header .inner-header .nav-links nav .nav-items > li.loginBtn .dropdown-menu .dropdown-item i {
  vertical-align: middle;
  line-height: 0;
  margin-left: 7px;
  font-size: 15px;
}
header.main-header .inner-header .nav-links nav .nav-items > li.languageBtn {
  padding-left: 0;
}
header.main-header .inner-header .nav-links nav .nav-items > li.languageBtn a {
  background-color: #fff;
  width: 42.5px;
  height: 42.5px;
  color: #000;
  border-radius: 50px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.2);
}
header.main-header .inner-header .nav-links nav .nav-items > li.languageBtn a i {
  font-size: 17px;
  vertical-align: middle;
  line-height: 0.5;
  margin-left: 4px;
}
header.main-header .inner-header .nav-links nav .nav-items > li.active a {
  color: #111111;
}
header.main-header .inner-header .nav-links nav .nav-items > li.active::after {
  content: " ";
  display: block;
  width: 90%;
  background-color: #FEF201;
  height: 70%;
  position: absolute;
  bottom: 2px;
  z-index: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
header.main-header .inner-header .nav-links nav .nav-items > li:not(.loginBtn, .dark-mode-wrap, .languageBtn):hover::after {
  content: " ";
  display: block;
  width: 90%;
  background-color: #FEF201;
  height: 70%;
  position: absolute;
  bottom: 2px;
  z-index: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
header.main-header .social ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header.main-header .social li {
  position: relative;
  display: inline-block;
  margin-left: 5px;
}
header.main-header .social li a {
  width: 35px;
  height: 35px;
  display: inline-block;
  border-radius: 50px;
  line-height: 40px;
  font-size: 18px;
  text-align: center;
  background-color: #f6f7fd;
  color: #111111;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  box-shadow: 0px 2px 10px #e8e8e8;
}
header.main-header .social li:hover a {
  background-color: #111111;
  color: #fff;
}
header.main-header .social ul > li:last-child {
  margin-left: 0;
}
header.main-header .social ul > li:last-child::after {
  display: none;
}
header.main-header.fixed-header {
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
  padding: 15px 20px;
  -webkit-backdrop-filter: blur(5px);
  /* Use for Safari 9+, Edge 17+ (not a mistake) and iOS Safari 9.2+ */
  backdrop-filter: blur(5px);
  /* Supported in Chrome 76 */
}
header.main-header.inside {
  -webkit-box-shadow: 10px 10px 45px rgba(131, 131, 131, 0.13);
  box-shadow: 10px 10px 45px rgba(131, 131, 131, 0.13);
}

.dropdown-item.active, .dropdown-item:active {
  background-color: var(--bs-dropdown-link-hover-bg);
}

@media (max-width: 567px) {
  header.main-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
  header.main-header .container {
    padding: 0;
  }
}
#m-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(54, 68, 87, 0.6);
  z-index: 2222222;
  opacity: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
#m-menu.active {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
}
#m-menu .toggle-nav {
  position: absolute;
  top: 20px;
  left: 24%;
  cursor: pointer;
  z-index: 2222;
}
#m-menu .toggle-nav .fa,
#m-menu .toggle-nav i {
  color: #111111;
  font-size: 30px;
}
#m-menu .toggle-nav span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #0A2842;
  margin-bottom: 5px;
  border-radius: 5px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu .toggle-nav span:nth-child(2) {
  width: 14px;
}
#m-menu .toggle-nav.active span:nth-child(2) {
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  opacity: 0;
}
#m-menu .toggle-nav.active span:nth-child(1) {
  -webkit-transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
  transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
}
#m-menu .toggle-nav.active span:nth-child(3) {
  -webkit-transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
  transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
}
#m-menu .closeHidden {
  position: absolute;
  left: 0;
  /* background: red; */
  width: 20%;
  height: 100%;
  display: block;
  bottom: 0;
  opacity: 0.1;
}
#m-menu .languageBtn {
  padding: 15px 30px;
}
#m-menu .languageBtn a {
  background-color: #fff;
  width: 42.5px;
  height: 42.5px;
  border: 0;
  color: #000;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.2);
}
#m-menu .nav-items {
  width: 80%;
  height: 100%;
  min-height: 100vh;
  display: block;
  text-align: right;
  background: rgba(255, 255, 255, 0.9);
  padding: 0;
}
#m-menu .nav-items .mazad_titles {
  font-family: "IBM-SemiBold";
  vertical-align: middle;
  font-size: 15px;
  color: #111;
  margin-right: 10px;
  display: inline-block;
  white-space: pre-line;
  margin-top: -17px;
}
#m-menu .nav-items li {
  position: relative;
  font-family: "IBM-SemiBold";
  display: block;
  color: #111111;
  font-size: 17px;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu .nav-items li .toggle-theme-mob {
  background-color: #fff;
  width: 42.5px;
  height: 42.5px;
  color: #000;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.2);
}
#m-menu .nav-items li .toggle-theme-mob i {
  line-height: 0;
}
#m-menu .nav-items li.loginBtn .btnLink {
  background-color: #070707;
  padding: 10px 12px;
  min-width: 130px;
  color: #fff;
  border-radius: 50px;
  display: block;
  text-align: center;
  margin: 0 20px;
  font-size: 15px;
  display: flex;
  align-items: center;
  border: 0;
  justify-content: center;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
#m-menu .nav-items li.loginBtn .btnLink i {
  font-size: 16px;
  vertical-align: middle;
  line-height: 1;
  margin-left: 4px;
}
#m-menu .nav-items li.loginBtn .dropdown-toggle::after {
  content: "";
  border: 0;
  font-family: uicons-regular-rounded !important;
  font-style: normal;
  line-height: 0;
  vertical-align: middle;
}
#m-menu .nav-items li.loginBtn .dropdown-menu {
  padding: 0;
  background-color: #fff;
  border-color: #fff;
  min-width: 200px;
  -webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
  width: calc(100% - 40px);
}
#m-menu .nav-items li.loginBtn .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 14px 14px;
}
#m-menu .nav-items li.loginBtn .dropdown-menu .dropdown-item i {
  line-height: 0;
  vertical-align: middle;
  margin-left: 7px;
}
#m-menu .nav-items li a span {
  position: relative;
}
#m-menu .nav-items li.active a span::before {
  content: " ";
  width: 105%;
  background-color: #FEF201;
  height: 70%;
  position: absolute;
  bottom: 2px;
  right: 0;
  z-index: -1;
}
#m-menu .nav-items li:last-child::after {
  display: none;
}
#m-menu .nav-items li:last-child .btn-custom.primary {
  box-shadow: none;
}
#m-menu .nav-items li .nav-link {
  position: relative;
  padding: 15px 30px;
  display: block;
  color: inherit;
  text-align: right;
  z-index: 2;
}
#m-menu .nav-items li:hover {
  color: #111111;
}
#m-menu .nav-items li:hover::after {
  width: 100%;
}
#m-menu .nav-items li.logo .nav-link {
  display: inline-block !important;
}
#m-menu .social {
  padding: 15px 30px;
  text-align: right;
}
#m-menu .social a {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50px;
  line-height: 45px;
  font-size: 20px;
  text-align: center;
  margin-left: 5px;
  background-color: #f6f7fd;
  color: #111111;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#m-menu .social a:last-child {
  margin-left: 0;
}
#m-menu .social a:hover {
  background-color: #111111;
  color: #fff;
}

@media (min-width: 1200px) {
  header .toggle-nav {
    display: none;
  }
}
@media (max-width: 1200px) {
  header nav,
header .social ul {
    display: none;
  }
  header .toggle-nav {
    margin-top: 0;
    line-height: 0;
    margin-left: 0px;
  }
  header .toggle-nav .toggle-btn {
    background: none;
    border: none;
    outline: 0;
  }
  header .toggle-nav .toggle-btn span {
    position: relative;
    display: block;
    width: 6.5px;
    height: 6.5px;
    background-color: #fff;
    border: 2px solid #111111;
    margin-bottom: 1.5px;
    border-radius: 50px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  header .toggle-nav .toggle-btn.active span:nth-child(2) {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  header .toggle-nav .toggle-btn.active span:nth-child(1) {
    -webkit-transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
    transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
  }
  header .toggle-nav .toggle-btn.active span:nth-child(3) {
    -webkit-transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
    transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
  }
  header .toggle-nav .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    -webkit-transform: translateX(270px);
    transform: translateX(270px);
    -webkit-box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
  }
  header .toggle-nav .mobile-menu .mobile-menu-items {
    background-color: #ffffff;
    margin: 0;
    width: 270px;
    height: 100%;
    overflow: auto;
    list-style: none;
    padding: 0;
  }
  header .toggle-nav .mobile-menu-items li {
    padding: 15px 23px;
    border-bottom: 1px solid #f1f1f1;
    font-family: "IBM-Regular";
    color: #3C2663;
    font-size: 16px;
    line-height: 19px;
    text-align: right;
  }
  header .toggle-nav .mobile-menu-items li a {
    color: inherit;
    text-decoration: none;
  }
  header .toggle-nav .mobile-menu-items li a.myaccount i {
    margin-left: 10px;
  }
  header .toggle-nav .mobile-menu-items li.lang .nice-select {
    float: none;
    text-align: right !important;
  }
  header .toggle-nav .mobile-menu-items li.lang .nice-select .list {
    width: 100%;
  }
  header .toggle-nav .mobile-menu.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
  }
}
/*=============== HOME ===============*/
.home {
  position: relative;
  background: url(../img/pattern.png) rgba(241, 244, 252, 0.69);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 5rem 0 4rem 0 !important;
}
.home .home_contnet {
  position: relative;
  z-index: 22;
  padding: 5.5rem 0;
}
.home .home_contnet .slide_text {
  text-align: right;
}
.home .home_contnet .slide_text h3 {
  font-family: "IBM-Bold";
  font-size: 18px;
}
.home .home_contnet .slide_text h2 {
  font-family: "IBM-Bold";
  font-size: 40px;
  line-height: 45px;
  margin-bottom: 30px;
}
.home .home_contnet .slide_text p {
  font-family: "IBM-Regular";
  color: #717171;
  font-size: 18px;
  margin-bottom: 0;
  line-height: 30px;
}
@media (min-width: 576px) {
  .home .home_contnet .slide_text p {
    max-width: 435px;
  }
}
.home .home_contnet .slide_text .start-now {
  background-color: #070707;
  padding: 10px 10px;
  min-width: 110px;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  font-size: 15px;
  height: 42.5px;
  line-height: 23px;
  word-spacing: 3px;
  margin-top: 30px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .home .home_contnet .slide_text {
    margin-bottom: 30px;
    text-align: center;
  }
}
.home .home_contnet .main-banner {
  position: relative;
  max-width: 75%;
  margin: 0 auto 0 0;
  pointer-events: none;
}
.home .home_contnet .main-banner img {
  border-radius: 25px;
  height: auto;
}
.home .home_contnet .main-banner .custom-play-button {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
}
.home .home_contnet .main-banner .custom-play-button .button-play {
  background-color: #FEF201;
  color: #070707;
  border: 2px solid #070707;
  opacity: 0.9;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 35px;
}
.home .home_contnet .main-banner .custom-play-button:hover {
  cursor: pointer;
}
.home .home_contnet .main-banner .custom-play-button:hover .button-play {
  opacity: 1;
}
@media (max-width: 767px) {
  .home .home_contnet .main-banner {
    margin: 0 auto;
  }
}
.home .swiper-container {
  width: 100%;
  height: 100%;
}
.home .swiper-slide {
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow-x: hidden;
}
.home .swiper-pagination {
  position: absolute;
  bottom: 0;
  right: 60px;
  width: auto !important;
  left: auto !important;
  margin: 0;
}
.home .swiper-pagination-bullet {
  position: relative;
  font-family: "IBM-Regular";
  padding: 0px 5px;
  border-radius: 0;
  width: auto;
  text-align: center;
  font-size: 15px;
  background-color: transparent;
  color: #777E90;
  opacity: 1;
  height: 32px;
}
.home .swiper-pagination-bullet-active {
  font-family: "IBM-Bold";
  background-color: transparent;
  color: #111111;
}
.home .swiper-pagination-bullet-active::after {
  content: " ";
  width: 80%;
  height: 5px;
  background-color: #111111;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.recent-mazadt {
  padding: 4rem 0 6rem;
  scroll-margin-top: 50px;
}
.recent-mazadt .container {
  scroll-margin-top: 50px;
}
@media (max-width: 576px) {
  .recent-mazadt {
    scroll-margin-top: 100px;
  }
  .recent-mazadt .container {
    scroll-margin-top: 100px;
  }
}
.recent-mazadt .section_title {
  z-index: 1;
  margin: 2rem auto;
}
.recent-mazadt .mazadat-items {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(320px, 4fr));
  grid-gap: 25px;
  margin-top: 60px;
}
@media (max-width: 576px) {
  .recent-mazadt .mazadat-items {
    padding: 0;
    grid-gap: 0px;
  }
}
.recent-mazadt .mazad-item {
  position: relative;
  background: #fff;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
}
.recent-mazadt .mazad-item .image {
  position: relative;
  height: 286px;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}
.recent-mazadt .mazad-item .image img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.recent-mazadt .mazad-item .image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.45) 100%);
  display: none;
}
.recent-mazadt .mazad-item .mazad-content {
  padding: 12px 20px 30px 20px;
  position: relative;
}
.recent-mazadt .mazad-item .mazad-content h3 {
  font-family: "IBM-SemiBold";
  font-size: 20px;
  color: #070707;
  margin: 0 0 10px 0;
}
.recent-mazadt .mazad-item .mazad-content h3 a {
  color: inherit;
}
.recent-mazadt .mazad-item .mazad-content p {
  font-size: 14px;
  color: #818181;
  margin-top: 1rem;
  margin-bottom: 7px;
}
.recent-mazadt .mazad-item .mazad-content .countdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 5px 0;
}
.recent-mazadt .mazad-item .mazad-content .countdown-wrapper > div {
  min-width: 55px;
  height: 55px;
  background-color: #EFF1F7;
  border-radius: 50px;
  display: flex;
  color: #000000;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  font-size: 12px;
}
.recent-mazadt .mazad-item .rasie {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 15px;
}
.recent-mazadt .mazad-item .rasie .highest-raise {
  font-family: "IBM-SemiBold";
  font-size: 22px;
  color: #070707;
}
.recent-mazadt .mazad-item .rasie .highest-raise p {
  font-family: "IBM-Regular";
  margin-bottom: 0px;
  color: #818181;
  font-size: 13px;
}
.recent-mazadt .mazad-item .rasie .raise-button button, .recent-mazadt .mazad-item .rasie .raise-button a {
  background-color: #070707;
  padding: 10px 10px;
  min-width: 140px;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  font-size: 15px;
  height: 42.5px;
  line-height: 23px;
}
@media (max-width: 767px) {
  .recent-mazadt .mazad-item {
    height: calc(100% - 15px) !important;
  }
}
@media (max-width: 576px) {
  .recent-mazadt .mazad-item .upper {
    display: flex;
  }
  .recent-mazadt .mazad-item .upper .image {
    padding: 20px 10px 15px;
    width: 40%;
    height: 200px;
  }
  .recent-mazadt .mazad-item .upper .image img {
    border-radius: 13px;
    height: 100%;
    object-fit: contain;
  }
  .recent-mazadt .mazad-item .upper .mazad-content {
    width: 60%;
    padding: 20px 5px 15px;
  }
  .recent-mazadt .mazad-item .upper .mazad-content h3 {
    font-size: 15px;
    line-height: 1.8;
  }
  .recent-mazadt .mazad-item .upper .mazad-content .countdown-wrapper {
    gap: 5px;
  }
  .recent-mazadt .mazad-item .upper .mazad-content .countdown-wrapper > div {
    min-width: 40px;
    height: 40px;
    font-size: 10px;
  }
  .recent-mazadt .mazad-item .rasie {
    padding: 0 15px 15px;
  }
  .recent-mazadt .mazad-item .rasie .raise-button a {
    min-width: 215px;
  }
}
@media (max-width: 400px) {
  .recent-mazadt .mazad-item .rasie {
    padding: 0 15px 15px;
  }
  .recent-mazadt .mazad-item .rasie .raise-button a {
    min-width: 200px;
  }
}
.recent-mazadt.inside .moreButton {
  text-align: center;
  margin-top: 60px;
}

.end-badge {
  display: inline-block;
  padding: 8px 15px;
  font-size: 12px;
  font-family: "IBM-SemiBold";
  white-space: nowrap;
  background-color: rgba(234, 64, 37, 0.15);
  color: #EA4025;
  border-radius: 50px;
}

/*=============== How We Work ===============*/
.how-we-work {
  background-color: #F8F9FD;
  padding: 8rem 0 8rem;
  scroll-margin-top: 100px;
}
.how-we-work .container {
  scroll-margin-top: 100px;
}
@media (max-width: 576px) {
  .how-we-work {
    scroll-margin-top: 100px;
  }
  .how-we-work .container {
    scroll-margin-top: 100px;
  }
}
.how-we-work .section_title {
  z-index: 1;
  margin: 0 auto;
}
.how-we-work .work-steps {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(200px, 4fr));
  grid-gap: 40px;
  margin-top: 100px;
}
.how-we-work .work-steps .work-item {
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.how-we-work .work-steps .work-item .item_icon {
  position: relative;
  width: 120px;
  height: 120px;
  background-color: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 34px rgba(121, 121, 121, 0.1);
  margin: 0 auto 20px;
}
.how-we-work .work-steps .work-item .item_icon::before {
  position: absolute;
  top: 60%;
  content: "";
  width: 180px;
  height: 157px;
  background: url(../img/work/abstrack.svg) no-repeat;
  left: -130px;
  background-size: 50px;
}
.how-we-work .work-steps .work-item h3 {
  font-family: "IBM-SemiBold";
  font-size: 19px;
  color: #070707;
}
.how-we-work .work-steps .work-item p {
  font-size: 16px;
  color: #949CA9;
}
.how-we-work .work-steps .work-item p a {
  color: #4383EA;
  text-decoration: underline;
}
.how-we-work .work-steps .work-item:nth-child(1) .item_icon {
  transform: translateY(-40px);
}
.how-we-work .work-steps .work-item:nth-child(1) .item_icon::before {
  background: url(../img/work/abstrack.svg) no-repeat;
  background-size: 120px;
}
.how-we-work .work-steps .work-item:nth-child(2) .item_icon::before {
  background: url(../img/work/abstrack-reverse.svg) no-repeat;
  background-size: 120px;
}
.how-we-work .work-steps .work-item:nth-child(3) .item_icon {
  transform: translateY(-40px);
}
.how-we-work .work-steps .work-item:nth-child(3) .item_icon::before {
  background: url(../img/work/abstrack.svg) no-repeat;
  background-size: 120px;
}
.how-we-work .work-steps .work-item:nth-child(4) .item_icon::before {
  background: url(../img/work/abstrack-reverse.svg) no-repeat;
  background-size: 120px;
}
.how-we-work .work-steps .work-item:nth-child(5) .item_icon {
  transform: translateY(-40px);
}
.how-we-work .work-steps .work-item:nth-child(5) .item_icon::before {
  display: none;
}

.banner {
  padding: 7rem 0 7rem;
}
.banner .section_title {
  overflow: hidden;
}
@media (max-width: 576px) {
  .banner .section_title {
    font-size: 17px;
  }
}
.banner p {
  font-family: "IBM-Regular";
  color: #959CA8;
  font-size: 18px;
  margin-bottom: 0;
  line-height: 30px;
}
@media (min-width: 576px) {
  .banner p {
    max-width: 450px;
  }
}
@media (max-width: 576px) {
  .banner p {
    text-align: center;
  }
}
.banner img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .banner img {
    object-fit: cover;
    border-radius: 10px;
  }
}

/*=============== Questions ===============*/
.questions {
  padding-top: 0;
  scroll-margin-top: 100px;
}
.questions .container {
  scroll-margin-top: 100px;
}
.questions .more-btn {
  text-align: center;
}
.questions .more-btn a {
  background-color: #070707;
  padding: 10px 20px;
  min-width: 110px;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  font-size: 15px;
  height: 42.5px;
  line-height: 20px;
  word-spacing: 3px;
  margin-top: 30px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.questions .questions-wrap {
  margin-top: 50px;
}

.questions .questions-wrap .accordion-item {
  margin-bottom: 20px;
  border: 0;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 25px rgba(171, 175, 199, 0.23);
  box-shadow: 0 0 25px rgba(171, 175, 199, 0.23);
}

.questions .questions-wrap .accordion-button {
  padding: 15px 20px;
  font-family: "IBM-SemiBold";
  font-size: 15px;
  color: #000000;
  background-color: #FFFFFF;
  border-radius: 50px;
  outline: none;
  box-shadow: none;
}

.questions .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 50px;
}

.questions .questions-wrap .accordion-body {
  padding: 10px 20px;
  font-size: 14px;
  background-color: #fff;
  line-height: 27px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  color: #959CA8;
}

.questions .questions-wrap .accordion-button:not(.collapsed) {
  background-color: #fff;
  outline: none;
  box-shadow: none;
  border-radius: 30px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.questions .questions-wrap .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "";
  font-family: uicons-regular-rounded !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: #999999;
  background: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  line-height: 35px;
  text-align: center;
  font-size: 22px;
  transform: rotate(0deg);
}

.questions .questions-wrap .accordion-button::after {
  background-image: none;
  content: "";
  font-family: uicons-regular-rounded !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: #999999;
  background: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  line-height: 35px;
  text-align: center;
  font-size: 22px;
}

/*=============== How Wrap ===============*/
.how-wrap {
  margin-bottom: 50px;
}
.how-wrap .section_title {
  margin: 0 0 30px 0;
}
.how-wrap:last-child {
  margin-bottom: 0;
}
.how-wrap .how-card {
  background-color: #FFFFFF;
  padding: 2rem;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
}
.how-wrap .how-card .list-items {
  padding: 0;
}
.how-wrap .how-card .list-items li {
  padding: 10px 0;
  font-size: 17px;
  color: #070707;
}
.how-wrap .how-card .list-items li span {
  font-family: "IBM-SemiBold";
  color: #070707;
}
.how-wrap .how-card .vector img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.how-wrap .how-card ul, .how-wrap .how-card ol {
  margin: 0 !important;
  padding-right: 1.1rem !important;
}
.how-wrap .how-card li {
  font-family: "IBM-Regular" !important;
  padding: 0 0 10px 0 !important;
  font-size: 15px !important;
  color: #070707 !important;
}
.how-wrap .how-card p {
  font-family: "IBM-Regular" !important;
  padding: 0 0 0 0 !important;
  font-size: 15px !important;
  color: #070707 !important;
}

/*=============== Congratulation ===============*/
.congratulation .congratulation-card {
  position: relative;
  background-color: rgba(239, 241, 247, 0.73);
  padding: 4rem 5rem;
  border-radius: 10px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='10' ry='10' stroke='%23CBCBCBFF' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='10' stroke-linecap='round'/%3e%3c/svg%3e");
}
.congratulation .congratulation-card .section_title {
  font-family: "IBM-SemiBold";
  font-size: 45px;
  z-index: 1;
  margin-right: 10px;
  vertical-align: middle;
}
.congratulation .congratulation-card .confetti {
  vertical-align: middle;
}
.congratulation .congratulation-card p {
  font-size: 18px;
  color: #949CA9;
  margin: 20px 0 20px;
}
.congratulation .congratulation-card .completePay {
  background-color: #070707;
  padding: 12px 30px;
  min-width: 130px;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
}
.congratulation .congratulation-card .completePay i {
  vertical-align: middle;
  margin-left: 6px;
  line-height: 0;
}
.congratulation .congratulation-card .ballons {
  position: absolute;
  left: 10%;
  bottom: 0;
}
.congratulation .congratulation-card .ballons img {
  max-width: 220px;
}
@media (max-width: 991px) {
  .congratulation .congratulation-card .ballons img {
    max-width: 120px;
  }
}
@media (max-width: 768px) {
  .congratulation .congratulation-card {
    padding: 2rem;
  }
  .congratulation .congratulation-card .ballons {
    position: absolute;
    left: 5%;
    bottom: 0;
  }
  .congratulation .congratulation-card .ballons img {
    max-width: 170px;
  }
}
@media (max-width: 576px) {
  .congratulation .congratulation-card {
    padding: 1.5rem;
  }
  .congratulation .congratulation-card .section_title {
    font-size: 25px;
  }
  .congratulation .congratulation-card .ballons {
    position: relative;
    margin-right: auto;
    display: block;
    left: auto;
    text-align: left;
    bottom: -24px;
  }
}

/*=============== User Dashboard ===============*/
.iti--separate-dial-code .iti__selected-dial-code {
  font-size: 14px;
}

.user-dashboard .iti__selected-flag {
  padding: 0 10px 0 20px;
}
.user-dashboard .iti__country-list {
  left: 0;
}
.user-dashboard .iti__arrow {
  position: absolute;
  left: 5px;
  margin-right: 0;
}
.user-dashboard .iti__selected-flag .iti__flag {
  margin-left: 5px;
}
.user-dashboard .iti__selected-flag {
  padding: 0 10px 0 25px;
}
.user-dashboard input[type=tel] {
  text-align: left;
  padding-left: 110px !important;
  direction: ltr;
}
.user-dashboard .card {
  background-color: #FFFFFF;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
  border: 0;
}
.user-dashboard .saveBtn {
  background-color: #070707;
  padding: 10px 10px;
  min-width: 110px;
  color: #fff;
  border-radius: 50px;
  display: block;
  text-align: center;
  font-size: 15px;
  height: 42.5px;
  line-height: 23px;
  margin-top: 30px;
  margin-right: auto;
}
.user-dashboard .fi-rr-power {
  color: #EA4025;
}
.user-dashboard .restore {
  color: #EA4025;
}
.user-dashboard .paid {
  color: #38C172;
}
.user-dashboard .mazadat-history .mazadat-items {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(250px, 4fr));
  grid-gap: 20px;
  padding-bottom: 40px;
}
.user-dashboard .mazadat-history .mazad-item {
  background: #fff;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  position: relative;
  margin-bottom: 10px;
}
.user-dashboard .mazadat-history .mazad-item .image {
  position: relative;
  height: 286px;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}
.user-dashboard .mazadat-history .mazad-item .image img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.user-dashboard .mazadat-history .mazad-item .image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.45) 100%);
  display: none;
}
.user-dashboard .mazadat-history .mazad-item .mazad-content {
  padding: 12px 20px 14px 20px;
  position: relative;
}
.user-dashboard .mazadat-history .mazad-item .mazad-content h3 {
  font-family: "IBM-SemiBold";
  font-size: 16px;
  color: #070707;
  margin: 0 0 10px 0;
}
.user-dashboard .mazadat-history .mazad-item .mazad-content h3 a {
  color: inherit;
}
.user-dashboard .mazadat-history .mazad-item .mazad-content p {
  font-size: 14px;
  color: #818181;
  margin-top: 1rem;
  margin-bottom: 7px;
}
.user-dashboard .mazadat-history .mazad-item .mazad-content .countdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px 0;
}
.user-dashboard .mazadat-history .mazad-item .mazad-content .countdown-wrapper > div {
  min-width: 55px;
  height: 55px;
  background-color: #EFF1F7;
  border-radius: 50px;
  display: flex;
  color: #000000;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  font-size: 12px;
}
.user-dashboard .mazadat-history .mazad-item .mazad-content .state {
  position: absolute;
  top: 28%;
  left: 0;
  padding: 9px 13px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  font-size: 12px;
  font-family: "IBM-SemiBold";
  white-space: nowrap;
}
.user-dashboard .mazadat-history .mazad-item .mazad-content .state.success {
  background-color: rgba(56, 193, 114, 0.15);
  color: #38C172;
}
.user-dashboard .mazadat-history .mazad-item .mazad-content .state.danger {
  background-color: rgba(234, 64, 37, 0.15);
  color: #EA4025;
}
.user-dashboard .mazadat-history .mazad-item .mazad-content .state.preparing {
  background-color: rgba(64, 129, 255, 0.1) !important;
  color: #4081ff;
}
@media (max-width: 576px) {
  .user-dashboard .mazadat-history .mazad-item .mazad-content .state {
    padding: 8px 9px;
  }
}
.user-dashboard .mazadat-history .mazad-item .rasie {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 15px;
}
.user-dashboard .mazadat-history .mazad-item .rasie .highest-raise {
  font-family: "IBM-SemiBold";
  font-size: 18px;
  color: #070707;
}
.user-dashboard .mazadat-history .mazad-item .rasie .highest-raise p {
  font-family: "IBM-Regular";
  margin-bottom: 0px;
  color: #818181;
  font-size: 13px;
}
.user-dashboard .mazadat-history .mazad-item .rasie .raise-button button, .user-dashboard .mazadat-history .mazad-item .rasie .raise-button a {
  background-color: #070707;
  padding: 10px 20px;
  min-width: 120px;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  font-size: 13px;
  height: 45.5px;
  line-height: 25px;
}
.user-dashboard .mazadat-history .mazad-item .rasie .raise-button button i, .user-dashboard .mazadat-history .mazad-item .rasie .raise-button a i {
  vertical-align: middle;
  line-height: 0;
  margin-left: 5px;
}
@media (max-width: 576px) {
  .user-dashboard .mazadat-history .mazad-item .rasie .raise-button button, .user-dashboard .mazadat-history .mazad-item .rasie .raise-button a {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .user-dashboard .mazadat-history .mazad-item .rasie {
    padding: 0 10px 15px;
  }
}
@media (max-width: 576px) {
  .user-dashboard .mazadat-history .mazad-item .upper {
    display: flex;
  }
  .user-dashboard .mazadat-history .mazad-item .upper .image {
    padding: 20px 10px 15px 5px;
    width: 40%;
    height: 200px;
  }
  .user-dashboard .mazadat-history .mazad-item .upper .image img {
    border-radius: 13px;
    height: 100%;
    object-fit: cover;
  }
  .user-dashboard .mazadat-history .mazad-item .upper .mazad-content {
    width: 60%;
    padding: 20px 5px 15px 10px;
  }
  .user-dashboard .mazadat-history .mazad-item .upper .mazad-content h3 {
    font-size: 15px;
    line-height: 1.8;
  }
  .user-dashboard .mazadat-history .mazad-item .upper .mazad-content .countdown-wrapper {
    gap: 5px;
    margin-top: 10px;
  }
  .user-dashboard .mazadat-history .mazad-item .upper .mazad-content .countdown-wrapper > div {
    min-width: 45px;
    height: 45px;
  }
  .user-dashboard .mazadat-history .mazad-item .rasie {
    padding: 0 15px 15px;
  }
}
.user-dashboard .borderd {
  border: 1px solid #D6DAE2;
  border-radius: 5px;
}
.user-dashboard .borderd .table_card {
  max-width: 98%;
  margin: 0 auto 10px;
}
@media (max-width: 576px) {
  .user-dashboard .borderd {
    border: 0;
  }
  .user-dashboard .borderd .table_card {
    border: 0.5px solid #D6DAE2;
  }
  .user-dashboard .borderd .table-item-content {
    text-align: left;
  }
}
.user-dashboard .address-scroll {
  display: flex;
  flex-flow: row !important;
  flex-wrap: nowrap;
  white-space: nowrap;
  max-width: 100%;
  overflow-x: scroll;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  /* Make this scrollable when needed */
  overflow-x: auto;
  /* We don't want vertical scrolling */
  overflow-y: hidden;
  /* For WebKit implementations, provide inertia scrolling */
  -webkit-overflow-scrolling: touch;
  /* We don't want internal inline elements to wrap */
}
.user-dashboard .address-scroll::-webkit-scrollbar-track {
  background-color: #F7F8F8;
  height: 0px;
}
.user-dashboard .address-scroll::-webkit-scrollbar {
  width: 10px;
  height: 0px;
  background-color: #F7F8F8;
}
.user-dashboard .address-scroll::-webkit-scrollbar-thumb {
  background-color: #F7F8F8;
}
.user-dashboard .address-scroll > div {
  width: 100%;
  margin-left: 20px;
  min-width: 320px;
  max-width: 50%;
}
@media (max-width: 767px) {
  .user-dashboard .address-scroll > div {
    max-width: 100%;
    margin-left: 0;
    margin-right: 15px;
  }
}
.user-dashboard .card-address .AddressLabel .card-text p {
  -webkit-text-fill-color: #949CA9;
}

.user-nav-items {
  background-color: #FFFFFF;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
  border: 0;
}
.user-nav-items .card-header {
  background-color: #EFF1F7;
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #EFF1F7;
  font-family: "IBM-SemiBold";
  font-size: 17px;
  color: #070707;
}
.user-nav-items .card-body {
  padding: 0;
}
.user-nav-items .card-body .nav-link {
  font-family: "IBM-SemiBold";
  padding: 30px 20px;
  text-align: right;
  border-radius: 0;
  color: #949CA9;
  font-size: 15px;
}
.user-nav-items .card-body .nav-link span {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.user-nav-items .card-body .nav-link i {
  line-height: 0;
  vertical-align: middle;
  margin-left: 7px;
  font-size: 20px;
}
.user-nav-items .card-body .nav-link.active {
  background-color: rgba(239, 241, 247, 0.5);
  color: #000000;
}
.user-nav-items .card-body .nav-link.active span::after {
  content: " ";
  display: block;
  width: 100%;
  background-color: #FEF201;
  height: 70%;
  position: absolute;
  bottom: 2px;
  z-index: -1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.card-address {
  margin: 0 0 10px 0;
  position: relative;
}

.card-address .card-body {
  padding: 1rem 1rem;
}

.card-address input[type=radio] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: -1;
}

.card-address .AddressLabel {
  color: #000;
  background-color: #fff;
  border: 0.5px solid #CECECE;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.03);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
  border-radius: 15px;
  min-height: 100%;
}

.card-address .AddressLabel .edits {
  float: left;
}

.card-address .AddressLabel .edits a {
  font-weight: 300;
  font-size: 19px;
  color: #555;
  padding: 5px 10px;
}

.card-address .AddressLabel .radioCircle {
  width: 20px;
  height: 20px;
  background: transparent;
  border-radius: 50px;
  border: 1px solid #e9edf3;
  position: relative;
  display: inline-block;
  vertical-align: sub;
  display: none;
}

.card-address .AddressLabel .card-title {
  display: inline-block;
  margin-top: 0;
  margin-right: 0px;
  margin-bottom: 15px;
  font-family: "IBM-SemiBold";
  font-size: 15px;
  color: #949CA9;
}

.card-address .AddressLabel .card-text p {
  font-family: "IBM-SemiBold";
  font-size: 15px;
  color: #949CA9;
  margin-bottom: 15px;
  white-space: normal;
}

.card-address .AddressLabel .card-text p:last-child {
  margin-bottom: 0;
}

.card-address .AddressLabel .radioCircle::after {
  content: " ";
  position: absolute;
  top: 22%;
  left: 34%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.card-address .AddressInput:checked ~ .AddressLabel .radioCircle {
  background-color: #070707;
}

.card-address .AddressInput:checked ~ .AddressLabel .radioCircle::after {
  opacity: 1;
}

.card-shipping .AddressInput:checked ~ .AddressLabel {
  background-color: #070707;
  color: #fff;
  -webkit-transform: translateY(-7px);
  transform: translateY(-7px);
}

.card-address .AddressInput:checked ~ .AddressLabel {
  color: #000000ab;
  border-color: #CECECE;
}

.card-address {
  margin-bottom: 20px;
}
.card-address .edits {
  position: absolute;
  top: 15px;
  left: 10px;
  z-index: 222;
}
.card-address .edits a {
  display: inline-block;
  width: 38px;
  height: 38px;
  background-color: #EFF1F7;
  color: #949CA9;
  text-align: center;
  line-height: 44px;
  border-radius: 50px;
  margin-left: 5px;
  cursor: pointer;
}
.card-address .edits a:last-child {
  margin-left: 0;
}
.card-address .selected {
  position: absolute;
  bottom: 15px;
  left: 10px;
  font-size: 10px;
  background-color: rgba(57, 213, 173, 0.1) !important;
  border-radius: 5px;
  color: #39d5ad !important;
}

.addNew {
  color: #333;
  padding: 0;
  color: white;
  margin: 0 0 20px 0;
  border-radius: 15px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.addNew a {
  display: flex;
  min-height: 167px;
  max-width: 100%;
  padding: 25px 15px;
  color: #333 !important;
  align-items: center;
  justify-content: center;
  color: #070707;
  font-size: 17px;
  border: 0.5px solid #CECECE;
  border-radius: 15px;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.03);
}
.addNew a span {
  margin-left: 5px;
  line-height: 0;
  vertical-align: middle;
}

.card-title {
  color: #070707;
  font-family: "IBM-SemiBold";
  font-size: 17px;
  margin-bottom: 20px;
}
.card-title.main {
  font-size: 24px;
}

/*=============== Tables ===============*/
.table_card_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 10px 15px;
  color: #323a46;
  border-radius: 5px;
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 15px;
  background: #F5F7F9;
  border: 1px solid #f0f2f5;
  box-shadow: 0 1px 2px 0 rgba(237, 237, 237, 0.5);
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.table_card .table-card-item.markIcon,
.table_card_head .table-card-item.markIcon {
  width: 10%;
}

.table_card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 10px 15px;
  color: #323a46;
  border-radius: 5px;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 15px;
  background: #fff;
  min-height: 90px;
  border: 1px solid #D6DAE2;
  box-shadow: 0 1px 2px 0 rgba(237, 237, 237, 0.5);
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.table_card:last-child {
  margin-bottom: 0;
}

.table_card_head .table-card-item .checkbox label::before,
.table_card .table-card-item .checkbox label::before {
  border: 1px solid #bdbbbb;
}

.table_card .table-card-item,
.table_card_head .table-card-item {
  width: 20%;
  font-size: 14px;
}

.table_card .table-card-item .table-item-title {
  display: none;
}

.table_card .table_more {
  display: none;
}

.table_card .table-card-item .itemOptinos .dropdown-toggle {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  background: #F5F7F9;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
}

.table_card .table-card-item .itemOptinos .dropdown-item {
  font-size: 15px;
  padding: 0.3rem;
  color: #98a6ad;
}

.table_card .table-card-item .itemOptinos .dropdown-item > i {
  font-size: 16px;
  padding: 0 0.3rem;
  color: #98a6ad;
}

.table_card .table-card-item .itemOptinos .btn-default,
.table_card .table-card-item .itemOptinos button {
  font-size: 16px;
  padding: 0.3rem 8px !important;
  color: #98a6ad;
  display: block !important;
  width: 100%;
  text-align: right;
}

.table_card .table-card-item .itemOptinos .btn-default:hover,
.table_card .table-card-item .itemOptinos button:hover {
  background-color: #f7f7f7;
}

.table_card .table-card-item .itemOptinos .dropdown .dropdown-menu {
  border-radius: 10px;
  top: 40px !important;
}

.table_card .table-card-item .itemOptinos .dropdown .dropdown-menu::after {
  content: " ";
  position: absolute;
  left: 48%;
  top: -10px;
  transform: translateX(-50%);
  border-top: none;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #fff;
}

.table_card .table-card-item .itemOptinos .dropdown .dropdown-menu::before {
  content: " ";
}

@media (max-width: 567px) {
  .table_card .table-card-item .itemOptinos .dropdown .dropdown-menu::after {
    left: 15px;
  }
}
.table_card_head .table-card-item .table-item-title,
.table_card .table-card-item .table-item-title {
  white-space: nowrap;
}

.table_card_head .table-card-item.hide {
  display: block !important;
}

.table_card .table-card-item.hide {
  display: block !important;
}

@media (max-width: 855px) {
  .table_card_head {
    display: flex;
    padding: 10px 5px;
    align-items: center;
    font-size: 13px;
  }

  .table_card_head .table-card-item.hide {
    display: none !important;
  }

  .table_card .table-card-item,
.table_card_head .table-card-item {
    width: 33%;
    font-size: 14px;
  }

  .table_card .table-card-item.hide {
    display: none !important;
  }

  .table_card .table-card-item .table-item-title {
    display: none;
  }

  .table_card {
    padding: 10px 5px;
    transition: max-height 200ms ease-out;
  }

  .table_card .table-card-item {
    /* width: 100%; */
    text-align: center;
    font-size: 13px;
    padding: 17px 5px;
    /* border-bottom: 1px solid #f7f6f6; */
    display: flex;
    align-items: center;
    justify-content: center;
    word-break: break-word;
  }

  .table_card .table-card-item .table-item-content .checkbox-custom-primary {
    margin-bottom: 0.8rem;
  }

  .table_card .table-card-item .table-item-content .checkbox-custom-primary label,
.table_card_head .table-card-item .checkbox-custom-primary label {
    padding-right: 5px;
  }

  .table_card .table-card-item:nth-last-child(2) {
    border-bottom: 0;
  }

  .table_card .table-card-item.markIcon {
    padding-top: 0;
  }

  .table_card .table-card-item.noMark {
    padding-top: 17px;
  }

  /* .table_card .table-card-item:not(:nth-child(-n+5)) {
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 300ms ease-in-out;
  } */
  .table_card .table-card-item p {
    margin-bottom: 0;
  }

  .table_card .table_more {
    display: block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 35px;
    background: #f5f5f5;
    border-radius: 5px;
    text-align: center;
    z-index: 22222222;
    font-size: 12px;
    transition: all 200ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
  }
}
.tables_rows.half_table .table_card {
  display: block;
  padding: 0 0px;
}

.tables_rows.half_table .table_card .table-card-item {
  padding: 15px 0px 17px;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid #f6f6f6;
  display: flex;
  align-items: center;
}

.tables_rows.half_table .table_card .table-card-item:last-child {
  border-bottom: 0;
}

.tables_rows.half_table .table_card .table-card-item .table-item-title {
  display: block;
}

.tables_rows.fifty_table .table_card {
  min-height: 60px;
  padding: 0 10px;
}

.tables_rows.fifty_table .table_card .table-card-item,
.tables_rows.fifty_table .table_card_head .table-card-item {
  width: 50%;
}

@media (max-width: 767px) {
  .tables_rows.half_table .table_card .table-card-item .table-item-title {
    white-space: normal;
    width: 50%;
    text-align: right;
  }
}
.table_card.transparent {
  box-shadow: none;
  border: 0;
}

@media (max-width: 567px) {
  .tables_rows.half_table .table_card .table-card-item {
    padding: 12px 10px;
  }
}
@media (max-width: 767px) {
  .tables_rows.showAll .table_card_head {
    display: none;
  }

  .tables_rows.showAll .table_card {
    display: block;
    padding: 0 0px;
  }

  .tables_rows.showAll .table_card .table-card-item {
    padding: 12px 15px;
    width: 100% !important;
    justify-content: space-between;
    border-bottom: 1px solid #f6f6f6;
  }

  .tables_rows.showAll .table_card .table-card-item:last-child {
    border-bottom: 0;
  }

  .tables_rows.showAll .table_card .table-card-item .table-item-title {
    display: block;
  }

  .tables_rows.showAll .table_attached_text .selection {
    font-size: 9px;
  }
}
/*=============== Expired Wrapper ===============*/
.expiredWrap {
  position: absolute;
  top: 0;
  left: 0%;
  right: 0;
  bottom: 0;
  background: rgba(148, 156, 169, 0.7);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.expiredWrap img {
  max-width: 80%;
}

/*=============== Mazad Wrapper ===============*/
.mazad-wrapper {
  padding-top: 1rem;
}
@media (max-width: 576px) {
  .mazad-wrapper {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
.mazad-wrapper .card-title {
  font-size: 26px;
  margin-bottom: 30px;
}
.mazad-wrapper .banner {
  padding: 4.5rem 0;
}
.mazad-wrapper .product-preview {
  background-color: #fff;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  margin-bottom: 40px;
  height: calc(100% - 40px);
}
.mazad-wrapper .product-preview .mainPreview {
  border-radius: 20px;
}
.mazad-wrapper .product-preview .swiper {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.mazad-wrapper .product-preview .swiper-slide {
  text-align: center;
  font-size: 18px;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  background: #FAFAFA;
  border: 1px solid transparent;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.mazad-wrapper .product-preview .swiper-slide a {
  width: 100%;
  display: block;
}
.mazad-wrapper .product-preview .swiper-slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  object-fit: cover;
}
.mazad-wrapper .product-preview .swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.mazad-wrapper .product-preview .swiper-slide {
  background-size: cover;
  background-position: center;
}
.mazad-wrapper .product-preview .mySwiper2 {
  width: 100%;
}
.mazad-wrapper .product-preview .mySwiper {
  height: auto;
  box-sizing: border-box;
  padding: 10px 0;
  width: 100%;
}
.mazad-wrapper .product-preview .mySwiper .swiper-slide {
  width: 25%;
  opacity: 0.4;
  border-radius: 15px;
}
.mazad-wrapper .product-preview .mySwiper .swiper-slide img {
  border-radius: 15px;
  height: 100%;
  object-fit: cover;
  padding: 8px;
}
@media (max-width: 576px) {
  .mazad-wrapper .product-preview .mySwiper .swiper-slide {
    height: 60px;
  }
  .mazad-wrapper .product-preview .mySwiper .swiper-slide img {
    border-radius: 10px;
  }
}
.mazad-wrapper .product-preview .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
.mazad-wrapper .product-preview .swiper-slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.mazad-wrapper .product-preview .swiper-button-next:after,
.mazad-wrapper .product-preview .swiper-button-prev:after {
  font-size: 11px;
}
.mazad-wrapper .product-preview .swiper-button-next,
.mazad-wrapper .product-preview .swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.09);
  text-align: center;
  line-height: 30px;
  height: 30px;
  width: 30px;
  border-radius: 50px;
  color: #fff;
  opacity: 1;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
}
.mazad-wrapper .mazad-content {
  position: relative;
  background-color: #FFFFFF;
  padding: 2rem;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  border-radius: 15px;
}
.mazad-wrapper .mazad-content h3 {
  font-family: "IBM-SemiBold";
  font-size: 17px;
  color: #000000;
}
.mazad-wrapper .mazad-content .countdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  padding: 5px 0;
  margin: 7px 0 20px 0;
}
.mazad-wrapper .mazad-content .countdown-wrapper > div {
  width: 68px;
  height: 68px;
  background-color: #EFF1F7;
  border-radius: 50px;
  display: flex;
  color: #000000;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  font-size: 14px;
}
.mazad-wrapper .mazad-content .price {
  font-family: "IBM-SemiBold";
  font-size: 30px;
  color: #070707;
}
.mazad-wrapper .mazad-content .highest-raise {
  color: #818181;
  margin: 10px 0 20px 0;
}
.mazad-wrapper .mazad-content .highest-raise .user {
  display: inline-block;
  background-color: rgba(92, 141, 246, 0.16);
  padding: 7px 10px;
  border-radius: 50px;
  color: #5C8DF6;
  margin-right: 10px;
  font-size: 14px;
}
.mazad-wrapper .mazad-content .quick-raise > p {
  font-size: 14px;
  color: #818181;
}
@media (max-width: 576px) {
  .mazad-wrapper .mazad-content .quick-raise > p {
    margin-bottom: 1.5rem;
  }
}
.mazad-wrapper .mazad-content .quick-raise .quick-raise-wrapper {
  display: flex;
  gap: 15px;
}
.mazad-wrapper .mazad-content .quick-raise .quickRaise {
  background-color: #070707;
  padding: 10px 15px;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  font-size: 15px;
  height: 42.5px;
  line-height: 23px;
  margin-left: 10px;
  white-space: nowrap;
}
.mazad-wrapper .mazad-content .quick-raise .quickRaise:last-child {
  margin-left: 0;
}
.mazad-wrapper .mazad-content .quick-raise .raiseValue {
  position: relative;
  width: calc(100% - 220px);
}
.mazad-wrapper .mazad-content .quick-raise .raiseValue .input-wrap {
  position: relative;
  height: 46px;
}
.mazad-wrapper .mazad-content .quick-raise .raiseValue input {
  background-color: rgba(239, 241, 247, 0.5);
  border: 1px solid #949CA9;
  border-radius: 50px;
  padding: 10px 20px;
  color: #070707;
  font-size: 16px;
  padding-left: 50px;
  width: 100%;
  text-align: right;
  appearance: none;
  direction: ltr;
}
.mazad-wrapper .mazad-content .quick-raise .raiseValue .currency {
  position: absolute;
  top: 48%;
  left: 15px;
  transform: translateY(-50%);
  color: #000000;
}
.mazad-wrapper .mazad-content .raiseNow {
  position: relative;
  display: block;
  padding: 14px 15px;
  background-color: #070707;
  width: 100%;
  color: #fff;
  border-radius: 50px;
  margin-top: 30px;
  font-family: "IBM-SemiBold";
  font-size: 16px;
}
.mazad-wrapper .mazad-content .raiseNow .spinner-border {
  position: relative;
  right: -10px;
}
.mazad-wrapper .mazad-content .end-badge {
  display: inline-block;
}
.mazad-wrapper .mazad-content .terms {
  margin: 30px 0 0 0;
  text-align: left;
}
.mazad-wrapper .mazad-content .terms a {
  color: #070707;
  font-family: "IBM-SemiBold";
  font-size: 15px;
  text-decoration: underline;
}
.mazad-wrapper .mazad-content .terms a i {
  vertical-align: middle;
  line-height: 0;
  margin-left: 6px;
}
.mazad-wrapper .mazad-description {
  background-color: #FFFFFF;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
  border: 0;
  margin-bottom: 40px;
  border-radius: 15px;
}
.mazad-wrapper .mazad-description .card-header {
  background-color: #EFF1F7;
  padding: 1.5rem;
  font-family: "IBM-SemiBold";
  font-size: 17px;
  border: 0;
  color: #070707;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mazad-wrapper .mazad-description .card-header p {
  margin-bottom: 0;
}
.mazad-wrapper .mazad-description .card-body ul {
  list-style: disc;
}
.mazad-wrapper .mazad-description .card-body p {
  margin-bottom: 0;
  color: #6A6E74;
  line-height: 30px;
}
.mazad-wrapper .mazad-last {
  position: relative;
  background-color: #FFFFFF;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
  border: 0;
  min-height: 200px;
  border-radius: 15px;
  margin-bottom: 40px;
}
.mazad-wrapper .mazad-last .card-header {
  background-color: #EFF1F7;
  padding: 1.5rem;
  font-family: "IBM-SemiBold";
  font-size: 18px;
  border: 0;
  color: #070707;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mazad-wrapper .mazad-last .card-header p {
  margin-bottom: 0;
}
.mazad-wrapper .mazad-last .card-body {
  max-height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  /* Make this scrollable when needed */
  overflow-x: auto;
  /* We don't want vertical scrolling */
  overflow-y: scroll;
  /* For WebKit implementations, provide inertia scrolling */
  -webkit-overflow-scrolling: touch;
  /* We don't want internal inline elements to wrap */
}
.mazad-wrapper .mazad-last .card-body::-webkit-scrollbar-track {
  background-color: #F7F8F8;
  height: 0px;
}
.mazad-wrapper .mazad-last .card-body::-webkit-scrollbar {
  width: 5px;
  height: 0px;
  background-color: #F7F8F8;
  border-radius: 5px;
}
.mazad-wrapper .mazad-last .card-body::-webkit-scrollbar-thumb {
  background-color: #949CA9;
}
.mazad-wrapper .mazad-last .list-group .list-group-item {
  border: 0;
  padding: 1rem 0.5rem;
  color: #818181;
  font-size: 15px;
}
.mazad-wrapper .mazad-last .list-group .list-group-item .icon {
  min-width: 40px;
  height: 40px;
  background: #EFF1F7;
  border-radius: 5px;
  text-align: center;
  line-height: 50px;
  font-size: 17px;
}
.mazad-wrapper .mazad-last .list-group .list-group-item .userIcon {
  display: flex;
  align-items: center;
  gap: 15px;
}
.mazad-wrapper .mazad-last .list-group .list-group-item .fw-bold {
  font-family: "IBM-SemiBold";
  font-size: 13px;
  color: #070707;
}
.mazad-wrapper .mazad-last .list-group .list-group-item .price {
  font-family: "IBM-SemiBold";
  font-size: 18px;
  color: #070707;
}
.mazad-wrapper .mazad-last .loadDeposits {
  position: absolute;
  left: 50%;
  bottom: 20px;
}
.mazad-wrapper .ss_wrap {
  position: absolute;
  margin-bottom: 30px;
  top: 20px;
  left: 20px;
}
.mazad-wrapper .ss_wrap .ss_btn {
  background: #EFF1F7;
  color: #949CA9;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
}
.mazad-wrapper .ss_btn .icon {
  line-height: 0;
}
.mazad-wrapper .ss_btn .icon i {
  font-size: 15px;
}
.mazad-wrapper .ss_btn .icon i::before {
  line-height: 0;
}
.mazad-wrapper .ss_wrap .dd_list {
  position: absolute;
}
.mazad-wrapper .ss_wrap .dd_list ul {
  padding: 0;
  width: auto;
  background: #EFF1F7;
  margin: 0 10px;
  border-radius: 25px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
.mazad-wrapper .ss_wrap .dd_list ul li a {
  display: flex;
  width: 50px;
  height: 50px;
  margin: 0 10px;
  justify-content: center;
  align-items: center;
  color: #949CA9;
}
.mazad-wrapper .ss_wrap .dd_list ul li:hover a {
  background-color: #EFF1F7;
}
.mazad-wrapper .ss_wrap .dd_list ul:before {
  content: "";
  position: absolute;
  border: 8px solid;
}
.mazad-wrapper .ss_wrap.ss_wrap_3 .dd_list {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
.mazad-wrapper .ss_wrap.ss_wrap_3 .dd_list ul {
  flex-direction: column;
  width: 50px;
  border-radius: 5px;
  margin: 0;
}
.mazad-wrapper .ss_wrap.ss_wrap_3 .dd_list ul li a {
  width: 100%;
  margin: 0;
  justify-content: center;
  background-color: #EFF1F7;
  border-radius: 5px;
}
.mazad-wrapper .ss_wrap.ss_wrap_3 .dd_list ul li a:hover {
  background-color: #e8eaf0;
}
.mazad-wrapper .ss_wrap.ss_wrap_3 .dd_list ul li a span {
  display: flex;
}
.mazad-wrapper .ss_wrap.ss_wrap_3 .dd_list ul li a span.text {
  width: 125px;
}
.mazad-wrapper .ss_wrap.ss_wrap_3 .dd_list ul:before {
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-color: transparent transparent #EFF1F7 transparent;
}
.mazad-wrapper .ss_wrap .ss_btn.active + .dd_list ul {
  display: flex;
}
.mazad-wrapper .ss_wrap .ss_btn.active + .dd_list ul {
  opacity: 1;
  pointer-events: unset;
  z-index: 99;
}

/*=============== Deposit ===============*/
.deposit-wrapper .mazad-item {
  margin-bottom: 20px;
}
.deposit-wrapper .alert-danger {
  font-size: 15px;
  font-weight: 600;
}

.deposit-pay {
  background-color: #fff;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  border: 0;
}

.table_card .table-card-item {
  font-size: 14px;
  font-family: "IBM-Regular";
  color: #6A6E74;
}
.table_card .table-card-item:last-child {
  color: #070707;
}
.table_card .table-card-item.totalPay {
  background-color: #F7F8FB;
  border-radius: 10px;
  padding-right: 10px !important;
  padding-left: 10px !important;
  margin-top: 10px;
}

.deposit-pay .table_card .table-card-item {
  font-size: 16px;
}

.complete-order-wrapper .titledCard {
  background-color: #FFFFFF;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
  border: 0;
  border-radius: 15px;
  margin-bottom: 40px;
}
.complete-order-wrapper .titledCard .card-header {
  background-color: #EFF1F7;
  padding: 1.5rem;
  font-family: "IBM-SemiBold";
  font-size: 17px;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  border: 0;
  color: #070707;
}
.complete-order-wrapper .inovice-summary .item {
  background-color: #FCFCFC;
  border: 1px solid #CECECE;
  padding: 1rem 1rem;
  border-radius: 8px;
  margin-bottom: 20px;
}
.complete-order-wrapper .inovice-summary .item:last-child {
  margin-bottom: 0;
}
.complete-order-wrapper .inovice-summary .item .title {
  font-family: "IBM-SemiBold";
  font-size: 17px;
  color: #000000;
  margin-bottom: 10px;
}
.complete-order-wrapper .inovice-summary .item p {
  color: #949CA9;
  margin-bottom: 0;
}
.complete-order-wrapper .printInovice {
  background-color: #000000;
  padding: 13px 10px;
  display: block;
  border-radius: 50px;
  width: 100%;
  color: #fff;
  margin-top: 30px;
}
.complete-order-wrapper .printInovice i {
  vertical-align: middle;
  line-height: 0;
  margin-left: 5px;
}
.complete-order-wrapper .table_card .table-card-item {
  font-size: 17px;
  font-family: "IBM-Regular";
}
@media (max-width: 576px) {
  .complete-order-wrapper .table_card .table-card-item {
    font-size: 15px;
    padding: 12px 5px !important;
  }
  .complete-order-wrapper .table_card .table-card-item .table-item-title, .complete-order-wrapper .table_card .table-card-item .table-item-content {
    white-space: nowrap !important;
  }
}
.complete-order-wrapper .discount {
  color: #F8817E;
}
.complete-order-wrapper .address-scroll {
  display: flex;
  flex-flow: row !important;
  flex-wrap: nowrap;
  white-space: nowrap;
  max-width: 100%;
  overflow-x: scroll;
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  /* Make this scrollable when needed */
  overflow-x: auto;
  /* We don't want vertical scrolling */
  overflow-y: hidden;
  /* For WebKit implementations, provide inertia scrolling */
  -webkit-overflow-scrolling: touch;
  /* We don't want internal inline elements to wrap */
}
.complete-order-wrapper .address-scroll::-webkit-scrollbar-track {
  background-color: #F7F8F8;
  height: 0px;
}
.complete-order-wrapper .address-scroll::-webkit-scrollbar {
  width: 10px;
  height: 0px;
  background-color: #F7F8F8;
}
.complete-order-wrapper .address-scroll::-webkit-scrollbar-thumb {
  background-color: #F7F8F8;
}
.complete-order-wrapper .address-scroll > div {
  width: 100%;
  margin-left: 20px;
  min-width: 360px;
}

.pay .apple-pay {
  margin: 20px 0;
}
.pay .apple-pay button {
  background-color: #000000;
  padding: 13px 10px;
  display: block;
  border-radius: 50px;
  width: 100%;
  color: #fff;
}
.pay .apple-pay button img {
  max-width: 50px;
}
.pay .credit-title {
  margin: 30px 0;
  color: #6A6E74;
  font-family: "IBM-SemiBold";
  font-size: 14px;
  text-align: center;
}
.pay .completeOrder {
  position: relative;
  background-color: #000000;
  padding: 13px 10px;
  display: block;
  border-radius: 50px;
  width: 100%;
  color: #fff;
}
.pay .completeOrder .icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  line-height: 0;
}

.alert-danger {
  --bs-alert-bg: rgba(248, 129, 126, 0.16);
  --bs-alert-border-color: transparent;
  --bs-alert-color: #F8817E;
  font-size: 14px;
}
.alert-danger i {
  vertical-align: middle;
  line-height: 0;
  margin-left: 6px;
}

.alert-warning {
  --bs-alert-color: #806027;
  --bs-alert-bg: #fdf1db;
  --bs-alert-border-color: #fdebcd;
}
.alert-warning i {
  vertical-align: middle;
  line-height: 0;
  margin-left: 6px;
}

.alert .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F8817E'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  background-size: 12px;
  opacity: 1;
}

.mazad-item {
  background: #fff;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  position: relative;
}
@media (max-width: 767px) {
  .mazad-item {
    margin-bottom: 15px;
  }
}
.mazad-item .image {
  position: relative;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}
.mazad-item .image img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  width: 100%;
  object-fit: cover;
  pointer-events: none;
}
.mazad-item .image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.45) 100%);
  display: none;
}
.mazad-item .mazad-content {
  padding: 30px 20px;
  position: relative;
}
.mazad-item .mazad-content h3 {
  font-family: "IBM-SemiBold";
  font-size: 20px;
  color: #070707;
  margin: 0 0 10px 0;
}
.mazad-item .mazad-content h3 a {
  color: inherit;
}
.mazad-item .mazad-content p {
  font-size: 14px;
  color: #818181;
  margin-top: 1rem;
  margin-bottom: 7px;
}
.mazad-item .mazad-content .countdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px 0;
}
.mazad-item .mazad-content .countdown-wrapper > div {
  min-width: 55px;
  height: 55px;
  background-color: #EFF1F7;
  border-radius: 50px;
  display: flex;
  color: #000000;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  font-size: 12px;
}
.mazad-item .rasie {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 15px;
}
.mazad-item .rasie .highest-raise {
  font-family: "IBM-SemiBold";
  font-size: 22px;
  color: #070707;
}
.mazad-item .rasie .highest-raise p {
  font-family: "IBM-Regular";
  margin-bottom: 5px;
  color: #818181;
  font-size: 13px;
}
.mazad-item .rasie .raise-button button, .mazad-item .rasie .raise-button a {
  background-color: #070707;
  padding: 10px 10px;
  min-width: 120px;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  font-size: 15px;
  height: 42.5px;
  line-height: 23px;
}
@media (max-width: 576px) {
  .mazad-item .upper {
    display: flex;
  }
  .mazad-item .upper .image {
    padding: 20px 10px 15px;
    width: 40%;
    height: 200px;
  }
  .mazad-item .upper .image img {
    border-radius: 13px;
    height: 100%;
    object-fit: cover;
  }
  .mazad-item .upper .mazad-content {
    width: 60%;
    padding: 20px 5px 15px;
  }
  .mazad-item .upper .mazad-content h3 {
    font-size: 15px;
    line-height: 1.8;
  }
  .mazad-item .upper .mazad-content .countdown-wrapper {
    gap: 10px;
  }
}
@media (max-width: 576px) and (max-width: 400px) {
  .mazad-item .upper .mazad-content .countdown-wrapper {
    gap: 5px;
  }
}
@media (max-width: 576px) {
  .mazad-item .upper .mazad-content .countdown-wrapper > div {
    min-width: 40px;
    height: 40px;
  }
}
@media (max-width: 576px) {
  .mazad-item .rasie {
    padding: 0 15px 15px;
  }
}

/*=============== FOOTER ===============*/
.footer {
  padding-bottom: 0;
}
.footer .footer-content {
  padding: 20px 0;
  border-bottom: 1px solid #E7E5EA;
}
.footer .footer-content .about .logo-wrap {
  margin-bottom: 20px;
}
.footer .footer-content .about .logo-wrap img {
  max-width: 45px;
}
.footer .footer-content .about .logo-wrap .mazad_titles {
  font-family: "IBM-SemiBold";
  vertical-align: middle;
  font-size: 15px;
  color: #111;
  margin-right: 10px;
  display: inline-block;
  white-space: pre-line;
  margin-top: -17px;
}
.footer .footer-content .about p {
  font-size: 16px;
  color: #777E90;
  margin-bottom: 0;
  line-height: 30px;
}
.footer .footer-content h3 {
  position: relative;
  font-family: "IBM-Bold";
  font-size: 16px;
  width: fit-content;
  margin-bottom: 1rem;
}
.footer .footer-content h3::after {
  content: " ";
  width: 108%;
  background-color: #FEF201;
  height: 58%;
  position: absolute;
  bottom: 2px;
  z-index: -1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.footer .footer-content .links {
  padding-right: 20px;
}
.footer .footer-content .links ul {
  padding: 0;
  margin: 0;
}
.footer .footer-content .links ul li {
  padding: 10px 0;
}
.footer .footer-content .links ul a {
  position: relative;
  font-family: "IBM-SemiBold";
  font-size: 14px;
  color: #111111;
  display: block;
  max-width: fit-content;
}
.footer .footer-content .links ul a::before {
  content: " ";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #111111;
  border-radius: 50px;
  margin-left: 10px;
}
.footer .footer-content .links ul a:hover::after {
  content: " ";
  width: 108%;
  background-color: #FEF201;
  height: 50%;
  position: absolute;
  bottom: 2px;
  z-index: -1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.footer .footer-content .social ul {
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
}
.footer .footer-content .social li {
  position: relative;
  display: inline-block;
  margin-left: 10px;
}
.footer .footer-content .social li a {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50px;
  line-height: 45px;
  font-size: 20px;
  text-align: center;
  background-color: #f6f7fd;
  color: #111111;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  box-shadow: 0px 2px 10px #e8e8e8;
}
.footer .footer-content .social li:hover a {
  background-color: #111111;
  color: #fff;
}
.footer .footer-copyrights {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}
.footer .footer-copyrights .copyrights p {
  font-family: "IBM-SemiBold";
  font-size: 14px;
  color: #111111;
  margin-bottom: 0;
}
.footer .footer-copyrights ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer-copyrights ul li {
  display: inline-block;
  margin-left: 15px;
  transition: all 300ms ease-in-out;
}
.footer .footer-copyrights ul li a {
  font-size: 14px;
  position: relative;
  color: #111111;
  transition: all 300ms ease-in-out;
}
.footer .footer-copyrights ul li:last-child {
  margin-left: 0;
}
.footer .footer-copyrights ul li:hover a::after {
  content: " ";
  width: 108%;
  background-color: #FEF201;
  height: 58%;
  position: absolute;
  bottom: 2px;
  z-index: -1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.footer .apps h3 {
  margin-top: 30px;
}
@media (max-width: 567px) {
  .footer .apps h3 {
    margin-top: 0;
  }
}
.footer .apps img {
  max-width: 70%;
}
.footer .download-btn {
  margin: 10px 0 5px;
  display: inline-block;
  margin-left: 10px;
}
.footer .download-btn img {
  max-width: 120px;
}
.footer .download-btn:last-child {
  margin-left: 0;
}
@media (max-width: 567px) {
  .footer .download-btn {
    margin: 10px 0;
  }
}

/*=============== Complete Pages ===============*/
.msg-complete {
  text-align: center;
}
.msg-complete img {
  max-width: 100px;
  display: block;
  margin: 0 auto 20px;
}
.msg-complete img.wrong {
  padding: 5px;
}
.msg-complete h3 {
  font-family: "IBM-SemiBold";
  font-size: 22px;
  color: #070707;
  margin-bottom: 15px;
}
.msg-complete h3.bigger {
  font-family: "IBM-Bold";
  font-size: 60px;
}
.msg-complete p {
  font-size: 16px;
  color: #6A6E74;
  margin-bottom: 15px;
}
.msg-complete .actionBtn {
  background-color: #070707;
  padding: 12px 20px;
  min-width: 130px;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
}
.msg-complete .actionBtn i {
  vertical-align: middle;
  line-height: 0;
  margin-left: 4px;
}

/*=============== Modals ===============*/
.customModal .modal-content {
  border: 0;
  border-radius: 15px;
}
.customModal .modal-header {
  border: 0;
  padding: 1rem 1.4rem;
}
.customModal .modal-body {
  padding: 1rem 1.4rem;
}
.customModal .icon {
  width: 90px;
  height: 90px;
  background-color: #F7F8FB;
  border: 1px solid #eeeeee;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto;
}
.customModal .icon i {
  line-height: 0;
  vertical-align: middle;
}
.customModal .icon i::before {
  line-height: 0;
}
.customModal .iti__country-list {
  left: 0;
}
.customModal .iti__arrow {
  position: absolute;
  left: 5px;
  margin-right: 0;
}
.customModal .iti__selected-flag .iti__flag {
  margin-left: 5px;
}
.customModal .iti__selected-flag {
  padding: 0 10px 0 25px;
}
.customModal#loginModal .iti__selected-flag {
  padding: 0 10px 0 10px;
}
.customModal h3 {
  font-family: "IBM-SemiBold";
  font-size: 20px;
  color: #070707;
  text-align: center;
  margin-top: 15px;
}
.customModal .close {
  width: 30px;
  height: 30px;
  background-color: #EFF1F7;
  border-radius: 50px;
  margin-right: auto;
  line-height: 33px;
}
.customModal .close i {
  vertical-align: middle;
  font-size: 10px;
  color: #ff0600;
}
.customModal .close i::before {
  line-height: 0;
}
.customModal .backBtn {
  width: 30px;
  height: 30px;
  background-color: #EFF1F7;
  border-radius: 50px;
  line-height: 32px;
}
.customModal .backBtn i {
  vertical-align: middle;
  font-size: 10px;
  color: #171717;
}
.customModal .backBtn i::before {
  line-height: 0;
}
.customModal .modal-title {
  font-family: "IBM-SemiBold";
  font-size: 16px;
}
.customModal p {
  font-family: "IBM-SemiBold";
  font-size: 14px;
  color: #717171;
  max-width: 280px;
  text-align: center;
  margin: 20px auto;
}
.customModal .form-group label {
  margin-bottom: 10px;
  color: #717171;
}
.customModal .form-group input {
  border-color: #EFF1F7;
}
.customModal .custom-checkbox {
  text-align: center;
}
.customModal .custom-checkbox a {
  color: #070707;
  text-decoration: underline;
}
.customModal .custom-checkbox.right {
  text-align: right;
}
.customModal .verificationInput {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row-reverse;
}
.customModal .verificationInput input {
  background-color: #EFF1F7;
  border-radius: 50px;
  width: 65px;
  height: 65px;
  margin: 0 10px 0 0;
  font-size: 17px;
  outline: none;
  text-align: center;
  box-shadow: none;
  padding: 0;
}
.customModal .verificationInput input:last-child {
  margin-right: 0;
}
.customModal .verificationInput input:focus {
  border: 1px solid #101010;
}
@media (max-width: 576px) {
  .customModal .verificationInput input {
    width: 53px;
    height: 53px;
    margin: 0 10px 0 0;
    padding: 0;
  }
}
.customModal .submitInput {
  position: relative;
}
.customModal .submitInput input {
  padding: 12px 20px;
}
.customModal .submitInput button {
  background-color: #111111;
  color: #fff;
  width: 100%;
  text-align: center;
  font-family: "IBM-SemiBold";
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}
.customModal .submitInput .spinner-border {
  position: absolute;
  top: 33%;
  right: 40%;
  color: #fff;
  border-width: 2px;
}
.customModal .submitInput .arrow {
  position: absolute;
  top: 53%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 15px;
}
.customModal .submitInput .arrow i {
  vertical-align: middle;
  line-height: 1;
  color: #fff;
}
.customModal .submitInput .arrow i::before {
  line-height: 0;
}
.customModal#loginModal input#phone {
  text-align: left;
  padding-left: 110px !important;
  direction: ltr;
}
.customModal#loginModal input#phone::placeholder {
  color: #b4b8be;
}
@media (max-width: 576px) {
  .customModal#loginModal .form-group:last-child {
    margin-bottom: 0;
  }
  .customModal#loginModal .modal-dialog {
    margin: 2rem 1.3rem;
  }
}
@media (max-width: 576px) {
  .customModal#verifiyCodeModal .form-group:last-child {
    margin-bottom: 0;
  }
  .customModal#verifiyCodeModal .modal-dialog {
    margin: 2rem 1.3rem;
  }
}
@media (max-width: 576px) {
  .customModal input[type=text],
.customModal input[type=number],
.customModal input[type=tel],
.customModal textarea {
    font-size: 16px !important;
  }
}

#addNewAddressModal .modal-title {
  font-size: 19px;
}
#addNewAddressModal .modal-body {
  padding: 1rem 1.5rem;
}
#addNewAddressModal input#phone {
  text-align: left;
  padding-left: 110px !important;
  direction: ltr;
}
@media (max-width: 576px) {
  #addNewAddressModal .form-group:last-child {
    margin-bottom: 0;
  }
  #addNewAddressModal .modal-dialog {
    margin: 2rem 1.3rem;
  }
}

.foreign_login {
  color: #070707;
  font-size: 15px;
  text-align: center;
  display: block;
  transition: all 300ms ease-in-out;
}
.foreign_login span {
  text-decoration: underline;
  transition: all 300ms ease-in-out;
}
.foreign_login i {
  position: relative;
  top: 2px;
  font-size: 13px;
  display: inline-block;
  transition: all 300ms ease-in-out;
}
.foreign_login:hover {
  color: #070707;
}
.foreign_login:hover span {
  text-decoration: none;
}

/*=============== Partners ===============*/
.partenrs {
  padding-top: 0;
}
.partenrs .section_title {
  margin: 0 auto 1rem;
}
.partenrs .main-partner {
  margin-bottom: 3rem;
}
.partenrs .main-partner .item {
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 80px rgba(171, 175, 199, 0.23);
  padding: 20px 10px;
  max-width: 250px;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.partenrs .main-partner .item img {
  max-height: 120px;
  display: block;
  margin: 0 auto;
}
.partenrs .main-partner .item:hover {
  -webkit-transform: translateY(-7px);
  transform: translateY(-7px);
}
.partenrs .sub-partners .item {
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 80px rgba(171, 175, 199, 0.23);
  padding: 20px 10px;
  max-width: 150px;
  margin: 1rem auto;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: calc(100% - 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partenrs .sub-partners .item img {
  max-height: 70px;
  display: block;
  margin: 0 auto;
}
.partenrs .sub-partners .item:hover {
  -webkit-transform: translateY(-7px);
  transform: translateY(-7px);
}

/*=============== Contact Us ===============*/
.contact-wrapper {
  background-color: #fff;
  border-radius: 15px;
  margin-top: 30px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
}
.contact-wrapper .iti__country-list {
  left: 0;
}
.contact-wrapper .nav-top-header {
  border: 0;
  justify-content: center;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
  background-color: #F7F8FB;
  padding: 20px 30px;
  font-size: 17px;
  font-family: "IBM-SemiBold";
}
.contact-wrapper .content-wrap-body {
  padding: 30px 30px;
}
.contact-wrapper .req {
  color: red;
  font-size: 16px;
  vertical-align: middle;
}
.contact-wrapper .form-group label {
  display: block;
  margin-bottom: 10px;
  padding-right: 10px;
}
.contact-wrapper .form-group input {
  background-color: #F7F8FB;
  border-radius: 35px;
  border-color: #F7F8FB;
  outline: none;
  box-shadow: none;
}
.contact-wrapper .form-group textarea {
  background-color: #F7F8FB;
  border-radius: 35px;
  border-color: #F7F8FB;
}
.contact-wrapper .nice-select {
  background-color: #F7F8FB;
  border-radius: 35px;
  border-color: #F7F8FB;
}
.contact-wrapper .form-group input[type=button] {
  background-color: #111111;
  color: #fff;
  width: 100%;
  text-align: center;
  font-family: "IBM-SemiBold";
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
  margin-right: auto;
  max-width: 150px;
  display: block;
}
.contact-wrapper .iti__selected-flag {
  padding: 0 10px 0 15px;
}

/*=============== Ittihaid Forms ===============*/
.form-group {
  margin-bottom: 30px;
}
.form-group label {
  font-family: "IBM-SemiBold";
  color: #070707;
  font-size: 14px;
}
.form-group input {
  background-color: #FAFBFE;
  border: 1px solid #E7E5EA;
  color: #777E90;
  border-radius: 50px;
  padding: 12px 20px;
  text-align: right;
  font-size: 14px;
  outline: none;
  box-shadow: none;
  width: 100%;
}
.form-group input::placeholder {
  color: #777E90;
}
.form-group input[type=submit] {
  background-color: #111111;
  color: #fff;
  width: 100%;
  text-align: center;
  font-family: "IBM-SemiBold";
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .form-group input {
    font-size: 16px;
  }
}
.form-group .input-group .input-group-text {
  background-color: #FAFBFE;
  border: 1px solid #E7E5EA;
  border-top-right-radius: 50px !important;
  border-bottom-right-radius: 50px !important;
  padding-left: 0;
}
.form-group .input-group .input-group-text img {
  max-width: 45px;
}
.form-group .input-group input {
  border-right: 0;
}
.form-group textarea {
  background-color: #FAFBFE;
  border: 1px solid #E7E5EA;
  color: #777E90;
  border-radius: 12px;
  padding: 15px 20px;
  text-align: right;
  font-size: 14px;
  outline: none;
  box-shadow: none;
}
.form-group textarea::placeholder {
  color: #777E90;
}

.custom-checkbox .styled-checkbox {
  position: absolute;
  opacity: 0;
}
.custom-checkbox .styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.custom-checkbox .styled-checkbox + label:before {
  content: "";
  margin-left: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: #F7F8FB;
  border: 1px solid #949CA9;
  border-radius: 5px;
}
.custom-checkbox .styled-checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.custom-checkbox .styled-checkbox:checked + label:before {
  background: #000;
}
.custom-checkbox .styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.custom-checkbox .styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.custom-checkbox .styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 10px;
  font-family: uicons-regular-rounded !important;
  font-style: normal;
  font-weight: normal !important;
  color: #fff;
  font-size: 10px;
  line-height: 0;
}

.nice-select {
  width: 100%;
  text-align: right !important;
  background-color: #FAFBFE;
  border: 1px solid #eff1f7;
  color: #777E90;
  border-radius: 50px;
  height: 53px;
  font-size: 14px;
  outline: none;
  box-shadow: none;
  line-height: 53px;
  padding-right: 20px;
  padding-left: 30px;
  float: none !important;
}
.nice-select .list {
  width: 100%;
  text-align: right;
}
.nice-select .option {
  text-align: right;
}
.nice-select::after {
  right: auto;
  left: 12px;
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background-image: url(../img/down-arrow.svg);
  border: 0;
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: center;
  transform: rotate(0) translateY(-50%);
  margin-top: 0;
}

.nice-select.open:after {
  transform: rotate(0) translateY(-50%);
}

.custom-pagination {
  background-color: #F1F4FC;
  padding: 30px 0;
}
.custom-pagination ul {
  padding: 0;
  margin: 0;
}
.custom-pagination ul li {
  position: relative;
  display: inline-block;
  color: #626366;
  padding: 0 10px;
}
.custom-pagination ul li a {
  color: #111111;
}
.custom-pagination ul li i {
  vertical-align: middle;
  font-size: 12px;
  margin-left: 5px;
}
.custom-pagination ul li:not(:first-child)::before {
  content: "";
  width: 6px;
  height: 1px;
  background-color: #111111;
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
}

#loginModal .iti__flag {
  background-image: url("../img/SaudiArabiaFlag.png");
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  #loginModal .iti__flag {
    background-image: url("../img/SaudiArabiaFlag.png");
  }
}
#loginModal .iti__flag {
  width: 25px;
}
#loginModal .iti__flag.iti__sa {
  height: 18px;
  background-position: center center;
  background-size: cover;
  border: 0;
  box-shadow: none;
  border-radius: 2px;
  background-color: #ffffff;
}
#loginModal .iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  background-color: #fff;
  border: 1px solid 1px solid #f7f5f9;
  white-space: nowrap;
  max-height: 250px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  left: 0;
}

@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
    left: 0;
    width: max-content;
  }
}
.radioItem {
  padding: 10px 0;
}

input[type=radio] {
  appearance: none;
}
input[type=radio] + label {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  line-height: 20px;
}
input[type=radio] + label::before {
  content: "";
  display: inline-block;
  width: 20px;
  aspect-ratio: 1;
  border: 1px solid #111111;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s;
}
input[type=radio] + label::after {
  font-family: boxicons !important;
  content: "";
  display: inline-block;
  aspect-ratio: 1;
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  color: #fff;
  transition: all 0.3s;
}
input[type=radio]:checked + label::after {
  opacity: 1;
}
input[type=radio]:checked + label::before {
  background-color: #111111;
}

.modal-backdrop {
  opacity: 1 !important;
  background: rgba(54, 68, 87, 0.7);
}

.swal2-container.swal2-backdrop-show, .swal2-container.swal2-noanimation {
  background: rgba(54, 68, 87, 0.7) !important;
}

.swal2-container.swal2-center > .swal2-popup {
  border-radius: 15px;
}

.swal2-container .swal2-title {
  font-family: "IBM-SemiBold";
  font-size: 20px;
  color: #070707;
  text-align: center;
}

.swal2-container .swal2-html-container {
  color: #717171;
  font-size: 16px;
}

.swal2-styled.swal2-confirm {
  min-width: 100px;
  outline: none;
  box-shadow: none;
}

.swal2-styled.swal2-cancel {
  min-width: 100px;
  outline: none;
  box-shadow: none;
}

/*=============== BREAKPOINTS ===============*/
@media (max-width: 1200px) {
  header.main-header {
    padding: 15px 20px;
  }
  header .toggle-nav {
    margin-left: 12px;
  }

  .main {
    padding-top: 0px;
  }
}
@media (max-width: 991px) {
  .footer .footer-content .social li {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .how-we-work .work-steps .work-item .item_icon {
    transform: none !important;
  }

  .how-we-work .work-steps .work-item .item_icon::before {
    display: none;
  }

  .mazad-wrapper .mazad-content .countdown-wrapper {
    gap: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
  }
  .mazad-wrapper .mazad-content .countdown-wrapper > div {
    width: 55px;
    height: 55px;
  }
  .mazad-wrapper .mazad-content .quick-raise .quick-raise-wrapper {
    flex-flow: column;
    align-items: flex-start;
  }
  .mazad-wrapper .mazad-content .quick-raise .raiseValue {
    width: 100%;
  }
  .mazad-wrapper .mazad-content .quick-raise .raiseValue input {
    width: 100%;
  }

  .mazad-wrapper .mazad-description {
    height: 100%;
  }

  .questions .questions-wrap .accordion-item {
    margin-bottom: 15px;
  }

  .complete-order-wrapper .address-scroll > div {
    min-width: 300px;
  }

  .card-address .AddressLabel .card-text p {
    -webkit-text-fill-color: #949CA9;
  }
}
@media (max-width: 576px) {
  .main {
    padding-top: 0;
  }

  .section {
    padding: 3rem 0;
  }

  .home .home_contnet {
    padding-top: 80px;
    padding-bottom: 0px;
  }

  .section_title {
    margin: 0 auto 1rem;
  }

  .congratulation .congratulation-card {
    text-align: right;
  }

  .user-nav-items {
    margin-bottom: 30px;
  }

  .deposit-wrapper {
    padding-top: 0 !important;
  }

  .section_subtitle {
    text-align: center;
  }

  .moreButton {
    text-align: center;
    margin-top: 1rem;
  }

  .home .home_contnet .slide_text h2 {
    font-size: 28px;
    line-height: 50px;
    margin-bottom: 0;
    margin-top: 15px;
  }

  .section_subtitle {
    font-size: 16px;
  }

  .footer .footer-content .about {
    padding: 0 10px;
  }
  .footer .footer-content .links,
.footer .footer-content .social {
    padding: 20px 10px;
  }
  .footer .footer-copyrights .copyrights {
    margin-top: 30px;
  }

  .home .shape {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 90%;
    left: -40px;
    display: none;
  }

  .footer {
    padding-top: 2rem;
    padding-bottom: 0;
  }

  .footer .footer-copyrights {
    padding: 20px 0;
  }

  .footer .footer-copyrights .copyrights {
    margin-top: 0;
  }

  .mazad-wrapper .mazad-content {
    padding: 1.5rem 1rem;
  }
  .mazad-wrapper .mazad-content .highest-raise {
    margin-top: 10px;
  }

  .how-it-works {
    padding-top: 0rem;
  }
  .how-it-works .how-wrap .section_title {
    margin: 0 auto 30px;
  }

  .footer .footer-content {
    padding-top: 0;
  }

  .mazad-wrapper .mazad-last .list-group .list-group-item {
    font-size: 13px;
    padding: 1rem 0;
  }
  .mazad-wrapper .mazad-last .list-group .list-group-item .price {
    white-space: nowrap;
  }

  .complete-order-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }

  .user-dashboard {
    padding-top: 0;
  }
  .user-dashboard .user-nav-items .card-body .nav-link {
    padding: 25px 8px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    width: 25%;
  }
  .user-dashboard .user-nav-items .nav {
    display: flex;
    flex-flow: row !important;
    flex-wrap: nowrap;
    white-space: nowrap;
    max-width: 100%;
    overflow-x: scroll;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    /* Make this scrollable when needed */
    overflow-x: auto;
    /* We don't want vertical scrolling */
    overflow-y: hidden;
    /* For WebKit implementations, provide inertia scrolling */
    -webkit-overflow-scrolling: touch;
    /* We don't want internal inline elements to wrap */
  }
  .user-dashboard .user-nav-items .nav::-webkit-scrollbar-track {
    background-color: #F7F8F8;
    height: 0px;
  }
  .user-dashboard .user-nav-items .nav::-webkit-scrollbar {
    width: 10px;
    height: 0px;
    background-color: #F7F8F8;
  }
  .user-dashboard .user-nav-items .nav::-webkit-scrollbar-thumb {
    background-color: #F7F8F8;
  }

  .how-we-work .work-steps {
    grid-gap: 50px;
  }
  .how-we-work .work-steps .work-item {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .how-we-work .work-steps .work-item .item_icon {
    width: 100px;
    height: 100px;
  }
  .how-we-work .work-steps .work-item p {
    max-width: 135px;
  }

  .mazad-wrapper .rowMob {
    flex-flow: column-reverse;
  }
}
@media (max-width: 576px) and (max-width: 576px) {
  input[type=text],
input[type=number],
input[type=tel],
textarea {
    font-size: 16px !important;
  }
}
.animate {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*=== Optional Delays, change values here  ===*/
.one {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.two {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.three {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.four {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.five {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

.six {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.seven {
  -webkit-animation-delay: 1.4s;
  -moz-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.eight {
  -webkit-animation-delay: 1.6s;
  -moz-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

/*==== FADE IN UP ===*/
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.msg-error {
  font-size: 11px;
  color: red !important;
}

#codeResendTimer {
  color: #7374B6;
  font-size: 14px;
  text-align: left;
  font-weight: 600;
}

#codeResendTimer span {
  margin-left: 5px;
  font-weight: 400;
  color: #333;
}

.floatingAlertMsg {
  position: fixed;
  width: 100%;
  max-width: max-content;
  top: 10px;
  right: 10px;
  display: block;
  z-index: 9999;
  background-color: #ff4237;
  border-color: #ff4237;
  color: #fff;
  padding: 12px 20px;
}
.floatingAlertMsg .btn-close {
  padding: 17px 15px;
  outline: none;
  box-shadow: none;
  margin-right: 5px;
  opacity: 1;
}

.floatingAlertMsgSuccess {
  position: fixed;
  width: 100%;
  max-width: max-content;
  top: 10px;
  right: 10px;
  display: block;
  z-index: 9999;
  background-color: #8AFF37;
  border-color: #8AFF37;
  color: #fff;
  padding: 12px 20px;
}

.floatingAlertMsgSuccess .btn-close {
  padding: 17px 15px;
  outline: none;
  box-shadow: none;
  margin-right: 5px;
  opacity: 1;
}

.logoutClickBtn .fi-rr-power {
  color: #EA4025;
}

.spinner-border-sm {
  --bs-spinner-border-width: 1.5px;
}

/* Moyasser Fonts */
#mysr-form-form-el#mysr-form-form-el#mysr-form-form-el.mysr-form-moyasarForm[payment-form=true] {
  font-family: "IBM-semiBold" !important;
}

#mysr-form-form-el#mysr-form-form-el#mysr-form-form-el.mysr-form-moyasarForm[payment-form=true] .mysr-form-label, #mysr-form-form-el#mysr-form-form-el#mysr-form-form-el.mysr-form-moyasarForm[payment-form=true] label.mysr-form-label {
  font-family: "IBM-semiBold" !important;
}

#mysr-form-form-el#mysr-form-form-el#mysr-form-form-el.mysr-form-moyasarForm[payment-form=true] input.mysr-form-input, #mysr-form-form-el#mysr-form-form-el#mysr-form-form-el.mysr-form-moyasarForm[payment-form=true] input.mysr-form-input[type=text] {
  font-family: "IBM-semiBold" !important;
}

#mysr-form-form-el#mysr-form-form-el#mysr-form-form-el.mysr-form-moyasarForm[payment-form=true] div.mysr-form-footer {
  font-family: "IBM-semiBold" !important;
}

#mysr-form-form-el#mysr-form-form-el#mysr-form-form-el.mysr-form-moyasarForm[payment-form=true] .mysr-form-button:hover, .mysr-form-button {
  background-color: #070707 !important;
}

.swal2-styled.swal2-cancel {
  background-color: #F5F7F9;
  border: 1px solid #E7E5EA !important;
  color: #6c757d;
}
.swal2-styled.swal2-cancel:hover {
  background-image: none !important;
  background-color: #F5F7F9 !important;
  border: 1px solid #E7E5EA !important;
  color: #6c757d !important;
}

.padding-2 {
  padding: 0.5rem !important;
}

@media (max-width: 576px) {
  .mazad-wrapper .banner {
    padding: 1rem 0;
  }

  .mazad-wrapper .mazad-description, .mazad-wrapper .mazad-last {
    margin-bottom: 20px;
  }

  .how-wrap .how-card .vector img {
    max-width: 50%;
  }

  .customModal #CodeConfirmaitonSpinner {
    right: 35%;
  }

  .padding-2 {
    padding: 0 !important;
  }
}
.error-bordered {
  border: 1px solid red !important;
}

.error-bordered-login {
  border: 1px solid red !important;
  border-radius: 50px;
}

.error-bordered-login.clearValid {
  border: 1px solid #EFF1F7 !important;
}

.raiseDoneAdded {
  position: fixed;
  min-width: 350px;
  top: 10px;
  right: 10px;
  z-index: 1000;
  background-color: #66ce67;
  border-color: #66ce67;
  color: #fff;
}
.raiseDoneAdded .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d1e7dd'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

.success-custom {
  background-color: #66ce67 !important;
  border-color: #66ce67 !important;
  color: #fff;
}

.error-custom {
  background-color: #dd0606 !important;
  border-color: #dd0606 !important;
  color: #fff;
}

.select2-container {
  display: block;
  width: 100% !important;
}

.select2-container .select2-selection--single {
  height: 53px;
  font-size: 14px;
  outline: none;
  box-shadow: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 53px;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 20px;
}

.select2-container--default .select2-selection--single {
  background-color: #FAFBFE;
  border: 1px solid #eff1f7;
  border-radius: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #777E90;
}

.select2-dropdown {
  z-index: 999999;
  border: 1px solid #eff1f7;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #eee;
  border-radius: 4px;
  font-size: 14px;
  color: #777E90;
}

.select2-results__option {
  color: #777E90;
  font-size: 14px;
  padding: 8px 10px;
}

.select2-container--default .select2-results__option--selected {
  background-color: #f6f6f6;
  color: #777E90;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #EFF1F7;
  color: #777E90;
}

.select2-container {
  z-index: 999999;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 10px;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #FAFBFE;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.deposit-alert ul {
  list-style: disc;
  padding: 0 20px 0 0;
  margin: 0;
}
@media (max-width: 576px) {
  .deposit-alert ul li {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding: 0 4rem;
  }
}
header.main-header .inner-header .logo .dark {
  display: none;
}

body.dark-theme {
  background-color: #111111;
  color: #fff;
}
body.dark-theme header.main-header .inner-header .logo .dark {
  display: inline-block;
}
body.dark-theme header.main-header .inner-header .logo .default {
  display: none;
}
body.dark-theme .home {
  background: url(../img/pattern.png) rgba(0, 0, 0, 0.69);
}
body.dark-theme .home .home_contnet .slide_text .start-now {
  background-color: #313131;
}
body.dark-theme h1, body.dark-theme h2, body.dark-theme h3 {
  color: #fff;
}
body.dark-theme header.main-header .inner-header .nav-links nav .nav-items > li {
  color: #fff;
}
body.dark-theme header.main-header .inner-header .nav-links nav .nav-items > li .toggle-theme {
  background-color: #313131;
  border-color: #313131;
  color: #fff;
}
body.dark-theme header.main-header.fixed-header {
  background: rgba(0, 0, 0, 0.7);
}
body.dark-theme header.main-header .inner-header .nav-links nav .nav-items > li.loginBtn .btnLink {
  background-color: #313131;
  border-color: #313131;
}
body.dark-theme header.main-header .inner-header .nav-links nav .nav-items > li.loginBtn .dropdown-menu {
  background-color: #313131;
  border-color: #313131;
}
body.dark-theme header.main-header .inner-header .nav-links nav .nav-items > li.loginBtn .dropdown-menu .dropdown-item {
  color: #fff;
}
body.dark-theme header.main-header .inner-header .nav-links nav .nav-items > li.loginBtn .dropdown-menu .dropdown-item:hover {
  background: #000;
}
body.dark-theme header.main-header .inner-header .nav-links nav .nav-items > li:not(.loginBtn, .dark-mode-wrap):hover::after {
  background-color: #313131;
}
body.dark-theme .section_title::after {
  background-color: #313131;
}
body.dark-theme header.main-header .inner-header .nav-links nav .nav-items > li.active::after {
  background-color: #313131;
}
body.dark-theme header.main-header .inner-header .nav-links nav .nav-items > li.active a {
  color: #fff;
}
body.dark-theme #m-menu .nav-items {
  background: rgba(49, 49, 49, 0.9);
}
body.dark-theme #m-menu .nav-items li {
  color: #fff;
}
body.dark-theme #m-menu .nav-items li.active a span::before {
  background-color: #313131;
}
body.dark-theme #m-menu .nav-items .mazad_titles {
  color: #fff;
}
body.dark-theme #m-menu .toggle-nav .fa, body.dark-theme #m-menu .toggle-nav i {
  color: #fff;
}
body.dark-theme header.main-header .inner-header .logo .mazad_titles {
  color: #fff;
}
body.dark-theme .how-we-work {
  background-color: #1F1F1F;
}
body.dark-theme .recent-mazadt .mazad-item {
  background-color: #1F1F1F;
}
body.dark-theme .recent-mazadt .mazad-item .mazad-content h3 {
  color: #fff;
}
body.dark-theme .recent-mazadt .mazad-item .mazad-content .countdown-wrapper > div {
  background-color: #313131;
  color: #fff;
}
body.dark-theme .recent-mazadt .mazad-item .rasie .highest-raise {
  color: #ffffff;
}
body.dark-theme .how-we-work .work-steps .work-item .item_icon {
  background-color: #fff;
}
body.dark-theme .how-we-work .work-steps .work-item h3 {
  color: #fff;
}
body.dark-theme .how-we-work .work-steps .work-item:nth-child(1) .item_icon::before {
  background: url(../img/work/abstrack-light.svg) no-repeat;
  background-size: 120px;
}
body.dark-theme .how-we-work .work-steps .work-item:nth-child(2) .item_icon::before {
  background: url(../img/work/abstrack-reverse-light.svg) no-repeat;
  background-size: 120px;
}
body.dark-theme .how-we-work .work-steps .work-item:nth-child(3) .item_icon::before {
  background: url(../img/work/abstrack-light.svg) no-repeat;
  background-size: 120px;
}
body.dark-theme .how-we-work .work-steps .work-item:nth-child(4) .item_icon::before {
  background: url(../img/work/abstrack-reverse-light.svg) no-repeat;
  background-size: 120px;
}
body.dark-theme .questions .questions-wrap .accordion-item {
  background-color: #313131;
}
body.dark-theme .questions .questions-wrap .accordion-button {
  background-color: #313131;
  color: #fff;
}
body.dark-theme .questions .questions-wrap .accordion-button::after {
  background: #202023;
}
body.dark-theme .questions .questions-wrap .accordion-body {
  background-color: #313131;
}
body.dark-theme .partenrs .main-partner .item {
  background-color: #313131;
  box-shadow: none;
}
body.dark-theme .partenrs .sub-partners .item {
  background-color: #313131;
  box-shadow: none;
}
body.dark-theme .footer .footer-content {
  border-bottom: 1px solid #303030;
}
body.dark-theme .footer .footer-content h3::after {
  background-color: #313131;
}
body.dark-theme .footer .footer-content .links ul a {
  color: #777E90;
}
body.dark-theme .footer .footer-content .links ul a::before {
  background-color: #313131;
}
body.dark-theme .footer .footer-content .social li a {
  background-color: #313131;
  color: #fff;
  box-shadow: none;
}
body.dark-theme .footer .footer-copyrights .copyrights p {
  color: #777E90;
}
body.dark-theme .mazad-wrapper .mazad-content {
  background-color: #1F1F1F;
}
body.dark-theme .mazad-wrapper .mazad-content .countdown-wrapper > div {
  background-color: #313131;
  color: #fff;
}
body.dark-theme .mazad-wrapper .mazad-content h3 {
  color: #fff;
}
body.dark-theme .mazad-wrapper .mazad-content .ss_wrap .ss_btn {
  background-color: #313131;
  color: #fff;
}
body.dark-theme .mazad-wrapper .mazad-content .ss_wrap.ss_wrap_3 .dd_list ul {
  background-color: #313131;
}
body.dark-theme .mazad-wrapper .mazad-content .ss_wrap.ss_wrap_3 .dd_list ul::before {
  border-color: transparent transparent #313131 transparent;
}
body.dark-theme .mazad-wrapper .mazad-content .ss_wrap.ss_wrap_3 .dd_list ul li a {
  background-color: #313131;
}
body.dark-theme .mazad-wrapper .mazad-content .price {
  color: #fff;
}
body.dark-theme .mazad-wrapper .mazad-content .quick-raise .raiseValue input {
  background-color: #333333;
  border: 1px solid #313131;
  color: #fff;
}
body.dark-theme .mazad-wrapper .mazad-content .quick-raise .raiseValue .currency {
  color: #fff;
}
body.dark-theme .mazad-wrapper .mazad-content .terms a {
  color: #fff;
}
body.dark-theme .mazad-wrapper .product-preview {
  background-color: #1F1F1F;
}
body.dark-theme .mazad-last {
  background-color: #1f1f1f;
}
body.dark-theme .mazad-last .card-header {
  background-color: #1f1f1f;
  color: #fff;
}
body.dark-theme .mazad-last .list-group .list-group-item {
  background: #202020;
  color: #fff;
}
body.dark-theme .mazad-last .list-group .list-group-item .fw-bold {
  color: #fff;
}
body.dark-theme .mazad-last .list-group .list-group-item .icon {
  background: #000000;
  color: #fff;
}
body.dark-theme .mazad-last .list-group .list-group-item .price {
  color: #fff;
}
body.dark-theme .mazad-description {
  background-color: #1f1f1f;
}
body.dark-theme .mazad-description .card-header {
  background-color: #1f1f1f;
  color: #fff;
}
body.dark-theme .mazad-description .card-body p {
  color: #fff;
}
body.dark-theme .modal .modal-content {
  background-color: #1F1F1F;
}
body.dark-theme .customModal .close {
  background-color: #111;
}
body.dark-theme .customModal .icon {
  background-color: #111;
  border: 1px solid #111;
}
body.dark-theme .customModal .form-group input {
  background-color: #333333;
  border: 1px solid #313131;
  color: #fff;
}
body.dark-theme .customModal .form-group input[type=submit] {
  background-color: #111111;
  color: #fff;
  width: 100%;
  text-align: center;
  font-family: "IBM-SemiBold";
  border: 0;
}
body.dark-theme .customModal .custom-checkbox a {
  color: #fff;
}
body.dark-theme .customModal .backBtn {
  background-color: #000;
}
body.dark-theme .customModal .backBtn i {
  color: #fff;
}
body.dark-theme .user-dashboard .card {
  background-color: #1F1F1F;
}
body.dark-theme .form-group label {
  color: #fff;
}
body.dark-theme .form-group input {
  background-color: #333333;
  border: 1px solid #313131;
  color: #fff;
}
body.dark-theme .select2-container--default .select2-selection--single {
  background-color: #333333;
  border: 1px solid #313131;
  color: #fff;
}
body.dark-theme .addNew a {
  border: 0.5px solid #333333;
  color: #fff !important;
}
body.dark-theme .card-title {
  color: #fff;
}
body.dark-theme .user-nav-items .card-header {
  background-color: #1f1f1f;
  background-color: #1f1f1f;
  color: #fff;
  border-bottom: 1px solid #282828;
}
body.dark-theme .user-nav-items .card-body .nav-link.active {
  background-color: rgba(49, 49, 49, 0.5);
  color: #949CA9;
}
body.dark-theme .user-dashboard .borderd {
  border: 1px solid #111111;
}
body.dark-theme .table_card_head {
  background-color: #333333;
  color: #fff;
  border: 1px solid #333333;
}
body.dark-theme .swal2-popup {
  background: #1F1F1F;
  color: #ffffff;
}
body.dark-theme .swal2-container .swal2-title {
  color: #fff;
}
body.dark-theme .mazad-item {
  background-color: #1F1F1F;
}
body.dark-theme .mazad-item .mazad-content h3 {
  color: #fff;
}
body.dark-theme .mazad-item .mazad-content .countdown-wrapper > div {
  background-color: #313131;
  color: #fff;
}
body.dark-theme .mazad-item .rasie .highest-raise {
  color: #fff;
}
body.dark-theme .deposit-pay {
  background-color: #1F1F1F;
}
body.dark-theme .table_card {
  background-color: #1F1F1F;
  color: #fff;
  box-shadow: none;
  border: 1px solid #333333;
}
body.dark-theme .tables_rows.half_table .table_card .table-card-item {
  border-bottom: 1px solid #000;
}
body.dark-theme .table_card .table-card-item {
  color: #fff;
}
body.dark-theme #mysr-form-form-el#mysr-form-form-el#mysr-form-form-el.mysr-form-moyasarForm[payment-form=true] input.mysr-form-input, body.dark-theme #mysr-form-form-el#mysr-form-form-el#mysr-form-form-el.mysr-form-moyasarForm[payment-form=true] input.mysr-form-input[type=text] {
  background-color: #333333 !important;
  border: 1px solid #313131 !important;
  color: #fff !important;
}
body.dark-theme .mazad-wrapper .product-preview .swiper-slide {
  background: #1f1f1f;
}
body.dark-theme .how-wrap .how-card {
  background-color: #1F1F1F;
}
body.dark-theme .how-wrap .how-card li {
  color: #fff !important;
}
body.dark-theme #m-menu .nav-items li.loginBtn .btnLink {
  border: 0;
}
body.dark-theme #m-menu .nav-items li.loginBtn .dropdown-menu {
  background-color: #1F1F1F;
  border-color: #1F1F1F;
}
body.dark-theme #m-menu .nav-items li.loginBtn .dropdown-menu .dropdown-item {
  color: #fff;
}
body.dark-theme .contact-wrapper {
  background-color: #262626;
  border-color: #262626;
}
body.dark-theme .contact-wrapper .nice-select {
  background-color: #333333;
  border-color: #313131;
}
body.dark-theme .contact-wrapper .form-group textarea {
  background-color: #333333;
  border-color: #313131;
}
body.dark-theme .card-address .AddressLabel {
  background-color: #333;
  border-color: #333333 !important;
}
body.dark-theme .card-address .edits a {
  background-color: #1f1f1f;
}
body.dark-theme .user-dashboard .mazadat-history .mazad-item {
  background: #282828;
}
body.dark-theme .user-dashboard .mazadat-history .mazad-item .mazad-content h3 {
  color: #fff;
}
body.dark-theme .user-dashboard .mazadat-history .mazad-item .rasie .highest-raise {
  color: #ffffff;
}
body.dark-theme .deposit-pay .table_card {
  border: 1px solid #1f1f1f;
}
body.dark-theme .congratulation .congratulation-card {
  background-color: #313131;
}
body.dark-theme .complete-order-wrapper .titledCard {
  background-color: #1f1f1f;
}
body.dark-theme .complete-order-wrapper .titledCard .card-header {
  background-color: #1f1f1f;
  color: #fff;
}
body.dark-theme .complete-order-wrapper .table_card {
  border: 1px solid #1f1f1f;
}
body.dark-theme .table_card .table-card-item.totalPay {
  background-color: #111111;
}
body.dark-theme .complete-order-wrapper .inovice-summary .item {
  background-color: #1f1f1f;
  border: 1px solid #000000;
}
body.dark-theme .complete-order-wrapper .inovice-summary .item .title {
  color: #fff;
}
body.dark-theme .complete-order-wrapper .inovice-summary .item p {
  color: #fff;
}
body.dark-theme .foreign_login span {
  color: #fff;
}

.iti .iti__divider {
  display: none;
}
.iti .iti__country.iti__standard {
  display: none;
}

/*# sourceMappingURL=styles.css.map */
