* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Archivo;
  text-transform: capitalize !important;
}

body{
  background: #F5F5F5;
  margin: 0;
  padding: 0;
  overflow: hidden;
  overflow-y: scroll;
}

body::-webkit-scrollbar{
  display: none;
}

:root{
  --primary:#990033;
  --secondary:white;
  --secondary-low-opacity:rgba(255,255,255,.7);
  --third:black;
  --fourth:rgb(242, 242, 242,1);
  --fifth:rgb(0,0,0,.3);
  --sixth:rgb(245,245,245,1);

}

input{
  outline: none !important;

}

.nine-loader-outer{
  display: none;
}

.nine-loader-outer-show{
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999999;
}

.nine-loader {
  position: fixed;
  z-index: 9999999;
  border: 7px solid transparent;
  border-radius: 50%;
  border-top: 7px solid #990033;
  width: 140px;
  height: 140px;
  -webkit-animation: spin 1s linear; /* Safari */
  animation: spin 1s linear infinite;
}


.nine-loader-2 {
  position: fixed;
  z-index: 999999;
  border: 10px solid transparent;
  border-radius: 50%;
  border-top: 10px solid #990033;
  width: 180px;
  height: 180px;
  animation-delay: .2s;
  -webkit-animation: spin 3s linear infinite; /* Safari */
  animation: spin 3s linear infinite;
}

.nine-loader-3 {
  position: fixed;
  z-index: 999999;
  border: 5px solid transparent;
  border-radius: 50%;
  border-top: 5px solid #990033;
  width: 200px;
  height: 200px;
  animation-delay: 1s;
  -webkit-animation: spin-reverse 3s linear infinite; /* Safari */
  animation: spin-reverse 3s linear infinite;
}

.nine-loader-content{
  z-index: 88888;
  position: fixed;
  width: 113px;
  height: 113px;
    border-radius: 50%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-animation: slide-in .5s linear; /* Safari */
  animation: slide-in .5s linear;
}

.nine-loader-content img{
  width:50%;
  height: 50%;
  object-fit: contain;
  margin-bottom: 5px;
  border-radius: 50%;
}

.nine-loader-content h2{
  font-size: 10px;
  color: white;

}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@-webkit-keyframes spin-reverse {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(-360deg); }
}

@keyframes spin-reverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

@-webkit-keyframes slide-in {
  0% { -webkit-transform: scale(0); }
  100% { -webkit-transform: scale(1); }
}

