@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800;900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Css */
html,
body {
  font-size: 16px;
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
}

a {
  transition: all ease 0.3s;
}
a:hover {
  color: #800080 !important;
}

.btn {
  height: 4em;
  border-radius: 10px;
  width: 100%;
  transition: all ease 0.3s;
  font-size: 1em;
}
.btn:hover {
  opacity: 0.7;
}
.btn.btn-primary {
  border-color: #228b22;
  background-color: #228b22;
  color: #ffffff !important;
}
.btn.btn-info {
  border-color: #800080;
  background-color: #800080 !important;
  color: #ffffff !important;
}
.btn.btn-outline-primary {
  border-color: #800080;
  background-color: #ffffff;
  color: #800080;
}
.btn.btn-outline-primary:hover {
  color: #ffffff !important;
  background-color: #800080;
}
.btn.btn-outline-danger {
  border-color: #f43f5e !important;
  background-color: transparent !important;
  color: #f43f5e !important;
}
.btn.btn-outline-danger:hover {
  color: #ffffff !important;
  background-color: #f43f5e !important;
  opacity: 1;
}
.btn.btn-outline-secondary {
  border-color: #717171 !important;
  background-color: transparent !important;
  color: #717171 !important;
}
.btn.btn-outline-secondary:hover {
  color: #ffffff !important;
  background-color: #717171 !important;
  opacity: 1;
}

a.btn {
  line-height: 4em;
  padding: 0 0.4em;
}

