/*start general properties for website*/
/***************************** Start Animations *****************************/
@-webkit-keyframes spinner {
  0% {
    transform: rotate(0deg) scale3d(0.8, 0.8, 0.8);
  }
  100% {
    transform: rotate(360deg) scale3d(1, 1, 1);
  }
}
@keyframes spinner {
  0% {
    transform: rotate(0deg) scale3d(0.8, 0.8, 0.8);
  }
  100% {
    transform: rotate(360deg) scale3d(1, 1, 1);
  }
}
@-webkit-keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
  50% {
    transform: scale3d(0.8, 0.8, 0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
  50% {
    transform: scale3d(0.8, 0.8, 0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
/*dropdown animation*/
@-webkit-keyframes dropdown-animate {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@keyframes dropdown-animate {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
/*rotation animation*/
@-webkit-keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/*spinner loading page*/
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*start the wave animation*/
@-webkit-keyframes wave {
  0%, 100% {
    -webkit-clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
@keyframes wave {
  0%, 100% {
    -webkit-clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
@-webkit-keyframes niceAnimate {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes niceAnimate {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes translation {
  0% {
    transform: translateZ(0%);
  }
  100% {
    transform: translateZ(10%);
  }
}
@keyframes translation {
  0% {
    transform: translateZ(0%);
  }
  100% {
    transform: translateZ(10%);
  }
}
@-webkit-keyframes rotate-scale-up {
  0% {
    transform: scale(1) rotateZ(0);
  }
  50% {
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    transform: scale(1) rotateZ(360deg);
  }
}
@keyframes rotate-scale-up {
  0% {
    transform: scale(1) rotateZ(0);
  }
  50% {
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    transform: scale(1) rotateZ(360deg);
  }
}
@-webkit-keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-10px, 10px);
  }
  40% {
    transform: translate(-10px, -10px);
  }
  60% {
    transform: translate(10px, 10px);
  }
  80% {
    transform: translate(10px, -10px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-10px, 10px);
  }
  40% {
    transform: translate(-10px, -10px);
  }
  60% {
    transform: translate(10px, 10px);
  }
  80% {
    transform: translate(10px, -10px);
  }
  100% {
    transform: translate(0);
  }
}
@-webkit-keyframes translateX {
  0%, 100% {
    transform: translateX(2px);
  }
  50% {
    transform: translateX(-2px);
  }
}
@keyframes translateX {
  0%, 100% {
    transform: translateX(2px);
  }
  50% {
    transform: translateX(-2px);
  }
}
@-webkit-keyframes translateY {
  0%, 100% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-2px);
  }
}
@keyframes translateY {
  0%, 100% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-2px);
  }
}
/*flipping*/
@-webkit-keyframes flip-in-hor-bottom {
  0% {
    transform: rotateX(80deg) translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    transform: rotateX(0) translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes flip-in-hor-bottom {
  0% {
    transform: rotateX(80deg) translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    transform: rotateX(0) translate(-50%, -50%);
    opacity: 1;
  }
}
/*shadow animation*/
@-webkit-keyframes shadow {
  0% {
    box-shadow: 0px 0px 35px -4px #00a4e6;
    opacity: 0 !important;
  }
  100% {
    box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
  }
}
@keyframes shadow {
  0% {
    box-shadow: 0px 0px 35px -4px #00a4e6;
    opacity: 0 !important;
  }
  100% {
    box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
  }
}
/*start rotate*/
@-webkit-keyframes rotate {
  0% {
    border-top-left-radius: 50%;
    border-top-right-radius: 60%;
    border-bottom-left-radius: 40%;
    border-bottom-right-radius: 55%;
  }
  25% {
    border-top-left-radius: 30%;
    border-top-right-radius: 10%;
    border-bottom-left-radius: 20%;
    border-bottom-right-radius: 70%;
  }
  50% {
    border-top-left-radius: 20%;
    border-top-right-radius: 40%;
    border-bottom-left-radius: 60%;
    border-bottom-right-radius: 30%;
  }
  75% {
    border-top-left-radius: 70%;
    border-top-right-radius: 20%;
    border-bottom-left-radius: 30%;
    border-bottom-right-radius: 50%;
  }
  100% {
    border-top-left-radius: 50%;
    border-top-right-radius: 60%;
    border-bottom-left-radius: 40%;
    border-bottom-right-radius: 55%;
  }
}
@keyframes rotate {
  0% {
    border-top-left-radius: 50%;
    border-top-right-radius: 60%;
    border-bottom-left-radius: 40%;
    border-bottom-right-radius: 55%;
  }
  25% {
    border-top-left-radius: 30%;
    border-top-right-radius: 10%;
    border-bottom-left-radius: 20%;
    border-bottom-right-radius: 70%;
  }
  50% {
    border-top-left-radius: 20%;
    border-top-right-radius: 40%;
    border-bottom-left-radius: 60%;
    border-bottom-right-radius: 30%;
  }
  75% {
    border-top-left-radius: 70%;
    border-top-right-radius: 20%;
    border-bottom-left-radius: 30%;
    border-bottom-right-radius: 50%;
  }
  100% {
    border-top-left-radius: 50%;
    border-top-right-radius: 60%;
    border-bottom-left-radius: 40%;
    border-bottom-right-radius: 55%;
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateX(30px);
  }
  67% {
    opacity: 1;
    transform: translateX(40px);
  }
  100% {
    opacity: 0;
    transform: translateX(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateX(30px);
  }
  67% {
    opacity: 1;
    transform: translateX(40px);
  }
  100% {
    opacity: 0;
    transform: translateX(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@-webkit-keyframes clip {
  0% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
  }
}
@keyframes clip {
  0% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
  }
}
@-webkit-keyframes sideClip {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes sideClip {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@-webkit-keyframes sideClip_2 {
  0% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
  }
  50% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
            clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
  }
}
@keyframes sideClip_2 {
  0% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
  }
  50% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
            clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
  }
}
@-webkit-keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@font-face {
  font-family: "LamaSans";
  src: url("../fonts/LamaSans/LamaSans-Medium.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "LamaSans";
  src: url("../fonts/LamaSans/LamaSans-Regular.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "LamaSans";
  src: url("../fonts/LamaSans/LamaSans-Bold.ttf");
  font-weight: 900;
}
* {
  margin: 0px;
  box-sizing: border-box;
  font-family: LamaSans, "sans-serif";
}

.btn:focus,
button:focus,
input:focus,
.form-control:focus {
  outline-width: 0px !important;
  outline-color: transparent !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

a {
  text-decoration: none !important;
}

*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background-color: #FFD004;
}
*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #F09B0C, #FFD004);
  border-radius: 8px;
}
*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #FFD004, #F09B0C);
}

.vertical-menu,
.navbar-brand-box {
  background-color: transparent !important;
}

.primary-color {
  color: #FFD004;
  font-size: 17px;
  font-weight: 700;
}
.primary-color i {
  -webkit-margin-end: 2px;
          margin-inline-end: 2px;
}

.dark-color {
  color: #2A2A2A;
  font-size: 14px;
  font-weight: 500;
}
.dark-color i {
  -webkit-margin-end: 2px;
          margin-inline-end: 2px;
}

.icon-table {
  width: 100px;
  height: 100px;
  border-radius: 5px;
  -o-object-fit: contain;
     object-fit: contain;
}

.box, .card {
  width: 100%;
  padding: 20px 15px;
  background-color: #fff;
  border: 1px solid #EFEFEF;
  border-radius: 10px;
  transition: all 0.3s linear;
  height: 100% !important;
}
.box .box-icon, .card .box-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgba(0, 139, 210, 0.05);
  margin: 0px auto 15px;
}
.box .box-icon i, .card .box-icon i {
  color: #FFD004;
  font-size: 30px;
}
.box h4, .card h4 {
  color: #000000;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 15px;
}
.box p, .card p {
  color: #777777;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  margin: 0px;
}
.box p span, .card p span {
  font-weight: 900;
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
}
.box:hover, .card:hover {
  /*transform: translateY(-10px);*/
}
.box:hover i, .card:hover i {
  -webkit-animation: pulse 0.4s linear;
          animation: pulse 0.4s linear;
}
.box.ho-hover:hover, .card.ho-hover:hover {
  transform: translate(0px, 0px);
}

.primary-box {
  padding: 20px 10px !important;
  background-color: #FFD004 !important;
  border-radius: 5px;
}
.primary-box h4 {
  font-size: 18px !important;
  font-weight: 900 !important;
  color: #fff !important;
  margin: 0px !important;
}

.form-contain {
  width: 100%;
}
.form-contain .form-group label {
  display: flex;
  align-items: center;
  align-content: center;
  margin-bottom: 15px;
}
.form-contain .form-group label i {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  color: #FFD004;
  font-size: 15px;
}
.form-contain .form-group label span {
  color: #2A2A2A;
  font-size: 15px;
  font-weight: 700;
}
.form-contain .form-group .form-control {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  border: 1px solid #A2A2A2;
  padding: 0px 25px;
  color: #000000;
  font-size: 18px;
}
.form-contain .form-group .form-control.textarea {
  height: 100px !important;
  resize: none;
  border-radius: 10px !important;
  padding-top: 15px;
}
.form-contain .form-group .form-control::-moz-placeholder {
  color: #A2A2A2;
  font-size: 15px;
  font-weight: 500;
}
.form-contain .form-group .form-control:-ms-input-placeholder {
  color: #A2A2A2;
  font-size: 15px;
  font-weight: 500;
}
.form-contain .form-group .form-control::placeholder {
  color: #A2A2A2;
  font-size: 15px;
  font-weight: 500;
}
.form-contain .form-group .form-control:focus, .form-contain .form-group .form-control:hover {
  border-color: #FFD004;
}
.form-contain .form-group select {
  color: #A2A2A2 !important;
}
.form-contain .form-group select option {
  color: #A2A2A2 !important;
}
.form-contain .wrapper {
  width: 100%;
  padding: 15px 0px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
.form-contain .wrapper .radio-check {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #FFD004;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.form-contain .wrapper .radio-check::after {
  content: "\f00c";
  width: 25px;
  height: 25px;
  background-color: #FFD004;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transform: scale(0);
  transition: all 0.4s linear;
  top: 0;
  left: 0;
}
.form-contain .wrapper .radio-check:checked::after {
  transform: scale(1);
}
.form-contain .wrapper .radio-title {
  color: #2A2A2A;
  font-size: 18px;
  font-weight: 500;
  margin: 0px 10px 0px 0px;
}
.form-contain .wrapper .radio-title span {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.form-contain .wrapper .radio-title span.title {
  color: #2A2A2A !important;
}
.form-contain .wrapper .radio-title span.secondary-color {
  color: #BEBEBE !important;
}
.form-contain .wrapper:last-child {
  border: none;
}

.btn-primary-shape {
  width: 50%;
  margin: 0px auto;
  height: 50px;
  background-color: #FFD004;
  border: 0px !important;
  outline: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.btn-primary-shape.small-btn {
  width: 300px !important;
  margin: unset !important;
}
.btn-primary-shape i {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  color: #fff;
  font-size: 18px;
}
.btn-primary-shape span {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.modal-body {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px 15px;
}
.modal-body img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
.modal-body h4 {
  color: #000000;
  font-size: 18px;
  font-weight: 900;
  margin: 0px;
}
.modal-body p {
  color: #A2A2A2;
  font-size: 12px;
  margin: 10px 0px 20px 0px;
}
.modal-body .data-price {
  width: 100%;
  padding: 20px 0px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(0, 139, 210, 0.5);
  border-radius: 10px;
  color: #FFD004;
  font-size: 25px;
  font-weight: 700;
}
.modal-body .form-group {
  width: 100%;
  height: 50px;
  position: relative;
  margin-bottom: 30px !important;
}
.modal-body .form-group .icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  right: 15px;
}
.modal-body .form-group .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s linear;
}
.modal-body .form-group .price {
  font-size: 16px;
  font-weight: 500;
  color: #FFD004;
  position: absolute;
  top: calc(50% - 12px);
  left: 15px;
}
.modal-body .form-group:hover img {
  transform: rotate(45deg);
}
.modal-body .form-group .form-control {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 139, 210, 0.03);
  border: 1px solid rgba(0, 139, 210, 0.06);
  border-radius: 6px;
  padding: 0px 50px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.modal-body .form-group .form-control::-moz-placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.modal-body .form-group .form-control:-ms-input-placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.modal-body .form-group .form-control::placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.modal-body .form-group .form-control:focus, .modal-body .form-group .form-control:hover {
  border: 1px solid rgba(0, 139, 210, 0.4);
}
.modal-body .buttons-contain {
  padding: 0px !important;
  flex-wrap: wrap !important;
  overflow-x: scroll;
}
.modal-body .buttons-contain a {
  min-width: 120px;
  text-align: center;
  margin: 0px 5px 10px 0px;
}

.table-contain {
  width: 100%;
  overflow-x: scroll !important;
}
.table-contain::-webkit-scrollbar-track {
  background-color: transparent !important;
  height: 2px !important;
}
.table-contain::-webkit-scrollbar-thumb {
  background: #FFD004 !important;
  border-radius: 8px;
  height: 2px !important;
}
.table-contain::-webkit-scrollbar {
  width: 0px !important;
  height: 5px !important;
}
.table-contain .table th {
  background-color: rgba(0, 139, 210, 0.03);
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  border: 0px !important;
}
.table-contain .table td {
  color: #2A2A2A;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.table-contain .table td .button-contain {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.table-contain .table td .button-contain img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}

.small-invoice {
    width: 226.7mm;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 0px;
}
.small-invoice .content {
    width: 226.7mm;
    padding: 20px 10px;
    border: 1px solid rgba(0, 139, 210, 0.5);
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
}
.small-invoice .content .logo {
  width: 100px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0px 0px 10px 0px;
}
.small-invoice .content h4 {
  color: #333;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  margin: 0px 0px 10px 0px;
}
.small-invoice .content h2 {
  color: #FFD004;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
}
.small-invoice .content .table-contain {
  overflow: hidden !important;
  padding: 10px 0px 0px 0px !important;
  border-top: 1px dashed rgba(0, 139, 210, 0.5);
  border-bottom: 1px dashed rgba(0, 139, 210, 0.5);
}
.small-invoice .content .table-contain .table th, .small-invoice .content .table-contain .table td {
  min-width: unset !important;
  padding: 10px 0px !important;
  font-size: 8px !important;
  border: 0px !important;
  vertical-align: top;
}
.small-invoice .content .barcode {
  width: 100%;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border-bottom: 1px dashed rgba(0, 139, 210, 0.5);
  padding-bottom: 10px;
}
.small-invoice .content .qr-code {
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.profile-card {
  width: 100%;
  padding: 20px 15px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 139, 210, 0.1);
  border-radius: 10px;
  transition: all 0.3s linear;
}
.profile-card .image-content {
  width: 100px;
  height: 100px;
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 139, 210, 0.1);
  top: -50px;
  left: calc(50% - 50px);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.profile-card .image-content img {
  width: 80%;
  height: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.profile-card .content {
  width: 100%;
  margin-top: 50px !important;
}
.profile-card .content h4 {
  color: #2A2A2A;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  margin: 0px;
}
.profile-card .content .data {
  width: 100%;
  list-style: none;
  margin: 20px 0px;
  padding: 0px;
}
.profile-card .content .data li {
  width: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.profile-card .content .data li:last-child {
  margin: 0px !important;
}
.profile-card .content .data li i {
  color: #FFD004;
  font-size: 18px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}
.profile-card .content .data li span {
  color: #2A2A2A;
  font-size: 15px;
  font-weight: 500;
}
.profile-card .content .btn-contain {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
}
.profile-card .content .btn-contain a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}
.profile-card .content .btn-contain a:last-child {
  margin: 0px !important;
}
.profile-card .content .btn-contain a i {
  font-size: 18px;
  color: #7C0E6F;
}
.profile-card .content .btn-contain a img {
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.profile-card .content .btn-contain a.primary-btn {
  background-color: rgba(0, 139, 210, 0.1);
}
.profile-card .content .btn-contain a.second-btn {
  background-color: rgba(124, 14, 111, 0.1);
}
.profile-card .content .btn-contain a.delete-btn {
  background-color: rgba(209, 31, 31, 0.1);
}
.profile-card:hover {
  transform: translateY(-10px);
}

.navbar-brand-box {
  border-bottom: 1px solid #EFEFEF !important;
}
.navbar-brand-box .logo-lg img {
  width: 120px !important;
  height: 60px !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  -o-object-position: center !important;
     object-position: center !important;
}

.togller-shape img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

.bg-ligt {
  background-color: #fff !important;
}

.dark-theme .bg-ligt {
  background-color: #2A2A2A !important;
}

.casher-nav {
  width: 100%;
  padding: 0px 15px;
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.04);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.casher-nav .content {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: scroll;
}
.casher-nav .content .close-btn {
  width: 50px;
  height: 50px;
  background-color: #D11F1F;
  border-radius: 6px;
  display: none;
  align-content: center;
  align-items: center;
  justify-content: center;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}
.casher-nav .content .close-btn img {
  transform: rotate(45deg);
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.casher-nav .content .close-btn.appear-btn {
  display: flex;
}
.casher-nav .content::-webkit-scrollbar-thumb, .casher-nav .content::-webkit-scrollbar-track, .casher-nav .content::-webkit-scrollbar {
  width: 0px !important;
  background: transparent !important;
}
.casher-nav .content .logo-contain {
  display: flex;
  align-items: center;
  align-content: center;
}
.casher-nav .content .logo-contain .brand-name {
  width: 100px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.casher-nav .content .logo-contain .large-btn {
  width: 120px;
  height: 47px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border: 1px solid #FFD004;
  border-radius: 6px;
  color: #FFD004;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  -webkit-margin-start: 21px;
          margin-inline-start: 21px;
}
.casher-nav .content .logo-contain .large-btn:hover {
  background-color: #FFD004;
  color: #fff;
}
.casher-nav .content .logo-contain .small-btn {
  width: 47px;
  height: 47px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  -webkit-margin-start: 6px;
          margin-inline-start: 6px;
}
.casher-nav .content .logo-contain .small-btn img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.casher-nav .content .logo-contain .small-btn.blue-bk {
  background-color: #FFD004;
}
.casher-nav .content .logo-contain .small-btn.red-bk {
  background-color: #D11F1F;
}
.casher-nav .content .logo-contain .small-btn:hover img {
  -webkit-animation: fadeInLeft 0.5s linear;
          animation: fadeInLeft 0.5s linear;
}
.casher-nav .content .number-contain {
  display: flex;
  align-items: center;
  align-content: center;
  -webkit-padding-start: 64px;
          padding-inline-start: 64px;
}
.casher-nav .content .number-contain .number-btn {
  width: 118px;
  height: 47px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 6px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}
.casher-nav .content .number-contain .number-btn .num {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  line-height: 17px;
  color: #fff;
}
.casher-nav .content .number-contain .number-btn .count {
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
}
.casher-nav .content .number-contain .number-btn.blue-bk {
  background-color: #FFD004;
}
.casher-nav .content .number-contain .number-btn.blue-bk .num {
  background-color: rgba(255, 255, 255, 0.2);
}
.casher-nav .content .number-contain .number-btn.blue-bk .count {
  color: #fff;
}
.casher-nav .content .number-contain .number-btn.gray-bk {
  background-color: #EFEFEF;
}
.casher-nav .content .number-contain .number-btn.gray-bk .num {
  background-color: #c4c4c4;
}
.casher-nav .content .number-contain .number-btn.gray-bk .count {
  color: #A2A2A2;
}
.casher-nav .content .number-contain .add-more {
  display: flex;
  align-items: center;
  align-content: center;
  -webkit-margin-start: 7px;
          margin-inline-start: 7px;
  width: 105px;
}
.casher-nav .content .number-contain .add-more img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}
.casher-nav .content .number-contain .add-more span {
  color: #FFD004;
  font-size: 16px;
  font-weight: 900;
  line-height: 19px;
}
.buttons-contain .btn-link.active {
  background-color: #FFD004 !important;
  color: #fff !important;
}
.hamburger .line {
  width: 30px;
  height: 3px;
  background: #FFD004;
  display: block;
  margin: 8px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger.active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}
.hamburger.active .line:nth-child(2) {
  width: 0px;
}
.hamburger.active .line:nth-child(1), .hamburger.active .line:nth-child(3) {
  transition-delay: 0.3s;
}
.hamburger.active .line:nth-child(1) {
  transform: translateY(6.5px);
}
.hamburger.active .line:nth-child(3) {
  transform: translateY(-15px) rotate(90deg);
}
.buttons-contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: scroll;
  overflow-x: hidden;
  padding: 20px 0px;
}
.buttons-contain::-webkit-scrollbar-thumb, .buttons-contain::-webkit-scrollbar-track, .buttons-contain::-webkit-scrollbar {
  width: 0px !important;
  background: transparent !important;
}
.buttons-contain .btn-link {
  width: 120px;
  height: 47px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}
.buttons-contain .btn-link.blue-bk {
  background-color: #FFD004;
}
.buttons-contain .btn-link.border-bk {
  border: 1px solid #FFD004 !important;
  color: #FFD004 !important;
}
.buttons-contain .btn-link.yellow {
  color: #000;
  background-color: #FECC00;
}
.buttons-contain .btn-link.green-bk {
  background-color: #469248;
}
.buttons-contain .btn-link.red-bk {
  background-color: #D11F1F;
}

.gray-main {
  background-color: #FBF8F8 !important;
}

.casher-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 30px 20px;
  border-radius: 6px;
  background-color: #fff;
}
.casher-box .casher-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.casher-box h4 {
  color: #000;
  font-size: 20px;
  font-weight: 900;
  line-height: 24px;
  text-align: center;
  margin: 15px 0px 10px 0px;
  width: 100%;
}
.casher-box p {
  width: 100%;
  color: #A2A2A2;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #EFEFEF;
}
.casher-box .data {
  width: 100% !important;
  padding-top: 10px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}
.casher-box .data li {
  width: 100% !important;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.casher-box .data li span {
  color: #000;
  line-height: 19px;
  font-size: 16px;
}
.casher-box .data li span.name {
  font-weight: 500;
}
.casher-box .data li span.list {
  font-weight: 900 !important;
  font-size: 13px;
  margin-bottom: 10px;
}
.casher-box .buttons-contain {
  justify-content: space-between !important;
}
.casher-box .buttons-contain .border-bk {
  margin: 0px 10px !important;
}
.casher-box .form-group {
  width: 100%;
  height: 50px;
  position: relative;
  margin-bottom: 30px !important;
}
.casher-box .form-group .icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  right: 15px;
}
.casher-box .form-group .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s linear;
}
.casher-box .form-group .price {
  font-size: 16px;
  font-weight: 500;
  color: #FFD004;
  position: absolute;
  top: calc(50% - 12px);
  left: 15px;
}
.casher-box .form-group:hover img {
  transform: rotate(45deg);
}
.casher-box .form-group .form-control {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 139, 210, 0.03);
  border: 1px solid rgba(0, 139, 210, 0.06);
  border-radius: 6px;
  padding: 0px 50px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.casher-box .form-group .form-control::-moz-placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.casher-box .form-group .form-control:-ms-input-placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.casher-box .form-group .form-control::placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.casher-box .form-group .form-control:focus, .casher-box .form-group .form-control:hover {
  border: 1px solid rgba(0, 139, 210, 0.4);
}

.cook .box {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  padding: 0px !important;
  background-color: #fff;
}
.cook .box .order-type {
  width: 100%;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.cook .box .order-type .number, .cook .box .order-type .type {
  width: 100px;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.cook .box .order-type.green {
  background-color: #469248;
}
.cook .box .order-type.blue {
  background-color: #FFD004;
}
.cook .box .order-type.red {
  background-color: #D11F1F;
}
.cook .box .users {
  width: 100%;
  padding: 10px 15px;
}
.cook .box .users .flex-data {
  width: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
}
.cook .box .users .flex-data h4 {
  font-size: 17px;
  font-weight: 700;
  color: #FFD004;
}
.cook .box .users .flex-data h4 i {
  color: rgba(0, 139, 210, 0.5);
  font-size: 15px;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}
.cook .box .users .heading-data {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  padding: 10px 0px 0px;
}
.cook .box .users .heading-data i {
  font-size: 15px;
}
.cook .box .users .btn {
  color: #000;
  font-size: 15px;
}
.cook .box .users .btn:hover, .cook .box .users .btn:focus {
  text-decoration: none;
}
.cook .box .users .list {
  width: 100%;
  padding: 10px 15px;
  list-style: none;
  border-top: 1px solid #ddd;
}
.cook .box .users .list li {
  display: flex;
  align-items: center;
  align-content: center;
  padding: 6px 0px;
  border-bottom: 1px solid #f7f7f7;
}
.cook .box .users .list li span {
  color: #000;
  font-size: 18px;
  font-weight: 500;
}
.cook .box .users .list li span:first-child {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  color: #2A2A2A;
}
.cook .box .btn-primary-shape {
  width: 100% !important;
}

.menu {
  width: 100%;
  background-color: #FBF8F8;
}
.menu .menu-list {
  width: 382px;
  height: calc(100vh - 85px);
  padding-top: 0px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
}
.menu .menu-list .data-list {
  width: 100%;
  height: calc(100vh - 312px);
  overflow-y: scroll;
  overflow-x: hidden;
}
.menu .menu-list .data-list::-webkit-scrollbar-thumb, .menu .menu-list .data-list::-webkit-scrollbar-track, .menu .menu-list .data-list::-webkit-scrollbar {
  width: 0px !important;
  background: transparent !important;
}
.menu .menu-list .data-list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 25px;
  border-bottom: 1px solid #EFEFEF;
}
.menu .menu-list .data-list li:hover {
  background-color: rgba(0, 146, 137, 0.04);
}
.menu .menu-list .data-list li .content h4 {
  color: #000000;
  font-size: 16px;
  font-weight: 900;
  line-height: 19px;
  margin-bottom: 7px;
}
.menu .menu-list .data-list li .content span {
  font-size: 13px;
  padding: 0px 10px;
  line-height: 15px;
  font-weight: 500;
  color: #A2A2A2;
}
.menu .menu-list .data-list li .content span.border-shape {
  border-left: 1px solid #A2A2A2;
  border-right: 1px solid #A2A2A2;
}
.menu .menu-list .data-list li .price {
  color: #FFD004;
  font-size: 18px;
  font-weight: 900;
  line-height: 22px;
  margin: 0px;
}
.menu .menu-list .data-sheet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999 !important;
}
.menu .menu-list .bill-contain {
  width: 100%;
  padding: 5px 20px 0px;
  background-color: #fff;
}
.menu .menu-list .bill-contain .bill-shape {
  width: 100%;
  background-color: #FFD004;
  border-radius: 6px;
  padding: 0px 3px 3px;
  margin: 0px;
}
.menu .menu-list .bill-contain .bill-shape li {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 3px;
  padding: 0px 10px;
}
.menu .menu-list .bill-contain .bill-shape li:first-child {
  padding-top: 4px;
}
.menu .menu-list .bill-contain .bill-shape li:last-child {
  margin: 0px !important;
}
.menu .menu-list .bill-contain .bill-shape li span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.menu .menu-list .bill-contain .bill-shape li span:last-child {
  font-weight: 900;
}
.menu .menu-list .bill-contain .bill-shape li.total {
  padding: 5px 18px !important;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-color: #FECC00;
}
.menu .menu-list .bill-contain .bill-shape li.total span {
  color: #000000;
}
.menu .menu-list .bill-contain .bill-shape li.calulate {
  width: 100%;
  background-color: #fff;
  margin: 0px !important;
  padding: 20px 18px 10px !important;
  border-radius: 6px !important;
}
.menu .menu-list .bill-contain .bill-shape li.calulate .plus-men-buttons {
  width: 50px;
  height: 110px;
  background-color: #7C0E6F;
  border-radius: 6px;
  padding: 10px 8px;
}
.menu .menu-list .bill-contain .bill-shape li.calulate .plus-men-buttons a {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.menu .menu-list .bill-contain .bill-shape li.calulate .plus-men-buttons a img {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}
.menu .menu-list .bill-contain .bill-shape li.calulate .plus-men-buttons a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  bottom: 0;
  left: 0;
  z-index: -1;
}
.menu .menu-list .bill-contain .bill-shape li.calulate .plus-men-buttons a:last-child::after {
  display: none;
}
.menu .menu-list .bill-contain .bill-shape li.calulate .plus-men-buttons a:hover img {
  -webkit-animation: pulse 0.3s linear;
          animation: pulse 0.3s linear;
}
.menu .menu-list .bill-contain .bill-shape li.calulate .delete-product {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: #D11F1F;
  border-radius: 6px;
  margin-top: 10px;
}
.menu .menu-list .bill-contain .bill-shape li.calulate .delete-product img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.menu .menu-list .bill-contain .bill-shape li.calulate .delete-product:hover img {
  -webkit-animation: pulse 0.3s linear;
          animation: pulse 0.3s linear;
}
.menu .menu-list .bill-contain .bill-shape li.calulate .flex-number {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}
.menu .menu-list .bill-contain .bill-shape li.calulate .flex-number .number-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #FFD004;
  background-color: #fff;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: #FFD004;
  font-size: 20px;
  font-weight: 900;
  line-height: 24px;
  border-radius: 6px;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  margin-bottom: 10px;
  cursor: pointer;
}
.menu .menu-list .bill-contain .bill-shape li.calulate .flex-number .number-btn:hover {
  background-color: #FFD004;
  color: #fff;
}
.menu .menu-list .bill-contain .bill-shape li.calulate .flex-number .equal-btn {
  width: 100px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  border-radius: 6px;
  background-color: #FFD004;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  margin-bottom: 10px;
}
.menu .menu-list .bill-contain .bill-shape li.calulate .flex-number .equal-btn img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.menu .menu-list .bill-contain .bill-shape li.calulate .flex-number .equal-btn:hover img {
  -webkit-animation: pulse 0.3s linear;
          animation: pulse 0.3s linear;
}
.menu .menu-list .payment {
  color: #000000;
  font-size: 18px;
  font-weight: 900;
  line-height: 22px;
  margin: 12px 0px !important;
}
.menu .menu-list .button-contain {
  width: 100%;
  padding: 0px 0px 5px 0px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
}
.menu .menu-list .button-contain .small-btn {
  width: 65px;
  height: 36px;
  border: 1px solid #FFD004;
  border-radius: 6px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: #fff;
  position: relative;
  z-index: 9;
  color: #FFD004;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  overflow: hidden;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}
.menu .menu-list .button-contain .small-btn::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  background-color: #FFD004;
  top: 0;
  left: 0;
  border-radius: 6px;
  z-index: -1;
  transition: all 0.2s linear;
}
.menu .menu-list .button-contain .small-btn:hover {
  color: #fff;
  border-color: transparent !important;
}
.menu .menu-list .button-contain .small-btn:hover::after {
  width: 100%;
}
.menu .menu-list .button-contain .large-btn {
  width: 140px;
  height: 36px;
  background-color: #FFD004;
  border-radius: 4px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.menu .menu-list .button-contain .large-btn img {
  width: 24px;
  height: 24px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 4px;
          margin-inline-end: 4px;
}
.menu .menu-list .button-contain .large-btn span {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
}
.menu .menu-list .button-contain .large-btn:hover img {
  -webkit-animation: pulse 0.3s linear;
          animation: pulse 0.3s linear;
}
.menu .menu-list .add-to-ketchine {
  width: 100%;
  height: 36px;
  background-color: #FECC00;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-top: 12px;
}
.menu .buttons-contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: scroll;
  overflow-x: hidden;
  padding: 0px 0px 5px;
}
.menu .buttons-contain::-webkit-scrollbar-thumb, .menu .buttons-contain::-webkit-scrollbar-track, .menu .buttons-contain::-webkit-scrollbar {
  width: 0px !important;
  background: transparent !important;
}
.menu .buttons-contain .btn-link {
  width: 120px;
  height: 47px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}
.menu .buttons-contain .btn-link.blue-bk {
  background-color: #FFD004;
}
.menu .buttons-contain .btn-link.green-bk {
  background-color: #469248;
}
.menu .buttons-contain .btn-link.red-bk {
  background-color: #D11F1F;
}
.menu .proucts-contain {
  width: 100%;
  padding: 10px 0px;
  height: 123vh;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-top: 96px;
}
.menu .proucts-contain::-webkit-scrollbar-thumb, .menu .proucts-contain::-webkit-scrollbar-track, .menu .proucts-contain::-webkit-scrollbar {
  width: 0px !important;
  background: transparent !important;
}
.menu .proucts-contain .nav {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  overflow-x: scroll;
  overflow-y: hidden;
  padding-bottom: 0px !important;
  flex-wrap: nowrap;
  border: 0px !important;
}
.menu .proucts-contain .nav::-webkit-scrollbar-thumb, .menu .proucts-contain .nav::-webkit-scrollbar-track, .menu .proucts-contain .nav::-webkit-scrollbar {
  width: 0px !important;
  background: transparent !important;
}
.menu .proucts-contain .nav .nav-item {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}
.menu .proucts-contain .nav .nav-item .nav-link {
  width: 120px;
  height: 47px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
}
.menu .proucts-contain .nav .nav-item .nav-link.blue-bk {
  background-color: #FFD004;
}
.menu .proucts-contain .nav .nav-item .nav-link.purble-bk {
  background-color: #7C0E6F;
}
.menu .proucts-contain .nav .nav-item .nav-link.gray-bk {
  background-color: #757474;
}
.menu .proucts-contain .nav .nav-item .nav-link.semi-gray-bk {
  background-color: #959594;
}
.menu .proucts-contain .nav .nav-item .nav-link.yellow-bk {
  background-color: #F09B0C;
}
.menu .proucts-contain .nav .nav-item .nav-link.green-bk {
  background-color: #469248;
}
.menu .proucts-contain .product-box {
  width: 100%;
  border: 1px solid #FBF8F8;
  background-color: #fff;
  padding: 15px 6px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.menu .proucts-contain .product-box img {
  width: 120px;
  height: 80px;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.menu .proucts-contain .product-box h4 {
  color: #000000;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  margin: 10px 0px;
}
.menu .proucts-contain .product-box p {
  color: #A2A2A2;
  font-size: 13px;
  font-weight: 500;
  line-height: 15px;
  text-align: center;
  margin-bottom: 10px;
}
.menu .proucts-contain .product-box .button-contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  overflow-x: scroll;
  overflow-y: hidden;
}
.menu .proucts-contain .product-box .button-contain::-webkit-scrollbar-thumb, .menu .proucts-contain .product-box .button-contain::-webkit-scrollbar-track, .menu .proucts-contain .product-box .button-contain::-webkit-scrollbar {
  width: 0px !important;
  background: transparent !important;
}
.menu .proucts-contain .product-box .button-contain a {
  width: 50px;
  height: 60px;
  background-color: #fff;
  border: 1px solid #FFD004;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-top: 10px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}
.menu .proucts-contain .product-box .button-contain a:last-child {
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
}
.menu .proucts-contain .product-box .button-contain a span {
  font-size: 13px;
  font-weight: 700;
}
.menu .proucts-contain .product-box .button-contain a span.blue {
  color: #FFD004;
}
.menu .proucts-contain .product-box .button-contain a span.price {
  color: #000000;
  font-weight: 700;
}
.menu .proucts-contain .product-box .button-contain a:hover {
  background-color: #FFD004;
}
.menu .proucts-contain .product-box .button-contain a:hover span {
  color: #fff !important;
}
.menu .offers-list {
  width: 100%;
  position: absolute;
  bottom: 200px;
  height: 200px !important;
  left: 0px;
  z-index: 999;
  background-color: #fff !important;
}
.menu .offers-list .head {
  width: 100%;
  padding: 6px 10px !important;
  background-color: #FFD004;
  color: #fff;
}
.menu .data-width-prodcut {
  max-width: calc(100% - 382px) !important;
  margin-right: auto !important;
}
.menu .open-menu {
  width: 100%;
  height: 50px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 98 !important;
  background-color: #FFD004;
  display: none;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}
.menu .open-menu .contain {
  display: flex;
  align-items: center;
  align-content: center;
}
.menu .open-menu .contain img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}
.menu .open-menu .contain span {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.menu .open-menu .btn-link {
  width: 50px;
  height: 50px;
  background-color: #469248;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.calcModal {
  width: 311px !important;
}
.calcModal .modal-body {
  padding: 20px !important;
}

.calulate {
  width: 100%;
  background-color: #fff;
  margin: 0px !important;
  padding: 5px 18px 5px !important;
  border-radius: 6px !important;
}
.calulate .plus-men-buttons {
  width: 50px;
  height: 90px;
  background-color: #7C0E6F;
  border-radius: 6px;
  padding: 10px 8px;
}
.calulate .plus-men-buttons a {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.calulate .plus-men-buttons a img {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0px !important;
}
.calulate .plus-men-buttons a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  bottom: 0;
  left: 0;
  z-index: -1;
}
.calulate .plus-men-buttons a:last-child::after {
  display: none;
}
.calulate .plus-men-buttons a:hover img {
  -webkit-animation: pulse 0.3s linear;
          animation: pulse 0.3s linear;
}
.calulate .delete-product {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: #D11F1F;
  border-radius: 6px;
  margin-top: 10px;
}
.calulate .delete-product img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0px !important;
}
.calulate .delete-product:hover img {
  -webkit-animation: pulse 0.3s linear;
          animation: pulse 0.3s linear;
}
.calulate .flex-number {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}
.calulate .flex-number .number-btn {
  width: 58px;
  height: 40px;
  border: 1px solid #FFD004;
  background-color: #fff;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: #FFD004;
  font-size: 20px;
  font-weight: 900;
  line-height: 24px;
  border-radius: 6px;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  margin-bottom: 10px;
  cursor: pointer;
}
.calulate .flex-number .number-btn:hover {
  background-color: #FFD004;
  color: #fff;
}
.calulate .flex-number .equal-btn {
  width: 120px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  border-radius: 6px;
  background-color: #FFD004;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  margin-bottom: 10px;
}
.calulate .flex-number .equal-btn img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: 0px !important;
}
.calulate .flex-number .equal-btn:hover img {
  -webkit-animation: pulse 0.3s linear;
          animation: pulse 0.3s linear;
}

.inovice-data-contain {
  width: 100%;
  padding: 20px 0px 0px;
}
.inovice-data-contain .logo {
  width: 100%;
  height: 177px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
}
.inovice-data-contain .heading {
  width: 100%;
  text-align: center;
  font-size: 60px;
  margin: 0px 0px 5px 0px;
  font-weight: 900;
}
.inovice-data-contain .heading .primary {
  color: var(--primary) !important;
}
.inovice-data-contain .heading .secondary {
  color: var(--secondary) !important;
}
.inovice-data-contain .logo-content {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
.inovice-data-contain .logo-content h4 {
  color: #000;
  font-size: 50px;
  font-weight: 700;
}
.inovice-data-contain .inovice-name {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inovice-data-contain .inovice-name.invoice-footer {
  width: 30%;
  float: left;
}
.inovice-data-contain .inovice-name.flex-col-shape {
  flex-direction: row !important;
}
.inovice-data-contain .inovice-name.flex-col-shape li {
  border-left: 1px solid #444 !important;
  padding: 0px 10px 0px 10px !important;
}
.inovice-data-contain .inovice-name.flex-col-shape li:last-child {
  border-left: none !important;
}
.inovice-data-contain .inovice-name li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  margin-bottom: 5px;
  width: 100%;
  border: 0px !important;
}
.inovice-data-contain .inovice-name li.border {
  border-bottom: 1px solid rgba(68, 68, 68, 0.2) !important;
}
.inovice-data-contain .inovice-name li .name {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}
.inovice-data-contain .inovice-table {
  width: 100% !important;
}
.inovice-data-contain .inovice-table.table-bordered {
  border: 1px solid rgba(68, 68, 68, 0.4) !important;
}
.inovice-data-contain .inovice-table.table-bordered th, .inovice-data-contain .inovice-table.table-bordered td {
  border: 1px solid rgba(68, 68, 68, 0.4) !important;
}
.inovice-data-contain .inovice-table th {
  background-color: #333;
  text-align: center;
}
.inovice-data-contain .inovice-table th .name {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.inovice-data-contain .inovice-table th .name.inline {
  display: inline-block !important;
}
.inovice-data-contain .inovice-table th .name.inline:first-child {
  margin-left: 40px;
}
.inovice-data-contain .inovice-table th .name.inline:last-child {
  margin-right: 40px;
}
.inovice-data-contain .inovice-table td {
  height: 65px !important;
}
.inovice-data-contain .inovice-table .offer-cell {
  height: 70px !important;
}
.inovice-data-contain .inovice-table .contain li {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: space-between;
  padding: 0px 20px;
}
.inovice-data-contain .inovice-table .contain li span {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 500;
}
.inovice-data-contain .inovice-table p {
  margin: 0px;
}
.inovice-data-contain .data {
  font-size: 15px;
  font-weight: 500;
  color: #444 !important;
  margin-bottom: 5px;
}
.inovice-data-contain .colorData {
  color: var(--primary);
  font-size: 15px;
  font-weight: 900;
  margin: 0px;
}
.inovice-data-contain .black-data {
  font-size: 15px;
  font-weight: 500;
  color: #000 !important;
  margin-bottom: 5px;
}
.inovice-data-contain .bold-list {
  list-style: disc;
  padding: 0px 20px;
}
.inovice-data-contain .bold-list li {
  font-size: 15px;
  font-weight: 500;
  color: #000 !important;
  margin-bottom: 5px;
}
.inovice-data-contain .done-footer {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  text-align: center;
  float: left;
}
.inovice-data-contain .done-footer li {
  font-size: 15px;
  font-weight: 900;
  color: #000 !important;
  margin-bottom: 5px;
}
.inovice-data-contain .copyrights {
  padding: 20px 0px;
  background-color: #fff;
  width: 100%;
  position: relative;
  top: 81px;
}
.inovice-data-contain .copyrights .qr-contain {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-top: -50px;
}
.inovice-data-contain .copyrights .qr-code {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #fff;
  -o-object-position: center;
     object-position: center;
}
.inovice-data-contain .copyrights .content p {
  color: #000;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}

.login {
  width: 100%;
  padding: 120px 0px;
  height: 100vh;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: #FBF8F8;
  position: relative;
  z-index: 9;
}
.login::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/login_pattern.png") top right/cover no-repeat;
  top: 0;
  right: 0px;
  z-index: -1;
}
.login .form-data {
  width: 100%;
  background-color: #FFD004;
  border-radius: 6px;
  padding: 30px 6px 6px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.login .form-data::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/login_pattern.png") top right/cover no-repeat;
  top: 0;
  right: 0px;
  z-index: -1;
}
.login .form-data .logo {
  width: 48px;
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
}
.login .form-data h4 {
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  line-height: 30px;
  margin: 10px 0px;
}
.login .form-data p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  margin-bottom: 30px;
}
.login .form-data .form-contain {
  width: 100%;
  margin: auto;
  background-color: #fff;
  border-radius: 6px 6px;
  padding: 60px 96px;
}
.login .form-data .form-contain .form-group {
  width: 100%;
  height: 50px;
  position: relative;
  margin: 0px !important;
}
.login .form-data .form-contain .form-group .icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  right: 15px;
}
.login .form-data .form-contain .form-group .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s linear;
}
.login .form-data .form-contain .form-group:hover img {
  transform: rotate(45deg);
}
.login .form-data .form-contain .form-group .form-control {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 139, 210, 0.03);
  border: 1px solid rgba(0, 139, 210, 0.06);
  border-radius: 6px;
  padding: 0px 50px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.login .form-data .form-contain .form-group .form-control::-moz-placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.login .form-data .form-contain .form-group .form-control:-ms-input-placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.login .form-data .form-contain .form-group .form-control::placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.login .form-data .form-contain .form-group .form-control:focus, .login .form-data .form-contain .form-group .form-control:hover {
  border: 1px solid rgba(0, 139, 210, 0.4);
}
.login .form-data .links {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  margin: 20px 0px 24px 0px;
}
.login .form-data .links .wrapper {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.login .form-data .links a {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 19px;
}
.login .form-data .btn-primary-shape {
  width: 100% !important;
}

.login-navbar {
  width: 100%;
  padding: 10px 0px;
  background-color: #fff;
}
.login-navbar .content {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.login-navbar .content img {
  width: 120px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.login-navbar .content .language {
  width: 50px;
  height: 50px;
  background-color: #FFD004;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.login-navbar .content .language:hover {
  background-color: #F09B0C;
  color: #fff;
}

.modal .form-contain {
  width: 100%;
  margin: auto;
  background-color: #fff;
  border-radius: 6px 6px;
}
.modal .form-contain .form-group {
  width: 100%;
  height: 50px;
  position: relative;
  margin: 20px 0px;
}
.modal .form-contain .form-group .icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  right: 15px;
}
.modal .form-contain .form-group .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s linear;
}
.modal .form-contain .form-group:hover img {
  transform: rotate(45deg);
}
.modal .form-contain .form-group .form-control {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 139, 210, 0.03);
  border: 1px solid rgba(0, 139, 210, 0.06);
  border-radius: 6px;
  padding: 0px 50px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.modal .form-contain .form-group .form-control::-moz-placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.modal .form-contain .form-group .form-control:-ms-input-placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.modal .form-contain .form-group .form-control::placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.modal .form-contain .form-group .form-control:focus, .modal .form-contain .form-group .form-control:hover {
  border: 1px solid rgba(0, 139, 210, 0.4);
}

.copyrights-contain {
  background-color: #333 !important;
  -webkit-padding-start: 40px !important;
          padding-inline-start: 40px !important;
  padding-top: 10px !important;
}
.copyrights-contain p {
  color: #fff !important;
}

.main-layout-shape {
  background-color: rgba(0, 139, 210, 0.04);
}

.theme {
  padding: 0px;
  background-color: transparent;
  border-color: transparent;
  outline: none;
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  width: 100px;
  height: 44px;
  background-color: #FFD004;
  border-radius: 40px;
  justify-content: space-between;
  z-index: 99;
  padding: 0px 12px;
  cursor: pointer;
}
.theme .fa-moon {
  color: #000;
}
.theme .fa-sun {
  color: #fff;
}
/*.theme::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #F09B0C;
  border-radius: 50%;
  left: 0%;
  right: unset !important;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: 0.2s;
}*/
.theme.darkmode::after {
  left: unset !important;
  right: 0% !important;
}
.theme.darkmode .fa-sun {
  color: #000;
}
.theme.darkmode .fa-moon {
  color: #fff;
}

.table-contain .table th {
  font-size: 13px !important;
}
.table-contain .table td {
  font-size: 12px !important;
}
.table-contain .table th, .table-contain .table td {
  min-width: 190px !important;
}

#sidebar-menu ul li a {
  color: #000 !important;
  font-weight: 700;
}

#sidebar-menu ul li a i {
  color: #000 !important;
}

.dark-mode {
  background-color: #333 !important;
}
.dark-mode::-webkit-scrollbar-track {
  background-color: #333 !important;
}
.dark-mode::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FFD004, #333) !important;
  border-radius: 8px;
}
.dark-mode::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #333, #FFD004) !important;
}
.dark-mode #page-topbar, .dark-mode .bg-ligt, .dark-mode .box, .dark-mode .card, .dark-mode .dropdown-menu,
.dark-mode .casher-box, .dark-mode .casher-nav, .dark-mode .menu .menu-list,
.dark-mode .form-contain .form-group .form-control, .dark-mode .calulate .flex-number .number-btn,
.dark-mode .menu .menu-list .bill-contain, .dark-mode .profile-card,
.dark-mode .menu .proucts-contain .product-box,
.dark-mode .profile-card .image-content,
.dark-mode .form-contain .wrapper .radio-check,
.dark-mode .modal-content, .dark-mode .modal .form-contain,
.dark-mode .login-navbar {
  background-color: #192834 !important;;
  box-shadow: 0px 2px 4px rgba(0, 139, 210, 0.04) !important;
}
.dark-mode .modal .form-contain {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0) !important;
}
.dark-mode .navbar-brand-box, .dark-mode .box, .dark-mode .card, .dark-mode .dropdown-menu,
.dark-mode .form-contain .form-group .form-control,
.dark-mode .menu .proucts-contain .product-box, .dark-mode .modal-content,
.dark-mode .profile-card, .dark-mode .dropdown-menu .form-group .form-control,
.dark-mode .box .box-icon, .dark-mode .card .box-icon {
  border-color: rgba(0, 139, 210, 0.04) !important;
}
.dark-mode .mm-active > a,
.dark-mode .navbar-header .dropdown.show .header-item,
.dark-mode .dropdown-item:focus, .dark-mode .dropdown-item:hover {
  background-color: rgba(0, 139, 210, 0.04) !important;
}
.dark-mode .main-content, .dark-mode .menu .menu-list .button-contain .small-btn,
.dark-mode .calulate,
.dark-mode .menu .proucts-contain .product-box .button-contain a,
.dark-mode .login, .dark-mode .dropdown-menu .form-group .form-control,
.dark-mode .login .form-data .form-contain,
.dark-mode .modal .form-group .form-control, .dark-mode .offers-list,
.dark-mode .box .box-icon, .dark-mode .card .box-icon {
  background-color: hsl(217.02deg 100% 5.31%)!important;
}
.dark-mode .app-search .form-control::-moz-placeholder {
  color: #fff !important;
}
.dark-mode .app-search .form-control:-ms-input-placeholder {
  color: #fff !important;
}
.dark-mode .noti-icon i,
.dark-mode .app-search span,
.dark-mode .dropdown button span,
.dark-mode .dropdown button i,
.dark-mode .app-search .form-control::placeholder,
.dark-mode .box h4, .dark-mode .card h4,
.dark-mode .dropdown-item, .dark-mode .profile-card .content .data li span,
.dark-mode .dropdown-item span, .dark-mode .menu .proucts-contain .product-box h4,
.dark-mode .dropdown-item i, .dark-mode .menu .menu-list .payment,
.dark-mode .casher-box h4, .dark-mode .menu .menu-list .data-list li .content h4,
.dark-mode .casher-box .data li span, .dark-mode .dark-color, .dark-mode .cook .box .users .btn,
.dark-mode .cook .box .users .heading-data i, .dark-mode .cook .box .users .list li span,
.dark-mode .form-contain .wrapper .radio-title, .dark-mode .login .form-data .links a,
.dark-mode .modal-body h4 {
  color: #fff !important;
}
.dark-mode .casher-box .form-group .form-control {
  background-color: #333 !important;
}
.dark-mode .casher-box .form-group .form-control::-moz-placeholder {
  color: #f8f8f8;
}
.dark-mode .casher-box .form-group .form-control:-ms-input-placeholder {
  color: #f8f8f8;
}
.dark-mode .casher-box .form-group .form-control::placeholder {
  color: #f8f8f8;
}
.dark-mode .form-contain .form-group .form-control::-moz-placeholder {
  color: #f8f8f8 !important;
}
.dark-mode .form-contain .form-group .form-control:-ms-input-placeholder {
  color: #f8f8f8 !important;
}
.dark-mode .app-search .form-control,
.dark-mode #sidebar-menu ul li a,
.dark-mode #sidebar-menu ul li a i,
.dark-mode .casher-box p, .dark-mode .menu .proucts-contain .product-box .button-contain a span.price,
.dark-mode .table-contain .table td,
.dark-mode .form-contain .form-group label span,
.dark-mode .form-contain .form-group .form-control,
.dark-mode .form-contain .form-group .form-control::placeholder {
  color: #f8f8f8 !important;
}
.dark-mode .table-contain .table th {
  background-color: rgba(0, 139, 210, 0.5);
  color: #fff !important;
}
.dark-mode .menu {
  background-color: transparent !important;
}
.dark-mode .profile-card .content .btn-contain a.delete-btn {
  background-color: rgba(209, 31, 31, 0.3);
}
.dark-mode .profile-card .content .btn-contain a.second-btn {
  background-color: rgba(124, 14, 111, 0.3);
}
.dark-mode .profile-card .content .btn-contain a.primary-btn {
  background-color: rgba(0, 139, 210, 0.3);
}
.dark-mode input[type=file] {
  color: #fff;
}
.dark-mode .cook .box .users .flex-data,
.dark-mode .cook .box .users .list,
.dark-mode .cook .box .users .list li {
  border-color: #444;
}
.dark-mode input::-moz-placeholder {
  color: #fff !important;
}
.dark-mode input:-ms-input-placeholder {
  color: #fff !important;
}
.dark-mode input::placeholder {
  color: #fff !important;
}
.dark-mode .small-invoice {
  width: 44mm;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  direction: rtl;
}
.dark-mode .small-invoice .content {
  width: 44mm;
  padding: 10px 10px;
  border: 2px solid rgba(0, 139, 210, 0.5);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.dark-mode .small-invoice .content .logo {
  width: 120px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0px 0px 5px 0px;
}
.dark-mode .small-invoice .content h4 {
  color: #000;
  font-size: 0.9em;
  text-align: center;
  margin: 0px 0px 5px 0px;
}
.dark-mode .small-invoice .content h3 {
  font-size: 0.5em;
  color: #000;
  text-align: center;
  margin: 0px 0px 5px 0px;
}
.dark-mode .small-invoice .content h2 {
  color: #FFD004;
  font-size: 0.9em;
  font-weight: 500;
  text-align: center;
}
.dark-mode .small-invoice .content .table-contain {
  overflow: hidden !important;
  padding: 5px 0px 0px 0px !important;
  border-top: 2px dashed rgba(0, 139, 210, 0.5);
  border-bottom: 2px dashed rgba(0, 139, 210, 0.5);
  width: 100%;
}
.dark-mode table {
  width: 100%;
}
.dark-mode .small-invoice .content .table-contain .table th, .dark-mode .small-invoice .content .table-contain .table td {
  min-width: unset !important;
  padding: 5px 0px !important;
  font-size: 0.5em !important;
  border: 0px !important;
  vertical-align: top;
  text-align: center;
  font-weight: bold;
}
.dark-mode .small-invoice .content .table-contain .table td {
  font-size: 0.3em !important;
  vertical-align: middle;
}
.dark-mode .small-invoice .content .barcode {
  width: 100%;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  border-bottom: 1px dashed rgba(0, 139, 210, 0.5);
  padding-bottom: 10px;
}
.dark-mode .small-invoice .content .qr-code {
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.dark-mode .filer-list a {
  color: #fff;
}
.dark-mode .more-sell li .contain .content h2 {
  color: #fff;
}
.dark-mode .more-sell li .contain .content .price {
  color: #fff;
}
.dark-mode .more-sell li {
  border-color: #f7f7f7;
}

@media (max-width: 999px) {
  .page-title-box {
    flex-direction: column;
  }
  .page-title-box h4 {
    margin-bottom: 20px !important;
  }
  .menu .data-width-prodcut {
    max-width: unset !important;
    margin-right: unset !important;
  }
  .theme {
    width: 57px;
    height: 27px;
    padding: 0px 7px;
  }
  .theme::after {
    display: none;
  }
  .casher-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999 !important;
  }
  .menu .menu-list {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    right: -100%;
    z-index: 99 !important;
    transition: all 0.3s linear;
    padding-top: 84px !important;
    overflow-y: scroll !important;
  }
  .menu .menu-list.active-list {
    right: 0px;
  }
  .menu .proucts-contain {
    height: unset !important;
    overflow: unset !important;
    padding-top: 130px !important;
  }
  .menu .open-menu {
    display: flex !important;
  }
  .menu .proucts-contain .product-box .button-contain a span {
    font-size: 11px !important;
  }
  .menu .proucts-contain .product-box .button-contain a {
    width: 66px !important;
    -webkit-margin-end: 5px !important;
            margin-inline-end: 5px !important;
  }
  .calulate .flex-number .number-btn {
    width: 55px !important;
  }
  .calulate .flex-number .equal-btn {
    width: 113px !important;
  }
  .login .form-contain {
    padding: 20px 10px !important;
  }
  .casher-box .buttons-contain {
    flex-direction: column !important;
  }
  .casher-box .buttons-contain .btn-link.yellow {
    margin: 10px 0px 0px !important;
  }
  .dropdown {
    margin: 0px 5px !important;
  }
  .dropdown button {
    padding: 0px !important;
  }
  .dropdown-menu .form-group .input-group-append .btn {
    padding: 0.375rem 0.75rem !important;
  }
}
.number-data {
  display: flex;
  align-items: center;
  align-content: center;
  margin: 10px 0px;
}
.number-data .add-btn {
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  align-content: center;
  border-radius: 5px;
  justify-content: center;
}
.number-data .add-btn.large-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 20px;
}
.number-data .add-btn.large-btn span {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.number-data .add-btn img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.number-data input {
  width: 40px;
  height: 30px;
  border: 1px solid #ccc;
  text-align: center;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  margin: 0px 10px;
}
.number-data.flex-end-data {
  justify-content: flex-end !important;
}

.filer-list {
  display: flex;
  align-items: center;
  align-content: center;
  list-style: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #ddd;
}
.filer-list li {
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}
.filer-list li:last-child {
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
}
.filer-list li a {
  font-size: 15px;
  color: #000;
  padding: 0px 10px 10px;
  font-weight: 700;
  position: relative;
  display: block;
  z-index: 9;
}
.filer-list li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #FFD004;
  bottom: -2px;
  left: 0px;
  z-index: -1;
  transition: all 0.2s linear;
  transform: scaleX(0);
}
.filer-list li a:hover, .filer-list li a.active {
  color: #FFD004;
}
.filer-list li a:hover::after, .filer-list li a.active::after {
  transform: scale(1);
}

.more-sell {
  width: 100%;
}
.more-sell li {
  width: 100%;
  padding: 20px 0px;
  display: flex;
  align-items: center;
  align-content: center;
  border-bottom: 1px solid rgba(136, 136, 136, 0.5333333333);
  justify-content: space-between;
}
.more-sell li:first-child {
  padding-top: 0px !important;
}
.more-sell li:last-child {
  padding-bottom: 0px;
  border-bottom: 0px;
}
.more-sell li .title {
  font-size: 18px;
  font-weight: 700;
  color: #FFD004;
}
.more-sell li .contain {
  display: flex;
  align-items: center;
  align-content: center;
}
.more-sell li .contain img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  -o-object-position: top;
     object-position: top;
}
.more-sell li .contain .content {
  -webkit-margin-start: 20px;
          margin-inline-start: 20px;
  margin: 0px !important;
}
.more-sell li .contain .content h2 {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}
.more-sell li .contain .content .alert {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  padding: 2px 10px;
  margin: 0px !important;
}
.more-sell li .price {
  font-size: 18px;
  font-weight: 900;
  color: #000;
}/*# sourceMappingURL=style.css.map */



/*# new styles from misara 13/12/2022 */
.btn-link:hover {
    text-decoration: none;
}

button {
    outline: none;
    border: 0px;
}
.buttons-contain .btn-link.border-bk {
    background: #fff !important;

}
.small-invoice {
    width: 78mm;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 20px 0px;
    margin: auto;
}
.custom-check-box {
    display: block;
    width: 40px;
    height: 20px;
    position: relative;
}
.custom-check-box .check-input {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: 9;
    opacity: 0;
    cursor: pointer;
}
.custom-check-box .check-span {
    position: relative;
    display: block;
    width: 40px;
    height: 20px;
    background-color: rgba(73, 73, 73, 0.75);
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    transition: ease-in-out 0.5s;
}
.custom-check-box .check-span::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    background-color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transition: all 0.3s linear;
}
.custom-check-box .check-span::before {
    content: "";
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transition: all 0.3s linear;
    transform: translateX(50px);
}

.check-input:checked ~ .check-span {
    background-color: #FFD004;
}

.check-input:checked ~ .check-span::after {
    transform: translateX(-50px) !important;
}

.check-input:checked ~ .check-span::before {
    transform: translateX(0px) !important;
}
.primary-box h4 {
    font-size: 15px !important;
}

.number-box {
  width: 100%;
  padding: 12px;
  border-radius: 9px;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  transition: all 0.3s linear;
  align-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .number-box {
    flex-direction: column;
    gap: 10px;
  }
}
.number-box.blue-color {
  background-color: #F0F1FF;
}
.number-box.blue-color .number span {
  color: #FFD004;
}
.number-box.blue-color .number img {
  filter: invert(34%) sepia(72%) saturate(4568%) hue-rotate(216deg) brightness(93%) contrast(96%);
}
.number-box.yellow-color {
  background-color: #FEF9E7;
}
.number-box.yellow-color .number span {
  color: #F9C411;
}
.number-box.yellow-color .number img {
  filter: invert(88%) sepia(15%) saturate(6934%) hue-rotate(351deg) brightness(103%) contrast(95%);
}
.number-box.orange-color {
  background-color: #FFF6EE;
}
.number-box.orange-color .number span {
  color: #F88F2D;
}
.number-box.orange-color .number img {
  filter: invert(69%) sepia(18%) saturate(4841%) hue-rotate(339deg) brightness(100%) contrast(95%);
}
.number-box.red-color {
  background-color: #FFEFEF;
}
.number-box.red-color .number span {
  color: #FF0000;
}
.number-box.red-color .number img {
  filter: invert(23%) sepia(88%) saturate(7334%) hue-rotate(357deg) brightness(98%) contrast(113%);
}
.number-box.green-color {
  background-color: #ECF9F5;
}
.number-box.green-color .number span {
  color: #10B981;
}
.number-box.green-color .number img {
  filter: invert(68%) sepia(25%) saturate(7387%) hue-rotate(118deg) brightness(91%) contrast(87%);
}
.number-box.dark-color {
  background-color: #EBEBEC;
}
.number-box.dark-color .number span {
  color: #292D32;
}
.number-box.dark-color .number img {
  filter: invert(12%) sepia(4%) saturate(2147%) hue-rotate(174deg) brightness(88%) contrast(82%);
}
@media (max-width: 992px) {
  .number-box {
    padding: 10px 6px;
    border-radius: 4px;
  }
}
.number-box .image-content {
  width: 36px;
  height: 36px;
}
.number-box .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.number-box .contain {
  width: calc(100% - 48px);
}
@media (max-width: 992px) {
  .number-box .contain {
    width: 100% !important;
  }
}
.number-box .contain .flex-data {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 5px;
}
.number-box .contain .flex-data .price {
  font-size: 13px;
  font-weight: 700;
  margin: 0px;
  color: #12161C;
}
.number-box .contain .flex-data .number {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 992px) {
  .number-box .contain .flex-data .number {
    gap: 4px;
  }
}
.number-box .contain .flex-data .number span {
  font-size: 14px;
  font-weight: 700;
}
.number-box .contain .flex-data .number img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 992px) {
  .number-box .contain .flex-data .number img {
    width: 14px;
    height: 14px;
  }
}
.number-box .contain .desc {
  text-align: start !important;
  margin: 0px;
}
.number-box:hover {
  transform: translateY(-10px);
}
.number-box:hover .image-content img {
  animation: tada 0.3s linear alternate;
}

