* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Tajawal';
}

*::-moz-selection {
  background-color: #321857;
  color: #fff;
}

*::selection {
  background-color: #321857;
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ababab;
}

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

*::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/***************************** Global Style *****************************/
h1, h2, h3 {
  font-weight: 900;
}

h4, h5, h6 {
  font-weight: 600;
}

p {
  font-size: 15px;
  font-weight: 300;
  color: #555;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
  padding: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #321857;
}

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: #4F2B82;
  background-color: #4F2B82;
}

/* Start Edit Modal */
.modal-content {
  border-radius: 45px;
  padding: 25px;
}

.modal-content button.close {
  text-align: end;
}

/*Start Scroll-top-btn*/
.scroll-top-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: linear-gradient(-135deg, #8f9196, #321857);
  color: #000;
  text-align: center;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 1000;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn:hover {
  background-color: #000;
  color: #fff;
}

/***************************** Animations *****************************/
@-webkit-keyframes lines-moving {
  0% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
@keyframes lines-moving {
  0% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes lines-moving2 {
  0% {
    width: 30%;
  }
  100% {
    width: 70%;
  }
}

@keyframes lines-moving2 {
  0% {
    width: 30%;
  }
  100% {
    width: 70%;
  }
}

@-webkit-keyframes lines-moving3 {
  0% {
    width: 40%;
  }
  100% {
    width: 80%;
  }
}

@keyframes lines-moving3 {
  0% {
    width: 40%;
  }
  100% {
    width: 80%;
  }
}

@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes pulsecust {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulsecust {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

/***************************** Start Edit Navbar & Footer *****************************/
.navs-container .main-nav .inner {
  border-bottom: 1px solid #ddd;
  padding: .7rem 0;
}

.navs-container .main-nav .inner .navbar-brand img {
  width: 150px;
  display: block;
}

.navs-container .main-nav .inner .search-group {
  position: relative;
  margin-top: 30px;
}

.navs-container .main-nav .inner .search-group .form-control {
  background-color: #f7f7f7;
  border: 1px solid transparent;
  height: 50px;
  border-radius: 10px;
}

.navs-container .main-nav .inner .search-group .submit_btn {
  width: 45px;
  height: 45px;
  background-color: transparent;
  border: 1px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
}

.navs-container .main-nav .inner .search-group .submit_btn img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .main-nav .inner .nav-icons {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  top: 50%;
}

.navs-container .main-nav .inner .nav-icons .icon {
  position: relative;
  margin: 0 10px;
}

.navs-container .main-nav .inner .nav-icons .icon img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .main-nav .inner .nav-icons .icon .num {
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: #E92401;
  border-radius: 50%;
  color: #fff;
  display: block;
  position: absolute;
  top: -5px;
  right: -5px;
  text-align: center;
  font-size: 10px;
}

.navs-container .main-nav .inner .lang-btn {
  padding: 12px 15.8px;
  border: 1px solid #321857;
  color: #321857;
  font-weight: bold;
  background-color: #fff;
  border-radius: 10px;
  display: block;
  text-align: center;
  margin-top: 25px;
}

.navs-container .main-nav .inner .lang-btn:hover {
  background-color: #321857;
  color: #fff;
}

.navs-container .main-nav .inner .register-btn {
  padding: 15px 15px;
  border-radius: 10px;
  display: block;
  background-color: #321857;
  color: #fff;
  text-align: center;
  font-size: 14px;
  margin: 13px 10px 0 10px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: bold;
}

.navs-container .main-nav .inner .register-btn:hover {
  background-color: #4F2B82;
  color: #fff;
}

.navs-container .links-nav {
  padding: 1rem;
}

.navs-container .links-nav .nav-link {
  text-align: center;
  margin: 0 5px;
  font-size: 13px;
  font-weight: 500;
}

.navs-container .links-nav .nav-link .icon {
  width: 25px;
  height: 25px;
  line-height: 20px;
  border-radius: 50%;
  background-color: #F6F6F6;
  display: inline-block;
  margin: 0 5px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.navs-container .links-nav .nav-link .icon img {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.navs-container .links-nav .nav-link.active, .navs-container .links-nav .nav-link:hover {
  color: #321857;
}

.navs-container .links-nav .nav-link.active .icon, .navs-container .links-nav .nav-link:hover .icon {
  background-color: #321857;
}

.navs-container .links-nav .nav-link.active .icon img, .navs-container .links-nav .nav-link:hover .icon img {
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(5deg) brightness(102%) contrast(102%);
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(5deg) brightness(102%) contrast(102%);
}

.navs-container .links-nav .has-dropdown {
  position: relative;
}

.navs-container .links-nav .has-dropdown .nav-link::after {
  content: '\f0d7';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin: 0 1px;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}

.navs-container .links-nav .has-dropdown .drop-down {
  padding: 15px 0;
  min-width: 180px;
  width: 200px;
  position: absolute;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 15px #ddd;
          box-shadow: 0 5px 15px #ddd;
  border-top: 3px solid #321857;
  margin-bottom: 0;
  display: block;
  z-index: 1000;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
  border-radius: 5px;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  opacity: 0;
  visibility: hidden;
}

.navs-container .links-nav .has-dropdown .drop-down .dropdown-link {
  display: block;
  padding: 10px 20px;
  clear: both;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: #84888c;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}

.navs-container .links-nav .has-dropdown .drop-down .dropdown-link:hover {
  background-color: #f7f7f7;
  color: #321857;
}

.navs-container .links-nav .has-dropdown:hover .drop-down {
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  opacity: 1;
  visibility: visible;
}

.navs-container .links-nav .has-dropdown:hover .nav-link::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.navs-container .links-nav .has-dropdown:hover .nav-link .icon {
  background-color: #321857;
}

.navs-container .links-nav .has-dropdown:hover .nav-link .icon img {
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(5deg) brightness(102%) contrast(102%);
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(5deg) brightness(102%) contrast(102%);
}

.navs-container .sidebar {
  width: 350px;
  height: 100vh !important;
  background-image: -webkit-gradient(linear, left top, right top, from(#2d1054), to(#321857));
  background-image: linear-gradient(to right, #2d1054, #321857);
  position: fixed;
  top: 0;
  left: -120%;
  z-index: 9999;
  -webkit-transition: all 350ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
  transition: all 350ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
}

.navs-container .sidebar .dismiss {
  color: #fff;
  position: relative;
  top: 20px;
  right: 15px;
  cursor: pointer;
}

.navs-container .sidebar h5 {
  text-align: center;
  position: relative;
  top: 30px;
  color: #fff;
  font-size: 1.2rem;
}

.navs-container .sidebar .card-body {
  margin: 35px 0px 10px;
  max-height: 350px;
  overflow-y: scroll;
  display: -ms-grid;
  display: grid;
}

.navs-container .sidebar .card-body::-webkit-scrollbar {
  width: 8px;
  background-color: #F5F5F5;
  position: relative;
}

.navs-container .sidebar .card-body::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: #bbb;
}

.navs-container .sidebar .card-body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #4b14a5;
}

.navs-container .sidebar .card-body .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-bottom: 1px solid #999;
  padding: 10px 0px;
}

.navs-container .sidebar .card-body .item .prod-card-sm {
  padding: 5px;
}

.navs-container .sidebar .card-body .item .prod-card-sm .img-thumbnail {
  width: 70px;
  height: 60px;
}

.navs-container .sidebar .card-body .item .text h6 {
  color: #fff;
}

.navs-container .sidebar .card-body .item .text span {
  font-size: 12px;
  color: #ddd;
}

.navs-container .sidebar .card-body .item .delete-btn {
  background-color: transparent;
  border: none;
  padding: 0;
  color: #fff;
  display: block;
  margin: auto;
}

.navs-container .sidebar .card-body .item .delete-btn:hover {
  color: #2C2C4F;
}

.navs-container .sidebar .card-body .item .text, .navs-container .sidebar .card-body .item .delete-btn {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.navs-container .sidebar .card-footer {
  color: #fff;
  background-color: transparent;
  border-top: none;
}

.navs-container .sidebar .card-footer .total {
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}

.navs-container .sidebar .card-footer .total p {
  font-size: 15px;
  margin-bottom: 5px;
  color: #ddd;
}

.navs-container .sidebar .card-footer .total h6 {
  font-size: 30px;
}

.navs-container .sidebar .card-footer .link-btn {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 10px;
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  display: block;
  text-align: center;
  margin: 15px 0px;
  font-size: 15px;
  font-weight: bold;
}

.navs-container .sidebar .card-footer .link-btn.active {
  background-color: #fff;
  color: #2C2C4F;
}

.navs-container .sidebar.active {
  left: 0;
}

.navs-container .overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  top: 0;
  right: 0;
}

.navs-container .overlay.active {
  display: block;
  opacity: 1;
}

.navs-container .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navs-container .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navs-container .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-container .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: #321857;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: #321857;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar-toggler .navbar-toggler-icon::after {
  top: -8px;
  right: 0px;
}

.navs-container .navbar-toggler .navbar-toggler-icon::before {
  top: 7px;
  right: 0px;
}

footer {
  padding: 70px 0 0 0;
  border-top: 1px solid #eee;
  background-color: #f7f7f7;
}

footer .content {
  margin-bottom: 50px;
}

footer .content .logo {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}

footer .content .footer-heading {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
}

footer .content .footer-heading .lines {
  position: relative;
  width: 30px;
  padding-top: 9px;
}

footer .content .footer-heading .lines .line {
  background-color: #321857;
  height: 1px;
  border-radius: 5px;
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

footer .content .footer-heading .lines .line:nth-of-type(1) {
  -webkit-animation: lines-moving2 3s infinite alternate both;
          animation: lines-moving2 3s infinite alternate both;
}

footer .content .footer-heading .lines .line:nth-of-type(2) {
  -webkit-animation: lines-moving 2s infinite alternate both;
          animation: lines-moving 2s infinite alternate both;
  margin: 3px 0;
}

footer .content .footer-heading .lines .line:nth-of-type(3) {
  -webkit-animation: lines-moving3 4s infinite alternate both;
          animation: lines-moving3 4s infinite alternate both;
}

footer .content .footer-heading h6 {
  margin-bottom: 0;
  padding: 0 10px;
  color: #321857;
  font-size: 1.3rem;
  font-weight: 500;
}

footer .content .social-icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  padding: 0;
  background-color: #321857;
  border: 1px solid #321857;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  color: #fff;
  text-align: center;
}

footer .content .text {
  line-height: 1.6rem;
  font-size: 12px;
}

footer .content .links a {
  margin: 10px 0;
  font-size: 15px;
  display: block;
  color: #666;
}

footer .content .links a:hover {
  font-weight: bold;
  color: #321857;
}

footer .content .payment-img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 50px;
  width: 70px;
}

footer .copyright {
  border-top: 1px solid #ddd;
  padding: 25px 0 30px 0;
  text-align: center;
}

footer .copyright p {
  margin-bottom: 0;
  font-weight: 600;
  color: #888;
}

/***************************** Public Style *****************************/
.sec-heading {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-bottom: 70px;
}

.sec-heading .lines {
  position: relative;
  width: 60px;
  padding-top: 7px;
}

.sec-heading .lines .line {
  background-color: #321857;
  height: 1px;
  border-radius: 5px;
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.sec-heading .lines .line:nth-of-type(1) {
  -webkit-animation: lines-moving2 3s infinite alternate both;
          animation: lines-moving2 3s infinite alternate both;
}

.sec-heading .lines .line:nth-of-type(2) {
  -webkit-animation: lines-moving 2s infinite alternate both;
          animation: lines-moving 2s infinite alternate both;
  margin: 7px 0;
}

.sec-heading .lines .line:nth-of-type(3) {
  -webkit-animation: lines-moving3 4s infinite alternate both;
          animation: lines-moving3 4s infinite alternate both;
}

.sec-heading .lines.lines-l {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.sec-heading h4 {
  margin-bottom: 0;
  padding: 0 20px;
  color: #321857;
  font-weight: 500;
}

.in-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.dir-l {
  direction: ltr;
}

/***************************** Start Edit Home Page *****************************/
header .swiper-container .swiper-slide {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  padding: 200px 0px;
  position: relative;
}

header .swiper-container .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 1px solid #f5f5f5;
}

header .swiper-container .swiper-pagination-bullet-active {
  opacity: 1;
  background: #f5f5f5;
}

header .swiper-container .swiper-slide-active .card-l {
  -webkit-animation: fadeInLeft 2s both;
          animation: fadeInLeft 2s both;
}

header .swiper-container .swiper-slide-active .card-r {
  -webkit-animation: fadeInRight 2s both;
          animation: fadeInRight 2s both;
}

header .swiper-container .swiper-slide-active .card-l2 {
  -webkit-animation: zoomIn 2s both;
          animation: zoomIn 2s both;
}

header .swiper-container .swiper-slide-active .lines {
  -webkit-animation: fadeIn 2s both;
          animation: fadeIn 2s both;
}

header .text-content {
  position: relative;
  z-index: 5;
}

header .text-content h3 {
  color: #fff;
  font-weight: 600;
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

header .text-content p {
  color: #eee;
  line-height: 2rem;
  font-size: 17px;
}

header .text-content .btn {
  width: 180px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: block;
  border: 1px solid #ccc;
  border-radius: 10px;
  color: #fff;
  padding: 0;
}

header .text-content .btn img {
  width: 25px;
  margin: 0 3px;
}

header .text-content .btn:hover {
  background-color: #280e4c;
}

header .lines {
  position: absolute;
  right: 0px;
  top: 20%;
  width: 150px;
}

header .lines .line {
  background-color: #fff;
  height: 2px;
  opacity: .4;
  border-radius: 5px;
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

header .lines .line:nth-of-type(1) {
  width: 50px;
  -webkit-animation: lines-moving2 3s infinite alternate both;
          animation: lines-moving2 3s infinite alternate both;
}

header .lines .line:nth-of-type(2) {
  width: 150px;
  -webkit-animation: lines-moving 2s infinite alternate both;
          animation: lines-moving 2s infinite alternate both;
  margin: 10px 0;
}

header .lines .line:nth-of-type(3) {
  width: 100px;
  -webkit-animation: lines-moving3 4s infinite alternate both;
          animation: lines-moving3 4s infinite alternate both;
}

header .lines.lines-l {
  left: 25%;
  right: unset;
  top: 40%;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

header .card-r {
  position: absolute;
  right: -10%;
  bottom: 5px;
  width: 30%;
}

header .card-l {
  position: absolute;
  left: -7%;
  top: 20px;
  width: 35%;
}

header .card-l2 {
  position: absolute;
  left: -1%;
  bottom: 30px;
}

.methodology-sec {
  padding: 70px 0;
}

.methodology-sec .method-card {
  text-align: center;
  padding: 25px 0;
  border: 1px solid #eee;
  border-radius: 25px;
}

.methodology-sec .method-card .icon {
  width: 55px;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 15px auto;
}

.methodology-sec .method-card h6 {
  color: #321857;
}

.methodology-sec .method-card p {
  font-size: 12px;
}

.methodology-sec .method-card:hover .icon {
  -webkit-animation: rotate-center 0.6s ease-in-out both;
          animation: rotate-center 0.6s ease-in-out both;
}

.categories-sec {
  padding: 70px 0;
}

.categories-sec .swiper-container .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  background: #321857;
  border: 1px solid #fff;
}

.categories-sec .swiper-container .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}

.categories-sec .categ-card {
  height: 300px;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.categories-sec .categ-card .categ-img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all .7s ease;
  transition: all .7s ease;
}

.categories-sec .categ-card::after {
  content: '';
  position: absolute;
  border-radius: 25px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #321857;
  opacity: .5;
}

.categories-sec .categ-card .text {
  position: absolute;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  z-index: 5;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.categories-sec .categ-card .text h5 {
  color: #fff;
  margin-bottom: 0;
  font-size: 2rem;
}

.categories-sec .categ-card:hover .categ-img {
  -webkit-transform: scale(1.3) rotate(5deg);
          transform: scale(1.3) rotate(5deg);
}

.products-sec {
  padding: 70px 0;
}

.products-sec .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.products-sec .nav .nav-link {
  border: 1px solid transparent;
  border-radius: 0;
  margin: 0 5px;
  color: #666;
  font-weight: 600;
}

.products-sec .nav .nav-link.active {
  font-weight: bold;
  background-color: transparent;
  color: #321857;
  border-bottom: 1px solid #321857;
}

.prod-card {
  padding: 50px 15px 15px 15px;
  border-radius: 25px;
  margin-bottom: 35px;
  border: 1px solid #eee;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.prod-card .prod-img {
  width: 210px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 0px auto;
}

.prod-card .card-body {
  text-align: center;
}

.prod-card .card-body h5 {
  font-size: 1.7rem;
}

.prod-card .card-body .price {
  font-size: 1.6rem;
  color: #321857;
}

.prod-card .card-body .buttons {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.prod-card .card-body .buttons .btn {
  width: 120px;
  height: 45px;
  line-height: 45px;
  border: 1px solid #fff;
  color: #321857;
  background-color: #fff;
  border-radius: 25px;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
}

.prod-card .card-body .buttons .btn.active {
  border: 1px solid #321857;
  background-color: #321857;
  color: #fff;
}

.prod-card.prod-dark-card {
  border: 1px solid transparent;
}

.prod-card.prod-dark-card .card-body h5 {
  color: #fff;
}

.prod-card.prod-dark-card .card-body .label {
  color: #ccc;
  margin-bottom: .4rem;
}

.prod-card.prod-dark-card .card-body .text {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

.prod-card .btns-hover .btn-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #321857;
  background-color: #321857;
  color: #fff;
  border-radius: 50%;
  padding: 0;
  position: absolute;
  top: 10px;
  left: -50px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: block;
}

.prod-card .btns-hover .btn-icon.active {
  left: 10px;
  background-color: #fff;
  color: #321857;
}

.prod-card .btns-hover .btn-icon:hover {
  background-color: #fff;
  color: #321857;
}

.prod-card .btns-hover .cart-icon {
  top: 65px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.prod-card:hover {
  -webkit-transform: translateZ(50px) translateX(-12px) translateY(-12px);
          transform: translateZ(50px) translateX(-12px) translateY(-12px);
  -webkit-box-shadow: 12px 12px 20px -12px rgba(0, 0, 0, 0.35);
          box-shadow: 12px 12px 20px -12px rgba(0, 0, 0, 0.35);
}

.prod-card:hover .btn-icon {
  left: 10px;
}

.prod-card-sm {
  padding: 25px 5px;
  border-radius: 15px;
}

.prod-card-sm .img-thumbnail {
  width: 150px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  border: none;
  background-color: transparent;
  margin: auto;
  display: block;
}

.our-methodology {
  padding: 70px 0 50px 0;
  background-color: #2E1553;
  position: relative;
  overflow: hidden;
}

.our-methodology .sec-heading h4 {
  color: #fff;
}

.our-methodology .sec-heading .line {
  background-color: #fff;
}

.our-methodology .method {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.our-methodology .method .icon {
  width: 75px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.our-methodology .method h6 {
  color: #fff;
  margin-top: 1rem;
}

.our-methodology .arrow {
  position: absolute;
  left: -100px;
  top: 20px;
  width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}

.our-methodology .logo-r {
  position: absolute;
  right: 0;
  top: 55%;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
}

.our-methodology .logo-l {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotateY(180deg);
          transform: translateY(-50%) rotateY(180deg);
}

.application {
  padding: 80px 0px 70px 0;
  background: url(../images/app-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.application .sec-heading {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin-bottom: 50px;
}

.application .sec-heading h4 {
  color: #fff;
}

.application .sec-heading .lines .line {
  background-color: #eee;
}

.application .text-inner {
  position: relative;
  z-index: 9;
}

.application .text-inner h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.application .text-inner p {
  color: #ddd;
  margin-bottom: 2.5rem;
}

.application .text-inner .buttons a {
  width: 200px;
  height: 75px;
  margin-left: 10px;
}

.application .text-inner .buttons a img {
  width: 200px;
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
}

.application .text-inner .buttons a:hover img {
  -webkit-animation: vibrate-1 0.8s linear infinite both;
          animation: vibrate-1 0.8s linear infinite both;
}

.application .text-inner h5 {
  color: #fff;
}

.newsletter-sec {
  padding: 70px 0px;
}

.newsletter-sec .form-group {
  position: relative;
}

.newsletter-sec .form-group .form-control {
  background-color: #EDEDED;
  height: 65px;
  border-radius: 10px;
}

.newsletter-sec .form-group .submit-btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 65px;
  border-radius: 10px 0 0 10px;
  background-color: #321857;
  color: #fff;
  border: 1px solid #321857;
}

.newsletter-sec .form-group .submit-btn:hover {
  background-color: #1b0638;
}

/***************************** Start Edit Products Page *****************************/
.page-heading {
  padding: 25px 0 10px 0;
  background: url(../images/header-bg.png) no-repeat;
  background-size: cover;
  position: relative;
}

.page-heading .sec-heading {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0;
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.page-heading .sec-heading .lines .line {
  background-color: #ddd;
  opacity: .7;
}

.page-heading .breadcrumb {
  background-color: transparent;
  position: relative;
  z-index: 5;
}

.page-heading .breadcrumb a {
  color: #fff;
}

.page-heading .breadcrumb .breadcrumb-item {
  padding: 0 10px;
  position: relative;
}

.page-heading .breadcrumb .breadcrumb-item::before {
  opacity: 0;
}

.page-heading .breadcrumb .breadcrumb-item::after {
  color: #ddd;
  content: ">";
  font-weight: bold;
  font-family: monospace;
  position: absolute;
  left: -4px;
  top: 3px;
}

.page-heading .breadcrumb .breadcrumb-item.last::after {
  opacity: 0;
}

.page-heading .breadcrumb .breadcrumb-item.active {
  color: #eee;
}

/* products-pg */
.products-pg {
  background-color: #f9f9f9;
}

.products-pg .prod-card {
  padding: 50px 5px 15px 5px;
}

.products-pg .prod-card .card-body .buttons .btn {
  width: 95px;
  height: 40px;
  line-height: 37px;
  margin: 0 0px;
}

/***************************** Start Edit Single Products Page *****************************/
.single-product {
  padding: 80px 0;
  margin: 50px 0;
  position: relative;
}

.single-product::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 30%;
  display: block;
  z-index: -1;
  background-color: #321857;
}

.single-product .prod-card {
  padding: 65px 15px 45px 15px;
}

.single-product .content {
  position: relative;
  z-index: 3;
  padding: 25px;
}

.single-product .content .prod-title {
  color: #4F2B82;
  font-size: 2.5rem;
}

.single-product .content .price {
  font-weight: 500;
  font-size: 2rem;
}

.single-product .content .price small {
  font-size: 75%;
  font-weight: 300;
}

.single-product .content .rate {
  color: #ccc;
}

.single-product .content .rate .active {
  color: #321857;
}

.single-product .content .p {
  font-size: 17px;
  line-height: 2rem;
}

.single-product .content .buttons .btn {
  width: 150px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #321857;
  color: #321857;
  font-weight: 700;
  display: inline-block;
  border-radius: 25px;
  padding: 0;
  margin: 0 7px;
}

.single-product .content .buttons .btn img {
  margin: 0 5px;
  width: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}

.single-product .content .buttons .btn.active {
  background-color: #321857;
  color: #fff;
}

.single-product .content .points {
  font-size: 14px;
}

.single-product .content .points .lines {
  width: 23px;
  margin: 0 5px;
}

.single-product .content .share-prod .social-icon {
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #f7f7f7;
  display: inline-block;
  text-align: center;
  color: #444;
  margin: 0 4px;
  font-size: 15px;
}

.single-product .content .share-prod .social-icon:hover {
  background-color: #321857;
  color: #fff;
}

.reviews-sec {
  padding: 50px 0px;
}

.reviews-sec .reciew-card {
  background-color: #f8f8f8;
  padding: 30px 15px;
  border-radius: 25px;
}

.reviews-sec .reciew-card .profile-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: block;
  margin: auto;
}

.reviews-sec .reciew-card .profile-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews-sec .reciew-card .review-content .rate {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 5px;
  font-size: 13px;
}

.reviews-sec .reciew-card .review-content .rate i {
  margin-right: 3px;
  color: #ccc;
}

.reviews-sec .reciew-card .review-content .rate i.active {
  color: #FDB00A;
}

.reviews-sec .reciew-card .review-content p {
  font-size: 13px;
  margin-bottom: 0;
}

.reviews-sec .review-btn {
  padding: 15px 40px;
  display: block;
  margin: 25px auto;
}

.review-modal-content h5 {
  font-weight: bold;
  color: #666;
  margin-bottom: 1rem;
}

.review-modal-content .stars-content {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 10px 15px;
}

.review-modal-content .stars-content .star-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  font-size: 1.5em;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 0 .2em;
  text-align: center;
  width: 5em;
}

.review-modal-content .stars-content .star-rating input {
  display: none;
}

.review-modal-content .stars-content .star-rating label {
  color: #ccc;
  cursor: pointer;
  margin-bottom: 0;
}

.review-modal-content .stars-content .star-rating :checked ~ label {
  color: #f90;
}

.review-modal-content .stars-content .star-rating label:hover,
.review-modal-content .stars-content .star-rating label:hover ~ label {
  color: #fc0;
}

.main-button {
  width: 180px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  border: 1px solid #321857;
  color: #fff;
  background-color: #321857;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: block;
  margin: 15px auto;
  border-radius: 10px;
}

.main-button:hover {
  background-color: #4F2B82;
}

/***************************** Start Edit FAQ Page *****************************/
.faq-sec {
  padding: 70px 0;
  background-color: #f8f8f8;
}

.faq-sec .inner .panel {
  margin-bottom: 25px;
  border: 1px solid #f1f1f1;
  -webkit-box-shadow: 0px 0px 15px 0px #eee;
          box-shadow: 0px 0px 15px 0px #eee;
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
}

.faq-sec .inner .panel::before {
  content: '';
  width: 3px;
  height: 100%;
  background-color: #ccc;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.faq-sec .inner .panel .panel-heading {
  padding: 25px 20px;
  border-bottom: 1px solid #eee;
}

.faq-sec .inner .panel .panel-heading h4 {
  margin-bottom: 0;
}

.faq-sec .inner .panel .panel-heading h4 a {
  width: 100%;
  display: block;
  font-size: 1rem;
}

.faq-sec .inner .panel .panel-heading i {
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  position: absolute;
  left: 10px;
  top: 25px;
  color: #666;
  font-size: 18px;
}

.faq-sec .inner .panel .p {
  font-size: 15px;
  line-height: 2rem;
  margin-bottom: 0;
}

.faq-sec .inner .active i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: #321857;
}

.faq-sec .inner .active::before {
  background-color: #321857;
}

/***************************** Start Edit Cart Page *****************************/
.cart-sec {
  padding: 70px 0;
  background-color: #f9f9f9;
}

.cart-sec .table-responsive {
  padding-top: 30px;
  overflow-y: hidden;
}

.cart-sec .table-responsive th {
  background-color: #7149a9;
  color: #fff;
  border-color: #7149a9;
  font-size: 14px;
  padding: 15px 0px;
}

.cart-sec .table-responsive td {
  vertical-align: middle;
  text-align: center;
  font-size: 13px;
}

.cart-sec .table-responsive td i {
  color: #666;
}

.cart-sec .table-responsive .quantity-container h5 {
  font-size: 17px;
  display: inline;
  margin-right: 10px;
  color: #555;
}

.cart-sec .table-responsive .quantity-container .qt-plus,
.cart-sec .table-responsive .quantity-container .qt-minus {
  width: 20px;
  height: 20px;
  line-height: 20px;
  border: solid 1px transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  color: #999;
  font-size: 10px;
  vertical-align: middle;
  display: inline-flex;
  cursor: pointer;
}

.cart-sec .table-responsive .quantity-container .qt-plus:hover,
.cart-sec .table-responsive .quantity-container .qt-minus:hover {
  background-color: #ccc;
  color: #202020;
}

.cart-sec .table-responsive .quantity-container .qt-plus .fa,
.cart-sec .table-responsive .quantity-container .qt-minus .fa {
  font-weight: 300;
}

.cart-sec .table-responsive .quantity-container .qt {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.44;
  color: #202020;
  vertical-align: middle;
  margin-right: 5px;
  margin-left: 5px;
  min-width: 30px;
  text-align: center;
}

.cart-sec .cart-summary {
  padding: 20px 0px;
  text-align: center;
}

.cart-sec .cart-summary h6 {
  color: #555;
}

.cart-sec .cart-summary h6 span {
  font-weight: bold;
  font-size: 20px;
  color: #321857;
  margin-right: 10px;
}

.cart-sec .cart-summary p {
  font-size: 15px;
}

.cart-sec .cart-summary a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 45px;
  line-height: 45px;
  background-color: #321857;
  border: 1px solid #321857;
  color: #fff;
  font-weight: 700;
  text-align: center;
  border-radius: 15px;
  margin: 0px 4px;
  padding: 0rem 2.375rem;
  font-size: 14px;
}

.cart-sec .cart-summary a:hover {
  background-color: #7149a9;
  border: 1px solid #7149a9;
}

/***************************** Start Edit Chechout Page *****************************/
.chechout-pg {
  padding: 50px 0;
  background-color: #f8f8f8;
}

.chechout-pg .sec-heading {
  margin-bottom: 40px;
}

.chechout-pg .sec-heading .lines {
  padding-top: 11px;
  width: 40px;
}

.chechout-pg .sec-heading .lines .line:nth-of-type(2) {
  margin: 4px 0;
}

.chechout-pg .payments-inner {
  -webkit-box-shadow: 0px 0px 10px 0px #ccc;
          box-shadow: 0px 0px 10px 0px #ccc;
  margin: 50px 0px;
  border-radius: 25px;
}

.chechout-pg .payments-inner .payments-header {
  border-radius: 25px 25px 0px 0px;
  padding: 35px 15px;
  background-image: -webkit-gradient(linear, left top, right top, from(#7149a9), to(#321857));
  background-image: linear-gradient(to right, #7149a9, #321857);
}

.chechout-pg .payments-inner .payments-header h5 {
  margin-bottom: 0;
  color: #fff;
}

.chechout-pg .payments-inner .payments-body {
  background-color: #fff;
  border-radius: 0px 0px 25px 25px;
  -webkit-box-shadow: 0px 0px 10px 0px #f5f5f5;
          box-shadow: 0px 0px 10px 0px #f5f5f5;
  /* Hide all steps by default: */
}

.chechout-pg .payments-inner .payments-body .tab {
  display: none;
}

.chechout-pg .payments-inner .payments-body .pay-form {
  background-color: #ffffff;
  padding: 40px;
  width: 100%;
  border-radius: 25px;
}

.chechout-pg .payments-inner .payments-body .pay-form .circles {
  text-align: center;
  margin-top: 20px;
  /* Make circles that indicate the steps of the form: */
  /* Mark the steps that are finished and valid: */
}

.chechout-pg .payments-inner .payments-body .pay-form .circles .step {
  height: 10px;
  width: 60px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 20px;
  display: inline-block;
  opacity: 0.5;
}

.chechout-pg .payments-inner .payments-body .pay-form .circles .step.active {
  opacity: 1;
}

.chechout-pg .payments-inner .payments-body .pay-form .circles .step.finish {
  background-color: #321857;
}

.chechout-pg .payments-inner .payments-body .pay-form .form-group {
  /* Mark input boxes that gets an error on validation: */
}

.chechout-pg .payments-inner .payments-body .pay-form .form-group label {
  color: #777;
  font-size: 15px;
  display: block;
  font-weight: bold;
}

.chechout-pg .payments-inner .payments-body .pay-form .form-group .form-control {
  width: 100%;
  font-size: 12px;
  border: 1px solid #ccc;
  height: 45px;
  padding: 0rem .75rem;
}

.chechout-pg .payments-inner .payments-body .pay-form .form-group .form-control:focus {
  border: 1px solid #321857;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.chechout-pg .payments-inner .payments-body .pay-form .form-group input.invalid {
  background-color: #ffdddd;
}

.chechout-pg .payments-inner .payments-body .pay-form .item {
  border-bottom: 1px solid #ccc;
  display: block;
  margin: 15px 0px;
}

.chechout-pg .payments-inner .payments-body .pay-form .item .content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.chechout-pg .payments-inner .payments-body .pay-form .item .content img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.chechout-pg .payments-inner .payments-body .pay-form .item .content .text {
  padding: .5rem 1.375rem;
}

.chechout-pg .payments-inner .payments-body .pay-form .item .content .text p {
  font-weight: bold;
  color: #999;
  margin-bottom: .1rem;
}

.chechout-pg .payments-inner .payments-body .pay-form .total {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 15px auto;
  position: relative;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.chechout-pg .payments-inner .payments-body .pay-form .total h6 {
  margin-left: 15px;
}

.chechout-pg .payments-inner .payments-body .pay-form .total h6 span {
  font-weight: bold;
  margin-right: 10px;
  color: #888;
  font-size: 15px;
}

.chechout-pg .payments-inner .payments-body .pay-form .total h6 span.active {
  color: #4F2B82;
  font-size: 17px;
}

.chechout-pg .payments-inner .payments-body .buttons-container {
  float: left;
}

.chechout-pg .payments-inner .payments-body .buttons-container button {
  background-color: #321857;
  color: #ffffff;
  border: none;
  font-size: 15px;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
  width: 130px;
  height: 40px;
  font-weight: bold;
  border-radius: 5px;
  margin: 5px 0px;
}

.chechout-pg .payments-inner .payments-body .buttons-container button:hover {
  background-color: #4F2B82;
}

.chechout-pg .payments-inner .payments-body .buttons-container #prevBtn {
  background-color: #bbbbbb;
}

.chechout-pg .prod-card-sm {
  padding: 10px 5px;
}

/*Pay Wrapper*/
.pay .pay-method label {
  width: 100%;
}

.pay .pay-method .card-input-element {
  display: none;
}

.pay .pay-method .card-input {
  width: 100%;
  padding: 10px;
  border: 1px solid transparent;
  -webkit-transform: all .3s ease;
          transform: all .3s ease;
  margin-bottom: 15px;
  border: 1px solid #ddd;
}

.pay .pay-method .card-input:hover {
  -webkit-box-shadow: 0px 0px 15px 0px #ddd;
          box-shadow: 0px 0px 15px 0px #ddd;
}

.pay .pay-method .card-input:hover {
  cursor: pointer;
}

.pay .pay-method img {
  width: 100%;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}

.pay .pay-method .wallet-points {
  padding: 9.4px 0;
}

.pay .pay-method .card-input-element:checked + .card-input {
  -webkit-box-shadow: 0px 0px 15px 0px #ddd;
          box-shadow: 0px 0px 15px 0px #ddd;
  border: 1px solid #4F2B82;
}

.pay .pay-method .card-input-element:checked + h6 {
  color: #321857;
}

.pay .undertaking-wrapper {
  display: none;
}

.pay .undertaking-wrapper label {
  font-weight: 600;
  color: #666;
}

.pay .undertaking-wrapper label button {
  border: none;
  padding: 0;
  background-color: transparent;
  color: #4F2B82;
  font-weight: bold;
  margin: 0 3px;
}

/*acknowledgment-modal*/
.acknowledgment-modal .p {
  font-weight: bold;
  color: #777;
  line-height: 2rem;
  margin-bottom: 0;
}

/*order-modal*/
.order-modal .confirm-img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.order-modal .order-det {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.order-modal .order-det td, .order-modal .order-det th {
  padding: .5rem 1rem;
}

/***************************** Start Edit Contact Page *****************************/
.contact-pg {
  padding: 70px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.contact-pg .card {
  padding: 1.25rem;
  border: none;
  -webkit-box-shadow: 0px 0px 10px 0px #eee;
          box-shadow: 0px 0px 10px 0px #eee;
  -webkit-transition: .5s;
  transition: .5s;
  border-radius: 10px;
  margin-bottom: 10px;
}

.contact-pg .card .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  background-color: #f5f5f5;
  color: #321857;
  border-radius: 50%;
  display: block;
  margin: auto;
  -webkit-transition: .5s;
  transition: .5s;
}

.contact-pg .card h6 {
  margin-top: 1.2rem;
  color: #555;
}

.contact-pg .card p {
  font-size: 15px;
  margin: 0rem;
}

.contact-pg .card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.contact-pg .card:hover .icon {
  background-color: #321857;
  color: #fff;
}

.contact-pg .card:hover .icon i {
  -webkit-animation: rotate-center 0.6s ease-in-out both;
          animation: rotate-center 0.6s ease-in-out both;
}

.contact-pg .card:hover h6 {
  color: #321857;
}

.contact-pg .contact-form {
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(123, 166, 247, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(123, 166, 247, 0.2);
  padding: 1.25rem;
  margin: 20px 0px 50px 0px;
}

.contact-pg .contact-form .text span {
  font-size: 15px;
  color: #4F2B82;
  font-weight: bold;
}

.contact-pg .contact-form .text h5 {
  margin: 1rem 0rem;
}

.form-wrapper .form-group {
  position: relative;
  margin-bottom: 1.8rem;
}

.form-wrapper .form-group .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #4F2B82;
}

.form-wrapper .form-group .form-control::-webkit-input-placeholder {
  font-size: 13px;
  color: #999;
}

.form-wrapper .form-group .form-control:-ms-input-placeholder {
  font-size: 13px;
  color: #999;
}

.form-wrapper .form-group .form-control::-ms-input-placeholder {
  font-size: 13px;
  color: #999;
}

.form-wrapper .form-group .form-control::placeholder {
  font-size: 13px;
  color: #999;
}

.form-wrapper .form-group input, .form-wrapper .form-group select {
  height: 55px;
}

.form-wrapper .floating-label {
  font-size: 13px;
  color: #999;
  position: absolute;
  pointer-events: none;
  top: 18px;
  right: 12px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  background-color: #fff;
  padding: 0 5px;
}

.form-wrapper .form-control:focus ~ .floating-label,
.form-wrapper .form-control:not(:focus):valid ~ .floating-label {
  top: -9px;
  bottom: 0px;
  right: 10px;
  font-size: 12px;
  opacity: 1;
  color: #555;
  font-weight: 500;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.form-wrapper .submit-butn {
  background-color: #321857;
  color: #fff;
  width: 180px;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  padding: 0;
  border: 1px solid #321857;
  margin: auto;
  font-size: 15px;
  display: block;
  margin: auto;
}

.form-wrapper .submit-butn:hover {
  background-color: #4F2B82;
  border: 1px solid #4F2B82;
}

/***************************** Start Edit Register Page *****************************/
.register-pg .register-body {
  background-color: #fff;
  border-radius: 0 0 25px 25px;
  padding: 3rem 2.25rem;
}

.register-pg .register-body .register-links {
  width: 100%;
  text-align: center;
  margin-bottom: 3.5rem;
}

.register-pg .register-body .register-links a {
  margin: 0 10px;
  border-bottom: 2px solid #bdbdbd;
  padding: 12px 5px;
  color: #bdbdbd;
  font-weight: bold;
}

.register-pg .register-body .register-links a.active {
  border-bottom: 2px solid #4F2B82;
  color: #4F2B82;
  font-weight: bold;
}

.register-pg .register-body .togglePassword {
  color: #A5A5A5;
  position: absolute;
  left: 15px;
  top: 20px;
  cursor: pointer;
}

.register-pg .register-body .forget-pass {
  color: #777;
  font-size: 10px;
  text-align: left;
  display: block;
  margin: 10px 0px;
}

.register-pg .register-body .activation-text h6 {
  color: #666;
}

.register-pg .register-body .activation-text span {
  font-weight: 600;
  color: #321857;
}

.register-pg .register-body .country-group .btn {
  padding: 0rem;
  width: 100%;
  height: 55px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.register-pg .register-body .country-group .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.register-pg .register-body .country-group .flagstrap-icon {
  margin: 0 8px;
}

.register-pg .register-body .counting span {
  text-align: center;
  font-size: 15px;
}

.register-pg .register-body .headline-restoring {
  color: #777;
}

.register-pg .register-body .headline-restoring2 {
  color: #321857;
}

.register-pg .register-body .code-input {
  width: 60px;
  display: inline-block;
  margin: auto;
  text-align: center;
  margin-bottom: 5px;
}

.register-pg .btns {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.register-pg .btns a, .register-pg .btns button {
  display: inline-block !important;
  margin: 0 3px;
}

/***************************** Start Edit About Page *****************************/
.about-pg {
  padding: 70px 0;
  background-color: #f8f8f8;
  overflow: hidden;
}

.about-pg .image-content {
  width: 100%;
  height: 400px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0.9);
          transform: translateY(-50%) scale(0.9);
  padding: 15px;
}

.about-pg .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  position: relative;
  z-index: 4;
}

.about-pg .image-content::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #decdf7;
  display: block;
  border-radius: 15px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

.about-pg .image-content .play-btn {
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
}

.about-pg .image-content .play-btn:before, .about-pg .image-content .play-btn:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #321857;
}

.about-pg .image-content .play-btn:hover:before {
  background-color: #333;
}

.about-pg .image-content .play-btn:before {
  z-index: 1;
}

.about-pg .image-content .play-btn:after {
  overflow: hidden;
  z-index: 0;
  opacity: 1;
  visibility: visible;
  -webkit-animation: pulsecust 1.8s linear;
          animation: pulsecust 1.8s linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
  transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
  background-color: #fff;
}

.about-pg .image-content .play-btn i {
  font-size: 1.5rem;
  color: #fff;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.about-pg .text {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-pg .text .heading {
  padding: 0 20px;
  border-right: 2px solid #321857;
}

.about-pg .text .heading h6 {
  color: #888;
  font-size: .8rem;
}

.about-pg .text .heading h2 {
  margin-bottom: 1.5rem;
}

.about-pg .text .p {
  font-size: 15px;
  line-height: 1.7rem;
}

.about-pg .card {
  margin-bottom: 15px;
  padding: 1.5rem;
  border: none;
  border-radius: 15px;
  background-color: #fff;
  margin-bottom: 15px;
}

.about-pg .card img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  -webkit-filter: invert(75%) sepia(82%) saturate(2609%) hue-rotate(207deg) brightness(57%) contrast(110%);
          filter: invert(75%) sepia(82%) saturate(2609%) hue-rotate(207deg) brightness(57%) contrast(110%);
}

.about-pg .card h4 {
  margin: 1.3rem 0rem 1rem;
  color: #555;
}

.about-pg .card p {
  font-size: 13px;
  line-height: 1.5rem;
}

.about-pg .card:hover {
  -webkit-box-shadow: 0px 3px 15px 0px #ddd;
          box-shadow: 0px 3px 15px 0px #ddd;
}

.about-pg .card:hover img {
  -webkit-animation-name: tada;
          animation-name: tada;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

/***************************** Start Edit Content Page *****************************/
.content-pg {
  padding: 70px 0;
  background-color: #f8f8f8;
}

.content-pg .inner {
  background-color: #fff;
  border-radius: 25px;
  padding: 5% 4%;
  margin-bottom: 50px;
}

.content-pg .inner .text {
  top: 0%;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

/***************************** Start Edit Profile Page *****************************/
.profile-pg {
  padding: 70px 0;
  background-color: #f8f8f8;
}

.profile-pg .side-nav {
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(224, 123, 247, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(224, 123, 247, 0.2);
  padding: 1.5rem 0rem;
  margin-bottom: 25px;
  border-radius: 10px;
}

.profile-pg .side-nav .profile-img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
}

.profile-pg .side-nav .profile-img img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-pg .side-nav .profile-img h6 {
  margin: 1.2rem 0rem .5rem 0rem;
}

.profile-pg .side-nav .points-wallet {
  background-color: #f6f6f6;
  padding: 20px 15px;
  border-radius: 15px;
  margin: 10px;
}

.profile-pg .side-nav .points-wallet h6 {
  color: #777;
}

.profile-pg .side-nav .points-wallet span {
  font-size: 1.7rem;
  color: #4F2B82;
  font-weight: 600;
}

.profile-pg .side-nav .points-wallet span small {
  font-size: 60%;
}

.profile-pg .side-nav .points-wallet .main-button {
  margin: 7px auto 0 auto;
  width: 110px;
  font-size: 12px;
  height: 45px;
  line-height: 45px;
  padding: 0;
  background-color: #4b14a5;
  border: 1px solid #4b14a5;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  display: inline-block;
}

.profile-pg .side-nav .points-wallet .main-button:nth-of-type(1) {
  background-color: #4f3475;
  border: 1px solid #4f3475;
}

.profile-pg .side-nav .points-wallet .main-button:hover {
  border: 1px solid #333;
  background-color: #333;
}

.profile-pg .side-nav .links {
  margin-top: 25px;
}

.profile-pg .side-nav .links .nav-link {
  border-left: 1px solid transparent;
  border-radius: 0;
  font-size: 15px;
  padding: .75rem 1.375rem;
}

.profile-pg .side-nav .links .nav-link i {
  margin-left: 10px;
  color: #777;
}

.profile-pg .side-nav .links .nav-link.active {
  border-left: 2px solid #321857;
  background-color: #f9f9f9;
  color: #321857;
  font-weight: bold;
}

.profile-pg .side-nav .links .nav-link.active i {
  color: #321857;
}

.profile-pg .tab-wrapper {
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(224, 123, 247, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(224, 123, 247, 0.2);
  padding: 2.5rem 2rem;
  margin-bottom: 25px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.profile-pg .tab-wrapper .sec-heading h4 {
  font-size: 1.2rem;
}

.profile-pg .tab-wrapper .sec-heading .lines {
  position: relative;
  width: 40px;
}

.profile-pg .tab-wrapper .sec-heading .lines .line:nth-of-type(2) {
  margin: 5px 0;
}

.profile-pg .tab-wrapper .main-butn {
  width: 180px;
  height: 45px;
  line-height: 45px;
  padding: 0;
  border: 1px solid #321857;
  color: #fff;
  background-color: #321857;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: block;
  margin: 15px auto 0 auto;
  border-radius: 10px;
}

.profile-pg .tab-wrapper .main-butn:hover {
  background-color: #4F2B82;
}

.profile-pg .tab-wrapper.info-tab .info-content {
  margin-bottom: 1.3rem;
}

.profile-pg .tab-wrapper.info-tab .info-content h6 {
  color: #555;
  margin-bottom: .7rem;
  font-size: .9rem;
}

.profile-pg .tab-wrapper.info-tab .info-content .text {
  padding: 15px 10px;
  background-color: #f8f8f8;
  border-radius: 5px;
  margin-bottom: 0;
  font-weight: 500;
  color: #777;
}

.profile-pg .tab-wrapper.notifications-tab .noti-item {
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 15px 0px #eee;
          box-shadow: 0px 5px 15px 0px #eee;
  padding: 10px 20px;
  background-color: #f9f9f9;
}

.profile-pg .tab-wrapper.notifications-tab .noti-item .new {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background-color: #4F2B82;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0px;
}

.profile-pg .tab-wrapper.notifications-tab .noti-item .noti-img {
  width: 100%;
  height: 60px;
  border-radius: 0;
  border: 3px solid #fff;
  display: block;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 5px;
}

.profile-pg .tab-wrapper.notifications-tab .noti-item h6 {
  margin-bottom: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.profile-pg .tab-wrapper.notifications-tab .noti-item .text {
  margin: 0 10px;
}

.profile-pg .tab-wrapper.notifications-tab .noti-item .time {
  float: left;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  direction: ltr;
  font-weight: 600;
  color: #777;
}

.profile-pg .tab-wrapper.orders-tab .table td, .profile-pg .tab-wrapper.orders-tab .table th {
  text-align: center;
}

.profile-pg .tab-wrapper.orders-tab .table .icon {
  text-align: start;
}

.profile-pg .tab-wrapper.orders-tab .table img {
  width: 100px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}

/*Info Modal*/
.info-modal .image-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #4F2B82;
  margin: auto;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.info-modal .image-container input {
  position: absolute;
  bottom: 0;
  left: 64%;
  background-color: #fff;
  border-radius: 30px;
  display: inline-block;
  color: #222;
  width: 50px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  border: none;
  opacity: 0;
}

.info-modal .image-container button {
  width: 45px;
  height: 45px;
  -webkit-box-shadow: 0px 0px 10px #555;
          box-shadow: 0px 0px 10px #555;
  background-color: #4F2B82;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  cursor: pointer !important;
  border: 1px solid #ddd;
  position: absolute;
  right: 2px;
  bottom: 0px;
}

.info-modal .image-container button i {
  position: relative;
  top: 1px;
  cursor: pointer !important;
}

.info-modal .text {
  margin-bottom: 20px;
  padding: 0px 10px;
}

.info-modal .text .content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.info-modal .text .content span {
  text-transform: uppercase;
  color: #666;
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-modal .text .content .edit-btn {
  cursor: pointer;
  color: #4f4e4e;
  font-size: 12px;
}

.info-modal .text .form-control {
  background-color: #f5f5f5;
  border: 1px solid transparent;
  height: 45px;
  line-height: 45px;
  font-size: 15px;
  border-radius: 5px;
  padding: .375rem 1.2rem;
}

.info-modal .text .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: 1px solid #4F2B82;
}

.info-modal .text .enable-input {
  height: 45px;
  line-height: 45px;
  font-size: 15px;
  border-radius: 5px;
  padding: .375rem 1.2rem;
  background-color: #fff;
  border: 1px solid #ddd;
}

.info-modal .text .enable-input:focus {
  border: 1px solid #4F2B82;
}

.info-modal .main-butn {
  width: 180px;
  height: 45px;
  line-height: 45px;
  padding: 0;
  border: 1px solid #321857;
  color: #fff;
  background-color: #321857;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: block;
  margin: 15px auto;
  border-radius: 10px;
}

.info-modal .main-butn:hover {
  background-color: #4F2B82;
}

/*load-wallet-modal*/
.load-wallet-modal .main-button {
  margin: 7px auto 0 auto;
}

/*redeeming-points-modal*/
.redeeming-points-modal .h5 {
  font-weight: 600;
  color: #333;
}

.redeeming-points-modal .h5 b {
  font-weight: 600;
  color: #7149a9;
}

.redeeming-points-modal .p {
  font-weight: 500;
}

.redeeming-points-modal .modal-footer {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 1.5rem 1rem 1rem 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.redeeming-points-modal .btns {
  margin: auto;
}

.redeeming-points-modal .main-button {
  margin: 10px 2px;
}

.redeeming-points-modal .btn-secondary {
  width: 120px;
  height: 50px;
  border-radius: 10px;
}

/***************************** Start Edit Order Details Page *****************************/
.order-details .order-head {
  border: 1px solid #9993;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}

.order-details .order-head ul li p {
  font-size: 15px;
  font-weight: 500;
}

.order-details .order-head ul li span, .order-details .order-head ul li a {
  color: #4F2B82;
  font-weight: 500;
}

.order-details .checkout-table th {
  background-color: #f9f9f9;
  font-size: 15px;
}

.order-details .checkout-table td {
  vertical-align: middle;
}

.order-details .checkout-table .prod-img {
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}

.order-details .checkout-table .product-name {
  font-weight: bold;
  color: #555;
}

.order-details .checkout-table tr:hover {
  color: #212529;
  background-color: transparent;
}

/***************************** Start Edit Tickets Page *****************************/
.tickets-pg {
  padding: 70px 0;
  background-color: #f9f9f9;
}

.tickets-pg .inner {
  padding: 50px 35px;
  background-color: #fff;
  border-radius: 25px;
  -webkit-box-shadow: 0 0 25px 0 #ddd;
          box-shadow: 0 0 25px 0 #ddd;
}

.tickets-pg .inner .tickets-heading {
  border-bottom: 1px solid #ddd;
  padding-bottom: 25px;
}

.tickets-pg .inner .tickets-heading .headline {
  margin-bottom: 0;
  color: #321857;
}

.tickets-pg .inner .tickets-heading .badge {
  line-height: initial;
}

.tickets-pg .inner .tickets-heading .btns-wrapper .btn {
  width: 150px;
  height: 40px;
  line-height: 40px;
  border-radius: 25px;
  text-align: center;
  background-color: #f5f5f5;
  color: #280e4c;
  display: inline-block;
  padding: 0;
  margin: 0 5px;
}

.tickets-pg .inner .tickets-heading .btns-wrapper .btn i {
  margin: 0 5px;
}

.tickets-pg .inner .tickets-heading .btns-wrapper .btn.active {
  background-color: #280e4c;
  color: #fff;
}

.tickets-pg .inner .tickets-heading .btns-wrapper .btn:hover {
  background-color: #533185;
  color: #fff;
}

.tickets-pg .inner .card-body {
  padding: 2.5rem 1.25rem 0 1.25rem;
}

.tickets-pg .inner .card-body table td, .tickets-pg .inner .card-body table th {
  text-align: center;
}

.tickets-pg .inner .card-body table a {
  color: #4F2B82;
}

.tickets-pg .inner .card-body .file-input-group .wrap {
  border-radius: 5px;
  border: 1px solid #ddd;
}

.tickets-pg .inner .card-body .file-input-group .file {
  position: relative;
  font-weight: 600;
}

.tickets-pg .inner .card-body .file-input-group .file__input, .tickets-pg .inner .card-body .file-input-group .file__value {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.3);
  padding: 0rem 1.0625rem;
}

.tickets-pg .inner .card-body .file-input-group .file__input--file {
  position: absolute;
  opacity: 0;
}

.tickets-pg .inner .card-body .file-input-group .file__input--label {
  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;
  margin-bottom: 0;
  cursor: pointer;
  color: #444;
  font-weight: 400;
  font-size: 14px;
}

.tickets-pg .inner .card-body .file-input-group .file__input--label:after {
  content: attr(data-text-btn);
  border-radius: 3px;
  background-color: #321857;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.18);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.18);
  padding: 0.675rem 1.0625rem;
  color: #fff;
  cursor: pointer;
  margin: 5px 0;
}

.tickets-pg .inner .card-body .file-input-group .file__value {
  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;
  color: rgba(71, 71, 71, 0.6);
}

.tickets-pg .inner .card-body .file-input-group .file__value:hover:after {
  color: #ff0707;
}

.tickets-pg .inner .card-body .file-input-group .file__value:after {
  content: "X";
  cursor: pointer;
}

.tickets-pg .inner .card-body .file-input-group .file__value:after:hover {
  color: #000;
}

.tickets-pg .inner .card-body .file-input-group .file__remove {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #b58240;
}

.tickets-pg .inner .card-body .ticket-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
}

.tickets-pg .inner .card-body .ticket-item .profile-pic {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 15px 0 #ddd;
          box-shadow: 0 0 15px 0 #ddd;
}

.tickets-pg .inner .card-body .ticket-item .text {
  padding: 0 15px;
}

.tickets-pg .inner .card-body .ticket-item .text .desc {
  line-height: 1.7rem;
  margin-bottom: .6rem;
}

.tickets-pg .inner .card-body .ticket-item .text .date {
  font-weight: 600;
  color: #888;
  font-size: 14px;
}

.is-required:after {
  position: relative;
  margin: 0 5px;
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #ff0707;
  border-radius: 4px;
  content: "";
}
/*# sourceMappingURL=style.css.map */