.navbar {
  padding: 1.3em 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.navbar.navbarPad {
  padding: 0.6em 0 0.4em;
}
.navbar .navbar-nav .nav-item .nav-link {
  padding: 0.6em 1.5em;
  font-size: 0.875em;
}
.navbar .navbar-nav .nav-item .nav-link.active {
  font-weight: 600;
}
.navbar .btn {
  height: 40px;
  line-height: 40px;
  font-size: 0.875em;
  padding-left: 1em;
  padding-right: 1em;
  width: 115px;
  background-color: #800080;
}
.navbar .btn:hover {
  color: #ffffff !important;
}

/* Login CSS */
.login_boxMain {
  padding: 1em 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f3f3f3;
}
.login_boxMain.login_boxMainBgRemove {
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.login_boxMain .login_box {
  background-color: #ffffff;
  padding: 2.5em 4em;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .login_boxMain .login_box {
    padding: 1.8em 1.5em;
  }
}
.login_boxMain .login_box h1 {
  font-size: 2.375em;
  font-weight: 700;
  margin-bottom: 0.6em;
}
.login_boxMain .login_box .forgotText {
  text-decoration: none;
  color: #2a1e17;
  font-size: 0.775em;
  text-align: right;
  display: block;
}
.login_boxMain .login_box .orText {
  display: block;
  color: #2a1e17;
  font-size: 0.875em;
  margin: 2.3em 0 1.6em;
  text-align: center;
}
.login_boxMain .login_box .socialLogin {
  gap: 1em;
  display: flex;
  justify-content: center;
  margin-bottom: 2em;
}
.login_boxMain .login_box .socialLogin a {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 40px;
  background-color: #ffffff;
  display: inline-block;
  width: 125px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login_boxMain .login_box .socialLogin a iconify-icon {
  font-size: 1.6em;
}
.login_boxMain .login_box .socialLogin a:hover {
  background-color: #228b22;
}
.login_boxMain .login_box .socialLogin a:hover iconify-icon {
  filter: brightness(0) invert(1);
}
.login_boxMain .login_box h3 {
  font-size: 0.875em;
  text-align: center;
  color: #2a1e17;
}
.login_boxMain .login_box h3 a {
  color: #000000;
  font-weight: 600;
  text-decoration: none;
}
.login_boxMain .login_box.login_boxCart .card {
  border: none;
  padding: 0 !important;
}
.login_boxMain .login_box.login_boxCart .card .orHeading {
  text-align: left;
}
.login_boxMain .login_box.login_boxCart .card h3 {
  text-align: left;
  font-weight: 500;
}
.login_boxMain .login_box.login_boxCart .card .dollarBox h4 {
  font-weight: 600;
  font-size: 1.75em;
}
.login_boxMain.login_boxMain_Inner {
  background-color: #ffffff;
  padding: 2em 0;
}
.login_boxMain.login_boxMain_Inner .login_box {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 1.8em 2.5em;
}
.login_boxMain.login_boxMain_Inner .login_box h1 {
  font-size: 1.625em;
  font-weight: 500;
  margin-bottom: 0.6em;
}
.login_boxMain.login_boxMain_Inner .login_box .form-group label {
  font-size: 0.9em;
  color: #8e8ea1;
  font-weight: 400;
}
.login_boxMain.login_boxMain_Inner .login_box .form-group .form-control {
  padding-right: 1em;
  padding-left: 1em;
  background-color: transparent;
}
.login_boxMain.login_boxMain_Inner .login_box h3.h3Heading {
  color: #000000;
  text-align: left;
  font-weight: 600;
}
.login_boxMain.login_boxMain_Inner .login_box .btn {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background-color: #228b22;
  color: #ffffff;
}
.login_boxMain.login_boxMain_Inner .login_box .btn iconify-icon {
  font-size: 1.3em;
  margin-left: 0.3em;
  position: relative;
  top: 4px;
}
.login_boxMain.login_boxMain_Inner .login_box .btn.btn-primary:hover {
  color: #ffffff !important;
}
.login_boxMain.login_boxMain_Inner .login_box .btn.btn-secondary:hover {
  color: #ffffff !important;
}
.login_boxMain.login_boxMain_Inner .login_box .checkbox_box {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}
.login_boxMain.login_boxMain_Inner .login_box .checkbox_box .checkbox_boxPrint h3.orHeading {
  font-size: 1.5em;
}
.login_boxMain.login_boxMain_Inner .login_box .checkbox_box .checkbox_boxPrint .dateDec {
  font-size: 0.875em;
  color: #6b7280;
}
.login_boxMain.login_boxMain_Inner .login_box .checkbox_box .checkbox_boxPrint .dollarBox h4 {
  font-size: 1.5em;
  font-weight: 600;
}
.login_boxMain.login_boxMain_Inner .login_box .checkbox_box h3 {
  text-align: left;
}
.login_boxMain.login_boxMain_Inner .login_box .checkbox_box .payHeading {
  font-weight: 600;
  color: #000000;
}
.login_boxMain.login_boxMain_Inner .login_box .checkbox_box ul {
  margin-bottom: 1.3em;
}
.login_boxMain.login_boxMain_Inner .login_box .checkbox_box ul li {
  border-bottom: 1px solid rgba(88, 88, 88, 0.1);
}
.login_boxMain.login_boxMain_Inner .login_box .checkbox_box ul li h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8em 0;
  color: #6c6c6c;
}
.login_boxMain.login_boxMain_Inner .login_box .checkbox_box ul li h3 strong {
  font-weight: 500;
}
.login_boxMain.login_boxMain_Inner .login_box .checkbox_box ul li h3 .text-seconday {
  font-size: 1.3em;
  font-weight: 600;
  color: #228b22 !important;
}
.login_boxMain.login_boxMain_Inner .login_box .checkbox_box ul li:last-child {
  border-bottom: 0;
}
.login_boxMain.login_boxMain_Inner .login_box .card {
  padding: 1.4em;
  border-radius: 10px;
}
.login_boxMain.login_boxMain_Inner .login_box .card h3 {
  font-size: 1em;
  margin-bottom: 0.1em;
}
.login_boxMain.login_boxMain_Inner .login_box .card h3.orHeading {
  font-weight: 600;
  font-size: 1.25em;
}
.login_boxMain.login_boxMain_Inner .login_box .card p {
  color: #6b7280;
  font-size: 0.875em;
}
.login_boxMain.login_boxMain_Inner .login_box .card .c-media {
  display: flex;
  align-items: center;
  gap: 12px;
}
.login_boxMain.login_boxMain_Inner .login_box .card .c-media span {
  margin-left: auto;
  font-size: 0.875em;
}
.login_boxMain.login_boxMain_Inner .login_box .card .c-media img {
  border-radius: 8px;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(0, 0, 0, 0.09);
}
.login_boxMain.login_boxMain_Inner .login_box .card .c-media h4 {
  font-weight: 500;
  color: #111827;
}
.login_boxMain.login_boxMain_Inner .login_box .card .c-media p {
  font-size: 0.875em;
  color: #6b7280;
}
.login_boxMain.login_boxMain_Inner .login_box .card ul {
  margin-bottom: 0;
}
.login_boxMain.login_boxMain_Inner .login_box .card ul li {
  border-bottom: 0;
}
.login_boxMain.login_boxMain_Inner .login_box .card ul li h3 {
  color: #000000;
}
.login_boxMain.login_boxMain_Inner .login_box .contactDetails h1 {
  font-size: 2.375em;
  font-weight: 700;
  margin-bottom: 0.2em;
}
.login_boxMain.login_boxMain_Inner .login_box .contactDetails h4 {
  font-size: 1.125em;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.login_boxMain.login_boxMain_Inner .login_box .contactDetails p {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.3em;
  color: #717171;
}
.login_boxMain.login_boxMain_Inner .login_box .contactDetails .form-group label {
  font-weight: 500;
  color: #000000;
}

.address_view {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #800080;
  text-decoration: none;
  margin-top: 8px;
}

.addAddress {
  display: flex;
  align-items: center;
  font-size: 1.2em;
  color: #800080;
  text-decoration: none;
}
.addAddress iconify-icon {
  color: #800080;
  font-size: 1.3em;
  margin-right: 0.1em;
}
.addAddress:hover {
  color: #000000 !important;
}
.addAddress:hover iconify-icon {
  color: #000000 !important;
}
.addAddress.addAddress1 {
  font-size: 0.9em;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  right: 0 !important;
  left: auto !important;
  box-shadow: 0px 2px 16px 0px rgba(17, 24, 39, 0.08);
}
.dropdown .dropdown-menu .dropdown-item {
  padding: 0.6em 1em;
}
.dropdown .dropdown-menu .dropdown-item svg {
  margin-right: 0.4em;
}
.dropdown .dropdown-menu .dropdown-item:last-child {
  color: #f43f5e;
}
@media (max-width: 991px) {
  .dropdown.resMob {
    position: absolute;
    right: 7em;
    top: 32px;
  }
}
@media (max-width: 767px) {
  .dropdown.resMob {
    position: absolute;
    right: 5em;
    top: 32px;
  }
}

.h_user {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 0.8em;
}
.h_user img {
  width: 41px;
  height: 41px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100px;
}
.h_user iconify-icon {
  font-size: 1.5em;
  color: #000000;
}

.form-control {
  height: 55px;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  border-radius: 10px;
}
.form-control::-moz-placeholder {
  color: #717171;
  font-size: 0.875em;
}
.form-control::placeholder {
  color: #717171;
  font-size: 0.875em;
}
.form-control:focus {
  box-shadow: none;
  border-color: #800080 !important;
}

textarea.form-control {
  height: inherit;
}

.form-select {
  height: 55px;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  border-radius: 10px;
  background-color: #ffffff;
  font-size: 0.875em;
}
.form-select::-moz-placeholder {
  color: #717171;
  font-size: 0.875em;
}
.form-select::placeholder {
  color: #717171;
  font-size: 0.875em;
}
.form-select:focus {
  box-shadow: none;
  border-color: #717171 !important;
}

.form-check {
  font-size: 0.875em;
  color: #585858;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.form-check .form-check-label {
  position: relative;
  top: 1px;
}

.form-group label {
  font-size: 1em;
  margin-bottom: 0.3em;
  font-weight: 500;
}
.form-group .inputGroup {
  position: relative;
}
.form-group .inputGroup .form-control {
  padding-right: 2.875em;
}
.form-group .inputGroup .iconAbs {
  position: absolute;
  top: 0.938em;
  right: 0.938em;
}
.form-group .inputGroup .iconAbs1 {
  position: absolute;
  top: 0.738em;
  right: 0.738em;
  font-size: 1.5em;
  color: #292d32;
}
.form-group .inputGroup .iconAbs2 {
  position: absolute;
  top: 0.9em;
  right: 0.738em;
  font-size: 1.2em;
  color: #800080;
}

.inputBg .form-control {
  background-color: #f2f2f2 !important;
  padding-right: 2.9em !important;
}
.inputBg .iconAbs {
  top: 1.3em !important;
}

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background-color: #f3f4f6;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.upload-btn-wrapper input {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.upload-btn-wrapper iconify-icon {
  font-size: 2.7em;
}

/* Print CSS */
.flex_print-header {
  display: flex;
}
.flex_print-header .print_Header {
  height: 80px;
  padding: 1.5em 0;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.11);
}
.flex_print-header .print_Header .print_h {
  font-size: 0.875em;
}
.flex_print-header .print_Header a {
  height: 35px;
  line-height: 34px;
  font-size: 0.875em;
  padding-left: 1em;
  padding-right: 1em;
  width: 100px;
  margin-right: auto;
}

.flex_print-headerInner_box {
  border-bottom: 1px solid rgba(0, 0, 0, 0.11);
  padding: 1.3em 0;
}
.flex_print-headerInner_box .flex_print-headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex_print-headerInner_box .flex_print-headerInner .print_Header {
  text-align: center;
}
.flex_print-headerInner_box .flex_print-headerInner .print_Header .print_h {
  font-size: 0.875em;
}
.flex_print-headerInner_box .flex_print-headerInner .print_Header a {
  height: 35px;
  line-height: 34px;
  font-size: 0.875em;
  padding-left: 1em;
  padding-right: 1em;
  width: 100px;
  margin-right: auto;
}

.plist_ONE {
  width: 45%;
}

.plist_two {
  width: 35%;
}

.plist_three {
  width: 20%;
}

.print_Header.plist_three {
  align-items: flex-start;
  justify-content: flex-start;
  display: flex;
}

.oneList {
  box-shadow: 0px 15px 15px 2px rgba(0, 0, 0, 0.1);
  padding: 1.5em;
}

.oneSecond {
  padding: 1.5em;
}

.oneSecond1 {
  padding: 0 1.5em;
}

.printFlex {
  display: flex;
}
.printFlex .btn {
  height: 55px;
}
.printFlex a.btn {
  line-height: 55px;
}
.printFlex h3 {
  font-weight: 600;
  color: #800080;
  margin-bottom: 0.2em;
}
.printFlex h3.noteH3 {
  display: block;
  font-weight: 400;
  color: #000000;
  font-size: 0.875em;
  margin-bottom: 1.3em;
}
.printFlex h3.noteH3 strong {
  font-weight: 600;
}
.printFlex h4 {
  font-size: 1.25em;
  font-weight: 600;
  margin-bottom: 0.6em;
}
.printFlex button {
  margin-bottom: 3em;
  margin-top: 1em;
  background-color: #228b22;
}

.media_print {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.07);
  padding: 0.7em;
  border-radius: 12px;
  display: flex;
  gap: 10px;
  margin-bottom: 1em;
}
.media_print.media_printnone {
  box-shadow: none;
  padding: 0;
  display: initial;
}
.media_print.media_printnone .form-group .form-control {
  height: 50px;
}
.media_print.media_printnone .btn.btn-primary {
  background-color: #800080;
  border-color: #800080;
}
.media_print.media_printnone .btn.btn-primary:hover {
  color: #ffffff !important;
}
.media_print .placeholder {
  width: 90px;
  height: 151px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.media_print h4 {
  font-size: 0.8em;
  margin-bottom: 0.1em;
}
.media_print .form-group label {
  font-size: 0.7em;
}
.media_print .form-group .form-control {
  font-size: 0.8em;
  height: 38px;
  padding-right: 5px;
  border-radius: 5px;
  background-color: #ffffff;
  border-color: #1c1e27;
}
.media_print .form_flex {
  display: flex;
  gap: 10px;
  align-items: center;
}
.media_print .form_flex iconify-icon {
  font-size: 1.5em;
  position: relative;
  top: 11px;
}
.media_print .changeBtn {
  margin-top: 1em !important;
  margin-bottom: 1.5em !important;
  display: flex;
  gap: 15px;
  margin: 0 1.5em;
}
.media_print .changeBtn .btn {
  height: 45px;
  font-size: 0.875em;
  margin: 0;
}

.footer {
  padding: 1.3em;
  background-color: #800080;
}
.footer p {
  text-align: center;
  font-size: 0.875em;
  color: #ffffff;
  font-weight: 400;
}
.footer p strong {
  font-weight: 600;
}

.modal .modal-content {
  border-radius: 15px;
}
.modal .modal-dialog.modallg {
  max-width: 600px;
}
.modal .modal-body {
  padding: 1.5em;
}
.modal.modalOrder h2 {
  margin-bottom: 0.3em;
}
.modal.modalOrder p {
  font-size: 1em;
  color: #000000;
  margin-bottom: 1.5em;
}
.modal.modalOrder .form-group label {
  color: #8e8ea1;
  font-weight: 400;
  font-size: 1em;
}
.modal.modalOrder .form-group textarea.form-control {
  background-color: transparent;
}
.modal.modalOrder .orderButtons {
  margin-top: 1.3em;
}
.modal.modalOrder .orderButtons div {
  max-width: 400px;
}
.modal h2 {
  font-weight: 600;
  font-size: 1.7em;
  text-align: center;
  margin-bottom: 0.7em;
}
.modal .upload-btn-wrapper {
  width: 100%;
  height: 180px;
  border: 1px dashed #b8b8b8;
}
.modal .upload-btn-wrapper input {
  width: 100%;
  height: 100%;
}
.modal .upload-btn-wrapper.upload-btn-wrapper_btn {
  border: 1px solid #ababab;
  background-color: #ababab;
  border-radius: 6px;
  height: 55px;
  width: 80%;
  margin: 0 auto;
  color: #ffffff;
  font-size: 0.875em;
}
.modal .upload-btn-wrapper.upload-btn-wrapper_btn iconify-icon {
  font-size: 1.5em;
  margin-left: 0.2em;
}
.modal p {
  text-align: center;
  color: #888888;
  font-weight: 400;
  font-size: 0.8em;
}
.modal p strong {
  color: #000000;
  font-weight: 500;
}

.upload_Flex {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  row-gap: 15px;
}

.upload_img {
  width: 100px;
  height: 100px;
  border-radius: 0;
  background-color: #f7f7f7;
  padding: 5px;
  border: 1px solid #dedede;
  position: relative;
}
.upload_img img {
  width: 88px;
  height: 88px;
  border-radius: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.upload_img iconify-icon {
  position: absolute;
  right: 5px;
  cursor: pointer;
  font-size: 1.2em;
}
.upload_img iconify-icon:hover {
  color: #f43f5e;
}

.label {
  display: block;
  font-weight: 600;
  color: #000000;
  font-size: 0.875em;
}

.payRadio {
  margin-top: 0.6em;
}
.payRadio .form-check {
  margin-bottom: 1em;
}
.payRadio .form-check label h3 {
  font-size: 0.938em;
  color: #000000;
}
.payRadio .form-check label p {
  font-size: 0.738em;
  color: rgba(88, 88, 88, 0.8);
}
.payRadio.payRadioAddress {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 1.4em 1.6em 1.2em 1.4em;
  margin-bottom: 0.6em;
}
.payRadio.payRadioAddress .form-check {
  text-align: left;
  margin-bottom: 0;
}
.payRadio.payRadioAddress .form-check-label {
  margin-left: 0.6em;
  width: 100%;
}
.payRadio.payRadioAddress .form-check-label div {
  margin-top: -4px;
}
.payRadio.payRadioAddress .form-check-label div h3 {
  font-weight: 600;
  text-align: left;
  font-size: 1.25em;
  color: #22242c;
  margin-bottom: 0.6em;
}
.payRadio.payRadioAddress .form-check-label div p {
  font-size: 1em;
}
.payRadio.payRadioAddress .editBtns {
  display: flex;
  gap: 0.5em;
}
.payRadio.payRadioAddress .editBtns a {
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.1));
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}
.payRadio.payRadioAddress .editBtns a:hover {
  opacity: 0.7;
}
.payRadio.payRadioAddress .editBtns a.edit {
  background-color: #000000;
}
.payRadio.payRadioAddress .editBtns a.edit iconify-icon {
  font-size: 1.3em;
  color: #ffffff;
}
.payRadio.payRadioAddress .editBtns a.del {
  background-color: #f13621;
}
.payRadio.payRadioAddress .editBtns a.del iconify-icon {
  font-size: 1.3em;
  color: #ffffff;
}