.speed-box {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 6px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  transition: all 0.3s linear;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .speed-box {
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    gap: 10px;
  }
}
.speed-box img {
  width: 40px;
  height: 40px;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
}
.speed-box p {
  color: #000;
  font-size: 15px;
  font-weight: 900;
  margin: 0px;
  width: calc(100% - 50px);
}
@media (max-width: 992px) {
  .speed-box p {
    width: 100%;
  }
}
.speed-box:hover {
  transform: translateY(-10px);
}
.speed-box:hover img {
  animation: tada 0.3s linear both;
}
.speed-box:hover p {
  color: #FFD004;
}

.price-list {
  width: 100%;
  padding: 0px;
  margin: 0px;
  height: 400px;
  overflow-y: scroll;
  padding-inline-end: 15px;
}
.price-list li {
  width: 100%;
  padding: 10px 0px;
  border-bottom: 1px solid #E9EFFD;
  list-style: none;
}
.price-list li:last-child {
  padding-bottom: 0px;
  border-bottom: 0px;
}
.price-list li:first-child {
  padding-top: 0px;
}
.price-list li a {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.price-list li a .name {
  font-size: 15px;
  font-weight: 500;
  color: #808080;
}
.price-list li a .number {
  font-size: 15px;
  font-weight: 900;
  color: #000;
}
.price-list li a:hover .number {
  color: #FFD004;
}

.custom-btn {
  padding: 3px 10px;
  height: 30px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 50px;
}
.custom-btn span {
  font-size: 15px;
  font-weight: 700;
}
.custom-btn img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.custom-btn.primary-btn {
  border: 1px solid #FFD004;
}
.custom-btn.primary-btn span {
  color: #FFD004;
}
.custom-btn.dark-border {
  border: 1px solid #DEDEE3;
}
.custom-btn.dark-border span {
  color: #DEDEE3;
}
.custom-btn.primary-bk {
  border: 1px solid #FFD004;
  background-color: #FFD004;
}
.custom-btn.primary-bk span {
  color: #fff;
}
.custom-btn.red-btn {
  border: 1px solid #D11F1F;
}
.custom-btn.red-btn span {
  color: #D11F1F;
}
.custom-btn.red-bk {
  border: 1px solid #D11F1F;
  background-color: #D11F1F;
}
.custom-btn.red-bk span {
  color: #fff;
}
.custom-btn:hover span {
  animation: tada 0.3s linear both;
}

.alert-data {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.alert-data:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
}
@media (max-width: 992px) {
  .alert-data {
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    align-content: space-between !important;
  }
}
.alert-data .contain {
  width: calc(100% - 400px);
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 992px) {
  .alert-data .contain {
    width: 100% !important;
  }
}
.alert-data .contain img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
}
.alert-data .contain .data {
  width: calc(100% - 60px);
}
.alert-data .contain .data p {
  color: #808080;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0px;
  text-align: start;
}
.alert-data .contain .data h2 {
  color: #000;
  font-size: 15px;
  font-weight: 900;
  margin: 0px;
  margin-top: 5px;
}
.alert-data .button-contain {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
@media (min-width: 992px) {
  .alert-data .button-contain {
    justify-content: flex-end;
  }
}
@media (max-width: 992px) {
  .alert-data .button-contain {
    width: 100%;
  }
}

.table-contain.data-contain .table th, .table-contain.data-contain .table td {
  min-width: unset !important;
}
@media (max-width: 992px) {
  .table-contain.data-contain .table th {
    font-size: 10px !important;
    padding: 15px 5px !important;
  }
}

.main-layout-shape {
  background-color: #F1F5FF !important;
}

/*.language-switch button {
  width: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border: 1px solid #F1F5FF;
  padding: 0px;
  border-radius: 5px;
}
.language-switch button span {
  color: #000;
  font-size: 15px;
  font-weight: 500;
}*/

#page-header-user-dropdown {
  padding: 0px;
}
#page-header-user-dropdown span {
  color: #000;
}
#page-header-user-dropdown i {
  color: #FFD004;
  font-size: 20px !important;
}

