@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
button {
  font-family: "Work Sans", sans-serif;
  letter-spacing: -1px;
}

button {
  font-family: "Work Sans", sans-serif;
  letter-spacing: -1px;
}

h2 {
  font-size: 25px;
  font-weight: 400;
}

h3 {
  font-weight: 500;
  font-size: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

:focus {
  outline: none !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .container {
    padding: 0px 20px;
  }
}

.overlay {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
  background: rgba(255, 255, 172, 0.785);
  z-index: 10000;
  display: none;
}

.toaster {
  width: 300px;
  height: 300px;
  background: #f0c826;
  position: absolute;
  transform: translate(-50%, -50%) scale(0.5);
  left: 50%;
  top: 50%;
  z-index: 10500;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.5;
  visibility: hidden;
  opacity: 0;
}
.toaster .icon {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.toaster .icon ion-icon {
  width: 90px;
  height: 90px;
}
.toaster p {
  font-size: 25px;
  font-weight: 600;
}
.toaster button {
  background: black;
  color: white;
  padding: 8px 20px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
}

.toaster-active {
  transform: translate(-50%, -50%) scale(1);
  transition: 0.5;
  visibility: visible;
  opacity: 1;
}

body {
  font-family: "Work Sans", sans-serif;
  background: white;
}
body .loader-holder {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000000;
  background: rgb(255, 255, 255);
  align-items: center;
  justify-content: center;
  border: 1px solid red;
  /* Safari */
}
body .loader-holder .loader {
  border: 2px solid #f3f3f3;
  border-radius: 50%;
  border-top: 2px solid #f0c826;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 0.3s linear infinite;
  /* Safari */
  animation: spin 0.3s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body .fixed-purchase-button {
  width: 100%;
  background: #f0c826;
  color: rgb(48, 48, 48);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  text-align: center;
  padding: 15px 0px;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  display: none;
}
@media (max-width: 1000px) {
  body .fixed-purchase-button {
    display: flex;
  }
}
body .fixed-purchase-button ion-icon {
  margin-left: 10px;
}
body .sidemenu {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: white;
  z-index: 10000;
  padding: 30px;
  display: none;
}
body .sidemenu .close {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: flex-end;
}
body .sidemenu .close span {
  font-size: 30px;
}
body .sidemenu .menu-header {
  width: 100%;
  background: #f0c826;
  padding: 20px 20px;
  border-radius: 50px;
  text-align: center;
}
body .sidemenu .menu-header h4 {
  font-size: 25px;
}
body .sidemenu ul li {
  list-style: none;
}
body .sidemenu ul li a {
  text-decoration: none;
  color: rgb(48, 48, 48);
  font-size: 25px;
  padding: 20px 0px;
  display: block;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.165);
}
body .sidemenu ul li:last-child {
  margin-top: 30px;
}
body .sidemenu ul li:last-child a {
  padding: 15px;
  border: 1px solid #f0c826;
  border-radius: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .sidemenu ul li:last-child a ion-icon {
  margin-left: 10px;
}
body .sidemenu-active {
  display: block;
}
body header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 1000;
  background: white;
}
body header .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-radius: 20px;
}
body header .container .logo {
  color: rgb(48, 48, 48);
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}
body header .container .logo img {
  width: 80px;
}
@media (max-width: 1000px) {
  body header .container nav {
    display: none;
  }
}
body header .container nav ul {
  display: flex;
}
body header .container nav ul li {
  list-style: none;
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 5px 15px;
  text-transform: uppercase;
}
body header .container nav ul li:last-child {
  margin-right: 0px;
}
body header .container nav ul li ion-icon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
body header .container nav ul li a {
  text-decoration: none;
  color: rgb(48, 48, 48);
  font-size: 16px;
  padding: 5px 15px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
}
body header .container nav ul li .active {
  background: #363636;
  border-radius: 20px;
  color: white;
}
body header .container nav ul .btn {
  border: 1px solid rgb(48, 48, 48);
  margin-right: 20px;
  border-radius: 100px;
  padding: 0px 15px;
  position: relative;
}
body header .container nav ul .btn .drop-down {
  width: 300px;
  position: absolute;
  right: 0;
  top: 80px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(54, 54, 54, 0.2901960784);
  z-index: 10;
  background: white;
  overflow: hidden;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: 0.1s;
}
body header .container nav ul .btn .drop-down ul {
  flex-direction: column;
}
body header .container nav ul .btn .drop-down ul li {
  padding: 0px;
  width: 100%;
}
body header .container nav ul .btn .drop-down ul li:hover {
  background: #f0c826;
}
body header .container nav ul .btn .drop-down ul li:last-child a {
  border: none;
}
body header .container nav ul .btn .drop-down ul li a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.148);
  display: block;
  width: 100%;
  display: flex;
  padding: 20px;
  justify-content: space-between;
}
body header .container nav ul .btn .drop-down-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: 0.1s;
}
body header .container .header_cart_trigger {
  font-size: 30px;
  margin-right: 30px;
  color: rgb(48, 48, 48);
  display: none;
  position: relative;
}
@media (max-width: 1000px) {
  body header .container .header_cart_trigger {
    display: block;
  }
}
body header .container .header_cart_trigger .dot {
  width: 10px;
  height: 10px;
  background: #f0c826;
  border-radius: 100px;
  position: absolute;
  right: 0;
  top: 0;
}
body header .container .hamburger {
  width: 35px;
  display: none;
}
@media (max-width: 1000px) {
  body header .container .hamburger {
    display: block;
  }
}
body header .container .hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: black;
  margin-bottom: 6px;
  border-radius: 10px;
}
body header .container .hamburger span:last-child {
  margin: 0;
}
body #login-page {
  display: flex;
  height: 100vh;
  position: relative;
}
@media (max-width: 1000px) {
  body #login-page {
    flex-direction: column;
    height: auto;
    width: 100%;
  }
}
body #login-page #wave {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
body #login-page .box {
  width: 50%;
  height: 100%;
  background: #363636;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1000px) {
  body #login-page .box {
    width: 100%;
    background: black;
    padding: 20px 20px;
  }
  body #login-page .box:nth-child(1) {
    order: 2;
    min-height: 100vh;
  }
  body #login-page .box:nth-child(2) {
    order: 1;
    display: none;
    background: none;
  }
}
body #login-page .box .login {
  width: 400px;
  background: #fbfcfc;
  padding: 60px 30px;
  border-radius: 33px;
  border: 1px solid #363636;
  position: relative;
  z-index: 2;
}
@media (max-width: 1000px) {
  body #login-page .box .login {
    padding: 25px 15px;
    border-radius: 25px;
  }
}
body #login-page .box .login .logo {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
  display: none;
}
body #login-page .box .login .logo .login-logo {
  width: 100px;
}
@media (max-width: 1000px) {
  body #login-page .box .login {
    width: 100%;
    background: #fbfcfc;
    border-radius: 15px;
  }
}
body #login-page .box .login h3 {
  font-size: 23px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: -0.03em;
  text-align: left;
  display: flex;
  align-items: center;
}
body #login-page .box .login h3 img {
  margin-right: 10px;
}
body #login-page .box .login p {
  margin: 20px 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.03em;
  text-align: left;
  opacity: 0.7;
}
body #login-page .box .login .input-holder {
  margin-bottom: 30px;
}
body #login-page .box .login .input-holder label {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.03em;
  text-align: left;
  display: block;
}
body #login-page .box .login .input-holder input {
  width: 100%;
  height: 54px;
  border-radius: 20px;
  border: none;
  outline: none;
  padding-left: 20px;
  font-size: 18px;
  -webkit-user-select: initial;
  -moz-user-select: initial;
  -ms-user-select: initial;
  user-select: initial;
  color: rgb(48, 48, 48);
  border: 1px solid rgba(0, 0, 0, 0.253);
}
body #login-page .box .login .input-holder .error-input {
  border: 1px solid red;
}
body #login-page .box .login .input-holder .error {
  color: red;
  font-weight: 500;
  display: flex;
  align-items: center;
}
body #login-page .box .login .input-holder .error ion-icon {
  right: 20px;
}
body #login-page .box .login .forgot-trigger {
  margin-bottom: 20px;
  text-align: right;
}
body #login-page .box .login .forgot-trigger a {
  text-decoration: none;
  color: #f0c826;
}
body #login-page .box .login button {
  height: 54px;
  width: 100%;
  left: 181px;
  top: 602px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.03em;
  text-align: center;
  border: none;
  cursor: pointer;
}
body #login-page .box .login a {
  color: rgb(48, 48, 48);
  text-align: center;
  display: block;
}
body #login-page .box .login .login-button {
  background: #f0c826;
  color: white;
}
body #login-page .box .login .signup-navigate-cta {
  background: none;
  color: rgb(48, 48, 48);
  border: 1px solid #363636;
}
body #login-page .box .login .signup-navigate-cta:hover {
  background: #f0c826;
  color: white;
  border: none;
}
body #login-page .box-content {
  background: #363636;
  height: 100vh;
  position: relative;
}
@media (max-width: 1000px) {
  body #login-page .box-content {
    height: auto;
  }
}
body #login-page .box-content .glass-card {
  width: 500px;
  position: relative;
  z-index: 10;
  background: rgb(217, 217, 217);
  background: linear-gradient(321deg, rgba(217, 217, 217, 0.24) 0%, rgba(217, 217, 217, 0.22) 100%);
  padding: 30px 20px 0px 20px;
  border-radius: 33px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media (max-width: 1000px) {
  body #login-page .box-content .glass-card {
    width: 100%;
  }
}
body #login-page .box-content .glass-card:after {
  content: "";
  left: 20px;
  height: 100px;
  width: 2px;
  background: rgba(255, 255, 255, 0.356);
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
}
body #login-page .box-content .glass-card:before {
  content: "";
  left: 80px;
  width: 100px;
  height: 2px;
  background: rgba(255, 255, 255, 0.356);
  bottom: 20px;
  position: absolute;
}
body #login-page .box-content .glass-card h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 53px;
  letter-spacing: -0.03em;
  text-align: left;
  color: white;
}
body #login-page .box-content .glass-card p {
  color: white;
  font-size: 18px;
  display: block;
  margin: 10px;
}
body #login-page .box-content .glass-card .image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
body #login-page .box-content .glass-card .image img {
  width: 300px;
}
body #login-page .box-content .glass-card .hand {
  position: absolute;
  width: 67px;
  height: 67px;
  right: -30px;
  transform: translateY(-50%);
  top: 50%;
  background: white;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