.table {
  margin-bottom: 0;
  --bs-table-striped-bg: #f7f7f7;
}
.table tr td,
.table tr th {
  padding: 1.4em 1.6em;
  vertical-align: middle;
}
.table thead tr th {
  font-size: 1.1em;
  font-weight: 600;
}
.table tbody tr td {
  padding: 1em 1.6em;
  font-size: 1.1em;
}
.table tbody tr td .imgSize {
  border: 1px solid #dedede;
  width: 100px;
  height: 100px;
}

.badge {
  padding: 1em 1.3em;
  border-radius: 100px;
  font-weight: 600;
}
.badge.shipped {
  background-color: rgba(128, 0, 128, 0.1) !important;
  color: #800080;
}
.badge.received {
  background-color: rgba(34, 139, 34, 0.1) !important;
  color: #228b22;
}
.badge.dispatched {
  background-color: rgba(92, 79, 239, 0.1) !important;
  color: #5c4fef;
}
.badge.cancelled {
  background-color: rgba(241, 54, 33, 0.2) !important;
  color: #f13621;
}
.badge.processing {
  background-color: rgba(113, 113, 113, 0.1) !important;
  color: #717171;
}

.pagination_b {
  margin-top: 2em;
  text-align: center;
}
.pagination_b ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.pagination_b ul li.active {
  background-color: #228b22;
  border-radius: 100px !important;
  box-shadow: 0px 7px 16px 0px rgba(0, 0, 0, 0.1411764706);
}
.pagination_b ul li.active a {
  color: #ffffff !important;
}
.pagination_b ul li.numBox a {
  border: 1px solid #ababab;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  color: #ababab;
  font-size: 1.125em;
}
.pagination_b ul li.numBox a:hover {
  background-color: #228b22;
  color: #ffffff !important;
}

