html {
  --primary-color: #fefffe;
  --secondary-color: #f1f3f9;
  --font-color: #3c4a5b;
  --notifcation-color: #3b3f5c;
  --notifcation-light: #888ea8;
  --light-white: #68778d;
  --hover-color: #3c4a5b;
  --meter: #f0f0f0;
  --box-shadow: rgba(149, 157, 165, 0.2);
  --title-color: #515365;
}

html[data-theme=dark] {
  --primary-color: #1f2243;
  --secondary-color: #1c1f3e;
  --notifcation-color: #f9f9fa;
  --notifcation-light: #d3d3d9;
  --font-color: #f9f9fa;
  --title-color: #f9f9fa;
  --light-white: #d3d3d9;
  --hover-color: #416fec;
  --meter: #2a3660;
  --box-shadow: rgba(4, 3, 15, 0.089);
}

.dayNight {
  cursor: pointer;
}
.dayNight input {
  display: none;
}
.dayNight input + div {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  position: relative;
  box-shadow: inset 10px -10px 0 0 #3c4a5b;
  transform: scale(1) rotate(-2deg);
  transition: box-shadow 0.2s ease 0s, transform 0.2s ease 0.1s;
  -webkit-transition: box-shadow 0.2s ease 0s, transform 0.2s ease 0.1s;
  -moz-transition: box-shadow 0.2s ease 0s, transform 0.2s ease 0.1s;
  -ms-transition: box-shadow 0.2s ease 0s, transform 0.2s ease 0.1s;
  -o-transition: box-shadow 0.2s ease 0s, transform 0.2s ease 0.1s;
}
@media screen and (max-width: 452px) {
  .dayNight input + div {
    width: 20px;
    height: 20px;
    box-shadow: inset 5px -5px 0 0 #3c4a5b;
  }
}
.dayNight input + div:before {
  content: "";
  width: inherit;
  height: inherit;
  border-radius: inherit;
  position: absolute;
  left: 0;
  top: 0;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}
.dayNight input + div:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin: -4px 0 0 -4px;
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0 -23px 0 #fff, 0 23px 0 #fff, 23px 0 0 #fff, -23px 0 0 #fff, 15px 15px 0 #fff, -15px 15px 0 #fff, 15px -15px 0 #fff, -15px -15px 0 #fff;
  transform: scale(0);
  transition: all 0.3s ease;
}
@media screen and (max-width: 452px) {
  .dayNight input + div:after {
    margin: -4px 0 0 -4px;
  }
}
.dayNight input:checked + div {
  transform: scale(0.4) rotate(0deg);
  transition: transform 0.3s ease 0.1s, box-shadow 0.2s ease 0s;
  -webkit-transform: scale(0.4) rotate(0deg);
  -moz-transform: scale(0.4) rotate(0deg);
  -ms-transform: scale(0.4) rotate(0deg);
  -o-transform: scale(0.4) rotate(0deg);
}
.dayNight input:checked + div:before {
  background: #fff;
  transition: background 0.3s ease 0.1s;
}
.dayNight input:checked + div:after {
  transform: scale(1.5);
  transition: transform 0.5s ease 0.15s;
}

html {
  --primary-color: #fefffe;
  --secondary-color: #f1f3f9;
  --font-color: #3c4a5b;
  --notifcation-color: #3b3f5c;
  --notifcation-light: #888ea8;
  --light-white: #68778d;
  --hover-color: #3c4a5b;
  --meter: #f0f0f0;
  --box-shadow: rgba(149, 157, 165, 0.2);
  --title-color: #515365;
}

html[data-theme=dark] {
  --primary-color: #1f2243;
  --secondary-color: #1c1f3e;
  --notifcation-color: #f9f9fa;
  --notifcation-light: #d3d3d9;
  --font-color: #f9f9fa;
  --title-color: #f9f9fa;
  --light-white: #d3d3d9;
  --hover-color: #416fec;
  --meter: #2a3660;
  --box-shadow: rgba(4, 3, 15, 0.089);
}