@media (max-width: 1000px) {
  body #login-page .box-content .glass-card .hand {
    display: none;
  }
}
body #login-page .box-content .glass-card .hand img {
  width: 100%;
}
body #login-page .box-content .glass-card .per {
  position: absolute;
  width: 80px;
  height: 80px;
  left: -20px;
  bottom: -20px;
  background: white;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1000px) {
  body #login-page .box-content .glass-card .per {
    display: none;
  }
}
body .signup {
  display: flex;
  justify-content: space-between;
  background: red;
  margin-top: 100px;
}
body .signup .box {
  width: 100% !important;
}
body .signup .box .login {
  width: 600px !important;
}
body .signup .box .login form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body .signup .box .login form .input-holder {
  width: calc(50% - 20px);
}
body .transaction-container {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
  flex-wrap: wrap;
}
body .transaction-container h3 {
  display: block;
  width: 100%;
  margin-bottom: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
body .transaction-container .cards {
  width: calc(25% - 30px);
  display: flex;
  flex-direction: column;
  background: red;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 20px;
}
body .transaction-container .cards h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: -0.03em;
  text-align: left;
  margin-bottom: 20px;
}
body .transaction-container .cards span:nth-child(2) {
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
body .transaction-container .cards span:nth-child(2) img {
  position: relative;
  top: 5px;
}
body .transaction-container .cards span:nth-child(3) {
  font-size: 37px;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: -0.03em;
  text-align: left;
  margin-bottom: 20px;
}
body .transaction-container .cards span:nth-child(3) img {
  width: 20px;
  margin-right: 10px;
}
body .transaction-container .cards span:nth-child(4) {
  font-size: 15px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: -0.03em;
  text-align: left;
}
body .transaction-container .card-success {
  background: rgb(234, 255, 234);
}
body .transaction-container .card-error {
  background: rgb(255, 228, 228);
}
body #products {
  width: 100%;
  padding: 100px 0px;
}
body #products h2 {
  margin: 60px 0px;
  text-align: center;
  font-weight: 600;
  font-size: 25px;
}
@media (max-width: 768px) {
  body #products h2 {
    margin: 0px;
    margin-bottom: 40px;
  }
}
body #products .card-holder {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
body #products .card-holder .card {
  width: calc(25% - 20px);
  padding: 10px;
  border-radius: 33px;
  box-shadow: 0px 0px 15px rgba(54, 54, 54, 0.1960784314);
  margin-bottom: 30px;
  cursor: pointer;
}
@media (max-width: 1000px) {
  body #products .card-holder .card {
    width: calc(33.3333333333% - 20px);
  }
}
@media (max-width: 768px) {
  body #products .card-holder .card {
    width: calc(50% - 20px);
  }
}
@media (max-width: 475px) {
  body #products .card-holder .card {
    width: calc(50% - 5px);
    margin-bottom: 10px;
    border-radius: 20px;
  }
}
body #products .card-holder .card:hover .content button {
  background: #f0c826;
}
body #products .card-holder .card .image {
  width: 100%;
  position: relative;
  border-radius: 30px;
  background: #eee;
  overflow: hidden;
}
@media (max-width: 475px) {
  body #products .card-holder .card .image {
    border-radius: 10px;
  }
}
body #products .card-holder .card .image img {
  width: 100%;
}
body #products .card-holder .card .image span {
  position: absolute;
  right: 15px;
  top: 15px;
  background: rgba(0, 0, 0, 0.671);
  color: white;
  padding: 3px 5px;
  font-size: 16px;
  border-radius: 5px;
}
body #products .card-holder .card .image span img {
  width: 10px;
  filter: invert(100%);
  margin-right: 10px;
}
body #products .card-holder .card .content {
  width: 100%;
  text-align: center;
}
body #products .card-holder .card .content h3 {
  margin: 20px 0px;
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 475px) {
  body #products .card-holder .card .content h3 {
    font-size: 16px;
  }
}
body #products .card-holder .card .content button {
  width: 100%;
  font-size: 18px;
  padding: 8px 0px;
  margin-top: 20px;
  border: none;
  border-radius: 30px;
  border: 2px solid #f0c826;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(48, 48, 48);
}
@media (max-width: 400px) {
  body #products .card-holder .card .content button {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  body #products .card-holder .card .content button {
    font-size: 14px;
  }
}
body #products .card-holder .card .content button:hover {
  background: #f0c826;
  cursor: pointer;
}
body #products .card-holder .card .content .card-button-active {
  background: #363636 !important;
  color: white !important;
  border: none !important;
}
body #cart {
  width: 100%;
  padding: 100px 0px;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
