
/* ===========================================================
General style
========================================================+====*/
  .input-container{
    margin-bottom: 15px;
    position: relative;
  }
  .form-control:focus{
    box-shadow: none;
  }
  label span{
    color: red;
  }
  label span.edit{
    position: absolute;
    right: 15px;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
  }
  tr{
    border-bottom: 1px solid #e3e2e2;
  }
  td{
    padding-left: 24px;
    padding-right: 24px;
  }
  #table-container tbody tr td a:first-child{
    margin-right: 10px;
  }
  #table-container tbody tr td a{
    color: #dfa700;
  }
  #table-container tbody tr td a:hover{
    text-decoration: underline;
  }
/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
  #header {
    height: 100px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 16px 0;
    background: #000000;
  }
  
  #header .logo h1 {
    font-size: 24px;
    margin: 0;
    padding: 10px 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
  }
  
  #header .logo h1 a, #header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
  }
  
  #header .logo h1 a span, #header .logo h1 a:hover span {
    color: #fdc134;
  }
  
  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 70px;
  }
  .nav-menu, .nav-menu * {
    margin-top: 3px;
    padding: 0px;
    list-style: none;
  }
  
  .nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    float: left;
  }
  
  .nav-menu ul {
    border-radius: 6px;
  }
  
  .nav-menu a {
    display: block;
    position: relative;
    color: #ffffff;
    padding: 10px 15px;
    transition: 0.3s;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
  }
  
  .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a, .nav-menu a.active {
    color: #e0a700;
    text-decoration: none;
  }
  
  .nav-menu .get-started a {
    background: #ffffff;
    color: #e0a700;
    border-radius: 5px;
    margin: 2px 0 0 15px;
    padding: 5px 25px 6px 25px;
    border: 2px solid #dfa700;
  }
  
  .nav-menu .get-started a:hover {
    background: #dfa700;
    color: #000000;
  }
  
  .nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% - 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
  }
  
  .nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
  }
  
  .nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #3e6f9b;
  }
  
  .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: #fdc134;
  }
  
  .nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
  }
  
  .nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
  }
  
  .nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
  }
  
  .nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
  }
  
  .nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
  }
  .Name-user {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
  }
  @media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
      left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
      left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
      content: "\ea9d";
    }
  }
  
  /* Mobile Navigation */
  .mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
  }
  
  .mobile-nav-toggle i {
    color: #fdc134;
  }
  
  .mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
  }
  
  .mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .mobile-nav a {
    display: block;
    position: relative;
    color: #213b52;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
    transition: 0.3s;
  }
  
  .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #fdc134;
    text-decoration: none;
  }
  
  .mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
  }
  
  .mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
  }
  
  .mobile-nav .drop-down > a {
    padding-right: 35px;
  }
  
  .mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
  }
  
  .mobile-nav .drop-down li {
    padding-left: 20px;
  }
  
  .mobile-nav .get-started a {
    background: #213b52;
    color: #fff;
    border-radius: 50px;
    margin: 15px;
    padding: 8px 25px 10px 25px;
    text-align: center;
  }
  .mobile-nav .get-started a:hover {
    background: #fdc134;
    color: #213b52;
  }
  
  .mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(18, 33, 46, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
  }
  
  .mobile-nav-active {
    overflow: hidden;
  }
  
  .mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
  }
  
/* ===========================================================================
Products
=============================================================================*/

  .products-section .button-container{
    margin-bottom: 20px;
  }
  /* Modal */
  .modal-content{
    width: unset;
    height: unset;
  }
  .modal-dialog{
    display: block;
    top: unset;
    max-width: 1140px;
  }
  .modal-header{
    margin: unset;
    text-align: center;
  }
  .modal-header h5{
    width: 100%;
  }
  .modal-footer .theme-btn, .modal-footer .theme-btn-o{
    margin: unset;
  }
  .modal .preview-img-container{
    width: 100%;
    height: 150px;
    background-color: #525252;
    margin-top: 10px;
    border-radius: .25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0px;
  }
  .modal .preview-img-container img{
    color: #fff;
    width: auto;
    height: 100%;
  }
  #viewProduct.modal input[type="file"]{
    z-index: 1;
  }
  /* end Modal */
  /* Table */
  .gridjs-search{
    width: 100%;
  }
  .gridjs-search-input {
    width: 100%;
  }
  .gridjs-table .productImg {
    width: 70px;
  }
  .gridjs-table .product-td{
    display: flex;
  }
  .gridjs-table .prodInfo-container{
    display: flex;
    align-items: center;
  }
  .gridjs-table .prodInfo{
    margin-left: 10px;
  }
  .gridjs-table .prodInfo h6{
    margin-bottom: 0px;
    font-weight: 600;
  }
  .gridjs-tbody [data-column-id="product"] span{
    display: flex;
  }
  .gridjs-tbody [data-column-id="product"] span p{
    display: flex;
  }
  .gridjs-tbody [data-column-id="product"] span .old-price{
    text-decoration: line-through;
    color: red;
    margin-left: 5px;
  }
  /* .gridjs-tbody [data-column-id="action"] span button{ */
  .gridjs-tbody span button{
    font-size: 20px;
    display: inline-flex;
    padding: .5rem;
  }
  /* Edite product */
  .img-file-container1 a,.img-file-container2 a,.img-file-container3 a{
    color: #0056b3;
    text-decoration: underline;
    cursor: pointer;
  } 
  /* ===========================================================================
Category
=============================================================================*/
.categories-section .button-container{
  margin-bottom: 20px;
}
.categories-section #table-container{
  margin-bottom: 40px;
}
#addCategory .modal-dialog, #editCategory .modal-dialog, #addSubCategory .modal-dialog, #editSubCategory .modal-dialog{
  max-width: 500px;
}
/* ===========================================================================
Loader
=============================================================================*/
.loader-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid rgb(0, 0, 0);
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: rgb(0, 0, 0) transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ===========================================================================
Forget password
=============================================================================*/
.forgetPassword-form{
  padding: 20px 65px;
  margin: auto;
}
.forgetPassword-form .card-hdr .S-logo img{
  width: unset;
}
.forgetPassword-form .card-hdr .S-logo{
  width: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.forgetPassword-form .card-hdr h2{
  margin-bottom: 30px;
}
.forgetPassword-form .theme-btn-o{
  display: unset;
  margin: unset;
}
.forgetPassword-form .submit{
  text-align: end;
}
.forgetPassword-form .card-details input{
  border: 2px solid #000;
  margin-bottom: 38px;
  padding-bottom: 10px;
  padding-top: 10px;
}
.reset-password .card-details input{
  margin-bottom: 20px;
}
/* ===========================================================================
Orders
=============================================================================*/
.orders-section .orders-table tbody tr td a{
  cursor: pointer;
}
.orders-section #viewOrder .delivery-info-container{
  padding-right: 30px;
}

.orders-section #viewOrder .delivery-info-container, .orders-section #viewOrder .billing-info-container{
  padding: 20px 0px;
}
.orders-section #viewOrder .delivery-info-container h5, .orders-section #viewOrder .billing-info-container h5{
  font-weight: bold;
}
.orders-section #viewOrder .modal-header h5{
  font-weight: 600;
}
.orders-section #viewOrder .modal-body .delivery-status-container{
  margin-bottom: 20px;
}
.orders-section #viewOrder .modal-body .delivery-status-container select{
  padding: 10px 15px;
  background-color: transparent;
  border: 2px solid #dfdfdf;
  border-radius: 4px;
}
.orders-section #viewOrder .modal-body .delivery-status-container select option{
  padding: 10px 0px;
}