@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "DM Sans", sans-serif;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0;
  min-height: 100vh;
  background: #fff;
  -webkit-font-smoothing: antialiased !important;
  -moz-font-smoothing: antialiased !important;
  text-rendering: optimizeSpeed;
  scroll-behavior: smooth;
  -webkit-text-stroke: 0px !important;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(209, 120, 66, 0.1);
  background-image: linear-gradient(to right bottom, rgba(209, 120, 66, 0.05), rgba(209, 120, 66, 0.05));
}
body::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: #b45f2c;
}

ul,
li {
  list-style: none;
}

a {
  color: #19224d;
  transition: all 0.3s linear;
}
a:hover, a:focus {
  text-decoration: none;
  outline: none;
  color: #000;
}

label {
  margin-bottom: 0;
}

button {
  vertical-align: middle;
  background: unset;
}
button:hover, button:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

ul,
ol {
  margin-bottom: 0;
}

.row {
  margin-left: -25px;
  margin-right: -25px;
}
.row *[class*=col-] {
  padding-left: 25px;
  padding-right: 25px;
}

.WpcColorPrimary {
  color: #d17842 !important;
}

a.WpcColorPrimary:hover, a.WpcColorPrimary:focus {
  color: #b45f2c !important;
  box-shadow: none !important;
}

.WpcColorSecondary {
  color: #83858e !important;
}

a.WpcColorSecondary:hover, a.WpcColorSecondary:focus {
  color: #6a6c74 !important;
  box-shadow: none !important;
}

.WpcColorSuccess {
  color: #16ad9f !important;
}

a.WpcColorSuccess:hover, a.WpcColorSuccess:focus {
  color: #108075 !important;
  box-shadow: none !important;
}

.WpcColorDanger {
  color: #ec008c !important;
}

a.WpcColorDanger:hover, a.WpcColorDanger:focus {
  color: #b9006e !important;
  box-shadow: none !important;
}

.WpcColorInfo {
  color: #007cdb !important;
}

a.WpcColorInfo:hover, a.WpcColorInfo:focus {
  color: #005fa8 !important;
  box-shadow: none !important;
}

.WpcColorWarning {
  color: #e04f5f !important;
}

a.WpcColorWarning:hover, a.WpcColorWarning:focus {
  color: #d62639 !important;
  box-shadow: none !important;
}

.WpcColorDark {
  color: #19224d !important;
}

a.WpcColorDark:hover, a.WpcColorDark:focus {
  color: #0d1127 !important;
  box-shadow: none !important;
}

.WpcColorBlack {
  color: #000 !important;
}

.WpcColorLight {
  color: #e6e7e8 !important;
}

a.WpcColorLight:hover, a.WpcColorLight:focus {
  color: #cbced0 !important;
  box-shadow: none !important;
}

.WpcColorWhite {
  color: #fff !important;
}

a.WpcColorWhite:hover, a.WpcColorWhite:focus {
  color: #e6e6e6 !important;
  box-shadow: none !important;
}

.WpcBackgroundPrimary {
  background-color: #d17842 !important;
}

.WpcBackgroundSecondary {
  background-color: #83858e !important;
}

.WpcBackgroundSuccess {
  background-color: #16ad9f !important;
}

.WpcBackgroundDanger {
  background-color: #ec008c !important;
}

.WpcBackgroundInfo {
  background-color: #007cdb !important;
}

.WpcBackgroundWarning {
  background-color: #e04f5f !important;
}

.WpcBackgroundDark {
  background-color: #19224d !important;
}

.WpcBackgroundBlack {
  background-color: #000 !important;
}

.WpcBackgroundLight {
  background-color: #e6e7e8 !important;
}

.WpcBackgroundWhite {
  background-color: #fff !important;
}