body #cart h2 {
  margin: 60px 0px;
  text-align: center;
  font-weight: 600;
  display: block;
  width: 100%;
  font-size: 25px;
}
@media (max-width: 768px) {
  body #cart h2 {
    margin: 0px;
    margin-bottom: 40px;
  }
}
body #cart .cart-holder {
  width: calc(100% - 400px - 60px);
}
@media (max-width: 1000px) {
  body #cart .cart-holder {
    width: 100%;
  }
}
@media (max-width: 475px) {
  body #cart .cart-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
body #cart .cart-holder .cart-card {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  box-shadow: 0px 0px 10px rgba(54, 54, 54, 0.1254901961);
  margin-bottom: 30px;
  border-radius: 20px;
  padding: 10px;
  display: flex;
  position: relative;
}
@media (max-width: 475px) {
  body #cart .cart-holder .cart-card {
    flex-direction: column;
    width: 100%;
  }
}
body #cart .cart-holder .cart-card:hover {
  background: #f0c826;
}
body #cart .cart-holder .cart-card:hover button {
  background: white !important;
}
body #cart .cart-holder .cart-card .close {
  position: absolute;
  right: -7px;
  top: -7px;
  width: 30px;
  height: 30px;
  background: white;
  font-size: 20px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #363636;
  box-shadow: 0px 0px 10px rgba(54, 54, 54, 0.2901960784);
}
body #cart .cart-holder .cart-card .wrap {
  display: flex;
}
@media (max-width: 475px) {
  body #cart .cart-holder .cart-card .wrap {
    flex-direction: column;
  }
}
body #cart .cart-holder .cart-card .wrap .image {
  width: 100px;
  height: 100px;
  background: #eee;
  border-radius: 10px;
}
@media (max-width: 475px) {
  body #cart .cart-holder .cart-card .wrap .image {
    width: 100%;
    height: auto;
  }
}
body #cart .cart-holder .cart-card .wrap .image img {
  width: 100%;
}
body #cart .cart-holder .cart-card .wrap .content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 30px;
  width: 100%;
}
@media (max-width: 475px) {
  body #cart .cart-holder .cart-card .wrap .content {
    padding: 0px;
    justify-content: center;
    margin: 20px 0px;
    margin-top: 0px;
    align-items: center;
  }
}
body #cart .cart-holder .cart-card .wrap .content h3 {
  margin-bottom: 10px;
  font-size: 18px;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