@media (max-width: 992px) {
  .page-title-box {
    justify-content: space-between !important;
    align-items: flex-start !important;
    align-content: space-between !important;
  }
}
.page-title-box .header-item {
  height: unset !important;
}
.page-title-box .dropdown {
  margin-right: auto !important;
}

.count-data {
  padding: 10px 0px;
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 992px) {
  .count-data {
    display: none;
  }
}
.count-data p {
  color: #000;
  font-size: 15px;
  font-weight: 900;
  margin: 0px;
}
.count-data .countdown-container {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 5px;
}
.count-data .countdown-container .day-contain {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  align-content: center;
}
.count-data .countdown-container .day-contain span {
  font-size: 15px;
  font-weight: 500;
}
.count-data .countdown-container .countdown-item {
  width: 40px;
  height: 40px;
  background-color: #FFD004;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 5px;
  color: #fff;
}

.dark-mode .alert-data .contain .data h2,
.dark-mode .price-list li a .number,
.dark-mode .speed-box p {
  color: #fff;
}
.dark-mode .alert-data .contain .data p,
.dark-mode .price-list li a .name {
  color: #f7f7f7;
}
.dark-mode .speed-box {
  border-color: rgba(255, 255, 255, 0.5);
}

#sidebar-menu ul li a {
  color: #000 !important;
  font-weight: 700;

}

