/*
** Express COD Checkout v1.0.0
** [1] - Quantity input
** [2] - Buy button loading Animation
** [3] - Form wrapper
** [4] - Form inputs
** [5] - Form BUTTON
** [6] - Form alerts
** [7] - Form label
** [8] - customizer sidebar
*/

:root {
  --expcod-main-color: #aa2e62;
}

/* arabic */
@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cairo/v28/SLXVc1nY6HkvangtZmpQdkhzfH5lkSscQyyS8p4_RHH1.woff2)
    format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0898-08E1,
    U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF,
    U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EFD-10EFF,
    U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32,
    U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B,
    U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D,
    U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77,
    U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3,
    U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
/* latin-ext */
@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cairo/v28/SLXVc1nY6HkvangtZmpQdkhzfH5lkSscSCyS8p4_RHH1.woff2)
    format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cairo/v28/SLXVc1nY6HkvangtZmpQdkhzfH5lkSscRiyS8p4_RA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* 
** [1] - Quantity input
** Start quantity input
*/

.expcod-quantity-input .quantity {
  width: 100;
  height: 100%;
  min-width: 100%;
  font-size: 13px;
}

.expcod-quantity-input .quantity i {
  font-size: 13px !important;
}

.quantity_increamenter {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.quantity_increamenter > div {
  background-color: #f0f0f0;
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  cursor: pointer;
  height: 35px;
  padding: 20px;
}

.quantity_increamenter > input {
  width: 40%;
  text-align: center;
  border: none;
  outline: none;
}

input[type="text"].dc-quantity-input {
  display: block;
  border: none;
  outline: none;
  padding: 0;
  background-color: initial;
  box-shadow: unset;
}

@media (min-width: 767px) {
  [dir="ltr"] .expcod-quantity-input {
    padding-right: 0;
  }
  [dir="rtl"] .expcod-quantity-input {
    padding-left: 0;
  }
}
/* 
** [2] - Buy button loading Animation 
** Start Loading Animation 
*/

.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  transform: scale(0.3);
  margin-top: -9px;
}

.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #fff;
}

.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
** [3] - Form wrapper
** Start form wrapper
*/

.express-cod-checkout-wrapper {
  /* display: none; */
  position: relative;
}

.entry-summary .express-cod-checkout-wrapper {
  display: block;
}

.express-cod-checkout-wrapper .express-cod-checkout-form {
  margin-top: var(--expcod-form-marginTop);
  margin-bottom: var(--expcod-form-marginBottom);
  border-color: var(--expcod-form-borderColor);
  border-width: var(--expcod-form-borderWidth);
  border-radius: var(--expcod-form-borderRadius);
  padding: var(--expcod-form-padding);
  border-style: var(--expcod-form-borderType);
}

.express-cod-checkout-wrapper *,
*::before,
*::after {
  box-sizing: border-box;
}
/*
** [4] - Form input
** Start form inputs
*/

.express-cod-checkout-wrapper .express-cod-checkout-form .exp-cod-input-label {
  margin-bottom: 8px;
  display: var(--expcod-label-display);
}

.express-cod-checkout-wrapper .express-cod-checkout-form select,
.express-cod-checkout-wrapper .express-cod-checkout-form .variations select,
.express-cod-checkout-wrapper
  .express-cod-checkout-form
  .expcod-input[type="text"],
.express-cod-checkout-wrapper
  .express-cod-checkout-form
  .expcod-input[type="email"],
.express-cod-checkout-wrapper
  .express-cod-checkout-form
  .expcod-input[type="tel"] {
  font-family: "Cairo", sans-serif;
  font-weight: 400;
  border-style: solid;
  direction: rtl !important;
  transition: 0.3s ease-in-out;
  padding: 10px;
  width: 100%;
  display: block;
  outline: none;
  box-shadow: none;
  border-width: var(--expcod-inp-border-width);
  border-color: var(--expcod-inp-border-color);
  height: var(--expcod-inp-height);
  border-radius: var(--expcod-inp-border-radius);
  background-color: var(--expcod-inp-bg-color);
  color: var(--expcod-txt-color);
}

.express-cod-checkout-wrapper
  .express-cod-checkout-form
  .variations
  select:focus,
.express-cod-checkout-wrapper
  .express-cod-checkout-form
  .expcod-input[type="text"]:focus,
.express-cod-checkout-wrapper
  .express-cod-checkout-form
  .expcod-input[type="email"]:focus,