.active_btns a {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  color: #800080;
  border: 1px solid #eaeaea;
}
.active_btns a iconify-icon {
  font-size: 1.2em;
}
.active_btns a:hover {
  opacity: 0.7;
}
.active_btns.active_btnsFlex {
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.active_btns.active_btnsFlex a.vieweye {
  background-color: #800080;
  color: #ffffff;
}
.active_btns.active_btnsFlex a.vieweye:hover {
  color: #ffffff !important;
}

hr {
  margin: 1rem 0 1.4rem;
  opacity: 0.08;
}

.userBox {
  text-align: center;
  margin-bottom: 1.5em;
}
.userBox img {
  width: 150px;
  height: 150px;
  border-radius: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #228b22;
}

.form-check-input:checked {
  background-color: #000000;
  border-color: #000000;
}

.form-check-input {
  width: 1.3em;
  height: 1.3em;
}

.formCheck .form-check-label {
  color: #000000;
  position: relative;
  top: 2px;
  padding-left: 0.4em;
}
.formCheck a {
  color: #800080;
  text-decoration: none;
}
.formCheck a:hover {
  color: #000000 !important;
}

/* Country Picker */
.intl-tel-input,
.iti {
  width: 100% !important;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent !important;
}

/* Radio As Card */
.custom_radio {
  border: 1px solid #dfdfdf;
  border-radius: 10px;
  padding: 0.2em;
  margin-bottom: 1.3em;
  display: flex;
}
.custom_radio .card-input-element {
  display: none;
}
.custom_radio label {
  width: 100%;
}
.custom_radio .card-input {
  background-color: #ffffff;
  height: 50px;
  font-size: 0.875em;
  font-weight: 500;
  color: #7d7d7d;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom_radio .card-input:hover {
  cursor: pointer;
}
.custom_radio .card-input-element:checked + .card-input {
  background-color: #800080;
  color: #ffffff;
  border-color: #800080;
  border-radius: 10px;
}
.custom_radio.custom_radio1 .card-input {
  padding: 1.5em 1em;
  width: 100%;
}
.custom_radio.custom_radio1 .card-input span {
  display: block;
  padding-top: 0.4em;
}

.font-14 {
  font-size: 0.875em;
}

.passcode-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;
  margin: 0 auto;
}
.passcode-wrapper input {
  width: 116px;
  height: 116px;
  caret-color: transparent;
  padding: 0;
  margin-right: 5px;
  text-align: center;
  border: 1px solid #e5e5e5;
  color: #000000;
  border-radius: 10px;
  font-size: 5em;
}
.passcode-wrapper input:last-child {
  margin-right: 0;
}
.passcode-wrapper input::-webkit-inner-spin-button, .passcode-wrapper input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.passcode-wrapper input::-moz-placeholder {
  color: #717171;
}
.passcode-wrapper input::placeholder {
  color: #717171;
}
.passcode-wrapper input:focus, .passcode-wrapper input.focus {
  background-color: #000000;
  outline: none;
  box-shadow: none;
  color: #ffffff;
}

