@charset "UTF-8";
/* table contents
=====================/
  /* You can add global styles to this file, and also import other style files
  # General elements
      - @Imports
      - Fonts
      - body-layout
      - colors
      - Handle Scroll style
      - shorthand classes
  # Links
  # Buttons
  # Forms
  # Images
  # Lists
    - links-list
    - social-list
    - site-navigation
  # Sections
  # widgets
  # empty-div and empty-item style
  # gallery
  # owlNav-section
  # Modal Side-nav only
  # toaster and Tooltip overwrite
  # rating
  # Loading Spinner styles
  # Start Profile pages style (Common styles)


  # Overwrite Bootstrap Style in RTL

*/

/* General elements
======================*/
@import "variables";
@import './Components/checkout-btn';
@import './Components/text-alert';
@import './Components/loader-spinner';

@font-face {
  font-family: Cairo;
  font-style: normal;
  src: local('Cairo ExtraLight'), local('Cairo-ExtraLight'), url("fonts/Cairo/Cairo-ExtraLight.ttf");
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: Cairo;
  font-style: normal;
  src: local('Cairo Light'), local('Cairo-Light'), url("fonts/Cairo/Cairo-Light.ttf");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: Cairo;
  font-style: normal;
  src: local('Cairo Regular'), local('Cairo-Regular'), url("fonts/Cairo/Cairo-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: Cairo;
  font-style: normal;
  src: local('Cairo SemiBold'), local('Cairo-SemiBold'), url("fonts/Cairo/Cairo-SemiBold.ttf");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Cairo;
  font-style: normal;
  src: local('Cairo Bold'), local('Cairo-Bold'), url("fonts/Cairo/Cairo-Bold.ttf");
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: Cairo;
  font-style: normal;
  src: local('Cairo Black'), local('Cairo-Black'), url("fonts/Cairo/Cairo-Black.ttf");
  font-weight: 900;
  font-display: swap;
}
/*body-layout*/
*, *:hover, *:focus {
  outline: none!important;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}
body {
  font-size: 1.6rem;
  overflow-x: hidden;

  [dir=rtl] & {
    text-align: right;
    direction: rtl;
  }
  .wrapper {
    position: relative;
    width: 100%;
  }
  .inner-page {
    background-color: transparent;
    min-height: 45rem;
  }

  // custom theme
  background-color: var(--body-bg-color, #fff);
  font-family: var(--font-family, Cairo, sans-serif);
  h1  { color: var(--h1-color, #000);  font-size: var(--h1-font-size, 20px); }
  h2  { color: var(--h2-color, #000);  font-size: var(--h2-font-size, 20px); }
  h3  { color: var(--h3-color, #000);  font-size: var(--h3-font-size, 20px); }
  a   { color: var(--body-link-color, #333); font-size: var(--body-link-font-size, 16px); }
}

/* colors
=====================*/
.text-yellow{
  color: $main-color!important;
}
.bg-gray{
  background-color: #f5f5f5!important;
}
.bg-light-blue{
  background-color: #0099ff!important;
}
.bg-light-green{
  background-color: #20ca54!important;
}
.bg-tomato{
  background-color: #f38432!important;
}
.bg-red{
  background-color: #f33232!important;
}

/* Handle Scroll style
==============================*/
::-webkit-scrollbar {
  width: 1rem;
  height: 1rem;
  transition: all .3s ease-in-out;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background-color: #ccc;
  transition: all .3s ease-in-out;
  border-radius: 1.5rem;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: $main-color;
  cursor: pointer;
}

//*utilities classes*/
.sm-gutters {
  margin-right: -.6rem;
  margin-left: -.6rem;
  > .col,
  > [class*="col-"] {
    padding-right: .6rem;
    padding-left: .6rem;
  }
}

.invisible {
  visibility: hidden !important;
  display: none;
}
/* Links
==================*/
a{
  color: var(--body-link-color, #333);
  font-size: var(--body-link-font-size, 1.4rem);
  // font-size: 1.4rem;
  transition: all .3s ease-in-out;
  text-decoration: none;
  &:hover{
    text-decoration: none;
    cursor: pointer;
  }
}

/* Buttons
==================================*/
.custom-btn{
  display: inline-block;
  position: relative;
  border-radius: 3rem;
  background-color: #FFFFFF;
  color: $main-color;
  padding: 8px 20px;
  border: 1px solid $main-color;
  font-size: 18px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all .3s ease-in-out;
  [dir="rtl"] &{
    font-size: 1.6rem;
  }
  &:enabled:hover,
  &:enabled:focus,
  &:enabled:active{
    text-decoration: none;
    background-color: $main-color;
    border-color: $main-color;
    outline: none;
    box-shadow: none;
    color: #fff;
  }
  &.btn-sm{
    padding: 7px 15px;
  }
  &.reversed{
    background-color: $main-color;
    border: none;
    &:enabled:hover,
    &:enabled:focus{
      background-color: #333;
      color: #fff;
    }
  }
  &:disabled{
    cursor: not-allowed;
    border: 1px solid $main-color-opacity;;
    background-color: $main-color-opacity;
  }
}
.icon-btn{
  width: 4.5rem;
  height: 4.5rem;
  line-height: 4.5rem;
  text-align: center;
  border-radius: 100%;
  background-color: #fff;
  color: #808080;;
  border: 1px solid $main-color;
  font-weight: bold;
  cursor: pointer;
  padding: 0;
  font-size: 2rem;
  transition: all .3s ease-in-out;
  &:hover,
  &.active{
    text-decoration: none;
    background-color: $main-color;
    border-color: $main-color;
    color: #fff;
    outline: none;
    box-shadow: none;
  }
}


/* forms
==============================*/
.form-group{
  position: relative;
  label{
    text-transform: capitalize;
  }
}
.form-control{
  height: 4rem;
  font-size: 1.6rem;
  border: 1px solid $border-color;
  border-radius: 5rem;
  transition: all .3s ease-in-out;
  &::-webkit-input-placeholder,
  &::-moz-placeholder,
  &:-ms-input-placeholder{
    color: #8f8f8f;
    text-transform: capitalize;
    font-size: 1.4rem;
  }

  &.remove-default::-webkit-inner-spin-button,
  &.remove-default::-webkit-outer-spin-button,
  &.remove-default,
  &[type=date]::-webkit-inner-spin-button,
  &[type=date]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
  }
  &.remove-default::-webkit-inner-spin-button,
  &.remove-default::-webkit-outer-spin-button,
  &.remove-default,
  &[type=date]{
    -moz-appearance: textfield;
  }
}
textarea.form-control{
  resize: none;
  height: auto;
}
/*form group with icon*/
.has-icon{
  position: relative;
  .form-control{
    padding-right: 1rem;
    &:focus{
      i{
        color: $main-color!important;
      }
    }
  }
  i{
    position: absolute;
    top: .8rem;
    right: .5rem;
    font-size: 1.2rem;
    color: $second-color;
    transition: all .3s ease-in-out;
    [dir="rtl"] &{
      right: auto;
      left: .5rem;
    }
  }
  label ~ i{
    top: 4rem;
    right: 1rem;
    font-size: 1.3rem;
  }
}

/* Images
============================*/
img{
  max-width: 100%;
  height: auto;
}
.img-wrapper{
  position: relative;
}
.easyzoom-flyout img{
  max-width: initial;
}
.responsive-image-container {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@include media-breakpoint-down(md) {
  .container-fluid-md {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
  }
}
/* Lists
============================*/
/*links-list*/
ul.links-list{
  padding: 0;
  margin-bottom: 3rem;
  li{
    list-style: none;
    a{
      color: #fff;
      line-height: 2.2;
      text-transform: uppercase;
      -webkit-transition: all .35s ease-in-out;
      -moz-transition: all .35s ease-in-out;
      transition: all .35s ease-in-out;
      &:hover{
        color: $main-color!important;
      }
    }
  }
}

/*social-list*/
ul.social-list{
  padding: 0;
  li:not(.whatsApp_link){
    list-style: none;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    a{
      display: block;
      position: relative;
      width: 3.8rem;
      height: 3.8rem;
      line-height: 3.8rem;
      font-size: 2rem;
      text-align: center;
      background-color: #fff;
      color: #222;
      border-radius: 4px;
      overflow: hidden;
      transform: scale(.9);
      box-shadow: 0 0 0 1px rgba(154, 154, 154, 0.2);
      transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
      &:hover{
        color: #fff!important;
        background-color: $main-color;
      }
    }
  }
}

/*site-navigation*/
.site-navigation{
  text-align: center;
  .pagination{
    justify-content: center;
    .page-item{
      .page-link{
        padding: 0;
        width: 4rem;
        height: 4rem;
        line-height: 4rem;
        text-align: center;
        background-color: transparent;
        color: $main-second-color;
        margin-left: .5rem;
        font-weight: bold;
        border-radius: 1rem;
        &:focus{
          box-shadow: none;
        }
        &:hover{
          background-color: #e9ecef;
          color: $main-second-color;
        }
      }
      &.active{
        .page-link{
          background-color: $main-color;
          border-color: $main-color;
          color:#fff;
          &:hover{
            color: $main-second-color!important;
          }
        }
      }
      &.pagination-prev,
      &.pagination-next{
        &.disabled{
          display: none;
        }
        a{
          position: relative;
          color: transparent!important;
          &:before{
            font-family: 'FontAwesome', serif;
            position: absolute;
            width: 100%;
            height: 100%;
            color: #090909;
            font-size: 2rem;
            left: 0;
          }
          &::selection{
            color: transparent!important;
          }
        }
      }
      &.pagination-prev{
        margin-left: 0;
        a{
          &:before{
            content: "\f100";
            [dir="rtl"] &{
              content: "\f101";
            }
          }
        }
      }
      &.pagination-next{
        margin-left: 0;
        a{
          &:before{
            content: "\f101";
            [dir="rtl"] &{
              content: "\f100";
            }
          }
        }
      }
    }

  }
}
/* Sections
===================================*/
.section-settings{
  position: relative;
  min-height: 40rem;
  padding: 5rem 0 3rem 0;
  .section-head{
    position: relative;
    margin-bottom: 4rem;
    .section-title { // h3
      position: relative;
      display: inline-block;
      color: var(--h3-color, #292929);  font-size: var(--h3-font-size, 3rem);
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .more-btn{ // a
      float: right;
      color: var(--body-link-color, #7a7a7a); font-size: var(--body-link-font-size, 1.8rem);
      font-weight: 600;
      margin-top: 1rem;
      [dir="rtl"] &{
        float: left;
      }
    }
  }
}



/* empty-div and empty-item style
============================================*/
.empty-div{
  text-align: center;
  text-transform: capitalize;
  font-size: 24px;
  background-color: #f4f4f4;
  padding: 30px;
  width: 60%;
  margin: 100px auto;
  p{
    margin-bottom: 0;
  }
  ~ .text-center{
    margin-bottom: 3rem;
  }
}
.empty-item{
  background-color: #fff;
  margin-bottom: 3rem;
  border-radius: 1rem;
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid $main-color;
  i{
    display: block;
    font-size: 130px;
    color: $main-color-opacity;
    margin-bottom: 10px;
  }
  .help-text{
    font-size: 16px;
    text-transform: capitalize;
    font-weight: bold;
  }
}

// start styling for images slider in the product details params
.gallery {
  .carousel-control-prev-icon {
    background-color: $main-color;
    width: 53px;
    border-radius: 0 20px 20px 0;
    height: 35px;
    color: $main-color;
    position: absolute;
    left: 0;
  }
  .carousel-indicators {
    display: none;
  }
  .carousel-control-next-icon {
    background-color: $main-color;;
    width: 53px;
    border-radius: 20px 0 0 20px;
    height: 35px;
    color: $main-color;
    position: absolute;
    right: 0;
  }
  .carousel-control-prev-icon {
    background-image: url('images/prev.png');
    background-size: 15px;
  }
  .carousel-control-next-icon {
    background-image: url('images/next.png');
    background-size: 15px;
  }
}

/*owlNav-section
====================*/
.custom-owl-nav{
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel .owl-nav button.owl-prev{
    position: absolute;
    top: 40%;
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    border-radius: 50%;
    background-color: transparent;
    color: #333;
    font-size: 2.8rem;
    font-family: sans-serif;
    transition: all .3s ease-in-out;
    &:hover{
      background-color: $main-color;
      color: #fff;
    }
  }
  .owl-carousel .owl-nav button.owl-next{
    right: -6rem;
    [dir="rtl"] &{
      right: auto;
      left: -6rem;
    }
  }
  .owl-carousel .owl-nav button.owl-prev{
    left: -6rem;
    [dir="rtl"] &{
      left: auto;
      right: -6rem;
    }
  }

  .owl-theme .owl-dots .owl-dot.active span,
  .owl-theme .owl-dots .owl-dot:hover span{
    background-color: $main-color;
  }
}
/* Modal Side-nav only
============================*/
.w-80 {
  width: 80vw !important;
}
.modal-dialog:not(.branch-selector-modal) {
  width: 100%;
  margin: 0;
  max-width: 100%;
  .modal-content {
    border: 0;
    border-radius: 0;
    background-color: var(--header-bg-color, #fff);
  }
}

/*toaster and Tooltip overwrite
==============================*/
.toast-container .toast{
  position: relative;
  padding: 15px 20px 15px 50px;
  margin-bottom: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  width: 320px;
  font-size: 1.4rem;
  box-shadow: none;
  background-image: none;
  opacity: 1;
  &:after{
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: 'FontAwesome';
    font-size: 24px;
  }
  &:hover{
    box-shadow: none;
  }
  .toast-close-button{
    transition: all .3s ease-in-out;
    color: #155724;
  }
  &.toast-success{
    color: #155724;
    background-color: #53e6bd;
    border-color: #c3e6cb;
    &:after{
      content: "\f05d";
    }
  }
  &.toast-error{
    color: #721c24;
    background-color: #f2b3b8;
    border-color: #f5c6cb;
    &:after{
      content: "\f057";
    }
  }
}
/*tooltips*/
.tooltip{
  font-size: 1.4rem;
}
/*rating*/
.bs-rating-star {
  font-size: 0;
  &::after {
    color: grey;
    content: '★';
    font-size: 25px;
  }
  &.active:after{
    color: $main-color;
  }
  .fa-star {
    color: $main-color;
    &.empty {
      color: gray;
    }
  }
}
.product-rating{
  font-size: 0;
}

/* Loading Spinner styles
===========================*/
.collection__spinner {
  position: relative;
  // background: #fff;
  min-height: 50vh;
  width: 100%;

  .lds-ellipsis {
    position: absolute;
    width: 64px;
    height: 64px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .lds-ellipsis div {
    position: absolute;
    top: 27px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #000;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }

  .lds-ellipsis div:nth-child(1) {
    left: 6px;
    animation: lds-ellipsis1 0.6s infinite;
  }

  .lds-ellipsis div:nth-child(2) {
    left: 6px;
    animation: lds-ellipsis2 0.6s infinite;
  }

  .lds-ellipsis div:nth-child(3) {
    left: 26px;
    animation: lds-ellipsis2 0.6s infinite;
  }

  .lds-ellipsis div:nth-child(4) {
    left: 45px;
    animation: lds-ellipsis3 0.6s infinite;
  }

  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }

    100% {
      transform: scale(1);
    }
  }

  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }

    100% {
      transform: scale(0);
    }
  }

  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }

    100% {
      transform: translate(19px, 0);
    }
  }
}

/* Start Profile pages style (Common styles)
=============================================*/
.profile-page-content {
  .title {
    h3 {
      font-weight: bold;
        color: var(--h3-color, #000);
        font-size: var(--h3-font-size, 20px);
      margin-bottom: 15px;
      text-transform: capitalize;
      small {
        font-size: 16px;
        color: #6b6b6b;
        margin-top: 10px;
        display: inline-block;
      }
    }
  }
  .box-item {
    position: relative;
    background-color: #fff;
    border: 1px solid $border-color;
    border-radius: 20px;
    margin-bottom: 30px;
    .box-item-head {
      padding: 15px;
      font-weight: bold;
      font-size: 24px;
      color: #000;
      border-bottom: 1px solid $border-color;
      text-transform: capitalize;
    }
    .box-item-content {
      padding: 30px;
      b {
        @media(max-width: 991px) {
          margin-bottom: 25px;
        }
      }
      .inline-form {
        .form-group {
          margin-bottom: 15px;
          display: flex;
          flex-wrap: wrap;
          align-items: center;

          label {
            font-weight: bold;
            text-transform: capitalize;
            width: 30%;
            font-size: 1.4rem;
          }

          .form-control {
            border: 1px solid $border-color;
            height: 50px;
            border-radius: 20px;
            box-shadow: none;
            width: 70%;

            &:focus {
              border-color: $main-color;;
            }
          }
          &.custom-checkbox {
            padding-left: 30%;
            [dir="rtl"] & {
              padding-left: 0;
              padding-right: 30%;
            }
            @media(max-width: 578px) {
              padding-left: 0;
              [dir=rtl] & {
                padding-right: 0;
              }
            }
            label {
              width: auto;
            }
          }
          &.has-icon {
            position: relative;
            span {
              position: absolute;
              top: 11px;
              right: 15px;
              [dir=rtl] & {
                left: 15px;
                right: auto;
              }
              color: #939393;
              font-size: 18px;
              cursor: pointer;
              transition: all .3s ease-in-out;
            }
            .form-control {
              &:focus ~ span {
                color: $main-color;;
              }
            }
          }
        }
        @media all and (max-width: 576.98px) {
          .form-group {
            display: block;
            label,
            .form-control {
              width: 100%;
            }
            &.has-icon {
              span {
                top: 42px;
              }
            }
            &.custom-checkbox {
              padding: 0;
            }
          }
        }
      }
    }
    &.order {
      .box-item-head {
        overflow: hidden;
        .status {
          float: right;
          color: $second-color;
          font-weight: 600;
          font-size: 18px;
          [dir="rtl"] & {
            float: left;
          }
        }
      }
      .box-item-content {
        .cool {
          display: flex;
          justify-content: space-between;
          margin-bottom: 15px;
          > span {
            text-transform: capitalize;
            span {
              font-weight: 600;
            }
            &.total {
              span {
                color: #2aa524;
              }
            }
          }
          .custom-btn{
            margin: 0 5px;
          }
        }
      }
    }
  }

  .validation-text {
    font-size: 14px;
    color: #bd2130;
    position: relative;
    top: -10px;
    margin-left: 30%;
    margin-top: 15px;
    [dir="rtl"] & {
      margin-left: auto;
      margin-right: 30%;
    }
    @media all and (max-width:576.98px){
      margin-left: 0;
      [dir="rtl"] &{
        margin-right: 0;
      }
    }
  }

  .custom-checkbox {
    label {
      display: inline-block;
      position: relative;
      text-transform: capitalize;
      cursor: pointer;
      user-select: none;
      font-size: 16px;
      padding-left: 25px;
      margin-bottom: 5px;
      color: #030303;
      [dir=rtl] & {
        padding-left: 0;
        padding-right: 25px;
      }
      /* Create a custom input */
      > span {
        position: absolute;
        top: 3px;
        left: 0;
        height: 15px;
        width: 15px;
        border: 1px solid #cdcece;
        background-color: #ffffff;
        border-radius: 2px;

        [dir=rtl] & {
          left: initial;
          right: 0;
        }

        i {
          position: absolute;
          color: #030303;
          font-size: 13px;
          display: none;
        }
      }
      /* Hide the browser's default radio button */
      input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        /* When the radio button is checked, add a blue background */
        &:checked ~ span {
          font-weight: bold;
          border-color: $second-color;
          background-color: $second-color;
          i {
            display: block;
            color: #fff;
          }
        }
      }
    }
  }
}

/* Overwrite Bootstrap Style in RTL
=====================================*/
[dir="rtl"]{
  .mr-auto, .mx-auto{
    margin-right: 0!important;
    margin-left: auto;
  }
  .ml-auto, .mx-auto{
    margin-left: 0!important;
    margin-right: auto;
  }
  .mr-5, .mx-5{
    margin-right: 0!important;
    margin-left: 3rem!important;
  }
  .navbar-nav{
    padding-right: 0;
  }
  .float-right{
    float: left!important;
  }
  .float-left{
    float: right!important;
  }
  .dropdown-menu{
    text-align: right;
    left: auto;
    right: 0;
  }
  .text-right{
    text-align: left!important;
  }
  @media (min-width: 768px){
    .offset-md-2 {
      margin-right: 16.66666667%;
      margin-left: auto;
    }
    .offset-md-3 {
      margin-right: 25%;
      margin-left: auto;
    }
  }
  @media (min-width: 992px) {
    .offset-lg-3 {
      margin-left: auto;
      margin-right: 25%;
    }
  }
}
