:root {
  --blue: #5c79ff;
  --indigo: #6574cd;
  --purple: #9561e2;
  --pink: #f66d9b;
  --red: #e3342f;
  --orange: #f6993f;
  --yellow: #ffed4a;
  --green: #28a745;
  --teal: #4dc0b5;
  --cyan: #6cb2eb;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #5c79ff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #6cb2eb;
  --warning: #ffed4a;
  --danger: #e3342f;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Roboto", sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
footer,
main,
nav,
section {
  display: block;
}
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #212529;
  text-align: left;
  background-color: #f8fafc;
}
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
a {
  color: #5c79ff;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #103aff;
  text-decoration: underline;
}
img {
  vertical-align: middle;
  border-style: none;
}
label {
  display: inline-block;
  margin-bottom: 0.5rem;
}
button {
  border-radius: 0;
}
button:focus:not(:focus-visible) {
  outline: 0;
}
input,
button,
select {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
select {
  word-wrap: normal;
}
button,
[type="button"] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled) {
  cursor: pointer;
}
input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}
small {
  font-size: 80%;
  font-weight: 400;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.col-md-12,
.col-md-6,
.col-md-5,
.col-md-4,
.col-sm-9,
.col-sm-7,
.col-sm-6,
.col-sm-5,
.col-sm-3,
.col,
.col-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
@media (min-width: 576px) {
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}
@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.form-control {
  display: block;
  width: 100%;
  height: calc(1.6em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #dce2ff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(92, 121, 255, 0.25);
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled {
  background-color: #e9ecef;
  opacity: 1;
}
.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}
.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-label {
  margin-bottom: 0;
}
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #e3342f;
}
.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(92, 121, 255, 0.25);
}
.btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.btn-primary {
  color: #fff;
  background-color: #5c79ff;
  border-color: #5c79ff;
}
.btn-primary:hover {
  color: #fff;
  background-color: #365aff;
  border-color: #294fff;
}
.btn-primary:focus {
  color: #fff;
  background-color: #365aff;
  border-color: #294fff;
  box-shadow: 0 0 0 0.2rem rgba(116, 141, 255, 0.5);
}
.btn-primary:disabled {
  color: #fff;
  background-color: #5c79ff;
  border-color: #5c79ff;
}
.btn-primary:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #294fff;
  border-color: #1c45ff;
}
.btn-primary:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(116, 141, 255, 0.5);
}
.btn-link {
  font-weight: 400;
  color: #5c79ff;
  text-decoration: none;
}
.btn-link:hover {
  color: #103aff;
  text-decoration: underline;
}
.btn-link:focus {
  text-decoration: underline;
}
.btn-link:disabled {
  color: #6c757d;
  pointer-events: none;
}
.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover,
.dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
}
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #5c79ff;
}
.dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .form-control:focus {
  z-index: 3;
}
.input-group > .form-control:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group-prepend {
  display: flex;
}
.input-group-prepend .btn {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus {
  z-index: 3;
}
.input-group-prepend {
  margin-right: -1px;
}
.input-group > .input-group-prepend > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.6rem;
  padding-left: 1.5rem;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}