.headerRealtive {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3em;
}
.headerRealtive a {
  position: absolute;
  left: 0;
  color: #000000;
  text-decoration: none;
}
.headerRealtive a svg {
  margin-right: 0.3em;
}
.headerRealtive a:hover svg {
  transition: all ease 0.3s;
}
.headerRealtive a:hover svg path {
  fill: #800080;
}
.headerRealtive h1 {
  color: #22242c;
  font-size: 1.625em;
  font-weight: 500;
  position: relative;
}
.headerRealtive h1::after {
  content: "";
  position: absolute;
  bottom: -0.3em;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  border-radius: 100px;
  width: 40%;
  background-color: #800080;
}

/* Shadow Flex */
.shadowBox {
  padding: 2em 0;
}
.shadowBox .login_box {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 2.4em 2.5em;
}
.shadowBox .login_box h1 {
  font-size: 1.625em;
  font-weight: 500;
  margin-bottom: 0.6em;
}
.shadowBox .login_box .order_flex {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 1.3em;
}
.shadowBox .login_box .order_flex .form-group:last-child {
  flex-grow: 1;
}
.shadowBox .login_box .order_flex .form-group label {
  font-size: 0.7em;
}
.shadowBox .login_box .order_flex .form-group .inputGroup {
  position: relative;
}
.shadowBox .login_box .order_flex .form-group .form-control {
  height: 50px !important;
  font-size: 0.8em;
  height: 38px;
  padding-right: 5px;
  border-radius: 5px;
  background-color: #ffffff;
  border-color: #1c1e27;
}

