@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600&family=Comforta:wght@300;500&family=Questrial:wght@100;200;300;400;600;700;800;900&family=Anton:wght@700;800;900&display=swap);
p {
  font-size: 30px;
}

/* common CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: #818181;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.table th,
.table td {
  text-align: center;
}
.table tbody tr:nth-child(odd) {
  background-color: #e7e7e7;
}

.container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.container .message .success-message {
  display: flex;
  flex-direction: column;
  color: #20B2AA;
}
.container .message .success-message .icon {
  font-size: 2rem;
}
.container .message .success-message .text {
  font-size: 1.3 rem;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.centered {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.text-centered {
  text-align: center;
}

/* card */
.card {
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-bottom: 30px;
  min-width: 350px;
}
.card .header {
  background-color: #fff;
  padding: 25px 30px 20px;
  border-radius: 10px 10px 0 0;
  border-bottom: 2px solid rgba(232, 67, 147, 0.6);
  border-bottom: 2px solid #e4e4e4;
  margin-bottom: 0 !important;
}
.card .header .title {
  color: #d03c84;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
  font-family: "Questrial", sans-serif;
}
.card .body {
  background-color: #fff;
  padding: 25px 30px 30px;
  border-radius: 0 0 10px 10px;
}
.card .body form input, .card .body form select {
  border: 1px solid #c5c5c5;
  color: #4b4a4a;
  padding: 12px 15px 10px;
  line-height: 1;
}
.card .body form textarea {
  border: 1px solid #c5c5c5;
  color: #d1d0d0;
}
.card .body form .button-wrapper {
  display: flex;
}
.card .body form .button-wrapper .message {
  display: flex;
  align-items: center;
  margin-left: 5px;
  font-size: 13px;
  color: #999;
}
.card .body form .button-wrapper .message a {
  margin-left: 5px;
  color: #e84393;
}

.info-message {
  height: 90vh;
  display: grid;
  align-items: center;
  justify-content: center;
}

/* form css */
input, textarea, select {
  width: 100%;
  padding: 4px 10px;
  border-radius: 5px;
  margin-bottom: 3px;
  border: 1px solid #e2e2e2;
}

input[type=radio] {
  width: unset;
  margin-right: 5px;
}

input:focus,
textarea:focus {
  outline: 1px solid #e84393;
  border: 1px solid #e84393;
  color: #e84393;
}

input:hover, textarea:hover {
  border: 1px solid #e84393;
}

input:focus-visible, textarea:focus-visible {
  border: 1px solid #e84393;
  outline: none;
}

.input-wrapper {
  margin-bottom: 15px;
}
.input-wrapper .checkbox-group {
  display: grid;
  grid-template-columns: 15px auto;
}
.input-wrapper .checkbox-group .label {
  margin-left: 7px;
}
.input-wrapper .input-group {
  display: grid;
  grid-template-columns: 1fr auto;
}
.input-wrapper .input-group .checkbox {
  justify-content: left;
}
.input-wrapper .input-group .button {
  margin-left: 5px;
  display: grid;
  align-items: center;
  background: #d4d4d4;
  padding: 3px 15px;
  border-radius: 7px;
  transition: all 0.5s ease-in;
}
.input-wrapper .input-group .button:hover {
  cursor: pointer;
  background-color: #e84393;
  color: #fff;
  font-size: 105%;
}
.input-wrapper .input-error {
  color: #ea559d;
  font-size: 12px;
}

label {
  margin-right: 15px;
}

button {
  background-color: none;
  color: #fff;
  border: none;
  padding: 0px;
}

button:hover {
  cursor: pointer;
}

a.btn {
  border-radius: 5px;
  font-size: 14px;
  padding: 7px 15px;
}

a.btn-primary {
  background-color: #20B2AA;
  color: #fff;
}

a.btn-danger {
  background-color: #e84393;
  color: #fff;
}

button.btn {
  padding: 7px 15px;
  border-radius: 5px;
  font-size: 14px;
}

button.btn-primary {
  background-color: #20B2AA;
  color: #fff;
}

button.btn-danger {
  background-color: #e84393;
  color: #fff;
}
button.btn-danger i {
  color: #fff;
}