.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.3rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #5c79ff;
  background-color: #5c79ff;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(92, 121, 255, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dce2ff;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: white;
  border-color: white;
}
.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}
.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.3rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}
.custom-control-label::after {
  position: absolute;
  top: 0.3rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50%/50% 50% no-repeat;
}
.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.custom-radio
  .custom-control-input:disabled:checked
  ~ .custom-control-label::before {
  background-color: rgba(92, 121, 255, 0.5);
}
.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.6em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #495057;
  vertical-align: middle;
  background: #fff
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
    right 0.75rem center/8px 10px no-repeat;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.custom-select:focus {
  border-color: #dce2ff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(92, 121, 255, 0.25);
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-control-label::before,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-select {
    transition: none;
  }
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6c757d;
}
.bg-dark {
  background-color: #343a40 !important;
}
.bg-white {
  background-color: #fff !important;
}
.rounded {
  border-radius: 0.25rem !important;
}
.d-inline {
  display: inline !important;
}
.d-block {
  display: block !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.position-relative {
  position: relative !important;
}
.w-100 {
  width: 100% !important;
}
.min-vh-100 {
  min-height: 100vh !important;
}
.mr-0 {
  margin-right: 0 !important;
}
.ml-0 {
  margin-left: 0 !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mr-2 {
  margin-right: 0.5rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.ml-2 {
  margin-left: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mr-4 {
  margin-right: 1.5rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.ml-4 {
  margin-left: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.pl-0 {
  padding-left: 0 !important;
}
.py-3 {
  padding-top: 1rem !important;
}
.px-3 {
  padding-right: 1rem !important;
}
.py-3 {
  padding-bottom: 1rem !important;
}
.px-3 {
  padding-left: 1rem !important;
}
.pt-5,
.py-5 {
  padding-top: 3rem !important;
}
.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-white {
  color: #fff !important;
}
.text-muted {
  color: #6c757d !important;
}
@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  img {
    page-break-inside: avoid;
  }
  p,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h3 {
    page-break-after: avoid;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
}
.uni-cart-item-varient {
  font-size: 75%;
}
.uni-logo {
  color: #212529;
  display: inline-block;
}
.uni-logo:hover {
  text-decoration: none;
  color: #212529;
}
.btn-primary.uni-primary-color-theme-bg {
  opacity: 0.85;
}
.btn-primary.uni-primary-color-theme-bg:hover {
  opacity: 1;
}
.uni-addon-cross-sell-product-img {
  max-width: 150px;
  width: 100%;
  margin-bottom: 10px;
}
.uni-addon-cross-sell-product-title {
  display: block;
}
.uni-addon-cross-sell-product {
  margin-bottom: 25px;
}
.simply-black-payment-form h4 {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  padding-bottom: 15px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.uni-theme-cc-icons {
  display: inline-block;
  float: right;
}
@media (max-width: 992px) {
  .uni-addon-cross-sell-product-title {
    display: block;
  }
  .uni-addon-cross-sell-product-img {
    max-width: 80px;
    margin-bottom: 10px;
  }
  .uni-addon-cross-sell-product .form-check-input {
    top: 50%;
    transform: translateY(-50%);
  }
  .uni-cart-product img,
  .uni-cross-sell-product img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    max-width: 88%;
    bottom: 0;
    margin: auto;
  }
  .uni-theme-secure-checkout-badges .col img {
    max-width: initial;
    margin-bottom: 20px;
  }
  .uniaddon-cross-sell {
    margin-top: 20px;
  }
  .uni-addon-cross-sell-product {
    margin-bottom: 20px;
  }
  .uni-total .col-sm-6 {
    padding-left: 0;
    width: 50%;
  }
  .uni-total .col-sm-6 + .col-sm-6 {
    padding-right: 0px;
  }
  .uni-total {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media (max-width: 747px) {
  .uni-total .col-sm-6 {
    padding-left: 0;
    width: 50%;
  }
  .uni-total .col-sm-6 {
    padding-left: 0;
    width: 50%;
  }
  .uni-total .col-sm-6 + .col-sm-6 {
    padding-right: 0px;
  }
  .uniaddon-cross-sell {
    padding: 0 !important;
    margin-top: 10px;
  }
  .uni-cart-item-qty {
    right: -7px;
    font-size: 11px;
    top: -10px;
    padding: 0px !important;
    width: 18px;
    height: 18px;
    z-index: 99;
  }
  .uni-cart-product img,
  .uni-cross-sell-product img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    max-width: 88%;
    bottom: 0;
    margin: auto;
  }
  .uni-logo {
    width: 100% !important;
    height: auto !important;
    text-align: center;
  }
  .uni-review-order {
    margin-top: 45px !important;
  }
  .uni-total {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .uni-theme-secure-checkout-badges .col img {
    max-width: initial;
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  .uni-addon-cross-sell-product-title {
    display: block;
  }
  .uni-addon-cross-sell-product-img {
    max-width: 80px;
    margin-bottom: 10px;
  }
  .uni-addon-cross-sell-product {
    margin-bottom: 20px;
  }
  .uni-addon-cross-sell-product .form-check-input {
    top: 40px;
  }
}
@media (max-width: 767px) {
  .breadcrumb {
    position: absolute !important;
    top: 30px;
  }
}
.form-check-label input:checked + span,
.uni-disclaimer-input input:checked + label:before {
  background-color: #5c79ff;
  border: 1px solid #5c79ff;
}
.cart-pro-list-new {
  padding-left: 0;
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.list-pro-image-cell {
  width: 64px;
  height: 64px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  border: 1px solid #d5d5d5;
  border-radius: 5px;
  background-color: #fff;
}
.pro-q {
  position: absolute;
  right: -9px;
  top: -9px;
  width: 21px;
  height: 21px;
  background-color: #5c79ff;
  color: #fff;
  font-size: 13px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-pro-image-cell img.img-fluid {
  width: 80px;
}
.cart-pro-list-new li {
  display: flex;
  align-items: center;
}
.cart-pro-list-new li + li {
  margin-top: 20px;
}
.list-value-details {
  display: flex;
  justify-content: space-between;
  width: 84%;
  padding-left: 15px;
}
li .uni-cart-product-title {
  color: #333333;
  font-size: 14px;
  font-weight: normal;
}
.uni-cart-product p {
  margin: 0;
  color: #737373;
  font-size: 12px;
}
.list-pro-price strong {
  font-weight: normal;
  font-size: 14px;
  color: #333333;
}
.apply-code-button {
  height: 46px;
  width: 100%;
  background-color: #c8c8c8;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
}
.count-list {
  font-size: 14px;
  color: #333333;
}
.total-price-cell {
  font-size: 14px;
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 20px;
  margin-bottom: 20px;
  color: #333333;
}
.total-price-cell .uni-total > div:last-child {
  color: #333333;
  line-height: 1;
  font-size: 24px;
}
.total-price-cell .uni-total > div:last-child span.text-muted {
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  color: #737373 !important;
  margin-bottom: 3px;
}
.total-price-cell .uni-total strong {
  font-weight: normal;
}
.count-list li + li {
  margin-top: 8px;
}
.uniaddon-cross-sell {
  border: 1px solid #d5d5d5;
  border-radius: 5px;
}
.cross-sell-title {
  padding: 25px;
  color: #fff;
  background-color: #212d3d;
  text-align: center;
  border-radius: 5px 5px 0 0;
}
.cross-sell-title .uniaddon-cross-sell-title {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.6px;
  line-height: 1;
}
.uni-addon-cross-sell-product {
  padding: 25px;
  margin: 0;
}
.uni-addon-cross-sell-product .form-check {
  padding: 0;
  margin: 0;
  text-align: center;
}
.form-check-label input[type="checkbox"] + span {
  display: none;
}
.align-v-center {
  align-items: center;
}
.uni-addon-cross-sell-product-img {
  margin-bottom: 18px;
}
.single-cross-cell.uni-addon-cross-sell-product .form-check-label input + span {
  display: block;
  border-radius: 4px;
  width: 18px;
  height: 18px;
  top: 0;
  bottom: inherit;
  left: 0;
}
.cross-sell-cart-products-gap-wrap-before-payment {
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .cross-sell-title {
    padding: 20px;
  }
  .cross-sell-title .uniaddon-cross-sell-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .uniaddon-cross-sell {
    margin-top: 20px;
  }
}
@media (max-width: 680px) {
  .uni-addon-cross-sell-product {
    padding: 15px;
  }
  li .uni-cart-product-title {
    line-height: 1.3;
    display: block;
    max-width: 80%;
  }
  .list-pro-price {
    text-align: right;
    line-height: 1.2;
  }
}
.apply-code-button:hover {
  color: #fff;
  background-color: #a7a7a7;
}
@media (max-width: 992px) {
  .uni-cart-product img,
  .uni-cross-sell-product img {
    position: static !important;
    transform: none !important;
  }
}
@media (max-width: 747px) {
  .uni-cart-product img,
  .uni-cross-sell-product img {
    position: static !important;
    transform: none !important;
  }
}
.cart-pro-list-new li {
  justify-content: space-between;
}
.list-value-details {
  width: 87%;
}
.list-value-details > div:first-child {
  width: 60%;
}
.list-value-details > .list-pro-price {
  width: 40%;
}
.list-value-details > .list-pro-price {
  text-align: right;
}
#captcha {
  display: none;
}
.pre-auth-message {
  font-size: 12px !important;
}
/*! CSS Used from: https://storage.googleapis.com/unify-uploads-v2/v3/lib/assets/checkout/v3.42.4/web/css/ladda.min.css */
.ladda-button {
  position: relative;
}
.ladda-button {
  -webkit-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all !important;
  -moz-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all !important;
  -ms-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all !important;
  -o-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all !important;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all !important;
}
/*! CSS Used from: https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css */
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-lock:before {
  content: "\f023";
}
.fa-question-circle:before {
  content: "\f059";
}
.fas {
  font-family: "Font Awesome 5 Free";
}
.fas {
  font-weight: 900;
}
/*! CSS Used from: Embedded */
.uni-cart-item-qty {
  right: -7px;
  font-size: 11px;
  top: -7px;
}
/*! CSS Used from: https://cdn.jsdelivr.net/npm/placeholder-loading/dist/css/placeholder-loading.min.css */
.ph-item {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  direction: ltr;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  overflow: hidden;
  padding: 30px 15px 15px;
  position: relative;
}
.ph-item,
.ph-item *,
.ph-item :after,
.ph-item :before {
  box-sizing: border-box;
}
.ph-item:before {
  -webkit-animation: ph-animation 0.8s linear infinite;
  animation: ph-animation 0.8s linear infinite;
  background: linear-gradient(
      90deg,
      hsla(0, 0%, 100%, 0) 46%,
      hsla(0, 0%, 100%, 0.35) 50%,
      hsla(0, 0%, 100%, 0) 54%
    )
    50% 50%;
  bottom: 0;
  content: " ";
  left: 50%;
  margin-left: -250%;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 500%;
  z-index: 1;
}
.ph-item > * {
  display: flex;
  flex: 1 1 auto;
  flex-flow: column;
  margin-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
}
.ph-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: -7.5px;
}
.ph-row div {
  background-color: #ced4da;
  height: 10px;
  margin-top: 7.5px;
}
.ph-row .empty {
  background-color: hsla(0, 0%, 100%, 0);
}
.ph-col-2 {
  flex: 0 0 16.6666666667%;
}
.ph-col-4 {
  flex: 0 0 33.3333333333%;
}
.ph-col-6 {
  flex: 0 0 50%;
}
.ph-col-8 {
  flex: 0 0 66.6666666667%;
}
.ph-col-10 {
  flex: 0 0 83.3333333333%;
}
.ph-col-12 {
  flex: 0 0 100%;
}
[class*="ph-col"] {
  direction: ltr;
}
.ph-avatar {
  background-color: #ced4da;
  border-radius: 50%;
  min-width: 60px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.ph-avatar:before {
  content: " ";
  display: block;
  padding-top: 100%;
}
/*! CSS Used from: Embedded */
.ph-item {
  border: none !important;
  border-radius: none !important;
  margin-bottom: 10px !important;
  padding: 15px 15px 5px !important;
}
.ph-col-2-new {
  flex: 0 0 28.82%;
}
.ph-col-3 {
  flex: 0 0 31.3%;
}
.ph-col-5 {
  flex: 0 0 45.82%;
}
.input {
  height: 30px !important;
}
.text-area {
  height: 50px !important;
}
.height-7 {
  height: 7px !important;
}
/*! CSS Used from: https://checkout.poffia.com/skin/themes/anon-one-page/css/style.css?V=1747747027 */
.anon-one-page-theme {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0;
}
.simply-black-payment-form h4,
.simply-black-payment-form small {
  display: none;
}
.simply-black-payment-form {
  margin-top: 0rem !important;
}
.anon-one-page-theme
  .simply-black-payment-form
  .mb-3.uni-accent-color-theme-text {
  display: block;
}
.anon-one-page-theme p.uni-accent-color-theme-text {
  display: none;
}
.anon-one-page-theme .simply-black-payment-form {
  margin-top: -1rem !important;
}
.anon-one-page-theme .uni-addon-cross-sell-product .form-check-label input {
  display: none;
}
.anon-one-page-theme
  .uni-addon-cross-sell-product
  .form-check-label
  input
  + span {
  width: 15px;
  height: 15px;
  border: 1px solid #a59d9d;
  border-radius: 2px;
  position: absolute;
  bottom: 5px;
  left: -3px;
}
.anon-one-page-theme
  .uni-addon-cross-sell-product
  .form-check-label
  input:checked
  + span {
  width: 15px;
  height: 15px;
  position: absolute;
}
.anon-one-page-theme
  .uni-addon-cross-sell-product
  .form-check-label
  input:checked
  + span:after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  background-color: transparent;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.anon-one-page-theme .uni-disclaimer-input input[type="checkbox"] {
  display: none;
}
.anon-one-page-theme .uni-disclaimer-input input[type="checkbox"] + label {
  position: relative;
  padding-left: 25px;
}
.anon-one-page-theme .uni-disclaimer-input input:checked + label:before {
  width: 15px;
  height: 15px;
  border-radius: 2px;
  position: absolute;
  content: "";
  left: 0;
  top: 3px;
}
.anon-one-page-theme
  .uni-disclaimer-input
  input[type="checkbox"]
  + label:after {
  width: 15px;
  height: 15px;
  border: 1px solid #a59d9d;
  border-radius: 2px;
  position: absolute;
  content: "";
  left: 0;
  top: 3px;
}
.anon-one-page-theme .uni-disclaimer-input input:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 5px;
  height: 10px;
  background-color: transparent;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (max-width: 747px) {
  .anon-one-page-theme .col-md-5 {
    order: 1;
  }
  .uni-total .col-sm-6 {
    padding-left: 0;
    width: 50%;
  }
  .uni-total .col-sm-6 {
    padding-left: 0;
    width: 50%;
  }
  .uni-total .col-sm-6 + .col-sm-6 {
    padding-right: 0px;
  }
  .uniaddon-cross-sell {
    padding: 0 !important;
    margin-top: 10px;
  }
  .uni-theme-cc-icons {
    flex: 100%;
    max-width: 100%;
    text-align: left !important;
  }
  .uni-cart-item-qty {
    right: -7px;
    font-size: 11px;
    top: -10px;
    padding: 0px !important;
    width: 18px;
    height: 18px;
  }
  .uni-cart-product img,
  .uni-cross-sell-product img {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .uni-logo {
    width: 100% !important;
    height: auto !important;
    text-align: center;
  }
  .anon-one-page-theme .container {
    margin-top: 20px !important;
  }
}
@media (max-width: 747px) {
  .anon-one-page-theme .uni-cart-product img,
  .anon-one-page-theme .uni-cross-sell-product img {
    left: 50%;
  }
}
@media (max-width: 992px) {
  .anon-one-page-theme .uni-disclaimer-input {
    margin-top: -20px;
    margin-bottom: 21px;
  }
}
.floated-label {
  position: relative;
}
.floated-label > label {
  position: absolute;
  left: 6px;
  padding: 12px 13px;
  margin: 0;
  font-size: 14px;
  color: #737373;
  font-weight: normal;
  margin: 0;
  z-index: 1;
  transition: all 100ms ease-in-out 0s;
  -moz-transition: all 100ms ease-in-out 0s;
  -webkit-transition: all 100ms ease-in-out 0s;
  -o-transition: all 100ms ease-in-out 0s;
}
.form-control {
  height: 46px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  color: #000;
}
.active-in .form-control {
  color: #333333;
}
.floated-label.active-in > label {
  padding: 7px 13px;
  font-size: 12px;
  line-height: 1;
}
.floated-label.active-in .form-control {
  padding-top: 20px;
}
.form-control::placeholder {
  color: #fff !important;
}
select.form-control {
  line-height: 1;
}
.anon-one-page-theme .uni-disclaimer-input input[type="checkbox"] + label {
  padding-left: 33px;
  font-size: 14px;
}
.anon-one-page-theme
  .uni-disclaimer-input
  input[type="checkbox"]
  + label:after {
  width: 18px;
  height: 18px;
  border-color: #d5d5d5;
  border-radius: 4px;
  left: 0;
  top: 0px;
}
.anon-one-page-theme .uni-disclaimer-input input:checked + label:before {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  top: -3px;
}
.anon-one-page-theme .uni-disclaimer-input input:checked + label:after {
  left: 6px;
  top: -2px;
  width: 6px;
  height: 13px;
}
.new-c-button {
  font-size: 14px;
  opacity: 1 !important;
  margin: 0 !important;
  padding-left: 25px;
  padding-right: 25px;
}
.new-c-button:hover,
.new-c-button:focus {
  opacity: 0.85 !important;
}
nav[aria-label="breadcrumb"] {
  margin-bottom: 35px;
}
ol.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0 0 0 0;
  color: #737373;
  font-size: 12px;
  line-height: 1;
}
.small-gap {
  padding-left: 6px;
  padding-right: 6px;
}
.small-row {
  margin-left: -6px;
  margin-right: -6px;
}
.cont-sub-heading {
  margin: 0 0 20px 0 !important;
  padding: 0;
}
.small-row .cont-sub-heading {
  padding: 0 7px;
}
.cont-sub-heading h5 {
  margin: 0 !important;
  font-size: 18px;
  color: #333333 !important;
}
.cvv-q-cll {
  position: absolute;
  z-index: 1;
  right: 23px;
  top: 12px;
  color: #919191;
  font-size: 15px;
  display: inline-block;
  cursor: pointer;
}
.cvv-q-cll-pop {
  position: absolute;
  display: none;
  width: 422px;
  left: 50%;
  margin-left: -211px;
  top: 100%;
  background-color: #fff;
  border: 1px solid #d3d8e0;
  border-radius: 4px;
  padding: 15px;
  margin-top: 10px;
}
.cvv-q-cll:hover .cvv-q-cll-pop {
  display: block;
}
.cvv-q-cll-pop:after,
.cvv-q-cll-pop:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.cvv-q-cll-pop:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 9px;
  margin-left: -9px;
}
.cvv-q-cll-pop:before {
  border-color: rgba(211, 216, 224, 0);
  border-bottom-color: #d3d8e0;
  border-width: 10px;
  margin-left: -10px;
}
.cvv-q-cll-pop-col {
  width: 50%;
  text-align: center;
  padding-right: 10px;
}
.cvv-q-cll-pop-col:last-child {
  padding-right: 0;
  padding-left: 10px;
}
.cvv-q-cll-pop-in {
  display: flex;
}
.cvv-q-cll-pop-col img {
  width: 127px;
  margin-bottom: 10px;
}
.cvv-q-cll-pop-col h4 {
  font-size: 14px;
  color: #212d3d;
  margin: 0 0 15px 0;
  font-weight: 600;
}
.cvv-q-cll-pop-col p {
  color: #5e6473;
  font-size: 13px;
  margin: 0;
}
.cont-sub-heading .heading-subtitle {
  display: block;
  line-height: 1.2;
  color: #545454;
  font-size: 14px;
  margin-top: 8px;
}
.ship-radio-table .custom-control.custom-radio + .custom-control.custom-radio {
  border-top: 1px solid #e6e6e6;
  z-index: inherit;
}
.ship-radio-table .custom-control.custom-radio {
  padding: 13px 13px 18px 45px;
  font-size: 14px;
  color: #333333;
  min-height: inherit;
}
.ship-radio-table {
  border: 1px solid #e6e6e6;
  border-radius: 5px;
}
.ship-radio-table .custom-control-label::before {
  width: 18px;
  height: 18px;
  top: 2px;
  left: -30px;
  border-color: #cccccc;
}
.ship-radio-table .custom-control-label::after {
  background-size: 42%;
  top: 2px;
  left: -30px;
  width: 19px;
  height: 19px;
}
.ship-radio-table .custom-control-label {
  display: block;
}
.check-inner-table-left {
  width: 67%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
small.heading-subtitle {
  color: #545454;
  font-size: 14px;
  display: block;
  line-height: 1;
  margin-top: 8px;
}
.row-radio-table + .row-radio-table {
  margin-top: 40px;
}
.check-inner-table {
  display: flex;
  justify-content: space-between;
}
.row-radio-table {
  margin-top: 40px;
}
.form-check input[type="checkbox"] {
  display: none;
}
.form-check {
  padding-left: 33px;
  font-size: 14px;
}
.breadcrumb-item {
  color: #737373;
  font-size: 12px;
}
.breadcrumb-item.active {
  color: #333333 !important;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 12px;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0;
  color: #6c757d;
  content: "";
  width: 9px;
  height: 10px;
  background-image: url(https://checkout.poffia.com/skin/themes/anon-one-page/images/arrow-crumb.svg);
  vertical-align: middle;
  margin-top: 1px;
  margin-right: 11px;
  font-size: 0;
  background-size: 100% 100%;
}
.accordion-check {
  border: 1px solid #e6e6e6;
  border-radius: 5px;
}
.row-accordion-check .custom-control {
  padding: 14px 18px 14px 50px;
  font-size: 14px;
}
.row-accordion-check .custom-control-label::after {
  background-size: 42%;
  top: 2px;
  width: 19px;
  height: 19px;
  left: -30px;
}
.row-accordion-check .custom-control-label::before {
  top: 2px;
  width: 18px;
  height: 18px;
  border-color: #cccccc;
  left: -30px;
}
.card-accordion-body {
  padding: 15px 15px 6px 15px;
  border-top: 1px solid #e6e6e6;
  background-color: #fafafa;
}
.row-radio-table .simply-black-payment-form {
  margin-top: 0 !important;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #dce2ff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(92, 121, 255, 0.25);
}
.logo-container {
  margin-bottom: 20px;
}
.uni-logo img {
  max-width: inherit;
  width: 140px !important;
}
.custom-select {
  background-image: url(https://checkout.poffia.com/skin/themes/anon-one-page/images/custom-arrow.svg);
  background-size: 32px;
  background-position: right center;
  padding-right: 32px;
}
.row-main-section {
  display: flex;
  flex-direction: row-reverse;
}
.right-side-section {
  position: relative;
  z-index: 1;
  background-color: #fafafa;
  padding: 60px 40px;
  width: 45%;
  display: flex;
  justify-content: flex-start;
  flex-flow: column;
}
.left-side-section {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 60px;
  width: 55%;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 0;
}
.right-inner-colum {
  width: 418px;
  position: sticky;
  top: 0;
  z-index: 1020;
}
.left-inner-colum {
  width: 570px;
}
.cart-pro-list-new {
  padding-left: 0;
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.list-pro-image-cell {
  width: 64px;
  height: 64px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  border: 1px solid #d5d5d5;
  border-radius: 5px;
  background-color: #fff;
}
.pro-q {
  position: absolute;
  right: -9px;
  top: -9px;
  width: 21px;
  height: 21px;
  background-color: #5c79ff;
  color: #fff;
  font-size: 13px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-pro-image-cell img.img-fluid {
  width: 80px;
}
.cart-pro-list-new li {
  display: flex;
  align-items: center;
}
.cart-pro-list-new li + li {
  margin-top: 20px;
}
.list-value-details {
  display: flex;
  justify-content: space-between;
  width: 84%;
  padding-left: 15px;
}
li .uni-cart-product-title {
  color: #333333;
  font-size: 14px;
  font-weight: normal;
}
.uni-cart-product p {
  margin: 0;
  color: #737373;
  font-size: 12px;
}
.list-pro-price strong {
  font-weight: normal;
  font-size: 14px;
  color: #333333;
}
.apply-code-button {
  height: 46px;
  width: 100%;
  background-color: #c8c8c8;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
}
.count-list {
  font-size: 14px;
  color: #333333;
}
.count-list li > div:last-child {
}
.total-price-cell {
  font-size: 14px;
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 20px;
  margin-bottom: 20px;
  color: #333333;
}
.total-price-cell .uni-total > div:last-child {
  color: #333333;
  line-height: 1;
  font-size: 24px;
}
.total-price-cell .uni-total > div:last-child span.text-muted {
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  color: #737373 !important;
  margin-bottom: 3px;
}
.total-price-cell .uni-total strong {
  font-weight: normal;
}
.count-list li + li {
  margin-top: 8px;
}
.uniaddon-cross-sell {
  border: 1px solid #d5d5d5;
  border-radius: 5px;
}
.cross-sell-title {
  padding: 25px;
  color: #fff;
  background-color: #212d3d;
  text-align: center;
  border-radius: 5px 5px 0 0;
}
.cross-sell-title .uniaddon-cross-sell-title {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.6px;
  line-height: 1;
}
.uni-addon-cross-sell-product {
  padding: 25px;
  margin: 0;
}
.uni-addon-cross-sell-product .form-check {
  padding: 0;
  margin: 0;
  text-align: center;
}
.form-check-label input[type="checkbox"] + span {
  display: none;
}
.align-v-center {
  align-items: center;
}
.return-btn-back {
  font-size: 14px;
  padding: 0;
  line-height: 1;
  font-size: 14px;
  color: #5c79ff;
  text-align: left;
}
.flex-reverse-wrap {
  flex-direction: row-reverse;
}
.uni-addon-cross-sell-product-img {
  margin-bottom: 18px;
}
.right-side-section .logo-container {
  display: none;
}
.summery-nav {
  display: none;
}
.single-cross-cell.uni-addon-cross-sell-product .form-check-label input + span {
  display: block;
  border-radius: 4px;
  width: 18px;
  height: 18px;
  top: 0;
  bottom: inherit;
  left: 0;
}
.cvv-q-cll-pop-col h4 {
}
.add-address-column {
  border: 1px solid #e6e6e6;
  border-radius: 5px;
}
.add-address-column .ship-radio-table {
  border: none;
  border-radius: 0;
}
.breadcrumb-item {
  cursor: pointer;
}
.breadcrumb-item + .breadcrumb-item::before {
  cursor: auto;
}
.uni-primary-color-theme-bg.disabled-promo-btn {
  background-color: #c8c8c8 !important;
}
@media (max-width: 1366px) {
  .ship-radio-table .custom-control-label::after,
  .row-accordion-check .custom-control-label::after {
    left: -31px;
  }
}
@media (max-width: 1260px) {
  .left-side-section {
    padding: 40px;
    padding-bottom: 0;
  }
  .right-side-section {
    padding: 40px 30px;
  }
  .new-c-button {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 1199px) {
  .left-side-section {
    padding: 35px;
    padding-bottom: 0;
  }
  .right-side-section {
    padding: 35px 30px;
  }
  .right-inner-colum {
    width: 370px;
  }
  .left-inner-colum {
    width: 450px;
  }
  .cross-sell-title {
    padding: 20px;
  }
  .cross-sell-title .uniaddon-cross-sell-title {
    font-size: 20px;
  }
}
@media (max-width: 1000px) {
  .left-side-section,
  .right-side-section {
    padding: 30px;
  }
  .left-side-section {
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .row-main-section {
    display: block;
    flex-direction: inherit;
  }
  .right-side-section,
  .left-side-section {
    width: 100%;
    justify-content: inherit;
  }
  .left-inner-colum,
  .right-inner-colum {
    width: 100%;
  }
  .cvv-q-cll-pop {
    width: 270px;
    left: auto;
    margin-left: 0;
    right: -15px;
    padding: 9px;
  }
  .cvv-q-cll-pop-col img {
    width: 60px;
  }
  .cvv-q-cll-pop-col {
    padding-right: 5px;
  }
  .cvv-q-cll-pop-col:last-child {
    padding-left: 5px;
  }
  .cvv-q-cll-pop-col p {
    line-height: 1.4;
  }
  .cvv-q-cll-pop:after {
    border-width: 9px;
    margin-right: 1px;
    margin-left: inherit;
  }
  .cvv-q-cll-pop:after,
  .cvv-q-cll-pop:before {
    left: auto;
    right: 13px;
  }
  .anon-one-page-theme .uni-disclaimer-input {
    margin-top: 0;
  }
  .summery-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 0 0;
    font-size: 14px;
    line-height: 1;
  }
  .summery-nav > div:last-child {
    font-size: 16px;
  }
  .summery-nav > div:last-child strong {
    font-weight: normal;
  }
  .cart-top {
    display: none;
  }
  .summery-nav + .right-inner-colum .cart-top {
    padding-top: 20px;
    padding-bottom: 7px;
  }
  .summery-nav i {
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
  }
  .left-side-section .logo-container {
    display: none;
  }
  .right-side-section .logo-container {
    display: block;
    text-align: center;
    background-color: #fff;
    margin: 0 -30px;
    padding: 20px;
  }
  .right-side-section {
    padding-top: 0;
    padding-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .return-btn-back {
    text-align: center;
  }
  .left-side-section ol.breadcrumb {
    position: static !important;
  }
  .right-side-section {
    padding-top: 0;
  }
  .right-inner-colum .uni-review-order {
    margin-top: 0 !important;
  }
  .uniaddon-cross-sell {
    margin-top: 20px;
  }
  .half-col-m {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .right-side-section {
    padding-bottom: 16px;
  }
  .anon-one-page-theme .col-md-5 {
    order: inherit;
  }
}
@media (max-width: 680px) {
  .left-side-section,
  .right-side-section {
    padding: 37px 15px;
  }
  .right-side-section {
    padding-top: 0;
    padding-bottom: 16px;
  }
  .right-side-section .logo-container {
    margin: 0 -15px;
  }
  .left-side-section {
    padding-bottom: 0;
  }
  .uni-theme-cc-icons img.img-fluid.ml-2 {
    width: auto !important;
    height: 13px;
  }
  .new-c-button {
    width: 100%;
  }
  .return-btn-back {
    width: 100%;
    margin-top: 20px;
  }
  .anon-one-page-theme .container {
    margin-top: 0 !important;
  }
  .uni-addon-cross-sell-product {
    padding: 15px;
  }
  li .uni-cart-product-title {
    line-height: 1.3;
    display: block;
    max-width: 80%;
  }
  .list-pro-price {
    text-align: right;
    line-height: 1.2;
  }
}
@media (max-width: 460px) {
  .uni-theme-cc-icons img.img-fluid.ml-2 {
    height: 10px;
  }
  .row-accordion-check .custom-control-label::before {
    top: 50%;
    margin-top: -10px;
  }
}
.apply-code-button:hover {
  color: #fff;
  background-color: #a7a7a7;
}
.total-price-cell {
  font-size: 16px;
}
.module-parent + .module-parent {
  margin-top: 30px;
}
.uni-disclaimer-input {
  margin-bottom: 20px;
}
.uni-theme-cc-icons img {
  height: 24px !important;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  width: auto !important;
}
.uni-theme-cc-icons.multi-cc-icon img {
  height: 20px !important;
}
@media (max-width: 680px) {
  .uni-theme-cc-icons.multi-cc-icon img {
    height: 12px !important;
  }
  .promo-code-wrapper .col-sm-9 {
    flex: 0 0 69%;
    max-width: 69%;
  }
  .promo-code-wrapper .col-sm-3 {
    flex: 0 0 31%;
    max-width: 31%;
  }
  .uni-theme-secure-checkout-badges img {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .uni-theme-secure-checkout-badges .col {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .list-value-details {
    padding-left: 15px;
    align-items: flex-start;
  }
  .anon-one-page-theme .uni-disclaimer-input input[type="checkbox"] + label {
    line-height: 1.3;
    display: block !important;
    margin: 0;
  }
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  display: none;
}
.custom-control-input:checked ~ .custom-control-label::before {
  background-image: url(https://checkout.poffia.com/skin/themes/anon-one-page/images/bullet-white.png);
  background-size: 37%;
  background-position: center;
  background-repeat: no-repeat;
}
.input-group {
  margin-top: 15px;
}
.promo-code-wrapper .btn:focus,
.promo-code-wrapper .form-control:focus {
  box-shadow: none;
}
.left-inner-colum {
  display: flex;
  flex-direction: column;
  padding-bottom: 86px;
  position: relative;
}
.row.mt-4:last-child .col-md-12 {
  position: static;
}
@media (max-width: 767px) {
  .left-side-section {
    min-height: 767px;
  }
  .left-inner-colum {
    padding-bottom: 0;
  }
  .row.mt-4:last-child .col-md-12 {
    position: relative;
  }
}
.form-control[data-vv-name="cc_number"] + .cvv-q-cll {
  cursor: default;
}
.form-control:disabled:focus {
  background-color: #e9ecef;
}
@media (max-width: 680px) {
  footer ul li a {
    padding: 0 !important;
    font-size: 14px;
  }
  .footer h5 {
    font-size: 14px;
    line-height: 1.3;
  }
  .footer .list-unstyled li {
    padding: 0 5px !important;
  }
}
@media (max-width: 320px) {
  footer ul li a {
    font-size: 13px;
  }
}
.cross-sell-cart-products-gap-wrap-before-payment {
  margin-bottom: 40px;
}
.anon-one-page-theme .cvv-q-cll {
  z-index: 9;
}
.anon-one-page-theme .cvv-q-cll {
  z-index: 9;
}
.anon-one-page-theme .cvv-q-cll {
  z-index: 9;
}
.anon-one-page-theme .form-check-label input[type="checkbox"] + span {
  display: block;
  top: 0;
}
.cart-pro-list-new li {
  justify-content: space-between;
}
.list-value-details {
  width: 87%;
}
.list-value-details > div:first-child {
  width: 60%;
}
.list-value-details > .list-pro-price {
  width: 40%;
}
.list-value-details > .list-pro-price {
  text-align: right;
}
.anon-one-page-theme .btn.btn-link.pl-0.uni-accent-color-theme-text {
  font-size: 14px;
  color: #5c79ff !important;
  margin-top: 28px;
  padding: 0;
  line-height: 1;
}
.anon-one-page-theme .new-ship-options.shipping-methods div {
  padding: 0px !important;
}
.anon-one-page-theme .shipping-methods {
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #d3d8e0;
  border-radius: 3px;
  opacity: 1;
}
.anon-one-page-theme .shipping-methods .custom-control-label {
  width: 100%;
}
.anon-one-page-theme .shipping-methods .custom-control-label {
  padding: 10px 10px 10px 40px;
  font-weight: normal;
  display: block;
}
.anon-one-page-theme .shipping-methods .custom-control-label:before {
  top: 50%;
  margin-top: -0.4rem;
  left: 13px;
}
.anon-one-page-theme .shipping-methods .custom-control-label:after {
  top: 50%;
  left: 13px;
  margin-top: -0.4rem;
}
.anon-one-page-theme .row.mt-4.flex-reverse-wrap {
  position: relative;
}
/*! CSS Used from: Embedded */
.uni-primary-color-theme-bg {
  background-color: #b1300b !important;
}
.uni-primary-color-theme-border {
  border-color: #b1300b !important;
}
.uni-accent-color-theme-text {
  color: #000000 !important;
}
.custom-control-input:checked ~ .custom-control-label::before {
  background-color: #b1300b !important;
  border-color: #b1300b !important;
}
.form-check-label input:checked + span,
.uni-disclaimer-input input:checked + label:before {
  background-color: #b1300b !important;
  border: 1px solid #b1300b !important;
}
/*! CSS Used from: Embedded */
.anon-one-page-theme
  .uni-addon-cross-sell-product
  .form-check-label
  input:checked
  + span {
  width: 20px;
  height: 20px;
  position: absolute;
  background: #b1300b !important;
  border-color: #b1300b !important;
}
.anon-one-page-theme
  .uni-addon-cross-sell-product
  .form-check-label
  input:checked
  + span:after {
  left: 7px;
  top: 3px;
}
.anon-one-page-theme .form-check-label span.uni-addon-cross-sell-product-title {
  margin-left: 0;
}
.uni-addon-cross-sell-product-img {
  display: none;
}
@media only screen and (max-width: 480px) {
  .anon-one-page-theme .form-check-label input[type="checkbox"] + span {
    left: 26px;
    top: 28px;
  }
  #checkoutAppId .row-main-section {
    padding-bottom: 0px !important;
  }
  .half-col-m {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.row.module-parent.small-row {
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  margin-left: 0;
  margin-right: 0;
  padding: 0px 10px 10px;
  background-color: #fafafa;
}
.module-parent.small-row .cont-sub-heading {
  padding: 14px 18px 14px 15px;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
  max-width: calc(100% + 20px);
  flex: 0 0 calc(100% + 20px);
  margin-left: -10px !important;
  background: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.module-parent.small-row .cont-sub-heading {
  background: #fff;
}
.cross-sell-title {
  background-color: #b1300b;
}
.input-group.phone-component {
  background: #fff;
}
.add-cross-sell {
  background: #ffffff;
  border: 1px solid #d5d5d5;
  border-radius: 5px;
  margin-top: 20px;
}
.add-cross-sell-title {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 0 2rem 0;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  padding: 25px;
  background-color: #b1300b;
  line-height: 1;
  border-radius: 5px 5px 0 0;
  width: 100%;
  letter-spacing: 0.6px;
}
.add-cross-sell-content {
  padding: 0 20px;
  font-size: 14px;
}
@media only screen and (max-width: 991px) {
  .add-cross-sell {
    display: none;
  }
  #accordion-text {
    display: none;
  }
}
.row-main-section {
  flex-wrap: wrap;
}
.uni-checkout-top-banner {
  background-color: #000000ff;
  color: white;
  padding: 6px 10px;
  margin-bottom: 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.uni-checkout-top-banner:before {
  content: "50% OFF!";
  background-color: #b1300b;
  z-index: 999;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  padding-top: 12px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 30px;
  letter-spacing: 1px;
}
.uni-checkout-top-banner:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 23%;
  left: 137px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 15px solid #b1300b;
}
.scrolling-text {
  display: inline-block;
  animation: scroll-left 45s linear infinite;
  font-size: 18px;
  white-space: nowrap;
  margin: 0px 16px;
}
.cust-comment-sec {
  padding: 30px 0;
}
.cust-comment-sec img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .uni-checkout-top-banner:before {
    padding: 9px 15px;
  }
  .uni-checkout-top-banner:after {
    left: 110px;
  }
  .anon-one-page-theme .uni-disclaimer-input input:checked + label:before {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    top: 0px;
  }
  .anon-one-page-theme .uni-disclaimer-input input:checked + label:after {
    left: 6px;
    top: 0px;
    width: 6px;
    height: 13px;
  }
}
.cross-sell-title {
  display: none !important;
}
.left-side-section .uniaddon-cross-sell {
  border: none;
}
.left-side-section .cross-sell-block .uni-addon-cross-sell-product {
  margin: 15px 0px 20px;
  border: 2px dashed #b1300b;
  background-color: rgb(255, 255, 255);
  border-radius: 6px;
  padding: 15px;
}
.left-side-section .form-check-label input[type="checkbox"] + span {
  display: block;
  top: 2px;
  left: 0;
  background-color: #fff;
  width: 14px !important;
  height: 14px !important;
}
.left-side-section .form-check-label input[type="checkbox"] + span::after {
  display: none;
}
.uni-logo img {
  width: 100px !important;
}
.anon-one-page-theme .uni-disclaimer-input input:checked + label:before {
  top: 0;
}
.anon-one-page-theme .uni-disclaimer-input input:checked + label:after {
  top: 0;
}
.row.mb-4.mt-4.uni-theme-secure-checkout-badges {
  margin-bottom: 0px !important;
}
.cust-comment-sec {
  padding-top: 8px;
}
.btn-primary.uni-primary-color-theme-bg:hover {
  opacity: 1;
  background-color: #b1300b !important;
}
.uniaddon-cross-sell {
  display: none;
}
@media (max-width: 600px) {
  .left-side-section.min-vh-100 {
    padding-top: 15px;
  }
}
.demand_alert {
  padding: 14px 14px;
  text-align: center;
  border: 1px dashed #fed598;
  width: 100%;
  font-size: 14px;
  margin: 0 0 25px;
  background-color: #fff3e2;
}
.demand_alert_red {
  color: #d92d20;
}
.logosec {
  padding-top: 20px;
}
.logosec img {
  max-width: 110px;
}
select.form-control {
  line-height: 1.2;
}
.uni-complete-order-btn.new-c-button {
  display: block;
  width: 100%;
  font-size: 23px;
  line-height: 33px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: rgba(37, 42, 50, 0.32) 0 1px 4px 1px;
  letter-spacing: 0.4px;
}
@media screen and (max-width: 767px) {
  .logosec img {
    max-width: 90px;
    margin-bottom: 10px;
  }
  .uni-disclaimer-input #accordion-container {
    display: none;
  }
  .cust-comment-sec {
    display: none;
  }
}
.uni-shipping {
  display: none !important;
}
/*! CSS Used from: Embedded */
.label-phone {
  left: 74px !important;
  top: 15px !important;
  z-index: 9 !important;
}
.phone-component input {
  background: transparent !important;
}
.phone-component .btn-default {
  border-left-color: #e6e6e6;
  border-bottom-color: #e6e6e6;
  border-top-color: #e6e6e6;
}
.phone-component .phone-input {
  border-left: 0em;
}
.phone-component .flag {
  float: left;
}
.phone-component .text {
  margin-left: 3px;
  float: left;
}
.phone-component .flag-size {
  height: 22px;
  width: 22px;
}
.phone-component .dropdown-menu {
  max-height: 150px;
  overflow-y: auto;
}
.phone-component .dropdown-menu li {
  display: block;
}
.phone-component .dropdown-menu li:hover {
  background: #c8c8c8;
  height: 30px;
  cursor: pointer;
}
.phone-component .dropdown-toggle::after {
  margin-left: 0.7em !important;
  vertical-align: 0.18em !important;
}
.phone-component .dropdown-toggle {
  display: flex;
  align-items: center;
}
/*! CSS Used from: Embedded */
.ph-item {
  border: none !important;
  border-radius: none !important;
  margin-bottom: 10px !important;
  padding: 15px 15px 5px !important;
}
.ph-col-2-new {
  flex: 0 0 28.82%;
}
.ph-col-3 {
  flex: 0 0 31.3%;
}
.ph-col-5 {
  flex: 0 0 45.82%;
}
.input {
  height: 30px !important;
}
.text-area {
  height: 50px !important;
}
.height-7 {
  height: 7px !important;
}
/*! CSS Used keyframes */
@-webkit-keyframes ph-animation {
  0% {
    transform: translate3d(-30%, 0, 0);
  }
  to {
    transform: translate3d(30%, 0, 0);
  }
}
@keyframes ph-animation {
  0% {
    transform: translate3d(-30%, 0, 0);
  }
  to {
    transform: translate3d(30%, 0, 0);
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*! CSS Used fontfaces */