.checkbox_box h3 {
  text-align: left;
  font-weight: 500;
  color: #22242c;
}
.checkbox_box .payHeading {
  font-weight: 600;
  color: #000000;
}
.checkbox_box ul {
  margin-bottom: 1.3em;
}
.checkbox_box ul li {
  border-bottom: 1px solid rgba(88, 88, 88, 0.1);
}
.checkbox_box ul li h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8em 0;
  color: #6c6c6c;
}
.checkbox_box ul li h3 strong {
  font-weight: 500;
}
.checkbox_box ul li h3 .text-seconday {
  font-size: 1.3em;
  font-weight: 600;
  color: #111827 !important;
}
.checkbox_box ul li:last-child {
  border-bottom: 0;
}
.checkbox_box .card {
  padding: 1.4em;
  border-radius: 10px;
}
.checkbox_box .card h3 {
  font-size: 0.875em;
  margin-bottom: 0.1em;
}
.checkbox_box .card h3.orHeading {
  font-weight: 600;
  font-size: 1.25em;
}
.checkbox_box .card h3.orHeading span {
  color: #800080;
}
.checkbox_box .card p {
  color: #6b7280;
  font-size: 0.875em;
}
.checkbox_box .card p.bigFont {
  font-size: 1.5em;
  color: #000000;
  font-weight: 600;
}
.checkbox_box .card .c-media {
  display: flex;
  align-items: center;
  gap: 12px;
}
.checkbox_box .card .c-media span {
  margin-left: auto;
  font-size: 0.875em;
}
.checkbox_box .card .c-media img {
  border-radius: 8px;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(0, 0, 0, 0.09);
}
.checkbox_box .card .c-media h4 {
  font-weight: 500;
  color: #111827;
}
.checkbox_box .card .c-media p {
  font-size: 0.875em;
  color: #6b7280;
}
.checkbox_box .card ul {
  margin-bottom: 0;
}
.checkbox_box .card ul li {
  border-bottom: 0;
}
.checkbox_box .card ul li h3 {
  color: #000000;
}
.checkbox_box.checkbox_boxThanks h2 {
  margin-top: 1.5em;
  margin-bottom: 0.1em;
  font-size: 1.875em;
  font-weight: 600;
  color: #22242c;
}
.checkbox_box.checkbox_boxThanks p {
  margin-bottom: 2em;
  color: #000000;
  font-weight: 500;
}
.checkbox_box .checkButtons {
  display: flex;
  gap: 1em;
}
.checkbox_box .checkButtons .btn {
  border-color: transparent;
}
.checkbox_box .checkButtons .btn.btn-outline-danger {
  background-color: transparent;
  border-color: #f43f5e;
  color: #f43f5e !important;
}
.checkbox_box .checkButtons .btn.btn-outline-danger:hover {
  color: #ffffff !important;
  background-color: #f43f5e;
}