#sidebar-menu ul li a i {
  color: #000 !important;
}

#sidebar-menu ul li a img {
  filter: invert(5%) sepia(33%) saturate(2813%) hue-rotate(229deg) brightness(96%) contrast(98%);
}

#sidebar-menu ul li a.active img {
  filter: invert(24%) sepia(100%) saturate(2575%) hue-rotate(218deg) brightness(97%) contrast(88%) !important;
}
#sidebar-menu ul li a.active span {
  color: #FFD004;
}

.dark-mode #sidebar-menu ul li a img {
  filter: invert(99%) sepia(2%) saturate(24%) hue-rotate(111deg) brightness(116%) contrast(94%);
}

.page-content {
  padding-bottom: 10px !important;
}

.copyrights {
  width: 100%;
  padding: 10px 30px;
  background-color: #fff;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .copyrights {
    gap: 10px;
    padding: 15px 10px;
  }
}
.copyrights p {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
  display: flex;
  align-content: center;
  align-items: center;
}
.copyrights p span {
  color: #FFD004;
  margin-inline-start: 10px;
}
.copyrights p img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0px 5px;
}
.copyrights p .whats {
  width: 24px;
  height: 24px;
  display: flex;
  align-content: center;
  align-items: center;
  margin-inline-end: 20px;
}
@media (max-width: 992px) {
  .copyrights p .whats {
    margin-inline-end: 10px;
  }
}