@keyframes slide-in {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

hr{
  border: none;
  border-bottom: 1px solid rgb(242, 242, 242,1);
}

label{
  font-size: 16px;
  color: black;
  margin-left: 20px;
}



body{
  background: white;
}

.primary{
  color: #990033;
}

.secondary{
  color: white;
}

.third-color{
  color: black;
}

.fourth-color{
  color: rgb(242, 242, 242,1);
}

.fifth-color{
  color: rgb(0,0,0,.3);
}

.green{
  color: green;
}


.background-primary{
  background: #990033;
}

.container{
  width: 80% !important;
  max-width: 1366px;
}
.kts-main-outer{
  width: 100%;
  height: 100vh;
  padding-top: 100px;
  overflow: hidden;

}

.kts-main-inner{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  overflow-y:scroll;
}

.kts-main-outer::-webkit-scrollbar, 
.kts-main-inner::-webkit-scrollbar {
    display: none;
}

.pos-outer{
  padding: 0 !important;
}
.pos-inner{
  padding: 0;
}

.container{
  width: 90%;
  height: 100%;
}

.row{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.kts-form-group{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

}

.kts-form-group-start{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

.kts-form-group-right{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}


.kts-form-group-end{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
}

.kts-grid{
  display: grid;
  grid-column-gap:20px;
  grid-row-gap:20px;
  grid-template-columns: auto;
}

.kts-grid-5{
  grid-template-columns: auto auto auto auto;
}

.kts-grid-4{
  grid-template-columns: auto auto auto auto;
}

.kts-grid-3{
  grid-template-columns: auto auto auto;
}

.kts-grid-2{
  grid-template-columns: auto auto;
}

.kts-form{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.kts-form-left{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: center !important;
}

.kts-form-right{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.kts-form-center{
  width: 80%;
  max-width: 1366px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.width-20{
  width: 20% !important;
}
.width-30{
  width: 30% !important;
}
.width-50{
  width: 50% !important;
}

.width-40{
  width: 40% !important;
}

.width-60{
  width: 60% !important;
}

.width-70{
  width: 70% !important;
}

.width-80{
  width: 80% !important;
}

.height-100{
  height: 100vh;
}

.padding-10{
  padding: 10px;
}

.padding-20{
  padding: 20px;
}

.padding-30{
  padding: 30px;
}

.padding-50{
  padding: 50px;
}

.padding-top-0{
  padding-top: 0;
}

.padding-top-20{
  padding-top: 20;
}

.padding-right-10{
  padding-right: 10px;
}

.margin-10{
  margin: 10px;
}

.margin-20{
  margin: 10px;
}


.kts-textbox{
  width: 100%;
  background: white;
  color: black;
  padding: 15px 25px;
  font-size: 14px;
  border: none;
  border: white;
  margin: 5px;
  transition: .5s;
  text-transform: none !important;
}

.kts-textbox-selected{
  background: #990033;
  color: white;
}

.kts-selection{
  background: #990033;
  color: white;
  padding: 5px;
  border-radius: 50px;
}

.txt-border-only{
  border: 1px solid #990033;
}

.txt-no-border{
  border: none;
}

.txt-border-50{
  border-radius: 50px;
}

::placeholder{
  color: black;
  opacity: .3;
}

.kts-border-5{
    border-radius: 5px;
}

.btn{
  width: 100%;
  color: white;
  background: #990033;
  border-radius: 50px;
  padding: 10px;
  border: none;
  margin: 10px;
  cursor: pointer;
  transition: .5s;
}

.btn:hover{
  color: white;
  background: black;
}


.btn-invert{
  width: 100%;
  color: white;
  background: black;
  border-radius: 50px;
  padding: 10px;
  border: none;
  margin: 10px;
  cursor: pointer;
  transition: .5s;
}

.btn-invert:hover{
  color: white;
  background: #990033;
}

.btn-white{
  width: 100%;
  color: black;
  background: white;
  border-radius: 50px;
  padding: 15px;
  border: none;
  margin: 5px;
  cursor: pointer;
  transition: .5s;
}

.btn-white:hover{
  color: white;
  background: black;
}

.i-btn{
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #990033;
  color: white;
  margin-right: 10px;
  cursor: pointer;
  transition: .5s;
}

.i-btn:hover{
  transform: scale(1.1);
  background: black;
}


.kts-table{
  width: 100%;
  border: none;
  background: white;
  border: 1px solid rgb(242, 242, 242,1);
  box-shadow: 2px 2px 8px rgb(242, 242, 242,1);
}

.kts-table h2{
  font-size: 14px;
}

.kts-table-full{
  height: 80vh !important;
}

.kts-print-table{
  width: 100%;
  border: none;
  border-collapse: collapse;
  background: white;
  border-top: 1px solid black;
  border-bottom: 2px solid black;
}

.kts-print-table tr{
  width: 100%;
  border-top: 1px dotted rgb(242, 242, 242,1);
}

.kts-print-table td{
  width: 100%;
  padding: 10px;
  
}

.kts-print-table td::-webkit-scrollbar{
  display: none !important;
}

.kts-print-table tbody > tr:nth-last-child(odd){
  padding: 20px;
}

.kts-print-table tbody > tr:last-child{
  border: none;
  border-bottom: 2px solid black;
}

.kts-print-table thead{
  background: rgb(242, 242, 242,1);
  font-weight: bold;
}

.kts-print-table tfoot{
  width: 100%;
  font-weight: bold;
}

.kts-outer-table{
  width: 90% !important;
  max-height: 50vh;
  overflow: scroll;
  font-size: 14px;
}

.full-height{
  height: 100% !important;
  max-height: 65vh !important;
}

.full-width{
  width: 100% !important;
  max-height: 65vh !important;
}

.kts-table{
  width: 100%;
}

.kts-table th, .kts-table td{
  width: 100%;
  padding: 5px 12px;
  white-space: nowrap;
}


.kts-table img{
  width: 100%;
  height: 100px;
  object-fit: contain;
  border-radius: 50px;
}

.kts-table a{
  text-decoration:none;
  cursor: pointer;
}

.kts-table i{
  background: rgb(242, 242, 242,1);
  color: #990033;
  padding: 5px;
  border-radius: 5px;
  transition: .5s;
}

.kts-table i:hover{
  background: #990033;
  color: white;
}

.breadcrump h2{
  font-size: 20px;
  font-weight: bold;
  color: #990033;
}

.breadcrump span{
  font-weight: normal;
}

.breadcrump a{
  text-decoration: none;
  color: black;
}

.breadcrump a:hover{
  text-decoration: none;
  color: #990033;
}

.kts-select{
  width: 100%;
  border: none;
  border: 1px solid #990033;
  border-radius: 50px;
  padding: 10px 20px;
  margin: 10px;
}

.error-msg{
  display: none;

}

.remove-error-message{
  display: block;
}

.text-right{
  text-align: right;
}

.text-left{
  text-align: left;
}

.text-center{
  text-align: center;
}

.text-justify{
  text-align: justify;
}


.product-image{
  width: 300px;
  height: 300px;
}

.product-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media only screen and (max-width : 1024px) {

  .kts-form-group-start{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.width-30,.width-20,.width-40, .width-50{
  width: 100% !important;
}
  
}







/*---------------- LOGIN SECTION ----------------*/


.login-show{
  z-index: 1;
}

.login-hide{
  z-index: 0;
}


.login-bg{
  height: 100%;
  background-image: linear-gradient(rgba(153, 0, 51, 0.5),rgba(153, 0, 51, 0.5)),url("https://images.unsplash.com/photo-1556740738-b6a63e27c4df?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1650&q=80");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.forget-bg{
  height: 100%;
  background-image: linear-gradient(rgba(153, 0, 51, 0.5),rgba(153, 0, 51, 0.5)),url("https://images.unsplash.com/photo-1556740772-1a741367b93e?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1650&q=80");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.kts-login{
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.kts-login-inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.login-logo{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.login-logo img{
  width: 200px;
  height: 200px;
  object-fit: contain;
  border: 1px solid black;
  border-radius: 50%;
}

.login-logo h2{
  font-size: 20px;
  font-weight: bold;
  margin: 20px;
  color: white;
}

.login-logo p{
  width: 80%;
  font-size: 14px;
  font-weight: normal;
  padding: 10px;
  color: white;
  line-height: 20px;
  text-transform: none !important;
}

.kts-login-form{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
}

.login-message{
  padding: 20px;
  color: white;
  font-size: 14px;
  font-weight: normal;
}

.login-forgot{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 20px;
}

.login-forgot a{
  text-decoration: none;
  color: white;
  font-size: 16px;
  background: black;
  padding: 10px;
  transition: .5s;
}

.login-forgot a:hover{
  color: black;
  background: white;
  cursor: pointer;
}


@media only screen and (max-width: 1024px)
{

  .kts-form-group-right{
    background-color: #272525;
  }

  .kts-login{
    max-width: 450px;
  }

  
}




/*---------------- END LOGIN SECTION ----------------*/


/*---------------- POS SECTION ----------------*/


.kts-products-view{
  height: 100vh;
  border-right: .5px solid rgb(242, 242, 242,1);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 70%;
}


.kts-products-header{
  width: 100%;
  padding: 20px;
  height: 10%;
  border-bottom: 1px solid rgb(242, 242, 242,1);
}

.kts-products-header h2{
  font-size: 25px;
  padding: 5px 0;
  color: black;
}

.kts-products-header h3{
  font-size: 12px;
  font-weight: normal;
  color: black;
}

.kts-product-categories {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  overflow-x: scroll;
  white-space: nowrap;
  box-sizing: border-box;
}

.kts-product-categories::-webkit-scrollbar {
  display: none;
}



.kts-product-category{
  height: 10vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.kts-product-category button{
    padding: 10px 20px;
  width: 100%;
  background: white;
  color: black;
    border: 1px solid rgb(242, 242, 242,1);
    white-space: nowrap;
    box-shadow: 2px 2px 8px rgb(242, 242, 242,1);
}

.kts-product-category button:hover{
  background: black;
  color: white;
}


.category-active button{
  background: black;
  color: white;
  background: black;
}

.kts-product-display {
  height: 70vh;
  overflow: scroll;
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  grid-column-gap:10px;
  grid-row-gap:10px;
  padding: 5px 20px;
}


.kts-product-display::-webkit-scrollbar {
  display: none;
}

.kts-product {
  width: 100%;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid rgb(242, 242, 242, 1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s;
  max-height: 350px;
}

.kts-product:hover {
  background: rgb(242, 242, 242, 1);
  transform: translateY(-5px);
}


.kts-product-image {
  width: 100%;
  margin-bottom: 10px;
}

.kts-product-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
}

.kts-product-content {
  width: 100%;
  text-align: center;
  padding: 10px;
}

.kts-product-content h2 {
  font-size: 16px;
  color: black;
  margin-bottom: 5px;
}

.kts-product-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.kts-product-content h3 {
  font-size: 20px;
  color: #990033;
  margin-top: 5px;
}




.product-footer{
  width: 100%;
  height: 10vh;
  background: white;
}

.product-footer{
  
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.product-footer-inner{
  width: 100%;
  display: flex;
  flex-direction: row;
}


.kts-current-order{
  height: 100vh;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: scroll;
}



.current-order-header{
  width: 100%;
  height: 10vh;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.current-order-header-text h2{
  font-size: 25px;
  font-weight: bold;
  color: black;
}

.current-order-header-menu{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.current-order-header-menu button{
  width: 70%;
  background: #990033;
  border: none;
  padding: 10px;
  margin-right: 5px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: .5s;
}

.current-order-header-menu button:hover{
  background: black;
  color: white;
}

.current-order-header-menu i{
  font-size: 18px;
  cursor: pointer;
  padding: 10px;
  background: rgb(242, 242, 242,1);
  border-radius: 10px;
  transition: .5s;
    color: #990033;
}

.current-order-header-menu i:hover{
  background: white;
}

.current-order-table{
  width: 100%;
  height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: scroll;
}

.current-order-table::-webkit-scrollbar{
  display: none;
}

.current-order-table-full{
  height: 80vh;
}

.current-order-table-maximize{
  position: absolute;
  right: 1%;
}

.current-order-table-maximize i{
  background: rgb(242, 242, 242,1);
  color: #990033;
  padding: 10px;
  opacity: .4;
  cursor: pointer;
  transition: .5s;
  border-radius: 10px;
}

.current-order-table-maximize i:hover{
  opacity: 1;
  transform: scale(1.1);
}

.current-order-table-inner{
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.current-order-table-content{
  background: white;
  display: flex !important; 
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
}

.current-order-table-content tr{
  display: inline !important;
}

.current-order-table-content img{
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.current-order-table-content tr{
  background: white;
}

.current-order-table-content h1{
  font-size: 18px;
  white-space: nowrap;
  color: black;
}


.current-order-table-content h2{
  font-size: 14px;
  color: black;
}

.current-order-table-content p{
  font-size: 12px;
  color: black;
}

.order-trash{
  display: none !important;
}

.current-order-table-content td{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}

.current-order-table-content i{
  font-size: 18px;
  color: black;
  padding:5px;
  background: rgb(242, 242, 242,1);
  border-radius: 5px;
  margin: 10px;
}

.remove-btn{
  position: relative;
}

.remove-btn-inner{
  left: 0;
  top: 0;
  position: absolute;
}

.order-total{
  width: 100%;
  height: 25vh;
  padding: 10px;
  z-index: 2;
}

.order-total-full{
  height: 80vh;
}

.order-total-inner{
  height: 100%;
  background: white;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgb(242, 242, 242,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.order-total-inner table{
  height: 20vh !important;

}

.order-total-inner td{
  font-weight: bold;
  width: 100%;
  text-align: right;
  padding: 10px 20px;
  color: black;
  white-space: nowrap;
}

.order-total-inner th{
  width: 100%;
  text-align: left;
  padding: 10px 20px;
  font-weight: normal;
  color: black;
}

.order-total-inner tfoot{
  display: table-footer-group;
  vertical-align: middle;
  border-color: inherit;
  font-size: 25px;
  font-weight: bold;
}

.order-total-inner tfoot > tr>td{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}



.order-total-inner tfoot, th{
  font-weight: bold;
}

.order-points-balance{
  width: 100%;
  padding: 10px 20px;
}

.order-points-balance-inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
    color: black;
}
.order-points{
  width: 100%;
  height: 10vh;
  padding: 10px 20px;
}

.order-points-inner{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.order-point-button{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 5px;
}

.order-point-button i
{
  font-size: 18px;
  margin-right: 10px;
}
.order-point-button a{
  width: 100%;
  padding: 10px;
  text-decoration: none;
  color:  white;
  text-align: center;
  background: #990033;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgb(242, 242, 242,1);
  transition: .5s;
  font-size: 14px;
  font-weight: bold;
}

.order-point-button a:hover{
  background:  black;
}

.btn-green a{
  background: green !important;
}

.btn-green a:hover{
  background: black !important;
}

.order-cur-points{
  width: 100%;
  margin-right: -20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.order-cur-points-inner{
  width: 30%;
  right: 0;
  padding: 10px 20px;
  bottom: -30px;
  border-radius: 10px 0 0 10px;
  background: rgb(242, 242, 242,1);
  color: #990033;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.order-cur-points-inner h2{
  font-size: 14px;
}

.order-points-retrive{
  width: 100%;
  height: 10vh;
  padding: 0 20px;
}

.order-points-retrive-inner{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.order-points-retrive-inner i{
  margin-right: 10px;
  font-size: -18px;
}

.order-points-retrive-inner a{
  width: 100%;
  padding: 10px 20px;
  text-decoration: none;
  color: black;
  text-align: center;
  background: #ffa31a;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgb(242, 242, 242,1);
  transition: .5s;
  font-size: 18px;
}

.order-points-retrive-inner a:hover{

  color: white;
  background: black;
}



@media only screen and (max-width: 1024px) {
  .kts-current-order{
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100vw);
  }

  .current-order-active{
    animation: orderActive 1s;
    transform: translateX(0);
  }

@keyframes orderActive {
  0%{
    transform: translateX(100vw);
  }
  100%{
    transform: translateX(0);
  }
}

  .kts-products-view{
    width: 100%;
  }
  .kts-product-categories {
    width: 100vw;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    box-sizing: border-box;
  }
  
.kts-product {
  width: 100% !important;
}
}

.pos-settings-menu{
  display: none;
  transition: .5s;
}

.pos-settings-menu-show{
  display: flex;
  width: 250px;
  height: 290px;
  position: absolute;
  border-radius: 10px;
  background: white;
  top: 8vh;
  right: 2vh;
  border: 1px solid rgb(242, 242, 242,1);
  box-shadow: 3px 3px 8px rgb(242, 242, 242,1);
  overflow: hidden;
}

.pos-settings-menu-inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pos-settings-menu-inner ul{
  list-style: none;
  width: 100%;
}

.pos-settings-menu-inner li{
  color: black;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 15px;
  transition: .5s;
  cursor: pointer;
  white-space: nowrap;
}

.pos-settings-menu-inner li:hover{
  background: #990033;
  color: white;
  box-shadow: 2px 2px 8px var(--fouth);

}

.darkmode-button{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
}

.switch {
  width: 100%;
  position: relative;
  display: inline-block;
  width: 35px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}


.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: black;
}

input:focus + .slider {
  box-shadow: 0 0 1px black;
}

input:checked + .slider:before {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}




/*---------------- END POS SECTION ----------------*/


/*---------------- HEADER SECTION ----------------*/
header{
  width: 100%;
  height: 70px;
  background: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 999999999;
}

.kts-main-header{
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.kts-header-inner{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.kts-logo{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.kts-logo img{
  height: 50px;
  width: 70px;
  object-fit: contain;
}

.kts-logo h2{
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.kts-main-menu{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px;
}

.kts-main-menu ul{
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.kts-main-menu li{
  padding: 10px 20px;
  color: white;
  cursor: pointer;
  transition: .5s;
}

.kts-main-menu li:hover{
  color: #990033;
}

.kts-main-menu a{
  width: 100%;
  text-decoration: none;
  color: white;
  transition: .5s;
}

.kts-main-menu a:hover{
  text-decoration: none;
    color: #990033;
}


.pos-menu a{
  text-decoration: none;
  background: #990033;
  color: white;
  border-radius: 10px;
  padding: 10px 20px;
}

.pos-menu a:hover{
  text-decoration: none;
  background: white;
  color: #990033;
  border-radius: 10px;
  padding: 10px 20px;
}

.kts-menu-dropdown{
  display: none;
}

.kts-menu-dropdown-show{
  display: block;
  position: absolute;
  top: 70px;
  background: black;
}

.kts-menu-dropdown-show ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 10px 0;
}

.kts-menu-dropdown-show li{
  width: 100%;
  padding: 10px 20px;
}

.kts-menu-dropdown-show a{
  width: 100%;
  text-decoration: none;
  color: white;
}

.kts-menu-dropdown-show a:hover{
  text-decoration: none;
  background: white;
}

.admin-profile{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 70px;
}

.profile-picture{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 10px;
}

.profile-picture img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-menu-button{
  display: none;
}

@media screen and (max-width: 1024px) {

  .kts-main-menu{
    transform: translateY(-100vh);
  }

  .menu-show{
    animation: show-menu .5s;
    transform: translateY(0);
  }

  .mobile-menu-button{
    display: flex;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 50px;
    z-index: 99999999999;
  }

  .mobile-menu-button img{
    width: 100%;
    height: 100%;
    padding: 2%;
    object-fit: contain;
  }

  @keyframes show-menu {

    0%{
      transform: translateY(-100vh);
    }

    100%{
      transform: translateY(0);
    }
    
  }

  .kts-main-menu{
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    background-color: black;
  }

  .kts-main-menu ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;  
  }

  .kts-main-menu ul li{
    position: relative;
  }

  .kts-main-menu .kts-menu-dropdown{
    background-color: rgb(31, 4, 4);
    z-index: 9999999;
    width: 300px;
  }
  
}
/*---------------- END HEADER SECTION ----------------*/


/*---------------- MESSAGE BOX ----------------*/


.nine-msgbox{
display: none;
}

.msgbox-show{
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5));
  position: fixed;
  top: 0;
  z-index: 77777;
}

.nine-msgbox-inner{
  width: 50%;
  height: 30%;
  background: #990033;
  box-shadow: 2px 2px 7px var(--fouth);
  border-radius: 10px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.msgb-close-btn{
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.nine-msgbox-inner p{
  font-size: 20px;
  line-height: 25px;
  padding: 20px;
  color: white;
  margin-bottom: 15px;
  text-align: center;
}

.nine-msgbox-inner button{
  background: black;
  font-size: 20px;
}

.nine-msgbox-inner button:hover{
  background: white;
  color: black;
}


/*---------------- END MESSAGE BOX ----------------*/




/*----------------  POPUP WINDOW ----------------*/

.pop-up-window {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.pop-up-window-show{
  width: 100%;
  height: 100vh;
  background: rgba(255,255,255,.7);
  position: fixed;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fade-in .5s;
}

.pop-up-window-hide{
  opacity: 0;
  animation: fade-out 1.2s;
  display: none;
}

.pop-up-window-inner{
  display: none;
  opacity: 0;
  z-index: 1100;
}

.pop-up-window-inner-show{
  opacity: 1;
  width: 80%;
  height: 85vh;
  background: white;
  box-shadow: 2px 2px 8px rgb(242, 242, 242,1);
  border: 1px solid rgb(242, 242, 242,1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: slide-in-top 1s;
  z-index: 1200;
}

.pop-up-window-inner-hide{
  opacity: 0;
  animation: slide-out-top 1s;
}

.pop-up-window-inner h2{
  font-size: 20px;
  font-weight: bold;
  color: black;
  margin-bottom: 10px;
  padding: 0 20px;
  padding-top: 50px;
  animation: slide-in-bottom 1.2s;
}

.pop-up-window-inner hr{
  width: 100%;
  border-top: 1px solid rgb(242, 242, 242,1);
}

.pop-up-content{
  width: 100%;
  height: 78vh;
  padding: 20px 30px;
  animation: slide-in-bottom 1.5s;
font-size: 12px !important;
overflow: hidden;
overflow-y: scroll;
}

.pop-up-content::-webkit-scrollbar{
  display: none;
}

.pop-up-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pop-up-image img{
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.pop-up-close{
  position: absolute;
  right: 0;
  top: 0;
  padding: 20px;
  animation: slide-in-bottom 1s;
}

.pop-up-close a{
  color: black;
  font-size: 35px;
  font-weight: bold;
  text-decoration: none;
  transition: .5s;
  cursor: pointer;
}

.pop-up-close a:hover{
  color: #990033;
  text-decoration: none;
}

.pop-up-close2{
  position: absolute;
  right: 70px;
  top: 0;
  padding: 20px;
  animation: slide-in-bottom 1s;
}

.pop-up-close2 a{
  color: black;
  font-size: 35px;
  font-weight: bold;
  text-decoration: none;
  transition: .5s;
  cursor: pointer;
}

.pop-up-close2 a:hover{
  color: #990033;
  text-decoration: none;
}
/*---------------- END POPUP WINDOW ----------------*/



/*---------------- DASHBOARD ----------------*/

.gadget{
  width: 90%;
  border-radius: 20px;
  background: #990033;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  overflow: hidden;
  position: relative;
  color: black;
  animation: slide-in .5s linear;
}

.gadget-black{
  color: #990033;
  background: black;
  animation: slide-in 1s linear;
}

.gadget-outer{
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gadget-outer h2{
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
}

.gadget-outer p{
  color: white;
  font-size: 20px;
  margin-top: 10px;
  font-weight: bold;
  text-transform: uppercase !important;
}

.gadget-outer h3{
  color: rgba(255,255,255,.5);
  font-size: 100px;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 1;
}

.gadget-outer h4{
  position: absolute;
  bottom: -20%;
  color: rgba(255,255,255,.1);
  font-size: 250px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  z-index: 0;
}


#myChart{
  box-shadow: 2px 2px 8px #F5F5F5;
  border: 1px solid #F5F5F5;
}

#myChart1{
  box-shadow: 2px 2px 8px #F5F5F5;
  border: 1px solid #F5F5F5;
}


/*---------------- END DASHBOARD ----------------*/



@keyframes slide-in-top {

  0%{
    transform: translateY(100vh);
  }
  100%{
    transform: translateY(0);
  }
}

@keyframes fade-in {

  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

@keyframes fade-out {

  0%{
    opacity: 1;
  }
  50%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}

@keyframes slide-out-top {
  0%{
    transform: translateY(0);
    opacity: 1;
  }
  100%{
    transform: translateY(-100vh);
    opacity: 0;
  }
}




/*--------------- BILL ---------------- */

.bill-watermark{
  width: 100%;
  height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
align-items: center;
position: absolute;
background: none;
z-index: 99999;
opacity: .1;
}

.bill-watermark img{
  width: 70%;
  object-fit: contain;
}

.mobile-user-view{
  display: none;
}

.show-cart{
  display: none;
}

.homepage-table{
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/*--------------- END BILL ---------------- */




@media only screen and (max-width: 1024px) {

  .container{
    padding-top: .5cm;
    width: 100%;
    overflow: hidden;
  }

  .kts-form-center{
    margin-top: -15%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .kts-selection {
      font-size: 16px;
      padding: 10px; 
  }

  .kts-date {
    max-width: 100%; /* Use full width in mobile */
    font-size: 10px; /* Improve touch usability */
    padding: 5px;
    gap: 10px;
  }
  /* .kts-form-group{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  } */

  .kts-form-group-right{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .kts-form-group-end{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* .kts-form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .kts-form-left{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .kts-form-right{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  } */

  .width-30{
    width: 100% !important;
  }

  .pop-up-window{
    z-index: 30000;
  }

  .show-cart{
    position: fixed;
    display: flex;
    right: 20px;
    bottom: 100px;
    background-color: var(--primary);
    padding: 10px;
    border-radius: 20px;
    opacity: .6;
    transition: .5s;
    z-index: 99999999;
  }

  .show-cart:hover{
    opacity: 1;
  }

  .show-cart .show-cart-image{
    width: 40px;
    height: 40px;
  }

  .show-cart .show-cart-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

.mobile-user-view{
  width: 200px;
  padding: 10px;
  position: fixed;
  top: 20px;
  right: 0;
  display: flex;
}  

.mobile-user-view .mobile-user-view-inner{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

.mobile-user-view .mobile-user-view-inner .mobile-user-view-data{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

.mobile-user-view .mobile-user-view-inner .mobile-user-view-data .mobile-user-login-data{
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
}

.mobile-user-view .mobile-user-view-inner .mobile-user-view-data span{
  white-space: nowrap;
  text-align: right;
}

.mobile-user-view .mobile-user-view-inner .mobile-user-view-image .profile-pic{
  position: relative !important;
}


.pop-up-window-inner-show{
  opacity: 1;
  width: 100%;
  height: 100vh;
  background: white;
  box-shadow: 2px 2px 8px rgb(242, 242, 242,1);
  border: 1px solid rgb(242, 242, 242,1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: slide-in-top 1s;
  z-index: 1200;
}

.pop-up-content{
  overflow: scroll;
}

.existingcustomerPopup .pop-up-content{
  height: auto !important;
}

.customerpopup{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.customerpopup .width-50, .customerpopup .width-40, .customerpopup .width-30{
  width: 100% !important;
}

.customerpopup .width-50 .pop-up-close{
  background-color: white;
  padding: 8px;
  border-radius: 10px;
  right: 20px;
  top: 20px;
}

.customerpopup .width-50 .pop-up-close a{
  font-size: 20px;
}

.customerpopup .pop-up-image{
  height: 100px !important;
  width: 100% !important;
  object-fit: cover !important;
}

.customerpopup .kts-form-group-end{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

  .pop-up-content{
    width: 100%;
    height: 80vh;
  }

  .pop-up-content .kts-form-group{
    flex-direction: column-reverse;
  }

  .pop-up-content .width-70, .pop-up-content .width-30,   .pop-up-content .width-50{
    width: 100%;
  }

  .pop-up-content img{
    width: 100% !important;
    height: 100px !important;
    object-fit: cover !important;
  }

  .pop-up-content input{
    width: 100% !important;
  }

  .pop-up-content .product-button{
    flex-direction: row !important;
  }




  .gadget{
    width: 100%;
    height: 200px;
    margin: 10px;
  }

  .gadget-outer h2{
    font-size: 18px;
  }

  .gadget-outer p{
    font-size: 14px;
  }

  .gadget-outer h3{
    font-size: 50px;
  }

  .gadget-outer h4{
    font-size: 125px;
  }


  .bill-icons {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: nowrap;
  }

 

  .bill-icons i {
      font-size: 12px;
  }



  .kts-form-group-right {
    flex-direction: column;
    align-items: stretch;
  }

  .kts-form-group select, 
  .kts-form-group input {
    width: 100%;
    margin-bottom: 10px;
  }

  .pop-up-close2 {
    position: absolute;
    top: 1px;
    right: 10px;
    padding: 10px;
  }

  .pop-up-close2 a {
    font-size: 24px;
    cursor: pointer;
  }


  .padding-50{
    padding: 10px;
  }

  .kts-main-outer{
    width: 100vw;
    height: 100%;
  }

  .kts-main-inner{
    display: flex;
    flex-direction: column;
  }

  .no-padding{
    padding: 0 !important;
  }

  .nine-mobile-customer-header{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    height: 10vh;
    background: #990033;
  }

  .nine-mobile-customer-header-inner{
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    bottom: 0;
  }

  .mobile-footer-item{
    width: 25vw;
    padding: 20px;
    background: #990033;
    color: white;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
  }

  .mobile-footer-item:hover{
    background: white;
    color: black;
  }

  .nine-msgbox{
    display: none;
  }

  .msgbox-show{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5));
    position: fixed;
    z-index: 77777;
  }

  .nine-msgbox-inner{
    width: 90%;
    height: 30%;
    padding: 20px;
  }

  .nine-msgbox-inner p{
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 10px;
  }

  .nine-msgbox-inner button{
    font-size: 18px;
  }
  .current-order-table-inner i{
    font-size: 12px;
  }


  .current-order-table-inner .order-price h1{
    font-size: 14px !important;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
}

@media only screen and (max-width: 1680px) {

  .kts-product-display {
    grid-template-columns: auto auto auto auto;
    grid-gap: 10px;
    overflow: scroll;
  }
}

@media only screen and (max-width: 1280px) {

  .kts-product-display {
    grid-template-columns: auto auto auto;
    grid-gap: 10px;
    overflow: scroll;
  }

}


@media only screen and (max-width: 1024px) {

  .kts-form-group {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 1px;
  }

  .kts-form-left {
    width: 75vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .kts-form-left img {
    width: 80px;
    height: auto;
  }

  .kts-form-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .kts-form-right .profile-picture {
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }

  .kts-form-left h2,
  .kts-form-left h3,
  .kts-form-right .kts-form-group-right {
    display: none;
  }

  .kts-product-category {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0;
  }

  .kts-product-category .btn {
    width: 90%;
    font-size: 14px;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    color: #333;
    border-radius: 5px;
  }

  .kts-product-category .btn:hover {
    background-color: #ddd;
  }

  .category-active .btn {
    background-color: #990033;
    color: white;
  }

  .kts-product-display {
    width: 100%;
    grid-template-columns: auto auto auto;
    grid-gap: 10px;
    overflow: scroll;
    height: calc(100vh - 280px);
  }
  

  .kts-product {
    flex-direction: column;
  }

  .kts-product-image img {
    width: 100%;
    object-fit: contain;
  }

  .kts-product-content {
    text-align: center;
    padding: 10px;
  }

  .kts-product-content h2 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .kts-product-content p {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .kts-product-content h3 {
    font-size: 18px;
  }

}


@media (max-width: 1024px) {
  .product-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    overflow: hidden;
    overflow-x: scroll;
    background: rgb(255, 242, 242);
    padding: 10px;
  }



  .product-footer input{
    max-width: 200px;
  }

  .product-footer .kts-form-group{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  .kts-form-right{
    display: flex;
    flex-direction: row;
  }

  .product-footer .kts-form{
    width: 40px;
    margin: 3px;
  }

  .order-point-button {
    flex: 1;
    text-align: center;
    margin: 0;
  }


  .payment-btn a{
    min-width: 150px !important;
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
  }

  .order-point-button a{
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 3px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .order-point-button a i{
    font-size: 16px;
  }
  .order-point-button a span{
    display: none;
  }
}


@media only screen and (max-width: 768px) {

.kts-product-display {
  width: 100%;
  grid-template-columns: auto auto;
  grid-gap: 10px;
  overflow: scroll;
  height: calc(100vh - 280px);
}

}




/* .kts-current-order{
  display: none;
} */

/* .product-footer{
  display: none;
} */

/* .kts-product-display{
  display: none;
} */

/* .kts-product-category{
  display: none;
} */

/*-------------- Dashboard ---------------*/

.dashboard-head{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.dashboard-head h2{
  font-size: 20px;
  font-weight: normal;
}

.dashboard-head strong{
  font-size: 20px;
  font-weight: bold;
}

.dashboard-widgets {
  width: 100%;
  max-width: 1366px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  justify-items: start;
  align-items: start;
  padding: 0;
  margin: 0;
}

.kts-widget-outer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.kts-widget{
  width: 100%;
  text-decoration: none;
  background: white;
  color: black !important;
  width: 100%;
  min-width: 150px;
  height: 120px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #F1F1F1;
  border-radius: 10px;
  overflow: hidden;
  transition: .5s;
  cursor: pointer;
  position: relative;
}


.kts-widget:hover{
  transform: scale(1.02);
  box-shadow: 2px 2px 6px #F1F1F1;
}

.kts-widget-footer{
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: green;
  height: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.kts-widget-footer span{
  color: white;
  font-size: 12px;
}

.kts-widget-inner{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  padding: 10px;
}

.kts-widget-inner .kts-widget-heading{
  color: black !important;
  position: absolute;
  top: 10%;
  left: 10%;
}

.kts-widget-inner .kts-widget-heading h2{
  color: black !important;
  font-size: 14px;
  font-weight: 400;
}

.kts-widget-inner .kts-widget-heading h3{
  color: rgb(148, 166, 210) !important;
  font-size: 11px;
  font-weight: normal;
}

.kts-widget-inner h4{
  color: rgb(129, 129, 129) !important;
  font-size: 10px;
  font-weight: normal;
}

.kts-widget-inner h1{
  color: black !important;
  position: absolute;
  bottom: 23px;
  left: 10px;
  font-size: 20px;
  font-weight: normal;
  text-align: center;
}

.kts-widget-inner .cash::before{
  font-size: 60px;
  content: "₹";
  opacity: .1;
  color: #afafaf;
  bottom: 0;
  left: 3%;
  position: absolute;
}

.kts-widget-inner img{
  position: absolute;
  top: 5%;
  right: 3%;
  width: 50px;
  height: 50px;
  object-fit: contain;
  opacity: .1;
}


.kts-product-widget-outer{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
}

.kts-product-widget-inner{
  width: 100%;
  display: flex;
  flex-direction: grid;
  grid-template-columns: auto auto auto auto;
}

.kts-product-widget{
  width: 200px;
  min-width: 200px;
  height: 400px;
  border-radius: 10px;
  border: 1px solid #F4F4F4;
  margin: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  
}

.kts-product-widget img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 0;
  cursor: pointer;
}

.kts-product-widget .buttons{
  position: absolute;
  z-index: 999999;
  top: -40px;
  right: 0;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.kts-product-widget button{
  width: 30px;
  height: 30px;
  object-fit: contain;
  background-color: white;
  border-radius: 10px;
  padding: 5px;
  margin: 3px;
  
}

.kts-product-widget-content{
  width: 90%;
  position: absolute;
  font-size: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  z-index: 1;
  bottom: 2%;
  border-radius: 10px;
}

.kts-product-widget-content table{
  width: 100%;
  border-collapse: collapse;
}

.kts-product-widget-content table td,.kts-product-widget-content table th{
  padding: 5px;
  line-height: 18px;
  border-bottom: 1px solid #fceaea;
  text-align: center;
}

.kts-product-widget-content span{
  display: flex;
  flex-direction: row;
  font-weight: bold;
}

.kts-product-widget-content span h3{
  font-weight: 400;
}
.widget-table table{
  width: 100%;
}

.widget-table table td{
  padding: 3px;
  font-size: 12px;
  border-bottom: .5px solid #e0e0e0;
}


.design-approved{
  background-color: rgb(33, 164, 33);
  padding: 3px;
  color: white;
  text-align: center !important;
  justify-content: center;
  border-radius: 10px;
  font-size: 12px;
  font-weight: bold;
}

.design-pending{
  background-color: rgb(255, 230, 0);
  padding: 3px;
  color: black;
  text-align: center !important;
  justify-content: center !important;
  border-radius: 10px;
  font-size: 12px;
  font-weight: bold;
}

.design-reject{
  background-color: rgb(177, 9, 9);
  padding: 3px;
  color: rgb(255, 255, 255);
  text-align: center !important;
  justify-content: center;
  border-radius: 10px;
  font-size: 12px;
  font-weight: bold;
}

@media only screen and (max-width: 1024px) {

  .kts-widget-outer{
    width: 100%;
    display: grid;
    grid-template-columns: auto;
    grid-column-gap:10px;
    grid-row-gap:10px;
    justify-content: center;
  }

  .dashboard-widgets {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background-color: white;
    z-index: 999999;
  }
}


/*...........................................................Radio Button...................................................................*/

.payment-options {
  display: flex;
}

.payment-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 5px;
  padding: 10px;
  margin: 10px;
  transition: border 0.3s ease;
}

.payment-option input[type="radio"] {
  display: none;
}

.payment-option img {
  max-height: 50px;
  max-width: 50px;
  object-fit: contain;
}

.payment-option input[type="radio"]:checked + label {
  border: 2px solid #007bff;
  border-radius: 5px;
}