.express-cod-checkout-wrapper
  .express-cod-checkout-form
  .expcod-input[type="tel"]:focus,
.express-cod-checkout-wrapper
  .express-cod-checkout-form
  select.expcod-input:focus {
  box-shadow: 0 5px 20px 0 #0000000d;
  border-color: var(--expcod-inp-borderColor-onfocus);
  border-width: var(--expcod-inp-borderWidth-onfocus);
}

.express-cod-checkout-wrapper
  .express-cod-checkout-form
  .expcod-input::placeholder {
  font-size: var(--expcod-placeholder-fontSize);
}

.express-cod-checkout-wrapper .express-cod-checkout-form {
  font-family: "Cairo", sans-serif;
}

.variations select {
  margin-bottom: 20px;
}

.reset_variations {
  display: none !important;
}

.woocommerce-variation-price {
  display: none;
}
/*
** [5] - Form button
** Start form button
*/

.express-cod-checkout-wrapper .express-cod-checkout-form .expcod-buyNow-text {
  color: var(--expcod-buyNow-txtColor);
  font-size: var(--expcod-buyNow-fontSize);
  font-weight: 700;
  letter-spacing: 0 !important;
}

.express-cod-checkout-wrapper .express-cod-checkout-form .expcod-buy-now-btn {
  width: 100%;
  position: relative;
  border-style: solid;
  transition: 0.3s ease-in-out;
  font-family: "Cairo", sans-serif;
  background-color: var(--expcod-buyNow-bgColor);
  border-color: var(--expcod-buyNow-borderColor);
  border-width: var(--expcod-buyNow-borderWidth);
  height: var(--expcod-buyNow-height);
  border-radius: var(--expcod-inp-border-radius);
}

.express-cod-checkout-wrapper
  .express-cod-checkout-form
  .expcod-buy-now-btn:hover
  .expcod-buyNow-text {
  color: var(--expcod-buyNow-color-onhover);
}

.express-cod-checkout-wrapper .express-cod-checkout-form .disabled {
  opacity: 0.7;
}

.express-cod-checkout-wrapper
  .express-cod-checkout-form
  .expcod-buy-now-btn:hover {
  background-color: var(--expcod-buyNow-bgColor-onhover);
  text-decoration: none;
}

.express-cod-checkout-wrapper
  .express-cod-checkout-form
  .expcod-button-loading {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.expcod-brn-loader-animation {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
/*
** [6] - Form alerts
** Start form alerts
*/

.codexp-success-message {
  border: 1px solid green;
  padding: 5px;
  border-radius: 3px;
  color: green;
  background-color: #00968805;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: none;
  opacity: 1;
}

.codexp-error-message {
  border: 1px solid red;
  padding: 23px;
  border-radius: 3px;
  color: red;
  background-color: #e91e6312;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  opacity: 1;
}

.codexp-show-message {
  display: block;
}
/*
** [7] - Form label
** Start form label
*/

.express-cod-checkout-wrapper .express-cod-checkout-form .exp-cod-label {
  display: block;
  color: var(--expcod-label-color);
  font-size: var(--expcod-label-fontSize);
  margin-bottom: var(--expcod-label-marginBottom);
  margin-top: var(--expcod-label-marginTop);
  font-weight: bolder;
}
/*
** [7] - place order form
** Start place order form
*/

.codexpress-checkout-billing {
  background-color: #fcfcfc;
  border: 1px solid #e5e5e5;
  position: relative;
}

.codexpress-checkout-billing-body {
  padding: 10px;
}

.codexpress-checkout-billing .codexpress-checkout-card {
  background-color: white;
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  margin-bottom: 10px;
}

.codexpress-checkout-billing
  .codexpress-checkout-card
  .codexpress-checkout-card-header {
  padding: 10px;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
}

.codexpress-checkout-billing
  .codexpress-checkout-card
  .codexpress-checkout-card-body {
  padding: 10px;
}

.codexpress-checkout-billing
  .codexpress-checkout-card
  .codexpress-checkout-card-body
  table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
}

.codexpress-checkout-card-body table td,
.codexpress-checkout-card-body table th {
  padding: 5px;
  text-align: left;
  border: 1px solid #e5e5e5;
}

.shipping-info {
  display: flex;
  justify-content: space-between;
}

.shipping-info h5 {
  margin: 0;
  display: inline-block;
}

.shipping-info p {
  display: inline-block;
  margin-bottom: 5px;
}

.codexpress-checkout-card-footer {
  padding: 10px;
  border-top: 1px solid #e5e5e5;
}

.codexpress-checkout-card-footer a {
  text-decoration: underline;
  font-size: 13px;
  color: #03a9f4;
}

.codexpress-checkout-billing-footer {
  padding: 10px;
  background-color: white;
  border-top: 1px solid #e5e5e5;
  position: sticky;
  bottom: 0;
}

.codexpress-checkout-billing-footer button {
  width: 100%;
  padding: 15px;
  background-color: var(--expcod-buyNow-bgColor);
  color: white;
  border: none;
  outline: none;
  border-radius: 3px;
  background-color: var(--expcod-buyNow-bgColor);
  border-color: var(--expcod-buyNow-borderColor);
  border-width: var(--expcod-buyNow-borderWidth);
  height: var(--expcod-buyNow-height);
  border-radius: var(--expcod-inp-border-radius);
  min-height: 57px;
}

.codexpress-checkout-billing-footer button:hover {
  background-color: var(--expcod-buyNow-bgColor-onhover);
  color: var(--expcod-buyNow-color-onhover);
}

.order-summary-detail {
  display: flex;
  justify-content: space-between;
}

.order-summary-detail p {
  margin-bottom: 5px;
}

.total-box {
  padding: 7px;
  border: 2px solid var(--expcod-buyNow-bgColor);
  border-radius: 3px;
  justify-content: center;
}

.total-box p {
  margin: 0 10px;
}

.expcod-loading-btn-animation {
  display: none;
}

#expcod-checkout {
  display: none;
}
/*
** [08] Start Cod express customize form in front end 
** Customizer sidebar 
**/