.main-container {
  height: 100vh;
  background-color: var(--primary-color);
  overflow: hidden;
  display: flex;
  flex-direction: row;
}
.main-container .left-align {
  background-color: var(--primary-color);
  flex: 0 0 250px;
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 1028px) {
  .main-container .left-align {
    flex-basis: 80px;
  }
  .main-container .left-align h2,
.main-container .left-align span {
    display: none;
  }
}
@media screen and (max-width: 452px) {
  .main-container .left-align {
    display: none;
  }
}
.main-container .left-align .menu-bar {
  padding: 5px;
  display: flex;
  flex-direction: column;
}
.main-container .left-align .menu-bar .company-logo {
  display: flex;
  flex-flow: row;
  align-items: center;
  margin: 10px 0px 0px 10px;
}
.main-container .left-align .menu-bar .company-logo img {
  height: 50px;
  width: 50px;
  margin: 5px;
  background-size: cover;
}
.main-container .left-align .menu-bar .company-logo h2 {
  font-family: "Poppins", sans-serif;
  color: var(--font-color);
  font-size: 1.3em;
}
.main-container .left-align .menu-bar .menu-wrapper {
  margin-top: 25px;
}
.main-container .left-align .menu-bar .menu-wrapper .menu-options {
  margin-left: 5px;
}
.main-container .left-align .menu-bar .menu-wrapper .menu-options ul {
  list-style: none;
}
.main-container .left-align .menu-bar .menu-wrapper .menu-options ul li {
  margin-top: 20px;
  cursor: pointer;
}
.main-container .left-align .menu-bar .menu-wrapper .menu-options ul a {
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  color: var(--light-white);
  transition: color 0.6s ease;
  -webkit-transition: color 0.6s ease;
  -moz-transition: color 0.6s ease;
  -ms-transition: color 0.6s ease;
  -o-transition: color 0.6s ease;
}
.main-container .left-align .menu-bar .menu-wrapper .menu-options ul a:hover {
  color: var(--hover-color);
}
.main-container .left-align .menu-bar .menu-wrapper .menu-options ul a i {
  font-size: 1.5em;
  margin: 10px;
}
@media screen and (max-width: 1028px) {
  .main-container .left-align .menu-bar .menu-wrapper .menu-options ul a i {
    font-size: 2em;
    text-align: center;
    margin-right: 5px;
  }
}
.main-container .left-align .menu-bar .menu-wrapper .menu-options ul a span {
  font-size: 1em;
}
.main-container .left-align .logout-wrapper {
  position: absolute;
  width: 100%;
  bottom: 0px;
  padding: 10px;
}
.main-container .left-align .logout-wrapper .logout {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  cursor: pointer;
  color: var(--light-white);
  transition: color 0.6s ease;
  -webkit-transition: color 0.6s ease;
  -moz-transition: color 0.6s ease;
  -ms-transition: color 0.6s ease;
  -o-transition: color 0.6s ease;
}
.main-container .left-align .logout-wrapper .logout:hover {
  color: var(--hover-color);
}
.main-container .left-align .logout-wrapper .logout i {
  font-size: 1.5em;
  padding: 5px;
  margin-right: 5px;
}
@media screen and (max-width: 1028px) {
  .main-container .left-align .logout-wrapper .logout i {
    font-size: 2em;
    text-align: center;
    margin-right: 5px;
  }
}
.main-container .left-align .logout-wrapper .logout span {
  font-size: 1.2em;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
}
.main-container .right-align {
  position: relative;
  flex: 1 0 200px;
  background-color: var(--secondary-color);
  overflow: hidden;
}
.main-container .right-align .header-wrapper {
  padding-bottom: 15px;
  margin: 10px;
}
.main-container .right-align .header-wrapper header {
  margin-top: 20px;
  margin-left: 15px;
  margin-right: 15px;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 452px) {
  .main-container .right-align .header-wrapper header {
    margin-left: 5px;
    margin-right: 5px;
  }
}
.main-container .right-align .header-wrapper header .search-container {
  width: 70%;
}
@media screen and (max-width: 452px) {
  .main-container .right-align .header-wrapper header .search-container {
    width: 100%;
  }
}
.main-container .right-align .header-wrapper header .search-container .search {
  background-color: var(--primary-color);
  border-radius: 5px;
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 45px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
@media screen and (max-width: 452px) {
  .main-container .right-align .header-wrapper header .search-container .search {
    width: 100%;
  }
}
.main-container .right-align .header-wrapper header .search-container .search:hover {
  background-color: var(--primary-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.main-container .right-align .header-wrapper header .search-container .search i {
  font-size: 1.4em;
  color: var(--font-color);
  margin-right: 10px;
  margin-left: 10px;
  cursor: pointer;
}
.main-container .right-align .header-wrapper header .search-container .search input {
  transition: all 0.3s ease;
  height: 100%;
  width: 100%;
  outline: 0px;
  border: none;
  background-color: var(--primary-color);
  font-size: 1em;
  font-family: "Open Sans", sans-serif;
  color: var(--light-white);
  font-weight: lighter;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.main-container .right-align .header-wrapper header .search-container .search input::-moz-placeholder {
  color: var(--font-color);
  font-weight: 300;
}
.main-container .right-align .header-wrapper header .search-container .search input:-ms-input-placeholder {
  color: var(--font-color);
  font-weight: 300;
}
.main-container .right-align .header-wrapper header .search-container .search input::placeholder {
  color: var(--font-color);
  font-weight: 300;
}
.main-container .right-align .header-wrapper header .search-container .search input:hover {
  background-color: var(--primary-color);
}
.main-container .right-align .header-wrapper header .dark-toggle {
  flex: 0.5;
}
@media screen and (max-width: 452px) {
  .main-container .right-align .header-wrapper header .dark-toggle {
    margin: 10px;
    background-color: #406de7;
    position: relative;
  }
  .main-container .right-align .header-wrapper header .dark-toggle label {
    position: absolute;
    top: -12px;
    left: 3px;
  }
}
.main-container .right-align .header-wrapper header .user-profile {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 452px) {
  .main-container .right-align .header-wrapper header .user-profile {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1122px) {
  .main-container .right-align .header-wrapper header .user-profile {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1122px) {
  .main-container .right-align .header-wrapper header .user-profile {
    justify-content: flex-end;
    flex: 1;
  }
}
.main-container .right-align .header-wrapper header .user-profile .notification-panel {
  flex: 1;
  cursor: pointer;
  transition: fill 0.4s ease;
  fill: var(--light-white);
  -webkit-transition: fill 0.4s ease;
  -moz-transition: fill 0.4s ease;
  -ms-transition: fill 0.4s ease;
  -o-transition: fill 0.4s ease;
}
@media screen and (max-width: 452px) {
  .main-container .right-align .header-wrapper header .user-profile .notification-panel {
    flex: 4;
    margin-right: 10px;
  }
}
.main-container .right-align .header-wrapper header .user-profile .notification-panel:hover {
  fill: var(--font-color);
}
.main-container .right-align .header-wrapper header .user-profile .profile {
  display: flex;
  flex-flow: row;
  align-items: center;
  flex: 7;
}
.main-container .right-align .header-wrapper header .user-profile .profile .profile-img {
  cursor: pointer;
  height: 50px;
  width: 50px;
  border: 2px solid var(--font-color);
  border-top-style: dotted;
  border-bottom-style: solid;
  border-left-style: dashed;
  border-right-style: solid;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.main-container .right-align .header-wrapper header .user-profile .profile .profile-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 3px solid var(--secondary-color);
}
.main-container .right-align .header-wrapper header .user-profile .profile .username {
  margin-left: 18px;
}
@media screen and (max-width: 1122px) {
  .main-container .right-align .header-wrapper header .user-profile .profile .username {
    display: none;
  }
}
.main-container .right-align .header-wrapper header .user-profile .profile .username span {
  font-family: "Poppins", sans-serif;
  color: var(--font-color);
  font-family: 1.2em;
}
.main-container .right-align .header-wrapper header .user-profile .profile .username p {
  font-family: "Open Sans", sans-serif;
  color: var(--light-white);
  font-size: 0.8em;
}
.main-container .right-align .body-wrapper {
  overflow: hidden;
}
.main-container .right-align .body-wrapper .body-scroll {
  height: 85vh;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
.main-container .right-align .body-wrapper .body-scroll::-webkit-scrollbar {
  width: 0px;
}
.main-container .right-align .body-wrapper .body-scroll::-webkit-scrollbar-track {
  border-radius: 10px;
}
.main-container .right-align .body-wrapper .body-scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #1f2243;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside {
  margin: 10px;
}
@media screen and (max-width: 452px) {
  .main-container .right-align .body-wrapper .body-scroll .body-inside {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 1028px) {
  .main-container .right-align .body-wrapper .body-scroll .body-inside {
    margin: 5px;
  }
  .main-container .right-align .body-wrapper .body-scroll .body-inside .body-first-row {
    margin: 10px;
  }
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row {
  margin: 15px;
  background-color: var(--primary-color);
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1 {
  animation: fadeIn 800ms cubic-bezier(0.57, 0.25, 0.65, 1) 1 forwards;
  opacity: 0;
  -webkit-animation: fadeIn 800ms cubic-bezier(0.57, 0.25, 0.65, 1) 1 forwards;
  padding: 15px;
  margin-top: 15px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 719px) {
  .main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1 {
    flex-direction: column;
  }
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-1,
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-2 {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-1 {
  flex: 1 0 auto;
}
@media screen and (max-width: 940px) {
  .main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-1 span {
    flex: 4;
  }
}
@media screen and (max-width: 719px) {
  .main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-1 {
    width: 100%;
    margin-bottom: 15px;
  }
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-1 span {
  flex: 0.4 0 auto;
  font-size: 1.1em;
  color: var(--font-color);
  font-family: "Open Sans", sans-serif;
}
@media screen and (max-width: 870px) {
  .main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-1 span {
    flex: 8;
  }
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-1 .select-box {
  flex: 0.2 0 auto;
  width: 14%;
  height: 35px;
  margin-right: 10px;
  position: relative;
}
@media screen and (max-width: 870px) {
  .main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-1 .select-box {
    flex: 8;
  }
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-1 .select-box::after {
  display: block;
  position: absolute;
  z-index: 4;
  pointer-events: none;
  font-family: "material icons";
  content: "keyboard_arrow_down";
  right: 0px;
  top: 9px;
  font-size: 1.1em;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-1 .select-box select {
  background-color: #ffffff;
  outline: none;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding-left: 10px;
  padding-right: 10px;
  border: 1.5px solid #1c1f3e;
  font-family: "Poppins", sans-serif;
  font-size: 0.9em;
  color: #515365;
  option-background-color: #ffffff;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-1 .select-box select:focus {
  border: 1.5px solid #ff7675;
  box-shadow: 0 10px 20px -10px #ff7675;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-1 .add-btn {
  flex: 9;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-1 .add-btn button {
  cursor: pointer;
  width: 30%;
  height: 33px;
  background-color: #4361ee;
  outline: none;
  border: none;
  font-size: 0.8rem;
  color: #fefefe;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-color: #4361ee;
  box-shadow: 0 10px 20px -10px #4361ee;
  transition: box-shadow 0.3s ease-in;
  -webkit-transition: box-shadow 0.3s ease-in;
  -moz-transition: box-shadow 0.3s ease-in;
  -ms-transition: box-shadow 0.3s ease-in;
  -o-transition: box-shadow 0.3s ease-in;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-1 .add-btn button:hover {
  box-shadow: none;
}
@media screen and (max-width: 870px) {
  .main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-1 .add-btn button {
    width: 70%;
  }
}
@media screen and (max-width: 736px) {
  .main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-1 .add-btn button {
    width: 90%;
  }
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-2 {
  flex: 1 0 auto;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 719px) {
  .main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-2 {
    width: 100%;
    margin-bottom: 15px;
  }
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-2 .order-search-container {
  flex: 5;
  display: flex;
  justify-content: flex-end;
  margin-right: 15px;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-2 .order-search-container .order-search {
  width: 40%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 35px;
  border-radius: 5px;
  align-items: center;
  background-color: var(--primary-color);
  border: 1px solid #ffffff;
  transition: border 0.3s ease-in;
  -webkit-transition: border 0.3s ease-in;
  -moz-transition: border 0.3s ease-in;
  -ms-transition: border 0.3s ease-in;
  -o-transition: border 0.3s ease-in;
}
@media screen and (max-width: 870px) {
  .main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-2 .order-search-container .order-search {
    width: 80%;
  }
}
@media screen and (max-width: 736px) {
  .main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-2 .order-search-container .order-search {
    width: 100%;
  }
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-2 .order-search-container .order-search:hover {
  border: 1px solid #e7515a;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-2 .order-search-container .order-search input {
  background-color: var(--primary-color);
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 1em;
  font-family: "Open Sans", sans-serif;
  color: var(--light-white);
  font-weight: lighter;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  padding-left: 10px;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-2 .order-search-container .order-search input::-moz-placeholder {
  color: var(--font-color);
  font-weight: 300;
  width: 100%;
  height: 100%;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-2 .order-search-container .order-search input:-ms-input-placeholder {
  color: var(--font-color);
  font-weight: 300;
  width: 100%;
  height: 100%;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-2 .order-search-container .order-search input::placeholder {
  color: var(--font-color);
  font-weight: 300;
  width: 100%;
  height: 100%;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-2 .order-search-container .order-search i {
  color: var(--font-color);
  font-size: 1.4em;
  margin-right: 5px;
  margin-left: 5px;
  cursor: pointer;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-2 .delete-btn {
  display: flex;
  justify-content: flex-end;
  flex: 0.9;
}
@media screen and (max-width: 870px) {
  .main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-2 .delete-btn {
    flex: 2;
  }
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-2 .delete-btn button {
  width: 100%;
  height: 33px;
  outline: none;
  border: none;
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  color: #fff;
  background-color: #e7515a;
  border-color: #e7515a;
  box-shadow: 0 10px 20px -10px #e7515a;
  transition: box-shadow 0.3s ease-in;
  -webkit-transition: box-shadow 0.3s ease-in;
  -moz-transition: box-shadow 0.3s ease-in;
  -ms-transition: box-shadow 0.3s ease-in;
  -o-transition: box-shadow 0.3s ease-in;
}
@media screen and (max-width: 870px) {
  .main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-2 .delete-btn button {
    width: 70%;
  }
}
@media screen and (max-width: 736px) {
  .main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-2 .delete-btn button {
    width: 100%;
  }
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr1-2 .delete-btn button:hover {
  box-shadow: none;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr2 {
  animation: fadeIn 900ms cubic-bezier(0.57, 0.25, 0.65, 1) 1 forwards;
  opacity: 0;
  -webkit-animation: fadeIn 900ms cubic-bezier(0.57, 0.25, 0.65, 1) 1 forwards;
  width: 100%;
  margin-bottom: 50px;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr2 .ofr2-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-right: 20px;
}
@media screen and (max-width: 452px) {
  .main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr2 .ofr2-wrapper {
    justify-content: center;
  }
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr2 .ofr2-wrapper button {
  background-color: #ffffff;
  cursor: pointer;
  outline: none;
  border: none;
  margin-left: 15px;
  width: 40px;
  height: 38px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr2 .ofr2-wrapper button i {
  font-size: 1.8em;
  transition: color 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr2 .ofr2-wrapper button i:hover {
  color: #1abc9c;
  fill: rgba(27, 85, 226, 0.2392156863);
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr2 .ofr2-wrapper button:active {
  color: #4361ee;
  fill: rgba(27, 85, 226, 0.2392156863);
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr2 .ofr2-wrapper button:focus i {
  color: #1abc9c;
  fill: rgba(27, 85, 226, 0.2392156863);
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr2 .ofr2-wrapper .list-btn {
  color: #2196f3;
  box-shadow: 0 10px 20px -10px #2196f3;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr2 .ofr2-wrapper .list-btn:hover {
  box-shadow: 0 10px 20px -10px #1abc9c;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr2 .ofr2-wrapper .list-btn:focus {
  box-shadow: 0 10px 20px -10px #1abc9c;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr2 .ofr2-wrapper .full-view-btn {
  color: #e7515a;
  box-shadow: 0 10px 20px -10px #e7515a;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr2 .ofr2-wrapper .full-view-btn:hover {
  box-shadow: 0 10px 20px -10px #1abc9c;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr2 .ofr2-wrapper .full-view-btn:focus {
  box-shadow: 0 10px 20px -10px #1abc9c;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 {
  overflow-x: scroll;
  overflow-y: hidden;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3::-webkit-scrollbar-track {
  border-radius: 10px;
  height: 5px;
  background-color: var(--secondary-color);
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #1abc9c;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table {
  padding-bottom: 50px;
  background-color: var(--secondary-color);
  width: 100%;
  display: table;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row {
  display: table-row;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table {
  animation: fadeIn 1000ms cubic-bezier(0.57, 0.25, 0.65, 1) 1 forwards;
  opacity: 0;
  -webkit-animation: fadeIn 1000ms cubic-bezier(0.57, 0.25, 0.65, 1) 1 forwards;
  display: flex;
  flex-direction: column;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .order-dashboard-tr {
  padding-top: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: var(--secondary-color);
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .order-dashboard-tr .th {
  width: 100px;
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
  color: var(--font-color);
  font-size: 1em;
  text-align: center;
  color: #63758b;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer {
  background-color: var(--secondary-color);
  flex: 1;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer .tr-wrapper {
  margin-top: 15px;
  background-color: var(--primary-color);
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer .tr-wrapper .tr {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease-in;
  -webkit-transition: background-color 0.3s ease-in;
  -moz-transition: background-color 0.3s ease-in;
  -ms-transition: background-color 0.3s ease-in;
  -o-transition: background-color 0.3s ease-in;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer .tr-wrapper .tr .td {
  width: 100px;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9em;
  color: var(--light-white);
  text-align: center;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer .tr-wrapper .tr .td img {
  height: 50px;
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer .tr-wrapper .tr .td .td-th {
  display: none;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer .tr-wrapper .tr .td #customer {
  color: #416fec;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer .tr-wrapper .tr .td #delever-id {
  color: #1abc9c;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer .tr-wrapper .tr .td #delever-id span {
  background-color: #ddf5f0;
  padding: 4px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer .tr-wrapper .tr .td span {
  text-align: center;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer .tr-wrapper .tr .tr-order-edit {
  position: relative;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer .tr-wrapper .tr .tr-order-edit span {
  font-size: 1.8em;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer .tr-wrapper .tr .tr-order-edit span:hover {
  color: var(--light-white);
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer .tr-wrapper .tr .tr-order-edit .animate-hi-reverse {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 1;
    transform: none;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 1;
    transform: none;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
  }
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer .tr-wrapper .tr .tr-order-edit .tr-inside {
  z-index: 50;
  position: absolute;
  color: #1abc9c;
  right: 35px;
  width: 150px;
  border-radius: 8px;
  background-color: #ffffff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  display: flex;
  flex-direction: column;
  padding: 9px;
  display: none;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer .tr-wrapper .tr .tr-order-edit .tr-inside .tr-order-edit-btns {
  display: flex;
  flex-direction: row;
  cursor: pointer;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer .tr-wrapper .tr .tr-order-edit .tr-inside .tr-order-edit-btns i {
  margin-right: 7px;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer .tr-wrapper .tr .tr-order-edit .tr-inside .edits {
  margin-bottom: 7px;
  background: #e7f7ff;
  color: #2196f3;
  padding: 6px 11px;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer .tr-wrapper .tr .tr-order-edit .tr-inside .deletes {
  background: #fff5f5;
  color: #e7515a;
  padding: 6px 11px;
}
.main-container .right-align .body-wrapper .body-scroll .body-inside .orders-first-row .orders-wrapper .ofr3 .table .table-row .order-dashboard-table .tr-outer .effects {
  -webkit-animation-name: fadeInHigh;
          animation-name: fadeInHigh;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}
@-webkit-keyframes fadeInHigh {
  0% {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInHigh {
  0% {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

html {
  --primary-color: #fefffe;
  --secondary-color: #f1f3f9;
  --font-color: #3c4a5b;
  --notifcation-color: #3b3f5c;
  --notifcation-light: #888ea8;
  --light-white: #68778d;
  --hover-color: #3c4a5b;
  --meter: #f0f0f0;
  --box-shadow: rgba(149, 157, 165, 0.2);
  --title-color: #515365;
}

html[data-theme=dark] {
  --primary-color: #1f2243;
  --secondary-color: #1c1f3e;
  --notifcation-color: #f9f9fa;
  --notifcation-light: #d3d3d9;
  --font-color: #f9f9fa;
  --title-color: #f9f9fa;
  --light-white: #d3d3d9;
  --hover-color: #416fec;
  --meter: #2a3660;
  --box-shadow: rgba(4, 3, 15, 0.089);
}

html {
  --primary-color: #fefffe;
  --secondary-color: #f1f3f9;
  --font-color: #3c4a5b;
  --notifcation-color: #3b3f5c;
  --notifcation-light: #888ea8;
  --light-white: #68778d;
  --hover-color: #3c4a5b;
  --meter: #f0f0f0;
  --box-shadow: rgba(149, 157, 165, 0.2);
  --title-color: #515365;
}

html[data-theme=dark] {
  --primary-color: #1f2243;
  --secondary-color: #1c1f3e;
  --notifcation-color: #f9f9fa;
  --notifcation-light: #d3d3d9;
  --font-color: #f9f9fa;
  --title-color: #f9f9fa;
  --light-white: #d3d3d9;
  --hover-color: #416fec;
  --meter: #2a3660;
  --box-shadow: rgba(4, 3, 15, 0.089);
}

.menu-btn-mobile {
  display: flex;
  flex-direction: row;
  background-color: var(--primary-color);
}
.menu-btn-mobile .btn-lists {
  flex: 1 0 auto;
  padding: 10px;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 2em;
  background-color: var(--primary-color);
  color: var(--font-color);
  transition: color 0.3s ease-in;
  -webkit-transition: color 0.3s ease-in;
  -moz-transition: color 0.3s ease-in;
  -ms-transition: color 0.3s ease-in;
  -o-transition: color 0.3s ease-in;
}
.menu-btn-mobile .btn-lists:hover {
  color: var(--hover-color);
}
@media screen and (max-width: 452px) {
  .menu-btn-mobile .btn-lists {
    font-size: 1.5em;
  }
}

.menu-btn-wrapper {
  display: none;
  position: fixed;
  bottom: 0px;
  z-index: 1000;
  width: 100%;
  height: 7%;
  background-color: var(--primary-color);
}
@media screen and (max-width: 452px) {
  .menu-btn-wrapper {
    display: block;
  }
}

html {
  --primary-color: #fefffe;
  --secondary-color: #f1f3f9;
  --font-color: #3c4a5b;
  --notifcation-color: #3b3f5c;
  --notifcation-light: #888ea8;
  --light-white: #68778d;
  --hover-color: #3c4a5b;
  --meter: #f0f0f0;
  --box-shadow: rgba(149, 157, 165, 0.2);
  --title-color: #515365;
}

html[data-theme=dark] {
  --primary-color: #1f2243;
  --secondary-color: #1c1f3e;
  --notifcation-color: #f9f9fa;
  --notifcation-light: #d3d3d9;
  --font-color: #f9f9fa;
  --title-color: #f9f9fa;
  --light-white: #d3d3d9;
  --hover-color: #416fec;
  --meter: #2a3660;
  --box-shadow: rgba(4, 3, 15, 0.089);
}

.link-box {
  animation: fadeIn 100ms cubic-bezier(0.57, 0.25, 0.65, 1) 1 forwards;
  opacity: 0;
  -webkit-animation: fadeIn 100ms cubic-bezier(0.57, 0.25, 0.65, 1) 1 forwards;
  display: none;
  position: absolute;
  width: 100px;
  right: -10px;
  height: 40px;
  top: 50px;
  border-radius: 7px;
  background-color: #1f2243;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}
.link-box .box-lists {
  width: 100%;
  height: 100%;
}
.link-box .box-lists .list-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 10px 5px 0px 5px;
  align-items: center;
}
.link-box .box-lists .list-wrapper:hover i,
.link-box .box-lists .list-wrapper:hover a {
  color: #406de7;
}
.link-box .box-lists .list-wrapper i {
  font-size: 1em;
  color: #f9f9fa;
  transition: color 0.2s ease-in;
  -webkit-transition: color 0.2s ease-in;
  -moz-transition: color 0.2s ease-in;
  -ms-transition: color 0.2s ease-in;
  -o-transition: color 0.2s ease-in;
}
.link-box .box-lists .list-wrapper a {
  text-decoration: none;
  color: #f9f9fa;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9em;
  transition: color 0.2s ease-in;
  -webkit-transition: color 0.2s ease-in;
  -moz-transition: color 0.2s ease-in;
  -ms-transition: color 0.2s ease-in;
  -o-transition: color 0.2s ease-in;
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.switch {
  --line: #505162;
  --dot: #F7F8FF;
  --circle: #9EA0BE;
  --duration: .3s;
  --text: #9EA0BE;
  cursor: pointer;
}
.switch input {
  display: none;
}
.switch input + div {
  position: relative;
}
.switch input + div:before, .switch input + div:after {
  --s: 1;
  content: "";
  position: absolute;
  height: 4px;
  top: 10px;
  width: 18px;
  background: var(--line);
  transform: scaleX(var(--s));
  transition: transform var(--duration) ease;
}
.switch input + div:before {
  --s: 0;
  left: 0;
  transform-origin: 0 50%;
  border-radius: 2px 0 0 2px;
}
.switch input + div:after {
  left: 18px;
  transform-origin: 100% 50%;
  border-radius: 0 2px 2px 0;
}
.switch input + div span {
  padding-left: 56px;
  line-height: 24px;
  color: var(--text);
}
.switch input + div span:before {
  --x: 0;
  --b: var(--circle);
  --s: 3px;
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 var(--s) var(--b);
  transform: translateX(var(--x));
  transition: box-shadow var(--duration) ease, transform var(--duration) ease;
}
.switch input + div span:not(:empty) {
  padding-left: 64px;
}
.switch input:checked + div:before {
  --s: 1;
}
.switch input:checked + div:after {
  --s: 0;
}
.switch input:checked + div span:before {
  --x: 18px;
  --s: 12px;
  --b: var(--dot);
}

.dayNight {
  cursor: pointer;
}
.dayNight input {
  display: none;
}
.dayNight input + div {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  position: relative;
  box-shadow: inset 10px -10px 0 0 #3c4a5b;
  transform: scale(1) rotate(-2deg);
  transition: box-shadow 0.2s ease 0s, transform 0.2s ease 0.1s;
  -webkit-transition: box-shadow 0.2s ease 0s, transform 0.2s ease 0.1s;
  -moz-transition: box-shadow 0.2s ease 0s, transform 0.2s ease 0.1s;
  -ms-transition: box-shadow 0.2s ease 0s, transform 0.2s ease 0.1s;
  -o-transition: box-shadow 0.2s ease 0s, transform 0.2s ease 0.1s;
}
@media screen and (max-width: 452px) {
  .dayNight input + div {
    width: 20px;
    height: 20px;
    box-shadow: inset 5px -5px 0 0 #3c4a5b;
  }
}
.dayNight input + div:before {
  content: "";
  width: inherit;
  height: inherit;
  border-radius: inherit;
  position: absolute;
  left: 0;
  top: 0;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}
.dayNight input + div:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin: -4px 0 0 -4px;
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0 -23px 0 #fff, 0 23px 0 #fff, 23px 0 0 #fff, -23px 0 0 #fff, 15px 15px 0 #fff, -15px 15px 0 #fff, 15px -15px 0 #fff, -15px -15px 0 #fff;
  transform: scale(0);
  transition: all 0.3s ease;
}
@media screen and (max-width: 452px) {
  .dayNight input + div:after {
    margin: -4px 0 0 -4px;
  }
}
.dayNight input:checked + div {
  transform: scale(0.4) rotate(0deg);
  transition: transform 0.3s ease 0.1s, box-shadow 0.2s ease 0s;
  -webkit-transform: scale(0.4) rotate(0deg);
  -moz-transform: scale(0.4) rotate(0deg);
  -ms-transform: scale(0.4) rotate(0deg);
  -o-transform: scale(0.4) rotate(0deg);
}
.dayNight input:checked + div:before {
  background: #fff;
  transition: background 0.3s ease 0.1s;
}
.dayNight input:checked + div:after {
  transform: scale(1.5);
  transition: transform 0.5s ease 0.15s;
}

html {
  --primary-color: #fefffe;
  --secondary-color: #f1f3f9;
  --font-color: #3c4a5b;
  --notifcation-color: #3b3f5c;
  --notifcation-light: #888ea8;
  --light-white: #68778d;
  --hover-color: #3c4a5b;
  --meter: #f0f0f0;
  --box-shadow: rgba(149, 157, 165, 0.2);
  --title-color: #515365;
}

html[data-theme=dark] {
  --primary-color: #1f2243;
  --secondary-color: #1c1f3e;
  --notifcation-color: #f9f9fa;
  --notifcation-light: #d3d3d9;
  --font-color: #f9f9fa;
  --title-color: #f9f9fa;
  --light-white: #d3d3d9;
  --hover-color: #416fec;
  --meter: #2a3660;
  --box-shadow: rgba(4, 3, 15, 0.089);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  overflow: hidden;
}/*# sourceMappingURL=orders.css.map */