.dark-mode .copyrights {
  background-color: #2A2A2A !important;
}
.dark-mode .copyrights p {
  color: #fff;
}

.pagination-list {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 15px;
  list-style: none;
  padding: 0px;
}
.pagination-list li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border: 1px solid #FFD004;
  border-radius: 6px;
  color: #FFD004;
  font-size: 10px;
  font-weight: 900;
}
.pagination-list li a.active, .pagination-list li a:hover {
  background-color: #FFD004;
  color: #fff;
}

.casher:hover {
  transform: translateY(0px);
}
.casher .flex-data {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 22px;
}
.casher .flex-data .icon-data {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.casher .flex-data .icon-data img {
  width: 55px;
  height: 55px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 50%;
}
.casher .flex-data .icon-data h2 {
  color: #12161C;
  font-size: 18px;
  font-weight: 900;
  margin: 0px;
}
.casher .box {
  width: 100%;
  padding: 12px 8px;
  background-color: #E9EFFD;
  position: relative;
  z-index: 9;
  border-radius: 9px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s linear;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 992px) {
  .casher .box {
    padding: 12px 5px !important;
  }
}
.casher .box img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .casher .box img {
    width: 30px;
    height: 30px;
  }
}
.casher .box .graph {
  width: 500px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .casher .box .graph {
    width: 120px;
  }
}
.casher .box .data-contain {
  width: calc(100% - 40px);
  text-align: start;
}
@media (max-width: 992px) {
  .casher .box .data-contain {
    width: 100% !important;
  }
}
.casher .box .data-contain h2 {
  color: #12161C;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .casher .box .data-contain h2 {
    font-size: 13px !important;
    font-weight: 900;
  }
}
.casher .box .data-contain p {
  color: #12161C;
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
  text-align: start;
}
.casher .box:hover {
  transform: translateY(-10px);
}
.casher .box:hover img {
  animation: tada 0.3s linear;
}
.casher .box:hover img.graph {
  animation: none;
}
.casher .price-data {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  border: 1px solid var(--primary);
  border-radius: 10px;
  padding: 0px 20px;
}
@media (max-width: 992px) {
  .casher .price-data {
    padding: 0px 10px !important;
  }
}
.casher .price-data .flex-data {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px;
}
.casher .price-data .flex-data img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.casher .price-data .flex-data h2 {
  color: #000;
  font-size: 15px !important;
  font-weight: 900;
  margin: 0px;
}
.casher .price-data .price {
  font-size: 15px;
  font-weight: 500;
  color: #000;
}
.casher .price-data .price span {
  color: #757474;
}
.casher .button-contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.casher .button-contain .custom-btn {
  width: calc(50% - 5px);
  height: 50px !important;
  border-radius: 10px !important;
}
@media (max-width: 992px) {
  .casher .button-contain .custom-btn span {
    font-size: 13px !important;
  }
}
.casher .button-contain .custom-btn:hover span {
  animation: translateX 0.3s linear infinite alternate;
}