.iconCss {
  color: #800080;
  font-size: 1.3em;
  margin-right: 0.3em;
}

.orderButtons {
  text-align: center;
}
.orderButtons div {
  justify-content: center;
  margin: 0 auto;
  display: flex;
  gap: 1em;
  width: 100%;
  max-width: 600px;
}

.removebtn {
  background-color: #f13621;
  font-size: 0.7em;
  letter-spacing: 0.5px;
  padding: 0.3em 0.9em;
  border-radius: 100px;
  color: #ffffff;
  text-decoration: none;
}
.removebtn:hover {
  background-color: #000000;
  color: #ffffff !important;
}

.cartQuantity {
  position: relative;
  margin-right: 1.2em;
}
.cartQuantity a {
  color: #000000;
  text-decoration: none;
}
.cartQuantity a iconify-icon {
  font-size: 1.9em;
}
.cartQuantity a span {
  width: 18px;
  height: 18px;
  border-radius: 100px;
  background-color: #800080;
  font-size: 0.8em;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -3px;
  right: -5px;
}

.radioFlex {
  display: flex;
  align-items: center;
  gap: 1.5em;
}
.radioFlex .form-check .form-check-label {
  margin-left: 0.5em;
  position: relative;
  top: 2px;
}
.radioFlex .form-check input:checked + label {
  color: #000000;
  font-weight: 600;
}

.font-16 {
  font-size: 1em !important;
}

.copyText {
  text-decoration: none;
}
.copyText h3 {
  color: #800080 !important;
}

.alert {
  border-radius: 10px;
  border: 1px solid #f13621;
  background: rgba(241, 54, 33, 0.1);
  display: flex;
  align-items: center;
  gap: 1em;
}
.alert h2 {
  color: #f13621;
  font-size: 1.25em;
  font-weight: 600;
}
.alert p {
  color: #f68174;
  font-size: 1em;
}

/* Contact Details *//*# sourceMappingURL=style.css.map */