.codexp-customizer {
  width: 300px;
  background-color: #fcfcfc;
  height: 100vh;
  /* border: 1px solid #e5e5e5; */
  box-shadow: 0 5px 20px 0 rgb(0 0 0 / 5%);
  position: fixed;
  z-index: 9999;
  top: 30px;
  font-family: "Cairo", sans-serif;
  font-size: 13px;
  transition: 0.5s ease-in-out;
  display: none;
}

.codexp-customizer > * {
  box-sizing: border-box;
}

.codexp-customizer .inner {
  padding: 20px;
  height: 100%;
  overflow: scroll;
  padding-bottom: 100px;
}

.codexp-customizer .inner::-webkit-scrollbar {
  width: 10px;
  border-radius: 5px;
}

.codexp-customizer .inner::-webkit-scrollbar-track {
  border-radius: 5px;
}

.codexp-customizer .inner::-webkit-scrollbar-thumb {
  background: #00000034;
  border-radius: 5px;
  position: absolute;
  left: 0;
}

.codexp-customizer-card {
  background: white;
  width: 100%;
  border: 1px solid #e5e5e5;
  margin-bottom: 20px;
}

.codexp-customizer-card-header {
  padding: 10px;
  border-bottom: 1px solid #e5e5e5;
}

.codexp-customizer-card-body {
  padding: 20px;
}

.codexp-customizer-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.codexp-customizer-card-body ul li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.codexp-customizer-card-body ul li input[type="number"] {
  padding: 5px;
  width: 58px;
}

.codexp-customizer-card-body ul li select {
  padding: 5px;
}

.codexp-customizer-card-body ul li div.value {
  text-align: center;
}

.codexp-customizer .customize-footer {
  width: 100%;
  background-color: white;
  padding: 10px;
  border: 1px solid #e5e5e5;
  position: sticky;
  bottom: 0;
}