ul {
  padding: 0px;
  list-style: none;
}

.paginations-title {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 0px !important;
}
.paginations-title li a {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 8px;
}
.paginations-title li a img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: invert(51%) sepia(27%) saturate(13%) hue-rotate(325deg) brightness(93%) contrast(79%);
}
.paginations-title li a span {
  color: #808080;
  font-size: 15px;
  font-weight: 500;
}
.paginations-title li span {
  color: #000;
  font-size: 15px;
  font-weight: 700;
}

.account-tab {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  border: 0px;
  padding: 0px !important;
  margin-bottom: 20px;
  gap: 20px;
  flex-wrap: wrap !important;
  overflow: hidden !important;
}
.account-tab::-webkit-scrollbar-thumb:hover, .account-tab::-webkit-scrollbar-thumb, .account-tab::-webkit-scrollbar-track {
  background-color: transparent !important;
}
@media (max-width: 992px) {
  .account-tab {
    gap: 10px;
  }
}
.account-tab li {
  margin: 0px;
  padding: 0px;
  width: calc(14.2857142857% - 20px);
}
@media (max-width: 992px) {
  .account-tab li {
    width: calc(33.3333333333% - 10px);
  }
}
.account-tab li a {
  width: 100%;
  text-align: center;
  padding: 0px 0px 10px 0px;
  border: 0px !important;
  color: #5A5D61;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  z-index: 9;
  background: transparent;
  border-radius: 0px;
}
.account-tab li a::after, .account-tab li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s linear;
}
@media (max-width: 992px) {
  .account-tab li a::after, .account-tab li a::before {
    height: 1px;
  }
}
.account-tab li a::after {
  background-color: var(--primary);
  transform: scaleX(0);
}
.account-tab li a::before {
  background-color: #EBEBEC;
}
.account-tab li a:hover, .account-tab li a.active {
  color: var(--primary) !important;
  background: transparent !important;
  border: 0px !important;
  border-radius: 0px;
}
.account-tab li a:hover::after, .account-tab li a.active::after {
  transform: scaleX(1);
}
.account-tab li a:hover::before, .account-tab li a.active::before {
  transform: scaleX(0);
}