@media (max-width: 475px) {
  body #cart .cart-holder .cart-card .wrap .content h3 {
    margin: 20px 0px;
  }
}
body #cart .cart-holder .cart-card .wrap .content .incrementer {
  display: flex;
}
body #cart .cart-holder .cart-card .wrap .content .incrementer button,
body #cart .cart-holder .cart-card .wrap .content .incrementer input {
  width: 35px;
  height: 35px;
  border: none;
  background: #eee;
  border-radius: 5px;
  font-size: 20px;
  color: rgb(48, 48, 48);
}
body #cart .cart-holder .cart-card .wrap .content .incrementer button {
  background: #f0c826;
  display: flex;
  align-items: center;
  justify-content: center;
}
body #cart .cart-holder .cart-card .wrap .content .incrementer input {
  margin: 0px 10px;
  text-align: center;
  font-family: "Work Sans", sans-serif;
}
body #cart .cart-holder .cart-card .price {
  margin-right: 20px;
  background: #eee;
  display: block;
  padding: 10px 20px;
  border-radius: 30px;
}
body #cart .cart-holder .cart-card .price h3 {
  font-size: 18px;
}
body #cart .cart-holder .cart-card .price h3 img {
  width: 10px;
}
body #cart .sub-total {
  background: #363636;
  width: 400px;
  box-shadow: 0px 0px 10px rgba(54, 54, 54, 0.2901960784);
  border-radius: 20px;
  padding: 20px;
  color: white;
}
@media (max-width: 1000px) {
  body #cart .sub-total {
    display: none;
  }
}
body #cart .sub-total .close {
  width: 100%;
  height: 50px;
  display: none;
  justify-content: flex-end;
}
body #cart .sub-total .close ion-icon {
  width: 30px;
  height: 30px;
  border: 1px solid white;
  border-radius: 100%;
}
@media (max-width: 1000px) {
  body #cart .sub-total .close {
    display: flex;
  }
}
body #cart .sub-total .close span {
  font-size: 30px;
}
@media (max-width: 1000px) {
  body #cart .sub-total {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    border-radius: 0px;
  }
}
body #cart .sub-total ul {
  margin-top: 30px;
  transition: 0.5s;
}
body #cart .sub-total ul li {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  border-bottom: 1px dashed rgba(233, 233, 233, 0.207);
  padding: 15px 0px;
  transition: 0.5s;
}
body #cart .sub-total ul li .info {
  display: flex;
  align-items: center;
}
body #cart .sub-total ul li .info .count {
  margin-right: 10px;
}
body #cart .sub-total ul li .amount {
  background: #1d1d1d;
  padding: 10px 20px;
  border-radius: 50px;
}
body #cart .sub-total ul li .amount img {
  filter: invert(100%);
}
body #cart .sub-total .sub-total-amount {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  padding: 10px 0px;
  border-radius: 50px;
  display: flex;
  align-items: center;
}
body #cart .sub-total .sub-total-amount img {
  margin-right: 10px;
  filter: invert(100%);
}
body #cart .sub-total .sub-total-amount span {
  font-size: 25px;
}
body #cart .sub-total .proceed {
  width: 100%;
  padding: 10px 20px;
  font-size: 20px;
  border: none;
  background: #f0c826;
  border-radius: 30px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  text-transform: uppercase;
  color: rgb(48, 48, 48);
}
body #cart .cart-empty {
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
body #cart .cart-empty .empty-holder {
  background: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  border-radius: 20px;
}
body #cart .cart-empty .empty-holder ion-icon {
  font-size: 100px;
  width: 60px;
  height: 60px;
  background: #f0c826;
  border-radius: 20px;
  padding: 10px;
}
body #cart .cart-empty .empty-holder h3 {
  margin-top: 30px;
  font-size: 25px;
  margin-bottom: 20px;
}
body #cart .cart-empty .empty-holder a {
  text-decoration: none;
  color: white;
  background: #363636;
  padding: 10px 25px;
  border-radius: 100px;
  font-size: 16px;
}
body #player {
  padding: 0px 200px;
  margin-top: 120px;
}
@media (max-width: 1000px) {
  body #player {
    padding: 0px;
  }
}
body #player video {
  border-radius: 20px;
  border: 5px solid #f0c826;
}
body #player .content {
  margin-top: 20px;
}
body #player .content h2 {
  margin: 30px 0px;
  font-weight: 600;
  font-size: 25px;
}
body #player .content p {
  font-size: 18px;
  margin: 20px 0px;
  line-height: 25px;
  opacity: 0.5;
}
body #player .content .download_pdf {
  text-decoration: none;
  font-size: 18px;
  border: 2px solid #f0c826;
  padding: 8px 15px;
  border-radius: 60px;
  display: inline-block;
  margin-bottom: 30px;
}
body #player .content h3 {
  margin-bottom: 20px;
}
body #player .content ul li {
  list-style: none;
  padding: 15px 0px;
  line-height: 25px;
  font-size: 18px;
  border-bottom: 1px dashed rgb(198, 198, 198);
  border-left: 3px solid #f0c826;
  padding-left: 15px;
  margin-bottom: 20px;
}
body #training {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 150px;
}
@media (max-width: 768px) {
  body #training {
    margin-top: 100px;
  }
}
body #training h2 {
  display: block;
  width: 100%;
  margin-bottom: 60px;
  text-align: center;
  margin: 60px 0px;
  text-align: center;
  font-weight: 600;
  font-size: 25px;
}
@media (max-width: 768px) {
  body #training h2 {
    margin: 0px;
    margin-bottom: 40px;
  }
}
body #training .training-card-holder {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
body #training .training-card-holder .training-card {
  width: calc(25% - 20px);
  padding: 10px;
  border-radius: 15px;
  text-decoration: none;
  color: rgb(48, 48, 48);
  margin-bottom: 30px;
  box-shadow: 0px 0px 10px rgba(54, 54, 54, 0.1490196078);
}
@media (max-width: 1000px) {
  body #training .training-card-holder .training-card {
    width: calc(33.3333333333% - 20px);
  }
}
@media (max-width: 768px) {
  body #training .training-card-holder .training-card {
    width: calc(50% - 20px);
  }
}
@media (max-width: 475px) {
  body #training .training-card-holder .training-card {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
  }
  body #training .training-card-holder .training-card .thumbnail {
    width: 100px;
    height: 100px;
    position: relative;
    overflow: hidden;
  }
  body #training .training-card-holder .training-card .thumbnail::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.263);
    z-index: 1;
  }
  body #training .training-card-holder .training-card .thumbnail ion-icon {
    width: 25px;
    height: 25px;
    padding: 5px !important;
    color: white !important;
    background: none !important;
    border: 2px solid rgb(255, 255, 255);
  }
  body #training .training-card-holder .training-card .content {
    width: calc(100% - 100px);
    padding-left: 15px !important;
    height: 100%;
    display: flex;
    align-items: center;
  }
  body #training .training-card-holder .training-card .content h3 {
    font-size: 18px !important;
    text-align: left !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