/* Common Margin & Padding */
.mt-30 {
  margin-top: 30px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mt-4 {
  margin-top: 4em;
}

.mt-5 {
  margin-top: 5em;
}

.mb-1 {
  margin-bottom: 1em;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-5 {
  margin-bottom: 5em;
}

.wrapper main {
  padding: 15px;
}
.wrapper main .products-wrapper, .wrapper main .user-wrapper {
  margin-bottom: 70px;
}
.wrapper main .dues {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  padding: 0 10px 15px;
}
.wrapper main .dues .past, .wrapper main .dues .total {
  background-color: #e84393;
  border-radius: 15px;
}
.wrapper main .dues-wrapper {
  padding: 0 10px;
}

/*  Mobile Screens */
@media screen and (min-width: 320px) {
  table {
    font-size: 13px;
  }

  .card {
    min-width: 330px;
  }

  body {
    background-color: #f8f8f8;
  }

  .dashboard {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 10px;
  }

  .wrapper {
    display: flex;
    flex-direction: column;
  }
  .wrapper nav {
    position: sticky;
    left: 0;
    top: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #d03c84;
    padding: 10px 30px;
    border-radius: 0 0 15px 15px;
  }
  .wrapper nav .user-details {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
  }
  .wrapper nav .user-details .avatar {
    display: flex;
    align-items: center;
  }
  .wrapper nav .user-details .avatar img {
    width: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
  }
  .wrapper nav .user-details .details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 7px;
  }
  .wrapper nav .user-details .details .name {
    line-height: 1.1;
    font-weight: 600;
    color: #fff;
  }
  .wrapper nav .user-details .details .type {
    font-family: "Questrial", sans-serif;
    font-size: 13px;
    color: #fff;
  }
  .wrapper nav .user-details .unauthorized {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .wrapper nav .user-details .unauthorized .logo {
    color: #e84393;
    font-size: 18px;
    font-weight: 600;
  }
  .wrapper nav .user-details .unauthorized .buttons .login {
    background-color: #e84393;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
  }
  .wrapper nav a i.uil-bars {
    color: #fff;
    font-size: 39px;
    line-height: 1;
    transition: color 0.5s ease-in;
  }
  .wrapper nav a:hover .uil-bars {
    color: #2b2b2b;
  }
  .wrapper main {
    display: flex;
    flex-direction: column;
  }
  .wrapper main .account-details {
    padding: 25px 10px;
  }
  .wrapper main .account-details h2 {
    font-size: 18px;
  }
  .wrapper main .account-details .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .wrapper main .add-button {
    display: grid;
    justify-content: center;
    align-items: center;
    margin: 15px 0 15px;
  }
  .wrapper main .attendance_wrapper {
    padding: 25px 10px;
  }
  .wrapper main .attendance_wrapper .buttons {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.4rem;
    margin-bottom: 3em;
    align-items: center;
    justify-content: center;
  }
  .wrapper main .attendance_wrapper .attendances {
    width: 100%;
  }
  .wrapper main .attendance_wrapper .button {
    display: flex;
    justify-content: center;
  }
  .wrapper main .banner {
    position: relative;
  }
  .wrapper main .banner .fullscreen {
    width: 100%;
    margin-bottom: 15px;
  }
  .wrapper main .banner .overlay-texts {
    background: rgba(232, 67, 147, 0.8);
    border-radius: 5px;
    position: absolute;
    bottom: 35px;
    left: 15px;
    right: 10px;
  }
  .wrapper main .banner .overlay-texts .text {
    display: flex;
    padding: 7px 10px;
    width: 90%;
  }
  .wrapper main .banner .overlay-texts .text span {
    font-family: "Questrial", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: white;
  }
  .wrapper main .contact-options {
    padding: 20px 0 70px;
  }
  .wrapper main .contact-options .header {
    text-align: center;
    margin-bottom: 15px;
  }
  .wrapper main .contact-options .header .title {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: bolder;
    color: #d03c84;
    line-height: 1.2;
  }
  .wrapper main .contact-options .options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em;
    padding: 0 15px;
  }
  .wrapper main .contact-options .options .social-medias .social-media {
    display: grid;
    grid-template-columns: 3.5em 1fr;
    gap: 1em;
    margin-bottom: 1em;
  }
  .wrapper main .contact-options .options .social-medias .social-media .icon {
    height: 3.5em;
    width: 3.5em;
    border: 1px solid #e84393;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wrapper main .contact-options .options .social-medias .social-media .icon i {
    color: #e84393;
    font-size: 1.3em;
  }
  .wrapper main .contact-options .options .social-medias .social-media .text {
    height: 3.5em;
    display: flex;
    align-items: center;
  }
  .wrapper main .contact-options .options .text-us {
    background-color: #fff;
    padding: 30px 15px;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  }
  .wrapper main .contact-options .options .text-us i {
    color: #fff;
  }
  .wrapper main .destroy-message {
    padding: 30px 0 0;
    display: flex;
  }
  .wrapper main .destroy-message .icon i {
    color: #ea559d;
  }
  .wrapper main .destroy-message .text {
    color: #ea559d;
    margin-left: 5px;
  }
  .wrapper main .grid-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .wrapper main .grid-cards .grid-card {
    background: white;
    border-radius: 7px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    flex-direction: column;
  }
  .wrapper main .grid-cards .grid-card .omr {
    font-size: 2em;
  }
  .wrapper main .dues .past,
.wrapper main .dues .total {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
  }
  .wrapper main .dues .past .title,
.wrapper main .dues .past .amount,
.wrapper main .dues .total .title,
.wrapper main .dues .total .amount {
    color: white;
  }
  .wrapper main .dues .past .title,
.wrapper main .dues .total .title {
    font-family: "Righteous", sans-serif;
    font-size: 20px;
    text-transform: uppercase;
  }
  .wrapper main .dues .past p,
.wrapper main .dues .total p {
    color: #fff;
    font-size: 12px;
    text-align: center;
  }
  .wrapper main .dues-wrapper .due {
    background-color: white;
    border-radius: 7px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 10px;
    margin-bottom: 7px;
  }
  .wrapper main .dues-wrapper .due .avatar {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wrapper main .dues-wrapper .due .avatar img {
    width: 60px;
    border-radius: 50%;
  }
  .wrapper main .dues-wrapper .due .details {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .wrapper main .dues-wrapper .due .details .customer-name {
    font-family: "Questrial", sans-serif;
    font-weight: 800;
  }
  .wrapper main .dues-wrapper .due .details .order-detail {
    font-size: 14px;
  }
  .wrapper main .dues-wrapper .due .details .date {
    font-size: 10px;
    color: #ababab;
    display: flex;
  }
  .wrapper main .dues-wrapper .due .details .date button.text-btn-danger {
    margin-left: 15px;
    font-size: 10px;
    background: none;
    color: rgba(232, 67, 147, 0.5);
    transition: color 0.4s ease-in;
  }
  .wrapper main .dues-wrapper .due .details .date button.text-btn-danger:hover {
    color: #e84393;
  }
  .wrapper main .info-cards {
    display: grid;
    border-radius: 5px;
    margin: 0 0px 10px;
    grid-template-columns: repeat(3, 1fr);
  }
  .wrapper main .info-cards .info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
  }
  .wrapper main .info-cards .info-card .heading {
    font-family: "Righteous", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0 1px;
  }
  .wrapper main .info-cards .info-card .money {
    color: #fff;
    font-size: 14px;
  }
  .wrapper main .items-wrapper {
    padding: 0 15px;
  }
  .wrapper main .items-wrapper .items {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .wrapper main .items-wrapper .items .item {
    display: flex;
    justify-content: space-between;
    background: #eeeded;
    border-radius: 7px;
    padding: 7px 10px;
  }
  .wrapper main .items-wrapper .items .item .actions {
    display: flex;
    font-size: 18px;
  }
  .wrapper main .items-wrapper .items .item .actions .uil {
    color: #d7d7d7;
    font-size: 18px;
  }
  .wrapper main .items-wrapper .items .item .actions .uil-pen:hover {
    color: #20B2AA;
    cursor: pointer;
  }
  .wrapper main .items-wrapper .items .item .actions .uil-trash:hover {
    color: #e84393;
    cursor: pointer;
  }
  .wrapper main .machines {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .wrapper main .machines .machine {
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  }
  .wrapper main .machines .machine .uil-heart-rate {
    font-size: 36px;
    color: #e84393;
  }
  .wrapper main .machines .machine .name {
    font-size: 18px;
  }
  .wrapper main .machines .machine .heads {
    color: #ababab;
  }
  .wrapper main .menus {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px 10px 15px;
  }
  .wrapper main .menus .menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    transition: all 0.4s ease-in-out;
  }
  .wrapper main .menus .menu i {
    font-size: 2.5rem;
    color: #e84393;
  }
  .wrapper main .menus .menu .menu-title {
    color: #636e72;
  }
  .wrapper main .menus .menu:hover {
    background-color: #e9e9e9;
    border-radius: 15px;
  }
  .wrapper main .notices-wrapper-home {
    padding: 30px 0 15px;
  }
  .wrapper main .notices-wrapper-home .header {
    text-align: center;
    margin-bottom: 25px;
  }
  .wrapper main .notices-wrapper-home .header .title {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: bolder;
    color: #d03c84;
    line-height: 1.2;
  }
  .wrapper main .notices-wrapper-home .notices {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 200px;
    padding: 0 15px;
  }
  .wrapper main .notices-wrapper-home .notices .notice {
    background: white;
    padding: 10px 15px;
    border-radius: 7px;
    display: grid;
    grid-template-columns: 30px 1fr;
    margin-bottom: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    animation: animate 15s linear infinite;
  }
  .wrapper main .notices-wrapper-home .notices .notice .icon {
    height: 30px;
    width: 30px;
    border: 1px solid #ababab;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.4s ease-in;
  }
  .wrapper main .notices-wrapper-home .notices .notice .icon i {
    font-size: 1.2rem;
  }
  .wrapper main .notices-wrapper-home .notices .notice .title {
    margin-left: 5px;
    display: flex;
    align-items: center;
    line-height: 1.2;
    font-size: 1rem;
  }
  .wrapper main .notices-wrapper-home .notices .notice:hover {
    cursor: pointer;
  }
  .wrapper main .notices-wrapper-home .notices .notice:hover .icon {
    background-color: #d03c84;
    border: 1px solid #d03c84;
  }
  .wrapper main .notices-wrapper-home .notices .notice:hover .icon .uil {
    color: #fff;
  }
  .wrapper main .notices-wrapper-home .notices .notice:nth-child(1) {
    animation-delay: -3s;
  }
  .wrapper main .notices-wrapper-home .notices .notice:nth-child(2) {
    animation-delay: 0s;
  }
  .wrapper main .notices-wrapper-home .notices .notice:nth-child(3) {
    animation-delay: 3s;
  }
  .wrapper main .notices-wrapper-home .notices .notice:nth-child(4) {
    animation-delay: 6s;
  }
  .wrapper main .notices-wrapper-home .notices .notice:nth-child(5) {
    animation-delay: 9s;
  }
  .wrapper main .notices-wrapper-home .notices:hover .notice {
    animation-play-state: paused;
  }
  .wrapper main .notices-wrapper .notices {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .wrapper main .notices-wrapper .notices .notice {
    display: flex;
    justify-content: space-between;
    background: #eeeded;
    border-radius: 7px;
    padding: 7px 10px;
  }
  .wrapper main .notices-wrapper .notices .notice .notice-wrapper {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    gap: 10px;
  }
  .wrapper main .notices-wrapper .notices .notice .notice-wrapper .icon {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ababab;
    border-radius: 50%;
  }
  .wrapper main .notices-wrapper .notices .notice .notice-wrapper .content .time {
    font-size: 10px;
    color: #ababab;
  }
  .wrapper main .notices-wrapper .notices .notice .notice-wrapper .content .actions {
    margin-top: 3px;
    display: flex;
  }
  .wrapper main .notices-wrapper .notices .notice .notice-wrapper .content .actions a {
    margin-right: 2px;
  }
  .wrapper main .ongoing-actions {
    padding: 0 30px 0;
    margin: 20px 0 15px;
    display: flex;
    justify-content: space-between;
  }
  .wrapper main .ongoings-wrapper {
    padding: 0 30px 0px;
  }
  .wrapper main .ongoings-wrapper .ongoings {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin-bottom: 70px;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images {
    min-height: 160px;
    overflow: hidden;
    transition-duration: 0.5s;
    position: relative;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images img {
    border-radius: 10px 10px 0 0;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images .actions {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images .actions a {
    padding: 7px 15px;
    border-radius: 5px;
    color: #fff;
    margin: 2px;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images .actions .edit {
    display: none;
    background-color: #20B2AA;
    transition: all 4s ease-in-out;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images .actions .delete {
    display: none;
    background-color: #e84393;
    transition: all 4s ease-in-out;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images:hover .edit {
    display: block;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images:hover .delete {
    display: block;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .details {
    padding: 10px 10px 15px;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .details .title {
    font-size: 18px;
    line-height: 1.1;
    font-weight: bold;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .details .date {
    font-size: 12px;
    color: #ababab;
    padding: 2px 0 7px;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .details .machine {
    font-size: 13px;
    color: #969696;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .details .code_price {
    display: flex;
    justify-content: space-between;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .details .code_price .price, .wrapper main .ongoings-wrapper .ongoings .ongoing .details .code_price .code {
    font-size: 13px;
    color: #ababab;
    font-weight: 400;
  }
  .wrapper main .ongoings-wrapper-home .slider .ongoings {
    padding: 0 15px;
  }
  .wrapper main .orders-wrapper {
    padding: 10px 15px 20px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .wrapper main .orders-wrapper .order {
    background-color: white;
    border-radius: 7px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 10px;
  }
  .wrapper main .orders-wrapper .order .avatar {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wrapper main .orders-wrapper .order .avatar img {
    width: 60px;
    border-radius: 50%;
  }
  .wrapper main .orders-wrapper .order .details {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .wrapper main .orders-wrapper .order .details .customer-name {
    font-family: "Questrial", sans-serif;
    font-weight: 800;
  }
  .wrapper main .orders-wrapper .order .details .order-detail {
    font-size: 14px;
  }
  .wrapper main .orders-wrapper .order .details .date {
    font-size: 10px;
    color: #ababab;
    display: flex;
  }
  .wrapper main .orders-wrapper .order .details .date button.text-btn-danger {
    margin-left: 15px;
    font-size: 10px;
    background: none;
    color: rgba(232, 67, 147, 0.5);
    transition: color 0.4s ease-in;
  }
  .wrapper main .orders-wrapper .order .details .date button.text-btn-danger:hover {
    color: #e84393;
  }
  .wrapper main .overtimes {
    margin: 90px 30px;
  }
  .wrapper main .overtimes .overtime {
    display: grid;
    grid-template-columns: 60px 1fr;
    background: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 7px;
    margin-bottom: 10px;
    padding: 5px;
  }
  .wrapper main .overtimes .overtime .avatar {
    display: grid;
    align-items: center;
  }
  .wrapper main .overtimes .overtime .avatar img {
    border-radius: 50%;
  }
  .wrapper main .overtimes .overtime .details {
    display: grid;
    align-items: center;
    margin-left: 8px;
  }
  .wrapper main .overtimes .overtime .details .date {
    font-size: 10px;
    line-height: 1;
  }
  .wrapper main .overtimes .overtime .details .name {
    line-height: 1.1;
  }
  .wrapper main .overtimes .overtime .details .info {
    font-size: 11px;
  }
  .wrapper main .owl-carousel {
    width: 100%;
  }
  .wrapper main .owl-carousel .content {
    position: relative;
  }
  .wrapper main .owl-carousel .content .details {
    position: absolute;
    background-color: #e84393;
    left: 20px;
    bottom: 15px;
    padding: 5px 15px;
    border-radius: 5px;
  }
  .wrapper main .owl-carousel .content .details .item {
    font-weight: 900;
    color: #fff;
  }
  .wrapper main .payments {
    background-color: #e84393;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 0px 15px 0;
    border-radius: 5px;
  }
  .wrapper main .payments .total,
.wrapper main .payments .paid,
.wrapper main .payments .due {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
  }
  .wrapper main .payments .total .title,
.wrapper main .payments .total .amount,
.wrapper main .payments .paid .title,
.wrapper main .payments .paid .amount,
.wrapper main .payments .due .title,
.wrapper main .payments .due .amount {
    color: white;
  }
  .wrapper main .payments .total .title,
.wrapper main .payments .paid .title,
.wrapper main .payments .due .title {
    font-family: "Righteous", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
  }
  .wrapper main .payments .total .amount,
.wrapper main .payments .paid .amount,
.wrapper main .payments .due .amount {
    font-size: 15px;
  }
  .wrapper main .plus-button {
    display: grid;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    position: fixed;
    right: 30px;
    top: 70px;
    font-size: 24px;
    color: #bbb;
    transition: all 0.4s ease-in-out;
  }
  .wrapper main .plus-button:hover {
    background: #e84393;
    color: #fff;
  }
  .wrapper main .product-wrapper {
    background-color: #fff;
    margin-bottom: 70px;
  }
  .wrapper main .product-wrapper .product {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 10px;
  }
  .wrapper main .product-wrapper .product .image img {
    border-radius: 10px 10px 0 0;
  }
  .wrapper main .product-wrapper .product .details {
    padding: 10px 15px 25px;
  }
  .wrapper main .product-wrapper .product .details .title {
    color: #d03c84;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
  }
  .wrapper main .product-wrapper .product .details .description {
    margin-bottom: 15px;
  }
  .wrapper main .product-wrapper .product .details .code, .wrapper main .product-wrapper .product .details .price {
    color: #ababab;
  }
  .wrapper main .product-wrapper .product .details .labels {
    margin-top: 10px;
    display: flex;
  }
  .wrapper main .product-wrapper .product .details .labels .label {
    background-color: #e84393;
    border-radius: 4px;
    padding: 3px 7px;
    font-size: 13px;
  }
  .wrapper main .product-wrapper .product .details .labels .label i {
    color: #fff;
  }
  .wrapper main .product-wrapper .product .details .labels .label a {
    color: #fff;
  }
  .wrapper main .products-wrapper {
    padding: 0px 10px;
  }
  .wrapper main .products-wrapper .header {
    text-align: center;
    margin-bottom: 30px;
  }
  .wrapper main .products-wrapper .header .title {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: bolder;
    color: #d03c84;
    line-height: 1.2;
  }
  .wrapper main .products-wrapper .products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .wrapper main .products-wrapper .products .product {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  }
  .wrapper main .products-wrapper .products .product .images {
    overflow: hidden;
    transition-duration: 0.5s;
    position: relative;
  }
  .wrapper main .products-wrapper .products .product .images img {
    border-radius: 10px 10px 0 0;
  }
  .wrapper main .products-wrapper .products .product .images .actions {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wrapper main .products-wrapper .products .product .images .actions a {
    padding: 3px 12px;
    border-radius: 4px;
    color: #fff;
    margin: 2px;
  }
  .wrapper main .products-wrapper .products .product .images .actions .edit {
    display: none;
    background-color: #20B2AA;
    transition: all 4s ease-in-out;
  }
  .wrapper main .products-wrapper .products .product .images .actions .delete {
    display: none;
    background-color: #e84393;
    transition: all 4s ease-in-out;
  }
  .wrapper main .products-wrapper .products .product .images:hover .edit {
    display: block;
  }
  .wrapper main .products-wrapper .products .product .images:hover .delete {
    display: block;
  }
  .wrapper main .products-wrapper .products .product .details {
    padding: 10px 10px 15px;
  }
  .wrapper main .products-wrapper .products .product .details .title {
    font-size: 15px;
    line-height: 1.1;
    margin-bottom: 5px;
    font-weight: bold;
  }
  .wrapper main .products-wrapper .products .product .details .title a {
    color: #ea559d;
  }
  .wrapper main .products-wrapper .products .product .details .title a:hover {
    color: #d03c84;
  }
  .wrapper main .products-wrapper .products .product .details .price {
    font-size: 13px;
    color: #ababab;
    font-weight: 400;
  }
  .wrapper main .products-wrapper .link {
    text-align: center;
  }
  .wrapper main .salaries {
    margin-top: 20px;
    padding: 0 15px 0;
  }
  .wrapper main .salaries .salary {
    display: grid;
    grid-template-columns: 80px auto;
    margin-bottom: 8px;
    background: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 7px;
    margin-bottom: 10px;
    padding: 5px 15px;
  }
  .wrapper main .salaries .salary .avatar {
    display: grid;
    align-items: center;
  }
  .wrapper main .salaries .salary .avatar img {
    border-radius: 50%;
  }
  .wrapper main .salaries .salary .details {
    margin-left: 8px;
    padding: 7px;
  }
  .wrapper main .salaries .salary .details .name {
    font-size: 14px;
  }
  .wrapper main .salaries .salary .details .payment {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .wrapper main .salaries .salary .details .payment form button {
    background: none;
    padding: 0;
  }
  .wrapper main .salaries .salary .details .payment form button i {
    color: #b9b9b9;
    font-size: 28px;
    line-height: 1;
    transition: all 0.4s ease-in;
  }
  .wrapper main .salaries .salary .details .payment form button:hover i {
    color: rgba(232, 67, 147, 0.7);
  }
  .wrapper main .salaries .salary .details .type {
    font-size: 10px;
  }
  .wrapper main .salaries .salary .details .payment_details {
    font-size: 12px;
    margin-bottom: 5px;
    color: #999;
  }
  .wrapper main .salaries .salary .details .date {
    font-size: 10px;
  }
  .wrapper main .slider {
    padding: 20px 0 20px;
  }
  .wrapper main .slider .header {
    text-align: center;
    margin-bottom: 15px;
  }
  .wrapper main .slider .header .title {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: bolder;
    color: #d03c84;
    line-height: 1.2;
  }
  .wrapper main .staffs-wrapper {
    padding: 20px 15px 20px;
  }
  .wrapper main .staffs-wrapper .header {
    text-align: center;
    margin-bottom: 15px;
  }
  .wrapper main .staffs-wrapper .header .title {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: bolder;
    color: #d03c84;
    line-height: 1.2;
  }
  .wrapper main .staffs-wrapper .staffs .staff {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 15px;
  }
  .wrapper main .staffs-wrapper .staffs .staff .image {
    display: flex;
    justify-content: center;
  }
  .wrapper main .staffs-wrapper .staffs .staff .image img {
    width: 160px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  .wrapper main .staffs-wrapper .staffs .staff .details {
    text-align: center;
  }
  .wrapper main .staffs-wrapper .staffs .staff .details .name {
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: bolder;
    color: #d03c84;
  }
  .wrapper main .staffs-wrapper .staffs .staff .details .type {
    color: #999;
  }
  .wrapper main .staffs-wrapper .staffs .staff .details .email {
    font-size: 13px;
  }
  .wrapper main .success-message {
    padding: 0px 0 20px;
    display: flex;
  }
  .wrapper main .success-message .icon i {
    color: #20B2AA;
  }
  .wrapper main .success-message .text {
    color: #20B2AA;
    margin-left: 5px;
  }
  .wrapper main .transactions {
    position: relative;
  }
  .wrapper main .transactions .info-cards {
    background-color: #e84393;
  }
  .wrapper main .transactions .info-cards .info-card .heading {
    padding: 0;
  }
  .wrapper main .transactions .transaction-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
  }
  .wrapper main .transactions .transaction-actions .search {
    display: flex;
    gap: 5px;
    justify-content: center;
  }
  .wrapper main .transactions .btn-circle {
    background: #20B2AA;
    border-radius: 80%;
    height: 30px;
    width: 30px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 23px;
    font-weight: bolder;
    margin-left: 15px;
    margin-top: -21px;
    transition: width 0.2s ease-in;
  }
  .wrapper main .transactions .btn-circle span {
    width: 90px;
    display: none;
    font-size: 15px;
    transition: all 0.5s ease-in;
  }
  .wrapper main .transactions .heading h4 {
    margin-top: 10px;
  }
  .wrapper main .transactions .search_date_range {
    font-size: 13px;
    text-align: center;
    margin: 0 0 15px;
  }
  .wrapper main .transactions .btn-circle:hover {
    border-radius: 7px;
    width: 120px;
  }
  .wrapper main .transactions .btn-circle:hover span {
    display: block;
    color: white;
  }
  .wrapper main .transactions .table tbody .earning td {
    color: rgba(73, 190, 162, 0.9);
  }
  .wrapper main .transactions .table tbody .expense td {
    color: rgba(204, 51, 102, 0.7);
  }
  .wrapper main .transactions .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
  }
  .wrapper main .transactions .buttons .delete_all_button {
    display: flex;
    justify-content: center;
  }
  .wrapper main .users {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .wrapper main .users .user {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .wrapper main .users .user .avatar {
    padding: 0px;
  }
  .wrapper main .users .user .avatar img {
    border-radius: 15px;
  }
  .wrapper main .users .user .details {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .wrapper main .users .user .details .name {
    line-height: 1.2;
  }
  .wrapper main .users .user .details .type {
    font-size: 13px;
  }
  .wrapper main .users .user .details .type i.uil {
    color: #20B2AA;
  }
  .wrapper main .user-wrapper {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .wrapper main .user-wrapper .user {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px 0;
  }
  .wrapper main .user-wrapper .user .avatar {
    display: flex;
    margin-bottom: 15px;
    position: relative;
    margin: 0px 0 20px;
  }
  .wrapper main .user-wrapper .user .avatar img {
    border-radius: 10px;
    position: relative;
  }
  .wrapper main .user-wrapper .user .avatar input {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    cursor: pointer;
    background-color: #e84393;
    border-radius: 10px;
  }
  .wrapper main .user-wrapper .user .avatar label {
    font-weight: 700;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0.4rem;
  }
  .wrapper main .user-wrapper .user .avatar label i {
    font-size: 1em;
    color: rgba(255, 255, 255, 0);
    background-color: rgba(255, 255, 255, 0);
  }
  .wrapper main .user-wrapper .user .avatar input:hover + label {
    display: flex;
    background-color: rgba(232, 67, 147, 0.8);
    transition: 0.3s ease-in;
  }
  .wrapper main .user-wrapper .user .avatar input:hover + label i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: 0.5s ease-in;
  }
  .wrapper main .user-wrapper .user .name {
    font-family: "Questrial", sans-serif;
    font-size: 1.4rem;
    font-weight: 200;
  }
  .wrapper main .user-wrapper .actions {
    display: flex;
    justify-content: center;
    padding: 15px 0;
  }
  .wrapper main .user-wrapper .actions .btn {
    margin: 0 2px;
  }
  .wrapper main .user-wrapper .info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 30px 30px 10px;
  }
  .wrapper main .user-wrapper .info-cards .info-card {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 15px;
    border-radius: 7px;
  }
  .wrapper main .user-wrapper .link {
    display: flex;
    gap: 5px;
    margin: 10px auto;
  }
  .wrapper main .user-wrapper .link a {
    border: 1px solid #d7d7d7;
    border-radius: 7px;
    padding: 5px 15px;
  }
  .wrapper main .user-details-wrapper .account-details .title {
    border-bottom: 1px solid lightgray;
  }
  .wrapper main .user-details-wrapper .account-details .name {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin: 22px 0 36px;
  }
  .wrapper main .user-details-wrapper .account-details .orders, .wrapper main .user-details-wrapper .account-details .delivered {
    padding: 0 15px 0;
  }
  .wrapper main .user-details-wrapper .account-details .header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
  }
  .wrapper main .user-details-wrapper .account-details .header .logo img {
    max-width: 150px;
  }
  .wrapper main .user-details-wrapper .account-details .header .invoice {
    font-weight: bolder;
    font-size: 2.3em;
  }
  .wrapper main .user-details-wrapper .account-details .contact-part {
    margin-top: 3em;
    border-top: 1px solid gray;
    padding-top: 1em;
    display: flex;
    justify-content: center;
  }
  .wrapper main .user-details-wrapper .account-details .contact-part .address {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .wrapper main .user-details-wrapper .account-details .contact-part .address p {
    font-size: 14px;
  }
  .wrapper main .user-details-wrapper .account-details .bill-to {
    display: flex;
    justify-content: space-between;
    margin: 1em 0;
  }
  .wrapper main .user-details-wrapper .account-details .bill-to .customer-details .name {
    text-align: left;
    font-size: 14px;
    margin: 0;
  }
  .wrapper main .user-details-wrapper .account-details .bill-to .past-due {
    font-size: 14px;
  }
  .wrapper main .user-details-wrapper .account-details .final-touch {
    text-align: right;
  }
  .wrapper main .user-details-wrapper .account-details .final-touch .bill, .wrapper main .user-details-wrapper .account-details .final-touch .sample, .wrapper main .user-details-wrapper .account-details .final-touch .due, .wrapper main .user-details-wrapper .account-details .final-touch .total-bill, .wrapper main .user-details-wrapper .account-details .final-touch .payment, .wrapper main .user-details-wrapper .account-details .final-touch .final-due {
    display: grid;
    grid-template-columns: 4fr 1fr;
  }
  .wrapper main .user-details-wrapper .account-details .final-touch .bill .bill-title, .wrapper main .user-details-wrapper .account-details .final-touch .sample .bill-title, .wrapper main .user-details-wrapper .account-details .final-touch .due .bill-title, .wrapper main .user-details-wrapper .account-details .final-touch .total-bill .bill-title, .wrapper main .user-details-wrapper .account-details .final-touch .payment .bill-title, .wrapper main .user-details-wrapper .account-details .final-touch .final-due .bill-title {
    margin-right: 0.5em;
  }
  .wrapper main .user-details-wrapper .account-details .final-touch .bill .amount, .wrapper main .user-details-wrapper .account-details .final-touch .sample .amount, .wrapper main .user-details-wrapper .account-details .final-touch .due .amount, .wrapper main .user-details-wrapper .account-details .final-touch .total-bill .amount, .wrapper main .user-details-wrapper .account-details .final-touch .payment .amount, .wrapper main .user-details-wrapper .account-details .final-touch .final-due .amount {
    text-align: left;
  }
  .wrapper main .user-details-wrapper .account-details .final-touch .total-bill, .wrapper main .user-details-wrapper .account-details .final-touch .final-due {
    border-top: 1px solid gray;
  }
  .wrapper main .user-details-wrapper .account-details .signs {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    text-align: center;
    margin-top: 5em;
  }
  .wrapper main .user-details-wrapper .account-details .signs .customer, .wrapper main .user-details-wrapper .account-details .signs .authority {
    border-top: 1px solid gray;
  }
  .wrapper main .user-details-wrapper .print_button {
    margin: 2em 0 3em;
    text-align: center;
  }
  .wrapper main .videos-wrapper .videos .video {
    display: flex;
    flex-direction: column;
    background: #eeeded;
    margin-bottom: 15px;
    border-radius: 7px;
  }
  .wrapper main .videos-wrapper .videos .video .video-container {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .wrapper main .videos-wrapper .videos .video .video-container::after {
    padding-top: 56.25%;
    display: block;
    content: "";
  }
  .wrapper main .videos-wrapper .videos .video .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .wrapper main .videos-wrapper .videos .video .content {
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
  }
  .wrapper main .videos-wrapper .videos .video .content .title {
    line-height: 1.1;
    margin-bottom: 5px;
  }
  .wrapper main .videos-wrapper .videos .video .content .actions {
    margin: 5px 0;
  }
  .wrapper main .worker_acount_details {
    position: relative;
  }
  .wrapper main .worker_acount_details .switcher {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin: 30px 0 15px;
  }
  .wrapper main .worker_acount_details .switcher .salary,
.wrapper main .worker_acount_details .switcher .overtime {
    background: #494F55;
    border-radius: 5px;
    padding: 7px 15px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s ease-in;
  }
  .wrapper main .worker_acount_details .switcher .salary:hover,
.wrapper main .worker_acount_details .switcher .overtime:hover {
    background: #e84393;
  }
  .wrapper main .worker_acount_details .switcher .active {
    background: #e84393;
  }
  .wrapper main .worker_acount_details .salary_payments,
.wrapper main .worker_acount_details .worker_overtimes {
    position: absolute;
    width: 100%;
  }
  .wrapper .bottom-links {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    display: grid;
    grid-template-columns: 3fr 1fr 3fr;
    border-radius: 15px 15px 0 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    z-index: 1;
  }
  .wrapper .bottom-links .link {
    display: flex;
    justify-content: center;
  }
  .wrapper .bottom-links .link:hover a,
.wrapper .bottom-links .link:hover i {
    color: #d03c84;
  }
}
/* Medium Screen */
@media screen and (min-width: 768px) {
  body {
    background-color: #f8f8f8;
  }

  .wrapper .user-details {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
  }
  .wrapper .user-details .avatar {
    display: flex;
    align-items: center;
  }
  .wrapper .user-details .avatar img {
    width: 40px;
    border-radius: 50%;
  }
  .wrapper .user-details .details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 7px;
  }
  .wrapper .user-details .details .name {
    line-height: 1.1;
    font-weight: 600;
    color: #848484;
  }
  .wrapper .user-details .details .type {
    font-family: "Questrial", sans-serif;
    font-size: 13px;
  }
  .wrapper .user-details .unauthorized {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .wrapper .user-details .unauthorized .logo {
    color: #e84393;
    font-size: 18px;
    font-weight: 600;
  }
  .wrapper .user-details .unauthorized .buttons .login {
    background-color: #e84393;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
  }
  .wrapper main {
    padding: 0;
  }
  .wrapper main .notices-wrapper-home .header,
.wrapper main .ongoings-wrapper-home .slider .header {
    text-align: center;
    margin-bottom: 2rem;
  }
  .wrapper main .notices-wrapper-home .header .title,
.wrapper main .ongoings-wrapper-home .slider .header .title {
    font-family: "Poppins", sans-serif;
    font-size: 2em;
    font-weight: bolder;
    color: #d03c84;
    line-height: 1.2;
  }
  .wrapper main .banner {
    position: relative;
  }
  .wrapper main .banner .fullscreen {
    width: 100%;
    margin-bottom: 15px;
  }
  .wrapper main .banner .overlay-texts {
    background: rgba(232, 67, 147, 0.8);
    border-radius: 5px;
    position: absolute;
    bottom: 5em;
    left: 4em;
    right: 4em;
  }
  .wrapper main .banner .overlay-texts .text {
    display: flex;
    padding: 7px 10px;
    width: 90%;
  }
  .wrapper main .banner .overlay-texts .text span {
    font-family: "Questrial", sans-serif;
    font-weight: 400;
    font-size: 2em;
    color: white;
  }
  .wrapper main .bottom-links {
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    display: grid;
    grid-template-columns: 3fr 1fr 3fr;
    border-radius: 15px 15px 0 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    z-index: 1;
  }
  .wrapper main .bottom-links .link {
    display: flex;
    justify-content: center;
  }
  .wrapper main .bottom-links .link:hover a,
.wrapper main .bottom-links .link:hover i {
    color: #d03c84;
  }
  .wrapper main .contact-options {
    padding: 20px 0 70px;
  }
  .wrapper main .contact-options .header {
    text-align: center;
    margin-bottom: 15px;
  }
  .wrapper main .contact-options .header .title {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: bolder;
    color: #d03c84;
    line-height: 1.2;
  }
  .wrapper main .contact-options .options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em;
    padding: 0 1em;
  }
  .wrapper main .contact-options .options .social-medias .social-media {
    display: grid;
    grid-template-columns: 3.5em 1fr;
    gap: 1em;
    margin-bottom: 1em;
  }
  .wrapper main .contact-options .options .social-medias .social-media .icon {
    height: 3.5em;
    width: 3.5em;
    border: 1px solid #e84393;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wrapper main .contact-options .options .social-medias .social-media .icon i {
    color: #e84393;
    font-size: 1.3em;
  }
  .wrapper main .contact-options .options .social-medias .social-media .text {
    height: 3.5em;
    display: flex;
    align-items: center;
  }
  .wrapper main .contact-options .options .text-us {
    background-color: #fff;
    padding: 30px 15px;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  }
  .wrapper main .contact-options .options .text-us i {
    color: #fff;
  }
  .wrapper main .destroy-message {
    padding: 30px 0 0;
    display: flex;
  }
  .wrapper main .destroy-message .icon i {
    color: #ea559d;
  }
  .wrapper main .destroy-message .text {
    color: #ea559d;
    margin-left: 5px;
  }
  .wrapper main .dues-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 30px;
  }
  .wrapper main .dues-wrapper .due {
    background-color: white;
    border-radius: 7px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 10px;
    margin-bottom: 7px;
  }
  .wrapper main .dues-wrapper .due .avatar {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wrapper main .dues-wrapper .due .avatar img {
    width: 60px;
    border-radius: 50%;
  }
  .wrapper main .dues-wrapper .due .details {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .wrapper main .dues-wrapper .due .details .customer-name {
    font-family: "Questrial", sans-serif;
    font-weight: 800;
  }
  .wrapper main .dues-wrapper .due .details .order-detail {
    font-size: 14px;
  }
  .wrapper main .dues-wrapper .due .details .date {
    font-size: 10px;
    color: #ababab;
    display: flex;
  }
  .wrapper main .dues-wrapper .due .details .date button.text-btn-danger {
    margin-left: 15px;
    font-size: 10px;
    background: none;
    color: rgba(232, 67, 147, 0.5);
    transition: color 0.4s ease-in;
  }
  .wrapper main .dues-wrapper .due .details .date button.text-btn-danger:hover {
    color: #e84393;
  }
  .wrapper main .dues {
    grid-template-columns: 1fr 1fr;
  }
  .wrapper main .dues .past,
.wrapper main .dues .total {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
  }
  .wrapper main .dues .past .title,
.wrapper main .dues .past .amount,
.wrapper main .dues .total .title,
.wrapper main .dues .total .amount {
    color: white;
  }
  .wrapper main .dues .past .title,
.wrapper main .dues .total .title {
    font-family: "Righteous", sans-serif;
    font-size: 20px;
    text-transform: uppercase;
  }
  .wrapper main .menus {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 30px;
  }
  .wrapper main .menus .menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    transition: all 0.4s ease-in-out;
  }
  .wrapper main .menus .menu i {
    font-size: 2.5rem;
    color: #e84393;
  }
  .wrapper main .menus .menu .menu-title {
    color: #636e72;
  }
  .wrapper main .menus .menu:hover {
    background-color: #e9e9e9;
    border-radius: 15px;
  }
  .wrapper main .notices-wrapper-home .notices {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 200px;
  }
  .wrapper main .notices-wrapper-home .notices .notice {
    background: white;
    padding: 10px 15px;
    border-radius: 7px;
    display: grid;
    grid-template-columns: 30px 1fr;
    margin-bottom: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    animation: animate 15s linear infinite;
  }
  .wrapper main .notices-wrapper-home .notices .notice .icon {
    height: 30px;
    width: 30px;
    border: 1px solid #ababab;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.4s ease-in;
  }
  .wrapper main .notices-wrapper-home .notices .notice .icon i {
    font-size: 1.2rem;
  }
  .wrapper main .notices-wrapper-home .notices .notice .title {
    margin-left: 5px;
    display: flex;
    align-items: center;
    line-height: 1.2;
    font-size: 1rem;
  }
  .wrapper main .notices-wrapper-home .notices .notice:hover {
    cursor: pointer;
  }
  .wrapper main .notices-wrapper-home .notices .notice:hover .icon {
    background-color: #d03c84;
    border: 1px solid #d03c84;
  }
  .wrapper main .notices-wrapper-home .notices .notice:hover .icon .uil {
    color: #fff;
  }
  .wrapper main .notices-wrapper-home .notices .notice:nth-child(1) {
    animation-delay: -3s;
  }
  .wrapper main .notices-wrapper-home .notices .notice:nth-child(2) {
    animation-delay: 0s;
  }
  .wrapper main .notices-wrapper-home .notices .notice:nth-child(3) {
    animation-delay: 3s;
  }
  .wrapper main .notices-wrapper-home .notices .notice:nth-child(4) {
    animation-delay: 6s;
  }
  .wrapper main .notices-wrapper-home .notices .notice:nth-child(5) {
    animation-delay: 9s;
  }
  .wrapper main .notices-wrapper-home .notices:hover .notice {
    animation-play-state: paused;
  }
  .wrapper main .ongoings-wrapper-home .slider {
    padding: 20px 0 20px;
  }
  .wrapper main .owl-carousel {
    width: 100%;
  }
  .wrapper main .owl-carousel .content {
    position: relative;
  }
  .wrapper main .owl-carousel .content .details {
    position: absolute;
    background-color: #e84393;
    left: 20px;
    bottom: 15px;
    padding: 5px 15px;
    border-radius: 5px;
  }
  .wrapper main .owl-carousel .content .details .item {
    font-weight: 900;
    color: #fff;
  }
  .wrapper main .payments {
    background-color: #e84393;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 70px 30px 0px;
    border-radius: 5px;
  }
  .wrapper main .payments .total,
.wrapper main .payments .paid,
.wrapper main .payments .due {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
  }
  .wrapper main .payments .total .title,
.wrapper main .payments .total .amount,
.wrapper main .payments .paid .title,
.wrapper main .payments .paid .amount,
.wrapper main .payments .due .title,
.wrapper main .payments .due .amount {
    color: white;
  }
  .wrapper main .payments .total .title,
.wrapper main .payments .paid .title,
.wrapper main .payments .due .title {
    font-family: "Righteous", sans-serif;
    font-size: 20px;
    text-transform: uppercase;
  }
  .wrapper main .salaries {
    padding: 0 30px 0;
  }
  .wrapper main .success-message {
    padding: 0px 0 20px;
    display: flex;
  }
  .wrapper main .success-message .icon i {
    color: #20B2AA;
  }
  .wrapper main .success-message .text {
    color: #20B2AA;
    margin-left: 5px;
  }
  .wrapper main .users {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 30px;
  }
  .wrapper main .users .user {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .wrapper main .users .user .avatar {
    padding: 20px;
  }
  .wrapper main .users .user .avatar img {
    border-radius: 15px;
  }
  .wrapper main .users .user .details {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .wrapper main .users .user .details .name {
    line-height: 1.2;
  }
  .wrapper main .users .user .details .type {
    font-size: 13px;
  }
  .wrapper main .users .user .details .type i.uil {
    color: #20B2AA;
  }
  .wrapper main .user-wrapper {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .wrapper main .user-wrapper .user {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .wrapper main .user-wrapper .user .avatar {
    display: flex;
    margin-bottom: 15px;
    position: relative;
    margin: 20px 0 20px;
  }
  .wrapper main .user-wrapper .user .avatar img {
    border-radius: 10px;
    position: relative;
  }
  .wrapper main .user-wrapper .user .avatar input {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    cursor: pointer;
    background-color: #e84393;
    border-radius: 10px;
  }
  .wrapper main .user-wrapper .user .avatar label {
    font-weight: 700;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0.4rem;
  }
  .wrapper main .user-wrapper .user .avatar label i {
    font-size: 1em;
    color: rgba(255, 255, 255, 0);
    background-color: rgba(255, 255, 255, 0);
  }
  .wrapper main .user-wrapper .user .avatar input:hover + label {
    display: flex;
    background-color: rgba(232, 67, 147, 0.8);
    transition: 0.3s ease-in;
  }
  .wrapper main .user-wrapper .user .avatar input:hover + label i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: 0.5s ease-in;
  }
  .wrapper main .user-wrapper .user .name {
    font-family: "Questrial", sans-serif;
    font-size: 1.4rem;
    font-weight: 200;
  }
  .wrapper main .user-wrapper .actions {
    display: flex;
    justify-content: center;
    padding: 15px 0;
  }
  .wrapper main .user-wrapper .actions .btn {
    margin: 0 2px;
  }
  .wrapper main .user-wrapper .info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 30px 30px 10px;
  }
  .wrapper main .user-wrapper .info-cards .info-card {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 15px;
    border-radius: 7px;
  }
  .wrapper main .user-wrapper .info-cards .info-card .heading {
    font-size: 14px;
  }
  .wrapper main .user-wrapper .link {
    display: flex;
    gap: 10px;
  }
  .wrapper main .user-wrapper .link a {
    border: 1px solid #d7d7d7;
    border-radius: 7px;
    padding: 5px 15px;
  }
  .wrapper main .items-wrapper .items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 30px;
  }
  .wrapper main .items-wrapper .items .item {
    display: flex;
    justify-content: space-between;
    background: #eeeded;
    border-radius: 7px;
    padding: 7px 10px;
  }
  .wrapper main .items-wrapper .items .item .actions {
    display: flex;
    font-size: 18px;
  }
  .wrapper main .items-wrapper .items .item .actions .uil {
    color: #d7d7d7;
    font-size: 18px;
  }
  .wrapper main .items-wrapper .items .item .actions .uil-pen:hover {
    color: #20B2AA;
    cursor: pointer;
  }
  .wrapper main .items-wrapper .items .item .actions .uil-trash:hover {
    color: #e84393;
    cursor: pointer;
  }
  .wrapper main .notices-wrapper {
    padding: 0 30px;
  }
  .wrapper main .notices-wrapper .notices {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .wrapper main .notices-wrapper .notices .notice {
    display: flex;
    justify-content: space-between;
    background: #eeeded;
    border-radius: 7px;
    padding: 7px 10px;
  }
  .wrapper main .notices-wrapper .notices .notice .notice-wrapper {
    display: grid;
    grid-template-columns: 50px 1fr;
  }
  .wrapper main .notices-wrapper .notices .notice .notice-wrapper .icon {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ababab;
    border-radius: 50%;
  }
  .wrapper main .notices-wrapper .notices .notice .notice-wrapper .content .time {
    font-size: 10px;
    color: #ababab;
  }
  .wrapper main .notices-wrapper .notices .notice .notice-wrapper .content .actions {
    margin-top: 3px;
    display: flex;
  }
  .wrapper main .notices-wrapper .notices .notice .notice-wrapper .content .actions a {
    margin-right: 2px;
  }
  .wrapper main .products-wrapper .header {
    text-align: center;
    margin-bottom: 30px;
  }
  .wrapper main .products-wrapper .header .title {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: bolder;
    color: #d03c84;
    line-height: 1.2;
  }
  .wrapper main .products-wrapper .products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 70px;
  }
  .wrapper main .products-wrapper .products .product {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  }
  .wrapper main .products-wrapper .products .product .images {
    overflow: hidden;
    transition-duration: 0.5s;
    position: relative;
  }
  .wrapper main .products-wrapper .products .product .images img {
    border-radius: 10px 10px 0 0;
  }
  .wrapper main .products-wrapper .products .product .images .actions {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wrapper main .products-wrapper .products .product .images .actions a {
    padding: 3px 12px;
    border-radius: 4px;
    color: #fff;
    margin: 2px;
  }
  .wrapper main .products-wrapper .products .product .images .actions .edit {
    display: none;
    background-color: #20B2AA;
    transition: all 4s ease-in-out;
  }
  .wrapper main .products-wrapper .products .product .images .actions .delete {
    display: none;
    background-color: #e84393;
    transition: all 4s ease-in-out;
  }
  .wrapper main .products-wrapper .products .product .images:hover .edit {
    display: block;
  }
  .wrapper main .products-wrapper .products .product .images:hover .delete {
    display: block;
  }
  .wrapper main .products-wrapper .products .product .details {
    padding: 10px 10px 15px;
  }
  .wrapper main .products-wrapper .products .product .details .title {
    font-size: 15px;
    line-height: 1.1;
    margin-bottom: 5px;
    font-weight: bold;
  }
  .wrapper main .products-wrapper .products .product .details .title a {
    color: #ea559d;
  }
  .wrapper main .products-wrapper .products .product .details .title a:hover {
    color: #d03c84;
  }
  .wrapper main .products-wrapper .products .product .details .price {
    font-size: 13px;
    color: #ababab;
    font-weight: 400;
  }
  .wrapper main .products-wrapper .link {
    text-align: center;
  }
  .wrapper main .orders-wrapper {
    padding: 15px 30px 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .wrapper main .orders-wrapper .order {
    background-color: white;
    border-radius: 7px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 10px;
  }
  .wrapper main .orders-wrapper .order .avatar {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wrapper main .orders-wrapper .order .avatar img {
    width: 60px;
    border-radius: 50%;
  }
  .wrapper main .orders-wrapper .order .details {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .wrapper main .orders-wrapper .order .details .customer-name {
    font-family: "Questrial", sans-serif;
    font-weight: 800;
  }
  .wrapper main .orders-wrapper .order .details .order-detail {
    font-size: 14px;
  }
  .wrapper main .orders-wrapper .order .details .date {
    font-size: 10px;
    color: #ababab;
    display: flex;
  }
  .wrapper main .orders-wrapper .order .details .date button.text-btn-danger {
    margin-left: 15px;
    font-size: 10px;
    background: none;
    color: rgba(232, 67, 147, 0.5);
    transition: color 0.4s ease-in;
  }
  .wrapper main .orders-wrapper .order .details .date button.text-btn-danger:hover {
    color: #e84393;
  }
  .wrapper main .ongoings-wrapper .ongoings {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 70px;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images {
    min-height: 160px;
    overflow: hidden;
    transition-duration: 0.5s;
    position: relative;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images img {
    border-radius: 10px 10px 0 0;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images .actions {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images .actions a {
    padding: 7px 15px;
    border-radius: 5px;
    color: #fff;
    margin: 2px;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images .actions .edit {
    display: none;
    background-color: #20B2AA;
    transition: all 4s ease-in-out;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images .actions .delete {
    display: none;
    background-color: #e84393;
    transition: all 4s ease-in-out;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images:hover .edit {
    display: block;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images:hover .delete {
    display: block;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .details {
    padding: 10px 10px 15px;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .details .title {
    font-size: 18px;
    line-height: 1.1;
    font-weight: bold;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .details .date {
    font-size: 12px;
    color: #ababab;
    padding: 2px 0 7px;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .details .machine {
    font-size: 13px;
    color: #969696;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .details .code_price {
    display: flex;
    justify-content: space-between;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .details .code_price .price, .wrapper main .ongoings-wrapper .ongoings .ongoing .details .code_price .code {
    font-size: 13px;
    color: #ababab;
    font-weight: 400;
  }
  .wrapper main .product-wrapper {
    background-color: #fff;
    margin-bottom: 70px;
  }
  .wrapper main .product-wrapper .product {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 10px;
  }
  .wrapper main .product-wrapper .product .image img {
    border-radius: 10px 10px 0 0;
  }
  .wrapper main .product-wrapper .product .details {
    padding: 10px 15px 25px;
  }
  .wrapper main .product-wrapper .product .details .title {
    color: #d03c84;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
  }
  .wrapper main .product-wrapper .product .details .description {
    margin-bottom: 15px;
  }
  .wrapper main .product-wrapper .product .details .code, .wrapper main .product-wrapper .product .details .price {
    color: #ababab;
  }
  .wrapper main .product-wrapper .product .details .labels {
    margin-top: 10px;
    display: flex;
  }
  .wrapper main .product-wrapper .product .details .labels .label {
    background-color: #e84393;
    border-radius: 4px;
    padding: 3px 7px;
    font-size: 13px;
  }
  .wrapper main .product-wrapper .product .details .labels .label i {
    color: #fff;
  }
  .wrapper main .product-wrapper .product .details .labels .label a {
    color: #fff;
  }
  .wrapper main .machines {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 30px;
  }
  .wrapper main .machines .machine {
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  }
  .wrapper main .machines .machine .uil-heart-rate {
    font-size: 36px;
    color: #e84393;
  }
  .wrapper main .machines .machine .name {
    font-size: 18px;
  }
  .wrapper main .machines .machine .heads {
    color: #ababab;
  }
  .wrapper main .staffs-wrapper {
    padding: 20px 0 20px;
  }
  .wrapper main .staffs-wrapper .header {
    text-align: center;
    margin-bottom: 15px;
  }
  .wrapper main .staffs-wrapper .header .title {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: bolder;
    color: #d03c84;
    line-height: 1.2;
  }
  .wrapper main .staffs-wrapper .staffs .staff {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 15px;
  }
  .wrapper main .staffs-wrapper .staffs .staff .image {
    display: flex;
    justify-content: center;
  }
  .wrapper main .staffs-wrapper .staffs .staff .image img {
    width: 180px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  .wrapper main .staffs-wrapper .staffs .staff .details {
    text-align: center;
  }
  .wrapper main .staffs-wrapper .staffs .staff .details .name {
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: bolder;
    color: #d03c84;
  }
  .wrapper main .staffs-wrapper .staffs .staff .details .type {
    color: #999;
  }
  .wrapper main .user-details-wrapper {
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: 1fr;
  }
  .wrapper main .user-details-wrapper .avatar {
    display: flex;
    justify-content: center;
  }
  .wrapper main .user-details-wrapper .avatar img {
    max-width: 300px;
  }
  .wrapper main .videos-wrapper .videos .video {
    display: flex;
    flex-direction: column;
    background: #eeeded;
    margin-bottom: 15px;
    border-radius: 7px;
  }
  .wrapper main .videos-wrapper .videos .video .video-container {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .wrapper main .videos-wrapper .videos .video .video-container::after {
    padding-top: 56.25%;
    display: block;
    content: "";
  }
  .wrapper main .videos-wrapper .videos .video .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .wrapper main .videos-wrapper .videos .video .content {
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
  }
  .wrapper main .videos-wrapper .videos .video .content .title {
    line-height: 1.1;
    margin-bottom: 5px;
  }
  .wrapper main .videos-wrapper .videos .video .content .actions {
    margin: 5px 0;
  }
}
/* Large Screens */
@media screen and (min-width: 1025px) {
  .wrapper .user-details {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
  }
  .wrapper .user-details .avatar {
    display: flex;
    align-items: center;
  }
  .wrapper .user-details .avatar img {
    width: 40px;
    border-radius: 50%;
  }
  .wrapper .user-details .details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 7px;
  }
  .wrapper .user-details .details .name {
    line-height: 1.1;
    font-weight: 600;
    color: #848484;
  }
  .wrapper .user-details .details .type {
    font-family: "Questrial", sans-serif;
    font-size: 13px;
  }
  .wrapper .user-details .unauthorized {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .wrapper .user-details .unauthorized .logo {
    color: #e84393;
    font-size: 18px;
    font-weight: 600;
  }
  .wrapper .user-details .unauthorized .buttons .login {
    background-color: #e84393;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
  }
  .wrapper main .menus {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 0 30px;
    margin: 20px 0;
  }
  .wrapper main .menus .menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 10px;
    transition: all 0.4s ease-in-out;
  }
  .wrapper main .menus .menu i {
    font-size: 2.5rem;
    color: #e84393;
  }
  .wrapper main .menus .menu .menu-title {
    color: #636e72;
  }
  .wrapper main .menus .menu:hover {
    background-color: #e9e9e9;
    border-radius: 15px;
  }
  .wrapper main .banner {
    position: relative;
  }
  .wrapper main .banner .fullscreen {
    width: 100%;
    margin-bottom: 15px;
  }
  .wrapper main .banner .overlay-texts {
    background: rgba(232, 67, 147, 0.8);
    border-radius: 5px;
    position: absolute;
    bottom: 200px;
    left: 120px;
    right: 120px;
  }
  .wrapper main .banner .overlay-texts .text {
    display: flex;
    padding: 15px 30px;
    width: 90%;
  }
  .wrapper main .banner .overlay-texts .text span {
    font-family: "Questrial", sans-serif;
    font-weight: 400;
    font-size: 2.5em;
    color: white;
  }
  .wrapper main .dues {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 30px 20px;
  }
  .wrapper main .header {
    text-align: center;
    margin-bottom: 4rem;
  }
  .wrapper main .header .title {
    font-family: "Poppins", sans-serif;
    font-size: 2em;
    font-weight: bolder;
    color: #d03c84;
    line-height: 1.2;
  }
  .wrapper main .notices-wrapper-home {
    padding: 4rem 0 8rem;
  }
  .wrapper main .notices-wrapper-home .notices {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 200px;
  }
  .wrapper main .notices-wrapper-home .notices .notice {
    background: white;
    padding: 15px 20px;
    border-radius: 7px;
    display: grid;
    grid-template-columns: 60px 1fr;
    margin-bottom: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    animation: animate 15s linear infinite;
  }
  .wrapper main .notices-wrapper-home .notices .notice .icon {
    height: 60px;
    width: 60px;
    border: 1px solid #ababab;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.4s ease-in;
  }
  .wrapper main .notices-wrapper-home .notices .notice .icon i {
    font-size: 2em;
    color: #848484;
  }
  .wrapper main .notices-wrapper-home .notices .notice .title {
    margin-left: 10px;
    display: flex;
    align-items: center;
    font-family: "Siyam Rupali";
    font-size: 1.3em;
    line-height: 1.2;
  }
  .wrapper main .notices-wrapper-home .notices .notice:hover {
    cursor: pointer;
  }
  .wrapper main .notices-wrapper-home .notices .notice:hover .icon {
    background-color: #d03c84;
    border: 1px solid #d03c84;
  }
  .wrapper main .notices-wrapper-home .notices .notice:hover .icon .uil {
    color: #fff;
  }
  .wrapper main .notices-wrapper-home .notices .notice:nth-child(1) {
    animation-delay: -3s;
  }
  .wrapper main .notices-wrapper-home .notices .notice:nth-child(2) {
    animation-delay: 0s;
  }
  .wrapper main .notices-wrapper-home .notices .notice:nth-child(3) {
    animation-delay: 3s;
  }
  .wrapper main .notices-wrapper-home .notices .notice:nth-child(4) {
    animation-delay: 6s;
  }
  .wrapper main .notices-wrapper-home .notices .notice:nth-child(5) {
    animation-delay: 9s;
  }
  .wrapper main .notices-wrapper-home .notices:hover .notice {
    animation-play-state: paused;
  }
  .wrapper main .ongoings-wrapper .ongoings {
    grid-template-columns: repeat(3, 1fr);
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images {
    min-height: 160px;
    overflow: hidden;
    transition-duration: 0.5s;
    position: relative;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images img {
    border-radius: 10px 10px 0 0;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images .actions {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images .actions a {
    padding: 7px 15px;
    border-radius: 5px;
    color: #fff;
    margin: 2px;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images .actions .edit {
    display: none;
    background-color: #20B2AA;
    transition: all 4s ease-in-out;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images .actions .delete {
    display: none;
    background-color: #e84393;
    transition: all 4s ease-in-out;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images:hover .edit {
    display: block;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .images:hover .delete {
    display: block;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .details {
    padding: 10px 10px 15px;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .details .title {
    font-size: 18px;
    line-height: 1.1;
    font-weight: bold;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .details .date {
    font-size: 12px;
    color: #ababab;
    padding: 2px 0 7px;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .details .machine {
    font-size: 13px;
    color: #969696;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .details .code_price {
    display: flex;
    justify-content: space-between;
  }
  .wrapper main .ongoings-wrapper .ongoings .ongoing .details .code_price .price, .wrapper main .ongoings-wrapper .ongoings .ongoing .details .code_price .code {
    font-size: 13px;
    color: #ababab;
    font-weight: 400;
  }
  .wrapper main .ongoings-wrapper-home {
    background-color: #f8f8f8;
  }
  .wrapper main .ongoings-wrapper-home .slider {
    max-width: 80em;
    margin: 0 auto;
    padding: 5rem 0 4rem;
  }
  .wrapper main .owl-carousel {
    width: 100%;
  }
  .wrapper main .owl-carousel .content {
    position: relative;
  }
  .wrapper main .owl-carousel .content .details {
    position: absolute;
    background-color: #e84393;
    left: 40px;
    bottom: 30px;
    padding: 10px 20px;
    border-radius: 5px;
  }
  .wrapper main .owl-carousel .content .details .item {
    font-weight: 900;
    color: #fff;
  }
  .wrapper main .products-wrapper {
    padding: 30px;
  }
  .wrapper main .products-wrapper .products {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
  }
  .wrapper main .products-wrapper .products .product {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  }
  .wrapper main .products-wrapper .products .product .images {
    overflow: hidden;
    transition-duration: 0.5s;
    position: relative;
  }
  .wrapper main .products-wrapper .products .product .images img {
    border-radius: 10px 10px 0 0;
  }
  .wrapper main .products-wrapper .products .product .images .actions {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wrapper main .products-wrapper .products .product .images .actions a {
    padding: 3px 12px;
    border-radius: 4px;
    color: #fff;
    margin: 2px;
  }
  .wrapper main .products-wrapper .products .product .images .actions .edit {
    display: none;
    background-color: #20B2AA;
    transition: all 4s ease-in-out;
  }
  .wrapper main .products-wrapper .products .product .images .actions .delete {
    display: none;
    background-color: #e84393;
    transition: all 4s ease-in-out;
  }
  .wrapper main .products-wrapper .products .product .images:hover .edit {
    display: block;
  }
  .wrapper main .products-wrapper .products .product .images:hover .delete {
    display: block;
  }
  .wrapper main .products-wrapper .products .product .details {
    padding: 15px 10px 20px;
  }
  .wrapper main .products-wrapper .products .product .details .title {
    font-size: 1.2em;
    line-height: 1.1;
    margin-bottom: 5px;
    font-weight: bold;
  }
  .wrapper main .products-wrapper .products .product .details .title a {
    color: #ea559d;
  }
  .wrapper main .products-wrapper .products .product .details .title a:hover {
    color: #d03c84;
  }
  .wrapper main .products-wrapper .products .product .details .price {
    font-size: 13px;
    color: #ababab;
    font-weight: 400;
  }
  .wrapper main .products-wrapper .link {
    text-align: center;
    margin-top: 30px;
  }
  .wrapper main .staffs-wrapper {
    padding: 5em 0 4em;
    background-color: #f8f8f8;
  }
  .wrapper main .staffs-wrapper .staffs {
    max-width: 80em;
    margin: 0 auto;
  }
  .wrapper main .staffs-wrapper .staffs .staff {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 15px;
  }
  .wrapper main .staffs-wrapper .staffs .staff .image {
    display: flex;
    justify-content: center;
  }
  .wrapper main .staffs-wrapper .staffs .staff .image img {
    width: 180px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  .wrapper main .staffs-wrapper .staffs .staff .details {
    text-align: center;
  }
  .wrapper main .staffs-wrapper .staffs .staff .details .name {
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: bolder;
    color: #d03c84;
  }
  .wrapper main .staffs-wrapper .staffs .staff .details .type {
    color: #999;
  }
  .wrapper main .orders-wrapper {
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .wrapper main .orders-wrapper .order {
    background-color: white;
    border-radius: 7px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 10px;
  }
  .wrapper main .orders-wrapper .order .avatar {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wrapper main .orders-wrapper .order .avatar img {
    width: 60px;
    border-radius: 50%;
  }
  .wrapper main .orders-wrapper .order .details {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .wrapper main .orders-wrapper .order .details .customer-name {
    font-family: "Questrial", sans-serif;
    font-weight: 800;
  }
  .wrapper main .orders-wrapper .order .details .order-detail {
    font-size: 14px;
  }
  .wrapper main .orders-wrapper .order .details .date {
    font-size: 10px;
    color: #ababab;
    display: flex;
  }
  .wrapper main .orders-wrapper .order .details .date button.text-btn-danger {
    margin-left: 15px;
    font-size: 10px;
    background: none;
    color: rgba(232, 67, 147, 0.5);
    transition: color 0.4s ease-in;
  }
  .wrapper main .orders-wrapper .order .details .date button.text-btn-danger:hover {
    color: #e84393;
  }
  .wrapper main .items-wrapper .items {
    grid-template-columns: repeat(3, 1fr);
  }
  .wrapper main .items-wrapper .items .item {
    display: flex;
    justify-content: space-between;
    background: #eeeded;
    border-radius: 7px;
    padding: 7px 10px;
  }
  .wrapper main .items-wrapper .items .item .actions {
    display: flex;
    font-size: 18px;
  }
  .wrapper main .items-wrapper .items .item .actions .uil {
    color: #d7d7d7;
    font-size: 18px;
  }
  .wrapper main .items-wrapper .items .item .actions .uil-pen:hover {
    color: #20B2AA;
    cursor: pointer;
  }
  .wrapper main .items-wrapper .items .item .actions .uil-trash:hover {
    color: #e84393;
    cursor: pointer;
  }
  .wrapper main .machines {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 0 30px;
  }
  .wrapper main .machines .machine {
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  }
  .wrapper main .machines .machine .uil-heart-rate {
    font-size: 36px;
    color: #e84393;
  }
  .wrapper main .machines .machine .name {
    font-size: 18px;
  }
  .wrapper main .machines .machine .heads {
    color: #ababab;
  }
  .wrapper main .payments {
    margin: 0px 30px 15px;
  }
  .wrapper main .notices-wrapper {
    padding: 0 30px;
  }
  .wrapper main .notices-wrapper .notices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .wrapper main .notices-wrapper .notices .notice {
    display: flex;
    justify-content: space-between;
    background: #eeeded;
    border-radius: 7px;
    padding: 7px 10px;
  }
  .wrapper main .notices-wrapper .notices .notice .notice-wrapper {
    display: grid;
    grid-template-columns: 50px 1fr;
  }
  .wrapper main .notices-wrapper .notices .notice .notice-wrapper .icon {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ababab;
    border-radius: 50%;
  }
  .wrapper main .notices-wrapper .notices .notice .notice-wrapper .content .time {
    font-size: 10px;
    color: #ababab;
  }
  .wrapper main .notices-wrapper .notices .notice .notice-wrapper .content .actions {
    margin-top: 3px;
    display: flex;
  }
  .wrapper main .notices-wrapper .notices .notice .notice-wrapper .content .actions a {
    margin-right: 2px;
  }
  .wrapper main .contact-options {
    max-width: 80em;
    padding: 5em 0 7em;
    margin: 0 auto;
  }
  .wrapper main .contact-options .options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
  }
  .wrapper main .contact-options .options .social-medias .social-media {
    display: grid;
    grid-template-columns: 3.5em 1fr;
    gap: 1.5em;
    margin-bottom: 2em;
  }
  .wrapper main .contact-options .options .social-medias .social-media .icon {
    height: 3.5em;
    width: 3.5em;
    border: 1px solid #e84393;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wrapper main .contact-options .options .social-medias .social-media .icon i {
    color: #e84393;
    font-size: 1.3em;
  }
  .wrapper main .contact-options .options .social-medias .social-media .text {
    height: 3.5em;
    display: flex;
    align-items: center;
  }
  .wrapper main .contact-options .options .text-us {
    background-color: #fff;
    padding: 30px 15px;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  }
  .wrapper main .contact-options .options .text-us i {
    color: #fff;
  }
  .wrapper main .bottom-links {
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    display: grid;
    grid-template-columns: 3fr 1fr 3fr;
    border-radius: 15px 15px 0 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    z-index: 1;
  }
  .wrapper main .bottom-links .link {
    display: flex;
    justify-content: center;
  }
  .wrapper main .bottom-links .link:hover a,
.wrapper main .bottom-links .link:hover i {
    color: #d03c84;
  }
  .wrapper main .transactions {
    margin: 0px 30px;
  }
  .wrapper main .users {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .wrapper main .user-wrapper .info-cards {
    grid-template-columns: repeat(3, 1fr);
    padding: 30px 30px 10px;
  }
  .wrapper main .user-wrapper .link {
    display: flex;
    gap: 10px;
  }
  .wrapper main .user-wrapper .link a {
    border: 1px solid #d7d7d7;
    border-radius: 7px;
    padding: 5px 15px;
  }
}
@keyframes animate {
  0% {
    opacity: 0;
    transform: translateY(100%) scale(0.5);
  }
  5%, 20% {
    opacity: 0.4;
    transform: translateY(100%) scale(0.7);
  }
  25%, 40% {
    opacity: 1;
    transform: translateY(0%) scale(1);
    pointer-events: auto;
  }
  45%, 60% {
    opacity: 0.4;
    transform: translateY(-100%) scale(0.7);
  }
  65%, 100% {
    opacity: 0;
    transform: translateY(-100%) scale(0.5);
  }
}
.swal-overlay .swal-modal .swal-icon {
  margin: 20px auto 0;
}
.swal-overlay .swal-modal .swal-footer {
  text-align: center;
}

@page {
  width: 100%;
}
@media print {
  nav {
    display: none;
  }

  main .user-details-wrapper .account-details .title {
    border-bottom: 1px solid gray;
  }
  main .user-details-wrapper .account-details .header {
    display: flex;
    justify-content: space-between;
  }
  main .user-details-wrapper .account-details .header .logo img {
    max-width: 150px;
  }
  main .user-details-wrapper .account-details .header .invoice {
    font-size: 2.3em;
  }
  main .user-details-wrapper .account-details .contact-part {
    margin-top: 3em;
    border-top: 1px solid gray;
    display: flex;
    justify-content: center;
  }
  main .user-details-wrapper .account-details .contact-part .address p {
    font-size: 14px;
  }
  main .user-details-wrapper .account-details .bill-to {
    margin: 1em 0;
    display: flex;
    justify-content: space-between;
  }
  main .user-details-wrapper .account-details .final-touch {
    text-align: right;
  }
  main .user-details-wrapper .account-details .final-touch .bill, main .user-details-wrapper .account-details .final-touch .sample, main .user-details-wrapper .account-details .final-touch .due, main .user-details-wrapper .account-details .final-touch .total-bill, main .user-details-wrapper .account-details .final-touch .payment, main .user-details-wrapper .account-details .final-touch .final-due {
    display: grid;
    grid-template-columns: 4fr 1fr;
  }
  main .user-details-wrapper .account-details .final-touch .bill .bill-title, main .user-details-wrapper .account-details .final-touch .sample .bill-title, main .user-details-wrapper .account-details .final-touch .due .bill-title, main .user-details-wrapper .account-details .final-touch .total-bill .bill-title, main .user-details-wrapper .account-details .final-touch .payment .bill-title, main .user-details-wrapper .account-details .final-touch .final-due .bill-title {
    margin-right: 0.5em;
  }
  main .user-details-wrapper .account-details .final-touch .bill .amount, main .user-details-wrapper .account-details .final-touch .sample .amount, main .user-details-wrapper .account-details .final-touch .due .amount, main .user-details-wrapper .account-details .final-touch .total-bill .amount, main .user-details-wrapper .account-details .final-touch .payment .amount, main .user-details-wrapper .account-details .final-touch .final-due .amount {
    text-align: left;
  }
  main .user-details-wrapper .account-details .final-touch .total-bill, main .user-details-wrapper .account-details .final-touch .final-due {
    border-top: 1px solid gray;
  }
  main .user-details-wrapper .account-details .signs {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    text-align: center;
    margin-top: 5em;
  }
  main .user-details-wrapper .account-details .signs .customer, main .user-details-wrapper .account-details .signs .authority {
    border-top: 1px solid gray;
  }
  main .user-details-wrapper .print_button {
    display: none;
  }
  main .transactions .info-cards, main .transactions .transaction-actions, main .transactions .btn-circle, main .transactions .buttons {
    display: none;
  }
  main .transactions .search_date_range {
    text-align: center;
    margin-bottom: 20px;
  }
}