.flex-button-contain {
  width: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.flex-button-contain .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-content: center;
  align-items: center;
}
.flex-button-contain .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s linear;
}
.flex-button-contain .icon:hover img {
  transform: scale(0.9);
}
.flex-button-contain .custom-btn {
  height: 50px;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .flex-button-contain .custom-btn {
    width: calc(100% - 140px);
  }
}

.two-button-contain {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  gap: 10px;
}
.two-button-contain .custom-btn {
  height: 50px;
  border-radius: 10px;
  width: calc(50% - 5px);
}

.tab-pane .inside-btn,
.tab-pane .collapse-btn {
  padding: 15px 50px;
  border-radius: 20px;
  width: 100%;
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  .tab-pane .inside-btn,
  .tab-pane .collapse-btn {
    padding: 10px 5px;
    padding-inline-start: 20px;
    border-radius: 5px;
  }
}
.tab-pane .inside-btn::after,
.tab-pane .collapse-btn::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  right: 16px;
  z-index: 9;
  transition: all 0.3s linear;
}
@media (max-width: 992px) {
  .tab-pane .inside-btn::after,
  .tab-pane .collapse-btn::after {
    width: 15px;
    height: 15px;
    right: 4px;
    top: calc(50% - 7.5px);
  }
}
.tab-pane .inside-btn[aria-expanded=true]::after,
.tab-pane .collapse-btn[aria-expanded=true]::after {
  transform: rotate(-90deg);
}
.tab-pane .padding-shape {
  width: 100%;
  padding: 0px 50px !important;
}
@media (max-width: 992px) {
  .tab-pane .padding-shape {
    padding: 0px 15px !important;
  }
}
.tab-pane .padding-shape table td {
  padding: 10px 0px;
  text-align: center;
}
.tab-pane table {
  width: 100%;
}
@media (max-width: 992px) {
  .tab-pane table th, .tab-pane table td {
    font-size: 10px;
    font-weight: 500;
  }
}
.tab-pane table th:first-child, .tab-pane table td:first-child {
  text-align: start;
}
.tab-pane table th:last-child, .tab-pane table td:last-child {
  text-align: end;
}
.tab-pane table tr {
  border-bottom: 1px solid #E9EFFD;
}
.tab-pane table .icon-contain {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
@media (max-width: 992px) {
  .tab-pane table .icon-contain {
    gap: 5px;
  }
}
.tab-pane table .icon-contain .icon {
  padding-inline-end: 10px;
  border-inline-end: 1px solid #E9EFFD;
}
@media (max-width: 992px) {
  .tab-pane table .icon-contain .icon {
    padding-inline-end: 5px;
  }
}
.tab-pane table .icon-contain .icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 992px) {
  .tab-pane table .icon-contain .icon img {
    width: 15px;
    height: 15px;
  }
}
.tab-pane table .icon-contain .icon:last-child {
  padding-inline-end: 0px;
  border-inline-end: 0px;
}
.tab-pane .collapse-btn {
  background-color: #E9EFFD;
}
.tab-pane .collapse-btn::after {
  background: url("../images/icons/left_arrow.svg") center/contain no-repeat;
}
.tab-pane .inside-btn::after {
  background: url("../images/icons/left_arrow_circle.svg") center/contain no-repeat;
}

.tooltip-inner {
  background-color: var(--primary); /* Change this to the desired color */
  color: #ffffff; /* Optionally change text color */
}

.tooltip .arrow::before {
  border-top-color: var(--primary); /* Change this to the desired arrow color */
}

.page-title h1 {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 20px;
}

.form-number {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  align-content: flex-end;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}
.form-number .number {
  width: 50px;
  height: 50px;
  background-color: #E9EFFD;
  border-radius: 10px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
}
.form-number .form-group {
  margin: 0px;
  width: calc(100% - 50px);
}

.data-select {
  width: 100%;
  height: 50px;
  position: relative;
  z-index: 9;
}
.data-select .small-select {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0px;
  left: 10px;
  z-index: 9;
  background-color: transparent;
  border: 0px;
  color: #000;
  font-size: 15px;
  text-align: center;
}