.GradientPrimary {
  background-image: linear-gradient(to bottom right, #d17842, #e0a480);
  color: white;
}

.GradientSecondary {
  background-image: linear-gradient(to bottom right, #83858e, #abacb2);
  color: white;
}

.GradientSuccess {
  background-image: linear-gradient(to bottom right, #16ad9f, #2be4d3);
  color: white;
}

.GradientDanger {
  background-image: linear-gradient(to bottom right, #ec008c, #ff3aaf);
  color: white;
}

.GradientInfo {
  background-image: linear-gradient(to bottom right, #007cdb, #29a2ff);
  color: white;
}

.GradientWarning {
  background-image: linear-gradient(to bottom right, #e04f5f, #eb909a);
  color: white;
}

.GradientDark {
  background-image: linear-gradient(to bottom right, #19224d, #2c3c87);
  color: white;
}

.GradientBlack {
  background-image: linear-gradient(to bottom right, #000, #262626);
  color: white;
}

.GradientLight {
  background-image: linear-gradient(to bottom right, #e6e7e8, white);
  color: #19224d;
}

.GradientWhite {
  background-image: linear-gradient(to bottom right, #fff, white);
  color: #19224d;
}

.WpcButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  width: 100%;
  padding: 1px;
  z-index: 1;
  border-radius: 15px;
  background: rgba(209, 120, 66, 0.1);
  border: 1px solid #d17842;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transition-property: background, box-shadow;
  -moz-transition-property: background, box-shadow;
  -o-transition-property: background, box-shadow;
  transition-property: background, box-shadow;
  position: relative;
}
.WpcButton .Icon {
  height: 24px;
  width: 24px;
  min-width: 24px;
  background: #19224d;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 8px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -webkit-transition-property: background, color, filter;
  -moz-transition-property: background, color, filter;
  -o-transition-property: background, color, filter;
  transition-property: background, color, filter;
}
.WpcButton .Text {
  padding: 0 25px;
  font-size: 1rem;
  font-weight: 500;
}
.WpcButton .Text:not(:first-child) {
  padding-left: 10px;
}
.WpcButton .Text:not(:last-child) {
  padding-right: 10px;
}
.WpcButton:hover {
  background: #d17842;
  box-shadow: 0 20px 20px -10px rgba(209, 120, 66, 0.4);
}
.WpcButton.WpcFilled {
  background: #d17842;
  color: #fff;
}
.WpcButton.WpcFilled:hover {
  background: #b45f2c;
  box-shadow: 0 20px 20px -10px rgba(209, 120, 66, 0.4);
}
.WpcButton.WpcDisabled {
  background: transparent;
  border-color: rgba(131, 133, 142, 0.2);
  cursor: not-allowed;
}
.WpcButton.WpcDisabled .Text {
  color: #83858e;
}
.WpcButton.WpcDisabled:hover {
  background: transparent;
  box-shadow: none;
}

.WpcButton[disabled], .WpcButton:disabled {
  opacity: 0.75;
}

.WpcEditButton {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  align-self: center;
}
.WpcEditButton .Icon {
  height: 40px;
  width: 40px;
  min-width: 40px;
  border-radius: 10px;
  border: 1px solid rgba(25, 34, 77, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #d17842;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transition-property: border-color, background-color, color;
  -moz-transition-property: border-color, background-color, color;
  -o-transition-property: border-color, background-color, color;
  transition-property: border-color, background-color, color;
}
.WpcEditButton .Icon:not(:last-child) {
  margin-right: 10px;
}
.WpcEditButton .Text {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #83858e;
}
.WpcEditButton:hover .Icon {
  border-color: #d17842;
  background-color: #d17842;
  color: #fff;
}
.WpcEditButton.WpcBigSize .Icon {
  height: 50px;
  width: 50px;
  min-width: 50px;
  border-radius: 12px;
  font-size: 1.25rem;
}
.WpcEditButton.WpcBigSize .Icon:not(:last-child) {
  margin-right: 12px;
}
.WpcEditButton.WpcBigSize .Text {
  font-size: 1rem;
}
.WpcEditButton.WpcFilled .Icon {
  border-color: #d17842;
  background: #d17842;
  color: #19224d;
}
.WpcEditButton.WpcFilled:hover .Icon {
  background: #b45f2c;
  box-shadow: 0 20px 20px -10px rgba(209, 120, 66, 0.4);
}
.WpcEditButton.WpcDisabled .Icon {
  background: transparent;
  border-color: rgba(131, 133, 142, 0.2);
  color: rgba(131, 133, 142, 0.2);
  cursor: not-allowed;
}
.WpcEditButton.WpcDisabled .Text {
  color: #83858e;
}
.WpcEditButton.WpcDisabled:hover .Icon {
  background: transparent;
  box-shadow: none;
}

.WpcAddButton {
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.WpcAddButton .Icon {
  height: 20px;
  width: 20px;
  min-width: 20px;
  border-radius: 20px;
  border: 1px solid rgba(131, 133, 142, 0.2);
  color: #83858e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transition-property: border-color, color;
  -moz-transition-property: border-color, color;
  -o-transition-property: border-color, color;
  transition-property: border-color, color;
}
.WpcAddButton .Icon:not(:last-child) {
  margin-right: 10px;
}
.WpcAddButton .Text {
  font-size: 0.875rem;
  line-height: 1.25;
  color: #83858e;
  -webkit-transition: color 0.3s ease-in-out 0s;
  -moz-transition: color 0.3s ease-in-out 0s;
  -o-transition: color 0.3s ease-in-out 0s;
  transition: color 0.3s ease-in-out 0s;
}
.WpcAddButton:hover .Icon {
  border-color: #83858e;
  color: #19224d;
}
.WpcAddButton:hover .Text {
  color: #19224d;
}

.WpcBackButton {
  display: flex;
  align-items: center;
  color: #19224d;
}
.WpcBackButton .Icon {
  font-size: 0.875rem;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  color: #83858e;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.WpcBackButton .Text {
  font-size: 1.125rem;
  font-weight: 400;
  display: flex;
  color: #83858e;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.WpcBackButton:hover .Icon {
  color: #19224d;
}
.WpcBackButton:hover .Text {
  color: #19224d;
}

body {
  background: #f3f3f3;
}

.wrapper {
  height: 100vh;
  overflow: hidden;
  position: relative;
  max-width: 550px;
  margin: 0 auto;
}

.wpc-body {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  max-width: 550px;
  margin: 0 auto;
  background: #0c0f14;
}

.mt30 {
  margin-top: 30px;
}

.footer {
  background: #0c0f14;
  padding: 15px;
  text-align: center;
  margin-top: auto;
}
.footer p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.footer a {
  color: #fff;
}

.bgi__property {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.WpcFormGroup {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.WpcFormGroup .WpcFormLabel {
  font-size: 1rem;
  color: #83858e;
  margin-bottom: 10px;
  margin-right: 10px;
  line-height: 1;
}
.WpcFormGroup:not(:last-child) {
  margin-bottom: 20px;
  margin-top: 15px;
}

input.form-control {
  height: 50px;
  padding: 0 20px;
  font-size: 1rem;
  color: #19224d;
  background: #fff;
  border-color: rgba(131, 133, 142, 0.2);
  border-radius: 12px;
  border-width: 1px;
}
input.form-control:focus {
  box-shadow: 0 0 5px rgba(25, 34, 77, 0.15);
}
input.form-control::placeholder {
  color: #b8babf;
}
input.form-control:not(:last-child) {
  margin-bottom: 5px;
}
input.form-control.fancy__form {
  border-radius: 0;
  border: 0;
  height: 60px;
  border-bottom: 1px solid rgba(131, 133, 142, 0.2);
  box-shadow: none;
  padding: 0;
}
input.form-control[type=password] {
  padding-right: 120px;
}

.user__thumb__change {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.user__thumb__change .user__thumb {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 15px;
}
.user__thumb__change .user__thumb img {
  width: 100%;
}

.form__group {
  position: relative;
  margin-bottom: 15px;
}
.form__group .forget__pass {
  font-size: 15px;
  font-weight: 400;
  color: #19224d;
  position: absolute;
  top: 20px;
  right: 0;
}
.form__group label {
  margin-bottom: 10px;
  display: inline-block;
  color: #f3f3f3;
}

.edit__profile__form {
  padding: 0 15px;
}

.account__controller {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
  height: 100vh;
  padding: 15px;
  background: url("../../img/access-bg.jpg") no-repeat center;
  background-size: cover;
}
.account__controller .site__welcome__logo {
  padding-top: 70%;
}
.account__controller .account__access__content {
  padding-top: 35%;
}
.account__controller .account__access__content h3 {
  font-size: 35px;
  font-weight: 500;
  color: #19224d;
  margin-bottom: 20px;
}
.account__controller .account__access__content p {
  font-size: 16px;
  font-weight: 400;
  color: #83858e;
}
.account__controller .account__access__content .account__access__form {
  margin-top: 23%;
  background: rgba(196, 196, 196, 0.1);
  border-radius: 15px;
  padding: 35px 25px;
}
.account__controller .account__access__content .account__access__form .form__group {
  margin-bottom: 20px;
}
.account__controller .account__access__content .account__access__form .form__group .fancy__form {
  background: transparent;
  border: 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
  color: #83858E;
  height: 40px;
}
.account__controller .account__access__content .account__access__form .form__group .fancy__form::-webkit-input-placeholder {
  color: #83858E;
}
.account__controller .account__access__content .account__access__form .form__group .fancy__form::-moz-placeholder {
  color: #83858E;
}
.account__controller .account__access__content .account__access__form .form__group .fancy__form:-ms-input-placeholder {
  color: #83858E;
}
.account__controller .account__access__content .account__access__form .form__group .fancy__form:-moz-placeholder {
  color: #83858E;
}
.account__controller .account__access__content .account__access__form .WpcButton {
  margin-top: 10px;
}
.account__controller .alternet__access {
  margin-bottom: 35px;
}
.account__controller .alternet__access .WpcButton {
  margin-bottom: 25px;
}
.account__controller .alternet__access .alternet__text {
  color: #83858e;
  font-weight: 400;
}
.account__controller .alternet__access .alternet__text a {
  color: #19224d;
  font-weight: 500;
}

.header {
  background: #0c0f14;
  padding: 30px 15px 85px;
  box-shadow: inset 0 0 0 1000px rgba(16, 20, 25, 0.65);
}
.header .header__nav {
  display: flex;
  justify-content: space-between;
  padding: 0 15px 20px;
}
.header .header__nav .nav__icon {
  width: 50px;
}
.header .header__nav .nav__icon a {
  color: #fff;
  font-size: 22px;
}
.header .header__nav .notification__icon a {
  color: #d17842;
  font-size: 22px;
  position: relative;
}
.header .header__nav .notification__icon a:before {
  position: absolute;
  top: 0;
  right: 2px;
  height: 8px;
  width: 8px;
  background: #16ad9f;
  border-radius: 50%;
  content: "";
}
.header .header__greeting {
  padding: 15px;
  position: relative;
}
.header .header__greeting .barista_available_status {
  color: #fff;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1rem;
  padding-left: 18px;
}
.header .header__greeting .barista_available_status::before {
  position: absolute;
  top: 3px;
  left: 0;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: #83858e;
  content: "";
}
.header .header__greeting .barista_available_status.isOnline::before {
  background: #16ad9f;
}
.header .header__greeting p {
  font-size: 17px;
  color: #d17842;
  font-weight: 700;
}
.header .header__greeting h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  margin-bottom: 15px;
}
.section__header .section__header__title {
  font-size: 20px;
  padding-left: 5px;
  font-weight: 700;
  color: #fff;
}
.section__header .section__header__icon {
  height: 40px;
  width: 40px;
  border-radius: 10px;
  background-color: #242c39;
  color: #d17842;
  line-height: 40px;
  text-align: center;
}
.section__header .section__header__icon i {
  color: #d17842;
}

.page__header {
  padding: 20px 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.page__header .left__content,
.page__header .right__content {
  flex: 1;
}
.page__header .left__content .back__button {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.page__header .page__title {
  flex: 0 0 auto;
  text-align: center;
}
.page__header .page__title h5 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.page__header .right__content {
  text-align: right;
}
.page__header .right__content .clear__button {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.coupon__statistic {
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  margin-top: -69px;
}
.coupon__statistic .statistic__card {
  flex: 0 0 calc(50% - 7.5px);
  padding: 15px;
  background: rgba(30, 34, 42, 0.8);
  border-radius: 20px;
  transition: all 0.3s ease;
}
.coupon__statistic .statistic__card:hover {
  background: #d17842;
}
.coupon__statistic .statistic__card:hover .card__top .icon {
  background: rgba(12, 15, 20, 0.8);
}
.coupon__statistic .statistic__card:hover p {
  color: #fff;
}
.coupon__statistic .statistic__card .card__top {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.coupon__statistic .statistic__card .card__top .icon {
  height: 54px;
  width: 54px;
  text-align: center;
  background: #d17842;
  border-radius: 15px;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.coupon__statistic .statistic__card .card__top .icon i {
  color: #fff;
  line-height: 54px;
  font-size: 20px;
}
.coupon__statistic .statistic__card .card__top h4 {
  font-size: 30px;
  color: #fff;
  font-weight: 400;
}
.coupon__statistic .statistic__card p {
  font-size: 14px;
  color: #cecece;
  transition: all 0.3s ease;
}

.item__wrap {
  display: flex;
  padding: 0 15px;
  overflow-x: auto;
}
.item__wrap.flex__wrap {
  flex-wrap: wrap;
}
.item__wrap.flex__wrap .item:nth-child(2n) {
  margin-right: 0;
}
.item__wrap.flex__wrap .item {
  margin-bottom: 15px;
}

.item {
  flex: 0 0 calc(50% - 7.5px);
  margin-right: 15px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #1e222a;
  padding: 15px;
}
.item:last-child {
  margin-right: 0;
}
.item .item__thumb {
  padding-top: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.item .item__thumb span {
  position: absolute;
  top: 28px;
  left: -60px;
  transform: rotate(-45deg);
  background: #d17842;
  color: #fff;
  font-size: 11px;
  padding: 5px 15px;
  width: 200px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
}
.item .item__thumb .item__available__count {
  background-color: rgba(30, 34, 42, 0.8);
  color: #fff;
  font-weight: 600;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  padding: 6px 12px;
  border-bottom-left-radius: 20px;
}
.item .item__thumb .item__available__count .wpc-icon {
  color: #d17842;
  margin-right: 5px;
}
.item .item__body {
  padding: 20px 10px 5px;
  text-align: center;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
.item .item__body .item__name {
  font-size: 21px;
  color: #fff;
  font-weight: 500;
}
.item .item__body p {
  font-size: 14px;
  font-weight: 400;
  color: #DADADD;
  margin-top: 5px;
}
.item .item__body p span {
  color: #DADADD;
}
.item .item__body h5 {
  border: 1px solid #d17842;
  border-radius: 8px;
  padding: 10px;
  color: #d17842;
  font-weight: 400;
  margin: 10px 0 5px;
  font-size: 14px;
  letter-spacing: 0.05rem;
}
.item .item__body .item__not__available {
  border-color: #DADADD;
  color: #DADADD;
}
.item--md {
  flex: 0 0 calc(40% - 10px);
  margin-right: 10px;
  border-radius: 18px;
}
.item--md .item__body {
  padding: 10px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
}
.item--md .item__body .item__name {
  font-size: 16px;
  font-weight: 400;
}

.coffee__convertion {
  padding: 0 15px;
  max-width: 400px;
  margin: 0 auto;
}
.coffee__convertion .switch__sec {
  margin-bottom: 20px;
}
.coffee__convertion .switch__sec span {
  text-align: center;
  display: block;
}
.coffee__convertion .switch__sec img {
  height: 40px;
  margin: 0 auto;
}

.convertion:not(:last-child) {
  margin-bottom: 20px;
}
.convertion .convertion__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.convertion .convertion__header p {
  flex: 0 0 60px;
  color: #fff;
}
.convertion .convertion__header .WpcFilterSelectorWrapper {
  flex: 1 1 auto;
  margin-right: 0;
}
.convertion .convertion__header .WpcFilterSelectorWrapper .WpcFilterSelector {
  width: 100%;
}
.convertion .convertion__header .WpcButton {
  min-height: 40px;
  width: auto;
  padding: 1px 25px;
}
.convertion .selected__item .item {
  flex: 0 0 100%;
  display: block;
  display: flex;
  margin-right: 0;
}
.convertion .selected__item .item .item__thumb {
  flex: 0 0 64px;
  width: 64px;
  padding-top: 0;
  height: 64px;
  border-radius: 12px;
}
.convertion .selected__item .item .item__body {
  padding: 0 0 0 15px;
  flex: 1 1 auto;
}
.convertion .selected__item .item .item__body h3 {
  font-size: 16px;
  text-align: left;
}
.convertion .selected__item .item .item__body .item__body__bottom {
  display: flex;
  width: 100%;
  margin-top: 10px;
  justify-content: space-between;
}
.convertion .selected__item .item .item__body .item__available__count {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  background: #1e222a;
  border: 1px solid rgba(131, 133, 142, 0.2);
  align-items: center;
  height: 35px;
  width: 45px;
  border-radius: 12px;
}
.convertion .selected__item .item .item__body .item__available__count .icon {
  font-size: 14px;
  margin-right: 5px;
}
.convertion .selected__item .item .item__body .item__available__count .icon i {
  color: #d17842;
}
.convertion .selected__item .item .item__body .item__available__count p {
  margin-top: 0;
}

.WpcFilterSelectorWrapper {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-right: 20px;
}
.WpcFilterSelectorWrapper .WpcFilterSelector {
  height: 40px;
  padding: 0 45px 0 20px;
  background: #1e222a;
  border: 1px solid rgba(131, 133, 142, 0.2);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  -webkit-appearance: none;
}
.WpcFilterSelectorWrapper:before {
  font-family: "Wpc-icon";
  content: "\e90f";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 0.6875rem;
  color: rgba(131, 133, 142, 0.2);
}

.WpcIncDecButtonGroup {
  display: inline-flex;
  align-items: center;
}
.WpcIncDecButtonGroup .WpcIncDecInput::-webkit-outer-spin-button,
.WpcIncDecButtonGroup .WpcIncDecInput::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.WpcIncDecButtonGroup .WpcIncDecInput,
.WpcIncDecButtonGroup .WpcIncButton,
.WpcIncDecButtonGroup .WpcDecButton {
  height: 35px;
  width: 35px;
  min-width: 35px;
  border: 1px solid rgba(131, 133, 142, 0.2);
  border-radius: 10px;
  padding: 2px;
  display: inline-flex;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: #1e222a;
}
.WpcIncDecButtonGroup .WpcIncDecInput:not(:last-child),
.WpcIncDecButtonGroup .WpcIncButton:not(:last-child),
.WpcIncDecButtonGroup .WpcDecButton:not(:last-child) {
  margin-right: 10px;
}
.WpcIncDecButtonGroup .WpcIncButton,
.WpcIncDecButtonGroup .WpcDecButton {
  font-size: 0.75rem;
  color: #83858e;
}
.WpcIncDecButtonGroup:not(:last-child) {
  margin-right: 10px;
}

.order__tracking__wrap {
  padding: 10px 15px;
}

.order__tracking {
  margin-top: 15px;
  display: flex;
  align-items: center;
  border: 1px solid #d17842;
  border-radius: 20px;
  padding: 5px;
  padding-right: 10px;
  background: #d17842;
  transition: all 0.3s ease;
  position: relative;
}
.order__tracking:hover {
  background: #d17842;
}
.order__tracking:hover .order__tracking__body p {
  color: #fff;
}
.order__tracking .order__tracking__menu__wrapper {
  background-color: #342520;
  display: flex;
  flex-flow: column;
  align-items: center;
  border-radius: 20px;
  padding: 10px;
  margin-right: 15px;
}
.order__tracking .order__tracking__menu__wrapper h5 {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  margin: 8px 0 0;
}
.order__tracking .order__tracking__thumb {
  flex: 0 0 80px;
  min-width: 80px;
  height: 80px;
  width: 80px;
  border-radius: 20px;
  overflow: hidden;
}
.order__tracking .order__tracking__body {
  flex: 1 0 auto;
}
.order__tracking .order__tracking__body h3 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
}
.order__tracking .order__tracking__body .cancel__order {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 12px;
  border-radius: 10px;
}
.order__tracking .order__tracking__body p {
  font-size: 14px;
  font-weight: 400;
  color: #f3f3f3;
  transition: all 0.3s ease;
}

.wpc-order__history {
  padding: 0 15px;
  margin: 0;
  list-style: none;
}
.wpc-order__history .item__ordered {
  background-color: #1e222a;
  border: 1px solid rgba(30, 34, 42, 0.1);
  border-radius: 10px;
  padding: 15px;
}
.wpc-order__history .item__ordered:not(:last-child) {
  margin-bottom: 15px;
}
.wpc-order__history .item__ordered .order__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.wpc-order__history .item__ordered .order__top .order__status {
  font-size: 12px;
  font-weight: 400;
  color: #d17842;
  background: rgba(209, 120, 66, 0.1);
  padding: 3px 10px;
  border-radius: 15px;
  border: 1px solid rgba(209, 120, 66, 0.5);
}
.wpc-order__history .item__ordered .order__id {
  font-size: 13px;
  font-weight: 400;
  color: #d17842;
}
.wpc-order__history .item__ordered .order__details {
  display: flex;
  align-items: center;
}
.wpc-order__history .item__ordered .order__details .item__thumb {
  width: 50px;
  height: 50px;
  min-width: 50px;
  margin-right: 10px;
  border-radius: 10px;
}
.wpc-order__history .item__ordered .order__details .item__body h5 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 5px;
}
.wpc-order__history .item__ordered .order__details .item__body .order__date {
  font-size: 13px;
  font-weight: 400;
  color: #83858e;
}

.wpc__item__modal.show {
  background: rgba(15, 19, 38, 0.7);
}
.wpc__item__modal .modal-dialog {
  min-width: 290px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  margin: 0;
}
.wpc__item__modal .modal-dialog .modal-content {
  background: transparent;
}
.wpc__item__modal .modal-body {
  padding: 0;
}
.wpc__item__modal .modal-body .item {
  border-radius: 20px;
  overflow: hidden;
  background: #1e222a;
}
.wpc__item__modal .modal-body .item .item__body {
  padding: 20px 18px 30px;
}
.wpc__item__modal .modal-body .item .item__body .item__name {
  font-size: 24px;
}
.wpc__item__modal .modal-body .item .item__body p {
  font-size: 18px;
}
.wpc__item__modal .modal-body .item .item__body .WpcButton {
  margin-top: 20px;
}

.wpc-item__details {
  background: #0c0f14;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  overflow: auto;
  display: none;
}
.wpc-item__details.show {
  display: block;
  opacity: 1;
}
.wpc-item__details .item__thumb {
  width: 100%;
  height: 65%;
  max-height: 600px;
  position: relative;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  overflow: hidden;
}
.wpc-item__details .item__thumb > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.wpc-item__details .item__thumb .item__fav,
.wpc-item__details .item__thumb .item__back {
  position: absolute;
  top: 25px;
  height: 45px;
  width: 45px;
  border-radius: 12px;
  background: #0c0f14;
  color: rgba(255, 255, 255, 0.5);
  line-height: 45px;
  text-align: center;
}
.wpc-item__details .item__thumb .item__fav {
  right: 25px;
}
.wpc-item__details .item__thumb .item__back {
  left: 25px;
}
.wpc-item__details .item__thumb .item__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12, 15, 20, 0.5);
  backdrop-filter: blur(20px);
  padding: 15px 20px;
}
.wpc-item__details .item__thumb .item__info .left__block {
  flex: 1 1 auto;
  margin-right: auto;
}
.wpc-item__details .item__thumb .item__info .left__block h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
@media all and (max-width: 340px) {
  .wpc-item__details .item__thumb .item__info .left__block h3 {
    font-size: 22px;
  }
}
.wpc-item__details .item__thumb .item__info .left__block .item__elem {
  font-size: 14px;
  font-weight: 400;
  color: #DADADD;
  margin-bottom: 10px;
}
@media all and (max-width: 340px) {
  .wpc-item__details .item__thumb .item__info .left__block .item__elem {
    font-size: 16px;
  }
}
.wpc-item__details .item__thumb .item__info .left__block .token__available {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
@media all and (max-width: 340px) {
  .wpc-item__details .item__thumb .item__info .left__block .token__available {
    font-size: 14px;
  }
}
.wpc-item__details .item__thumb .item__info .left__block .token__available i {
  color: #d17842;
  margin-right: 5px;
}
.wpc-item__details .item__thumb .item__info .making__process {
  display: inline-flex;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-end;
}
.wpc-item__details .item__thumb .item__info .making__process .making__elem {
  flex: 0 0 auto;
  min-width: 45px;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 10px;
  border-radius: 15px;
  background: #0c0f14;
  height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2px 6px;
}
.wpc-item__details .item__thumb .item__info .making__process .making__elem:last-child {
  margin-right: 0;
}
.wpc-item__details .item__thumb .item__info .making__process .making__elem i {
  color: #d17842;
  font-size: 14px;
}
.wpc-item__details .item__thumb .item__info .making__process .making__elem span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
  margin-top: 3px;
}
.wpc-item__details .item__thumb .item__info .making__process .making__elem p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
}
.wpc-item__details .item__body {
  padding: 25px 15px;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
.wpc-item__details .item__body .title {
  font-size: 14px;
  font-weight: 400;
  color: #DADADD;
  margin-bottom: 10px;
}
.wpc-item__details .item__body .description {
  color: #e6e7e8;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 30px;
}
.wpc-item__details .item__body .description .read__more {
  color: #d17842;
}
.wpc-item__details .item__body .item__instruction {
  margin-bottom: 35px;
}
.wpc-item__details .item__body .item__instruction textarea {
  padding: 12px 15px;
  background: #292929;
  width: 100%;
  height: 80px;
  border-radius: 15px;
  resize: none;
  font-size: 15px;
  color: #fff;
  border: 1px solid #545252;
}
.wpc-item__details .item__body .item__instruction textarea:focus {
  border-color: #a05f28;
}
.wpc-item__details .item__body .order__item {
  background: #d17842;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 15px;
  margin-top: auto;
}

.item__sc {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wpc-notificatons {
  padding: 0 15px;
}
.wpc-notificatons .notification__item {
  border: 1px solid rgba(30, 34, 42, 0.1);
  background-color: #1e222a;
  border-radius: 10px;
  padding: 15px 25px;
}
.wpc-notificatons .notification__item:not(:last-child) {
  margin-bottom: 15px;
}
.wpc-notificatons .notification__item .notification__time {
  font-size: 13px;
  font-weight: 400;
  color: #83858e;
  line-height: 1.5;
}
.wpc-notificatons .notification__item .card {
  border: 0;
  background: transparent;
}
.wpc-notificatons .notification__item .card .card-header {
  padding: 0;
  background: transparent;
  border-bottom: 0;
}
.wpc-notificatons .notification__item .card .card-header h2 .btn {
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  position: relative;
}
.wpc-notificatons .notification__item .card .card-header h2 .btn span {
  position: absolute;
  top: 5px;
  right: 0;
  color: #DADADD;
  font-size: 10px;
  transform: rotate(0);
  transition: all 0.3s ease;
}
.wpc-notificatons .notification__item .card .card-header h2 .btn.collapsed span {
  transform: rotate(-90deg);
}
.wpc-notificatons .notification__item .card .card-body {
  padding: 0;
  padding: 10px 0;
}
.wpc-notificatons .notification__item .card .card-body p {
  font-size: 14px;
  font-weight: 400;
  color: #DADADD;
}

.wpc-navigation__drawer__wrap {
  background: #1e222a;
  position: absolute;
  top: 0;
  left: -100vw;
  width: 100%;
  height: 100%;
  z-index: 99;
  transition: all 0.3s ease;
}
.wpc-navigation__drawer__wrap.show {
  left: 0;
}

.wpc-navigation__drawer {
  padding: 20px 25px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.wpc-navigation__drawer .navigation__drawer__closer {
  margin-bottom: 30px;
  display: inline-block;
  color: #fff;
}
.wpc-navigation__drawer .navigation__drawer__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}
.wpc-navigation__drawer .navigation__drawer__header .navigation__drawer__user {
  display: flex;
  align-items: center;
}
.wpc-navigation__drawer .navigation__drawer__header .navigation__drawer__user__thumb {
  width: 50px;
  height: 50px;
  min-width: 50px;
  margin-right: 15px;
  border-radius: 12px;
}
.wpc-navigation__drawer .navigation__drawer__header .navigation__drawer__user__body .user__name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.wpc-navigation__drawer .navigation__drawer__header .navigation__drawer__user__body .designation {
  font-size: 13px;
  font-weight: 400;
  color: #DADADD;
}
.wpc-navigation__drawer .navigation__drawer__header .navigation__drawer__user__edit a {
  height: 40px;
  width: 40px;
  border-radius: 10px;
  border: 1px solid rgba(131, 133, 142, 0.3);
  line-height: 40px;
  text-align: center;
  display: inline-block;
  color: #d17842;
}
.wpc-navigation__drawer .navigation__menu .navigation__list {
  padding: 15px 0;
  display: flex;
}
.wpc-navigation__drawer .navigation__menu .navigation__list:not(:last-child) {
  border-bottom: 1px solid rgba(131, 133, 142, 0.1);
}
.wpc-navigation__drawer .navigation__menu .navigation__list .icon {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(131, 133, 142, 0.1);
  color: #d17842;
  margin-right: 10px;
  display: inline-block;
  border-radius: 12px;
  background-color: #242c39;
}
.wpc-navigation__drawer .navigation__menu .navigation__list .text {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}
.wpc-navigation__drawer .navigation__menu .navigation__list .text span {
  color: #d17842;
}

.coffee__gift {
  padding: 15px;
  max-width: 400px;
  margin: 0 auto;
}
.wpc-body {
  background-color: #0c0f14;
}/*# sourceMappingURL=style.css.map */