.codexp-customizer .customize-header {
  width: 100%;
  background-color: var(--expcod-main-color, #5c4b77);
  padding: 10px;
  /* border: 1px solid #e5e5e5; */
  color: white;
}

.codexp-customizer .customize-footer button {
  width: 100%;
  padding: 10px;
  background: var(--expcod-main-color, #5c4b77);
  color: white;
  border: none;
  outline: none;
  border-radius: 3px;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  text-transform: capitalize;
}

.codexp-color-picker input[type="color"] {
  border: 1px solid gray;
  display: inline-block;
  padding: 3px;
  background: white;
  width: 58px;
}

#wp-admin-bar-codexpress-menu.codexpress-top-link {
  background-color: var(--expcod-main-color, #5c4b77);
  transform: 0.3s ease-in-out;
  color: white;
}

.customize-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cod-customizer-aside-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cod-customizer-aside-toggle div {
  border: 1px solid #ffffff42;
  margin: 0 5px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
  display: none;
  transition: 0.3s ease-in-out;
}

.cod-customizer-aside-toggle div:hover {
  background: white;
  color: var(--expcod-main-color, #5c4b77);
}

.cod-customizer-aside-toggle #cod-customizer-hide {
  display: flex;
}

.edit-codexpress-style {
  display: inline-block;
  padding: 10px;
  border: 1px solid var(--expcod-main-color, #5c4b77);
  color: var(--expcod-main-color, #5c4b77);
  font-style: 13px;
  position: absolute;
  top: 0;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 3px;
  right: 0;
}

[dir="rtl"] .edit-codexpress-style {
  right: unset;
  left: 0;
}

.edit-codexpress-style:hover {
  background-color: var(--expcod-main-color, #5c4b77);
  color: white;
}

.codexp-customizer-footer-overlay {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffffc9;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

#quantitiy_input {
  width: 50%;
}

@media (max-width: 767px) {
  .expcod-quantity-input {
    margin-bottom: 15px;
  }
}
/**  form label ***/

#dc_form {
  position: relative;
  max-width: var(--expcod-form-max-width);
  background-color: var(--expcod-bg-color);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.exp-cod-label {
  width: fit-content;
  /* border: 1px solid black; */
  /* position: absolute;
        top: 0;
        transform: translate(-50%, -50%);
        left: 50%; */
}

.exp-cod-label {
  text-align: center;
  /* background: white; */
  margin: -53px auto;
  max-width: fit-content;
  padding: 0 20px;
  /* font-size: 18px; */
  /* white-space: nowrap; */
}

.exp-cod-label {
  text-align: center;
  /* background: white; */
  margin: -53px auto;
  max-width: fit-content;
  padding: 0 20px;
  font-size: 18px;
}

.bt-flesh {
  margin-bottom: -5px;
  display: inline-block;
}

.order-total-block-container {
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #d0d0d0;
  margin-top: 15px;
  box-shadow: 0 0 0 2px var(--expcod-buyNow-bgColor),
    8px 8px 0 0 var(--expcod-buyNow-bgColor);
}

.order-total-block-header {
  background-color: #6989e629;
  padding: 10px;
  width: 100%;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.sum-champ {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.sum-champ:not(:last-child) {
  border-bottom: 1px dashed #00000012;
}

.cart-sum {
  margin: 0 10px;
}

.wdc_free_shipping {
  color: #ffffff;
  background: #00934b;
  font-size: 13px;
  padding: 0 5px;
  border-radius: 4px;
}

.wdc_quantity_label {
  background: #1e73be;
  padding: 0 5px;
  height: fit-content;
  border-radius: 2px;
  color: white;
}

.expcod-quantity-input {
  display: var(--expcod-quantity-input);
}

.order-total-block-container {
  display: var(--expcod-order-summary);
}

.order-total-block-body {
  display: block;
  background-color: white;
}

.dc-error-message p {
  color: white;
  background: red;
  padding: 10px;
  margin: 5px 0;
  border-radius: 5px;
  text-align: center;
}

@keyframes shake-x {
  0% {
    left: 0;
  }
  1% {
    left: -3px;
  }
  2% {
    left: 5px;
  }
  3% {
    left: -8px;
  }
  4% {
    left: 8px;
  }
  5% {
    left: -5px;
  }
  6% {
    left: 3px;
  }
  7% {
    left: 0;
  }
}

.wdc-shaked {
  animation: shake-x 5s ease infinite !important;
}

.wdc-shaked:hover {
  animation: none;
}
/* start sticky button */

.dc-sicky-buy-btn {
  width: 100%;
  height: 70px;
  position: fixed;
  bottom: -100%;
  background-color: white;
  z-index: 9999;
  display: var(--expcod-sticky-button);
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: -100%;
  width: 100%;
  z-index: 10;
  background-color: #fff;
  padding: 10px 0;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0px 0px 14px 0px #00000021;
  transition: 0.5s ease-in-out;
}

.wdc-sticky {
  background-color: blue;
  color: white;
  text-decoration: none;
  width: auto;
  padding: 10px 100px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  padding: 0 100px;
  animation: shake-x 4s ease infinite;
  width: auto;
  height: 45px;
  font-size: 15px;
  line-height: 45px;
  color: #fff;
  background-color: #5b4ebb;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .wdc-sticky {
    width: 90%;
  }
}

@keyframes shake-x2 {
  0%,
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
}

.wdc-sticky-visible {
  bottom: 0;
}

.wdc-shaked-sticky {
  animation: shake-x2 5s ease infinite;
}

.wdc-shaked-sticky:hover {
  animation: none;
}

.dc-sicky-buy-btn .wdc-sticky {
  color: var(--expcod-buyNow-txtColor);
  font-size: var(--expcod-buyNow-fontSize);
  position: relative;
  border-style: solid;
  transition: 0.3s ease-in-out;
  font-family: "Cairo", sans-serif;
  background-color: var(--expcod-buyNow-bgColor);
  border-color: var(--expcod-buyNow-borderColor);
  border-width: var(--expcod-buyNow-borderWidth);
  height: var(--expcod-buyNow-height);
  border-radius: var(--expcod-inp-border-radius);
}

.dc-sicky-buy-btn .wdc-sticky:hover {
  color: var(--expcod-buyNow-color-onhover);
  background-color: var(--expcod-buyNow-bgColor-onhover);
  text-decoration: none;
}
/** end sticky button */

.product-price-section {
  font-family: "Cairo", sans-serif;
}
.product-price-section .main-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  align-items: center;
}
.product-price-section .main-info .product-title {
  font-size: 16px;
  font-weight: 600;
  padding: 3px;
  overflow: hidden;
  line-height: normal !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  white-space: normal;
}
.product-price-section .main-info .product-title .product-make {
  font-size: 14px;
  color: #b4b4b4;
}
label.shipping_infos {
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 10px;
}
.product-price-section .main-info .product-price {
  font-size: 30px !important;
  color: #ff2121 !important;
  font-weight: 800;
  text-align: center;
  line-height: 20px;
}
.currency-sale {
  font-size: 12px;
}
#price-sale-span {
  display: flex;
}
.currency-actual-price {
  font-size: 7px;
  color: #a1a1a1;
}

#price-sale-regular {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* #price-sale::after {
    content: "درهم";
    font-size: 5px !important;
    color: #ff2121 !important;
  } */
/* #price-sale::after {
    content: "درهم";
    left: -13px;
    top: 17px;
    font-size: 10px;
  } */
.product-price-section .main-info .product-price .actual-price {
  font-size: 1.5rem;
  color: #757575;
  font-weight: 700;
}

.cross {
  position: relative;
  display: inline-block;
}
.cross::before,
.cross::after {
  content: "";
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
}
.cross::before {
  border-bottom: 2px solid red;
  -webkit-transform: skewY(-10deg);
  transform: skewY(-10deg);
}
/* .cross::after {
  border-bottom: 2px solid red;
  -webkit-transform: skewY(10deg);
  transform: skewY(10deg);
} */
.express_checkout-form-elements {
  margin-top: 5px;
}

.product-name-image {
  display: flex;
  align-items: center;
}

.product-thumbnail {
  max-width: 35px;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: #fff;
  position: relative;
}
.product-thumbnail::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 5px;
  border: 1px rgba(0, 0, 0, 0.1) solid;
  z-index: 2;
}
.product-thumbnail__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}
.product-thumbnail__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.product-thumbnail__quantity {
  font-size: 0.8571428571em;
  font-weight: 500;
  line-height: 1.75em;
  white-space: nowrap;
  text-align: center;
  border-radius: 1.75em;
  background-color: rgba(114, 114, 114, 0.9);
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 1.75em;
  height: 1.75em;
  padding: 0 0.5833333333em;
  position: absolute;
  right: -0.75em;
  top: -0.75em;
  z-index: 3;
}
.estimated-delivery-time {
  padding: 5px;
  margin-top: 10px;
}
.estimated-delivery-time h6 {
  font-family: "Cairo", sans-serif;
  font-size: 10px;
  text-align: center;
}
.estimated-delivery-time h6 span {
  font-size: 10px;
}

#buy_now_icon {
  margin-left: 3px;
}

.express_checkout-sicky-buy-btn {
  z-index: 99999 !important;
  background-color: white !important;
}
.form_row {
  display: -webkit-box;
  display: list-item;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
svg#secure {
  width: 20px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
ul.mohamed-variation-swatches__wrapper {
  padding-right: 0px !important;
  margin: 0 !important;
}
.product-price {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-direction: row-reverse !important;
}

span#dc_product_price {
    font-weight: 900 !important;
}
span#dc_product_total {
    font-weight: 900 !important;
}
span.dc_free_shipping {
    font-weight: 900;
}