.action-btn {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  align-items: flex-end;
  align-content: flex-end;
  transition: all 0.3s linear;
  margin-top: -20px;
}
@media (max-width: 992px) {
  .action-btn {
    margin-top: 0px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
  }
}
.action-btn .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-content: center;
  align-items: center;
}
.action-btn .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.action-btn .icon:hover {
  transform: translateY(-10px);
}

.form-contain .custom-btn.accounts-btn {
  width: 250px !important;
  height: 50px;
  border-radius: 10px;
}

.box-data {
  width: 100%;
  position: relative;
}
.box-data .head, .box-data .body-data {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.box-data .head h2, .box-data .head p, .box-data .body-data h2, .box-data .body-data p {
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
.box-data .head {
  margin-bottom: 20px;
  background-color: #EBEBEC;
}
.box-data .head h2 {
  color: #5A5D61;
}
.box-data .body-data {
  background-color: #E9EFFD;
}
.box-data .body-data p {
  color: var(--primary);
}

.border-data {
  border-inline-end: 1px solid #E9EFFD;
  border-inline-start: 1px solid #E9EFFD;
}
@media (max-width: 992px) {
  .border-data {
    margin: 10px 0px;
    padding-bottom: 10px;
    padding-top: 10px;
    border-inline-end: 0px !important;
    border-inline-start: 0px !important;
    border-block-end: 1px solid #E9EFFD;
    border-block-start: 1px solid #E9EFFD;
  }
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  margin: auto;
  position: relative;
  cursor: pointer;
  background-size: cover !important;
  background-position: center !important;
  border: 1px solid #F7F7F7;
  background-repeat: no-repeat !important;
}
.profile-avatar input {
  position: absolute;
  bottom: 0;
  left: 64%;
  background-color: #fff;
  border-radius: 30px;
  display: inline-block;
  color: #222;
  width: 50px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  border: none;
  opacity: 0;
  z-index: 3;
}
.profile-avatar button {
  width: 34px;
  height: 34px;
  box-shadow: 0px 0px 10px #ddd;
  background-color: #F6F6F6;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  cursor: pointer !important;
  border: 1px solid #eee;
  position: absolute;
  right: 2px;
  bottom: 0px;
  cursor: pointer;
}
.profile-avatar button img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 992px) {
  .no-padding {
    padding-left: 0px;
    padding-right: 0px;
  }
  .small-padding {
    padding: 0px 10px !important;
  }
}
.switch {
  position: relative;
  cursor: pointer;
}
.switch input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
  position: relative;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  cursor: pointer;
}
.switch input:checked ~ .check {
  background-color: #FFD004;
}
.switch input:checked ~ .check::after {
  transform: translateX(0px);
}
.switch input:checked ~ .check::before {
  transform: translateX(50px) !important;
}
.switch .check {
  width: 51px;
  height: 30px;
  position: relative;
  display: block;
  background-color: #f00;
  cursor: pointer;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s ease-in;
}
.switch .check::after, .switch .check::before {
  content: "";
  position: absolute;
  top: 0;
  width: 30px;
  height: 30px;
  transition: all 0.5s ease-in;
  border-radius: 50%;
}
.switch .check::before {
  background-color: #fff;
  right: 0px;
}
.switch .check::after {
  transform: translateX(-60px);
  background-color: #fff;
  left: 0;
}

.accordion .card {
  border-radius: 10px !important;
  overflow: hidden;
  padding: 0px;
}
.accordion .card-header {
  width: 100%;
  padding: 0px;
  border: 0px;
  border-radius: 0px;
  background-color: transparent;
}
.accordion .card-header .btn {
  padding: 0px 20px !important;
  width: 100%;
  height: 50px;
  position: relative;
  z-index: 9;
  background-color: #fff;
  border: 0px;
  border-radius: 10px;
  text-align: start;
  font-size: 15px;
  font-weight: 900;
  color: #000;
  text-decoration: none;
}
.accordion .card-header .btn::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icons/arrow-down.svg") center/contain no-repeat;
  top: calc(50% - 12px);
  left: 10px;
  z-index: -1;
  transition: all 0.3s linear;
}
.accordion .card-header .btn[aria-expanded=true]::after {
  transform: rotate(180deg);
}
.accordion .collapse {
  width: 100%;
}
.accordion .collapse .card-body {
  padding: 20px 15px !important;
}
@media (max-width: 992px) {
  .accordion .collapse label {
    font-size: 11px !important;
  }
  .accordion .collapse .form-control::-moz-placeholder {
    font-size: 11px !important;
  }
  .accordion .collapse .form-control::placeholder {
    font-size: 11px !important;
  }
}

.action-btn.flex-start {
  justify-content: flex-start !important;
}
.action-btn.flex-end {
  justify-content: flex-end !important;
}
.action-btn img, .action-btn .icon {
  transition: all 0.3s linear;
}

.branch-list {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.branch-list li {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.branch-list li span {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}
.branch-list li .delete {
  width: 24px;
  height: 24px;
  display: flex;
  align-content: center;
  align-items: center;
}
.branch-list li .delete img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.row.border-bottom {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.flex-data.center-data {
  width: 100%;
  height: 50px !important;
  border: 1px solid #A2A2A2;
  padding: 0px 10px;
  border-radius: 8px;
}
@media (max-width: 992px) {
  .flex-data.center-data {
    margin-bottom: 20px;
  }
}
.flex-data.center-data label {
  margin: 0px !important;
}
.flex-data.center-data .wrapper {
  gap: 10px;
  padding: 0px;
}
@media (min-width: 992px) {
  .flex-data.center-data {
    margin-top: 40px;
  }
}/*# sourceMappingURL=style.css.map */

.form-contain .form-group.form-icon {
	width: 100%;
	height: 50px;
	position: relative;
	z-index: 9;
}
.form-select {
  width: 100%;
  height: 50px;
  position: relative;
  z-index: 9;
}
.form-select::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icons/arrow-down.svg") center/contain no-repeat;
  top: calc(50% - 12px);
  left: 15px;
  z-index: 9;
  pointer-events: none;
}
@media (max-width: 992px) {
  .form-select::after {
    left: 5px;
    width: 15px;
    height: 15px;
    top: calc(50% - 7.5px);
  }
}
.form-select .form-control {
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
}

@media (max-width: 992px) {
  .modal-body .form-group .form-control {
    padding: 0px 15px;
  }
}

.form-contain .flex-data {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 30px;
  justify-content: flex-start;
}
.form-contain .flex-data.center-data {
  width: 100%;
  height: 100%;
}
.form-contain .flex-data.between-data {
  justify-content: space-between;
  margin-bottom: 15px;
}
.form-contain .flex-data.between-data .form-group label {
  margin: 0px;
}
.form-contain .flex-data .wrapper {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 992px) {
  .form-contain .form-group .form-control {
    padding: 0px 15px;
  }
}
.form-contain .form-group.form-icon {
  width: 100%;
  height: 50px;
  position: relative;
  z-index: 9;
}
.form-contain .form-group.form-icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: calc(50% - 12px);
  right: 15px;
}
.form-contain .form-group.form-icon .form-control {
  padding-inline-start: 50px;
}
@media (max-width: 992px) {
  .form-contain .form-group label {
    margin-bottom: 5px;
  }
}
@media (max-width: 992px) {
  .box, .card {
    padding-bottom: 0px !important;
  }
}
.btn-link:hover {
  text-decoration: none;
}

button {
  outline: none;
  border: 0px;
}

.card {
  margin-bottom: 20px;
  -webkit-box-shadow: 0 2px 4px rgba(15,34,58,.12);
  box-shadow: 0 2px 4px rgba(15,34,58,.12);
}


.form-search {
    width: 100%;
    position: relative;
    z-index: 99;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    gap: 0px;
    background-color: #fff;
    padding: 10px 30px;
    border-radius: 10px;
}
@media (max-width: 992px) {
    .form-search {
        padding: 7px 5px;
    }
}
.form-search .dropdown-item.active, .form-search .dropdown-item:active {
    background-color: #f7f7f7;
}
.form-search .dropdown {
    width: 30%;
    border-inline-end: 1px solid #ddd;
    padding-inline-end: 10px;
}
@media (min-width: 992px) {
    .form-search .dropdown {
        width: 150px;
    }
}
@media (max-width: 992px) {
    .form-search .dropdown {
        padding-inline-end: 5px;
        margin: 0px 0px 0px 5px;
    }
}
.form-search .dropdown .nav-link {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px;
    padding: 0px;
}
@media (max-width: 992px) {
    .form-search .dropdown .nav-link {
        gap: 5px;
    }
}
.form-search .dropdown .nav-link img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}
.form-search .dropdown .nav-link span {
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
}
.form-search .dropdown .nav-link::after {
    display: none;
}
.form-search .dropdown .dropdown-menu {
    width: 190px;
    border-radius: 10px;
    left: -100px!important;
}
.form-search .dropdown .dropdown-menu .dropdown-item {
    width: 100%;
    padding: 10px 15px;
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 9;
}
.form-search .dropdown .dropdown-menu .dropdown-item.more-list::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background: url("../images/icons/left_arrow.svg") center/contain no-repeat;
    top: calc(50% - 12px);
    left: 10px;
}
.form-search .dropdown .dropdown-menu .dropdown-item img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}
.form-search .dropdown .dropdown-menu .dropdown-item span {
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
}
.form-search .dropdown .dropdown-menu .dropdown-item:hover img {
    filter: invert(28%) sepia(74%) saturate(3481%) hue-rotate(217deg) brightness(96%) contrast(91%);
}
.form-search .dropdown .dropdown-menu .dropdown-item:hover span {
    color: #FFD004;
}
.form-search .dropdown .data {
    width: 100%;
    position: relative;
}
.form-search .dropdown .data:hover .list {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
}
.form-search .dropdown .list {
    width: 180px;
    padding: 20px 10px;
    left: -94%;
    top: 0;
    background-color: #fff;
    position: absolute;
    z-index: 9;
    border-radius: 10px;
    border: 1px solid rgba(37, 98, 233, 0.03);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
}
.form-search .dropdown .list .dropdown-item {
    width: 100%;
    padding: 10px 15px;
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}
.form-search .dropdown .list .dropdown-item img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}
.form-search .dropdown .list .dropdown-item span {
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
}
.form-search .dropdown .list .dropdown-item:hover img {
    filter: invert(28%) sepia(74%) saturate(3481%) hue-rotate(217deg) brightness(96%) contrast(91%);
}
.form-search .dropdown .list .dropdown-item:hover span {
    color: #FFD004;
}
.form-search .form-control {
    width: 70%;
    height: 50px;
    border: 0px;
    padding: 0px;
    text-align: right;
}
@media (min-width: 992px) {
    .form-search .form-control {
        width: calc(100% - 100px);
    }
}
@media (max-width: 992px) {
    .form-search .form-control {
        height: 40px;
    }
}
.form-search .custom-btn {
    width: 110px;
    height: 50px;
    position: absolute;
    top: calc(50% - 25px);
    left: 15px;
    border-radius: 10px;
}
.form-search .custom-btn img {
    width: 24px;
    height: 24px;
}
@media (max-width: 992px) {
    .form-search .custom-btn {
        width: 40px;
        height: 40px;
        top: calc(50% - 20px);
        border-radius: 5px;
    }
    .form-search .custom-btn span {
        display: none;
    }
}/*# sourceMappingURL=style.css.map */