body #training .training-card-holder .training-card:hover {
  background: #f0c826;
  cursor: pointer;
}
body #training .training-card-holder .training-card:hover .thumbnail ion-icon {
  background: #f0c826;
}
body #training .training-card-holder .training-card .thumbnail {
  background: #eee;
  border-radius: 15px;
  position: relative;
}
body #training .training-card-holder .training-card .thumbnail img {
  width: 100%;
}
body #training .training-card-holder .training-card .thumbnail ion-icon {
  color: rgb(48, 48, 48);
  position: absolute;
  z-index: 10;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  font-size: 45px;
  background: rgba(255, 255, 255, 0.821);
  padding: 10px;
  border-radius: 100px;
}
body #training .training-card-holder .training-card .content {
  padding: 20px 10px;
}
body #training .training-card-holder .training-card .content h3 {
  font-size: 18px;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

body .purchase-order {
  margin-top: 100px;
}
body .purchase-order h2 {
  margin-bottom: 20px;
  font-weight: 600;
}
body .purchase-order .rwd-table {
  margin: auto;
  width: 100%;
  border-collapse: collapse;
}
body .purchase-order .rwd-table tr:first-child {
  border-top: none;
  background: #181c1f;
  color: #fff;
}
body .purchase-order .rwd-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #f5f9fc;
}
body .purchase-order .rwd-table tr:nth-child(odd):not(:first-child) {
  background-color: #ebf3f9;
}
body .purchase-order .rwd-table th {
  display: none;
}
body .purchase-order .rwd-table td {
  display: block;
}
body .purchase-order .rwd-table td:first-child {
  margin-top: 0.5em;
}
body .purchase-order .rwd-table td:last-child {
  margin-bottom: 0.5em;
}
body .purchase-order .rwd-table td:before {
  content: attr(data-th) ": ";
  font-weight: bold;
  width: 100%;
  display: inline-block;
  color: #000;
}
body .purchase-order .rwd-table th,
body .purchase-order .rwd-table td {
  text-align: left;
}
body .purchase-order .rwd-table {
  color: #333;
  border-radius: 0.4em;
  overflow: hidden;
}
body .purchase-order .rwd-table tr {
  border-color: #bfbfbf;
}
body .purchase-order .rwd-table th,
body .purchase-order .rwd-table td {
  padding: 0.5em 1em;
}
@media screen and (max-width: 601px) {
  body .purchase-order .rwd-table tr:nth-child(2) {
    border-top: none;
  }
}
@media screen and (min-width: 600px) {
  body .purchase-order .rwd-table tr:hover:not(:first-child) {
    background-color: #d8e7f3;
  }
  body .purchase-order .rwd-table td:before {
    display: none;
  }
  body .purchase-order .rwd-table th,
body .purchase-order .rwd-table td {
    display: table-cell;
    padding: 0.25em 0.5em;
  }
  body .purchase-order .rwd-table th:first-child,
body .purchase-order .rwd-table td:first-child {
    padding-left: 0;
  }
  body .purchase-order .rwd-table th:last-child,
body .purchase-order .rwd-table td:last-child {
    padding-right: 0;
  }
  body .purchase-order .rwd-table th,
body .purchase-order .rwd-table td {
    padding: 1em !important;
  }
}
/*# sourceMappingURL=style.css.map */