.top-navbar-2 {
  position: relative;
  z-index: 1;
}
.stick-nav-mobile {
  bottom: 0%;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.form-row {
  display: none;
}
.button-sm-2.sticky-btn.cta_btn {
  color: #fff;
  background-color: #29af5c;
}
.banner-image-wrapper.show .banner-product {
  display: none !important;
}
.banner-image-wrapper.show .banner-product-white {
  display: block !important;
}
.sticky-nav {
  z-index: 999;
}
.new-footer-sec {
  padding-bottom: 145px;
}
.accordion-tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.accordion-tab .row {
  display: flex;
}
.accordion-tab .row .col {
  flex: 1;
}
.accordion-tab .row .col:last-child {
  margin-left: 1em;
}
/* Accordion styles */
.accordion-tab .tabs {
  overflow: hidden;
  display: block;
}
.accordion-tab .tab {
  width: 100%;
  color: white;
  overflow: hidden;
}
.accordion-tab .tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1.2em 0em;
  cursor: pointer;
  box-shadow: none;
  text-transform: capitalize;
  font-family: Proxima Nova, sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
  /* Icon */
}
.accordion-tab .tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.accordion-tab .tab-content {
  max-height: 0;
  font-family: Proxima Nova, sans-serif;
  font-size: 14px;
  transition: all 0.35s;
}
.accordion-tab .tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
.accordion-tab input:checked + .tab-label::after {
  transform: rotate(90deg);
}
.accordion-tab input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em 0;
}
.accordion-tab .tabs.d-block {
  display: block;
}

/*width*/
marquee-horizontal-2::-webkit-scrollbar {
  width: 6px;
}
/*track*/
marquee-horizontal-2::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0);
}
/*thumb*/
marquee-horizontal-2::-webkit-scrollbar-thumb {
  border-width: 6px;
  border-style: solid;
  border-color: rgb(191, 191, 191);
  border-radius: 50px;
}
@media screen and (max-width: 479px) {
  .testimonial-slide-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}

.outline-heading {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-stroke: 1px;
}

.w-slider-nav {
}
.w-slider-dot {
  background: none;
  border: 1px solid black;
}
.w-slider-dot.w-active {
  background: black;
}
/* ENDLESS ROTATE */
.rotate {
  animation: rotate 10.5s linear infinite;
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.circle-img {
  animation: rotate 5s linear infinite;
}
.green-circle {
  animation: fade 1s ease-in-out infinite;
}
.hourglass {
  animation: rotateP 2.5s ease-in-out forwards infinite;
}
@keyframes rotateP {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(00deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fade {
  0% {
    opacity: 100%;
  }
  50% {
    opacity: 30%;
  }
  70% {
    opacity: 100%;
  }
  100% {
    opacity: 100%;
  }
}

.w-nav-overlay {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: visible !important;
}

.out-stock {
  overflow: hidden;
  position: relative;
  pointer-events: none;
}
.out-stock::before {
  position: absolute;
  content: "";
  left: 0%;
  top: 50%;
  width: 100%;
  height: 1px;
  background: gray;
  transform: rotate(45deg);
}
.out-stock::after {
  position: absolute;
  content: "";
  left: 0%;
  top: 50%;
  width: 100%;
  height: 1px;
  background: gray;
  transform: rotate(-45deg);
}

.sticky-nav {
}
.circle-green {
  animation: fade 1s ease-in-out infinite;
}
@keyframes fade {
  0% {
    opacity: 100%;
  }
  50% {
    opacity: 30%;
  }
  70% {
    opacity: 100%;
  }
  100% {
    opacity: 100%;
  }
}

:root {
  /* ----------- Colors ----------- */
  --list-text-color: inherit; /* Use "inherit" to take on parent text color */
  --select-field-arrow-color: #012169; /* This is the select field arrow color */
  --border-color-active: #012169; /* Active State */
  --border-color-hover: #012169; /* Select Field could be the same as your form field border color */
  /* ----------- Spacing ----------- */
  --select-field-padding-left: 10px; /* Match the padding values for your form fields */
  --select-field-padding-right: 10px; /* Match the padding values for your form fields */
  --list-padding-top-bottom: 6px; /* This is the top and bottom padding for the dropdown list */
  --list-max-height: 250px; /* You can set this to "Auto" as well */
  --list-item-padding-left: 10px;
  --list-item-padding-right: 10px;
  --list-item-min-height: 40px; /* This is the height of each list item in the dropdown */
  --list-item-line-height: 40px; /* This is the height of each list item in the dropdown */
  /* ^^^  Make sure both "line-height" and "min-height" are the same! ^^^  */
}
.nice-select {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  clear: both;
  padding-left: var(--select-field-padding-left);
  padding-right: var(--select-field-padding-right);
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.nice-select:hover {
  border-color: var(--border-color-hover);
}
.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: var(--border-color-active);
}
.nice-select:after {
  border-bottom: 2px solid var(--select-field-arrow-color);
  border-right: 2px solid var(--select-field-arrow-color);
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}
.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  width: 100%;
  overflow: hidden;
  background: #fff;
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  color: var(--list-text-color);
  border-radius: 5px;
  box-shadow: 0 7px 20px 0px rgba(68, 68, 68, 0.11);
  border-color: 3px solid #ededed;
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: var(--list-padding-top-bottom) 0px;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: var(--list-max-height);
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 700;
  line-height: var(--list-item-line-height);
  list-style: none;
  min-height: var(--list-item-min-height);
  outline: none;
  padding-left: var(--list-item-padding-left);
  padding-right: var(--list-item-padding-right);
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option:first-child {
  display: none;
}
span.current {
  color: var(--list-text-color);
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6fafd;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}
.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}
select {
  appearance: none;
}

.logo-container {
  animation: track 60s linear forwards infinite;
  min-width: calc(560px * 5) !important;
}
@media screen and (max-width: 479px) {
  .logo-container {
    /*animation:track 50s linear infinite*/
  }
}
@keyframes track {
  0% {
    transform: translateX(0);
  }
  100% {
    /*transform:translateX(calc(-560px * 5))*/
    transform: translateX(-100%);
  }
}

.track-horizontal-brandss {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-horizontal 30s linear infinite;
  /* manipulate the speed of the marquee by changing "40s" line above*/
}
@keyframes marquee-horizontal {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.sale-banner,
#hide_summary,
.product_name,
.pro-new-img-now.ccr111.product_name,
.hide_billing_same_as_shipping {
  display: none;
}
.form-group.half-fld.fde .caret-down,
.form-group.half-fld._32-percent .caret-down {
  display: none;
}
.paypal-button-shape-pill {
  border-radius: 3px;
}
.ch-preloader.white-overlay {
  display: flex;
}
.contact_paypal,
.delivery_paypal,
#submit_paypal,
#card_name {
  display: none;
}
.add-addon.deluxe_enabled .addon-checkmark {
  width: 20px;
  height: 20px;
  min-height: 20px;
  min-width: 20px;
  margin-right: 16px;
  border-radius: 4px;
  background-color: #fff;
  background-image: url("../../clients.rtccart.io/tuski-usd/checkout/assets/checkmark.svg");
  background-position: 50% 50%;
  background-size: auto;
}
/* tbody {
  display: flex !important;
  width: 100% !important;
  flex-direction: column !important;
  align-items: stretch !important;
  align-content: space-between !important;
  flex-wrap: nowrap !important;
}
tr {
  display: flex !important;
  width: 100% !important;
  justify-content: space-between !important;
} */
#LoadingDiv2,
#LoadingDiv3 {
  position: fixed;
  z-index: 9999;
  padding-top: 300px;
  width: 100%;
  clear: none;
  background: rgb(0 0 0 / 75%);
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /*backdrop-filter: blur(10px);*/
}
.addcheckbox {
  position: relative;
}
.addcheckbox::before {
  content: "";
  background: url("../../uploads-ssl.webflow.com/636e7b987d580b2efd5195ad/63f5cf0efa59342a23703054_63ad9dd16c21e67e9bcc9253_checkmark.webp");
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: -7px;
  background-size: contain;
}
.full_chckbox .addcheckbox::before {
  display: none;
}
.addcheckbox img {
  display: block;
}
.unit_price {
  font-size: 26px !important;
}
.cc-form-2.ds1.ppb.paypal_radio.radio_btn_checked {
  background-color: #f1f5ff;
  border: 1px solid #126da6;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.cc-form-2.ds1.ppb.paypal_radio,
.cc-info-box.boxcc.credit_card_radio {
  background: #f4f4f4;
  border: 0px;
}
.cc-info-box.credit_card_radio.radio_btn_checked {
  background: #f1f5ff;
  border: 1px solid #126da6;
}
.paypal_radio
  .w-form-formradioinput.w-form-formradioinput--inputType-custom.pd-radio.w-radio-input.w--redirected-checked {
  border: 1px solid #ccc;
  background: transparent;
  box-shadow: none;
}
.credit_card_radio .w--redirected-checked {
  border: 1px solid #ccc;
  background: transparent;
  box-shadow: none;
}
.radio_btn_checked .w-radio-input,
.paypal_radio.radio_btn_checked
  .w-form-formradioinput.w-form-formradioinput--inputType-custom.pd-radio.w-radio-input.w--redirected-checked,
.credit_card_radio.radio_btn_checked .w--redirected-checked {
  color: #fff;
  background-color: #1773b0;
  box-shadow: 0 0 0 1px #1773b0;
  border-width: 3px;
  border-color: #fff;
}
.cc-form-2.ds1 .cc-sel-box.dw1 {
  padding-left: 5px;
}
.paypal-wrap {
  margin-top: 40px;
}

input#ship_field_intl::placeholder {
  opacity: 1;
}
input#billing_field_intl::placeholder {
  opacity: 1;
}
/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #fdf8f3 inset !important;
  transition: background-color 5000s ease-in-out 0s !important;
}
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #fdf8f3 inset !important;
  transition: background-color 5000s ease-in-out 0s !important;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #fdf8f3 inset !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

.three-quarter-spinner {
  animation: spin 0.9s linear 0s infinite;
}

.red-line-img {
  animation: fade 1s ease-in-out infinite;
}
@keyframes fade {
  0% {
    opacity: 100%;
  }
  50% {
    opacity: 50%;
  }
  70% {
    opacity: 100%;
  }
  100% {
    opacity: 100%;
  }
}

.sticky-nav {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.2);
}
.circle-green {
  animation: fade 1s ease-in-out infinite;
}
@keyframes fade {
  0% {
    opacity: 100%;
  }
  50% {
    opacity: 30%;
  }
  70% {
    opacity: 100%;
  }
  100% {
    opacity: 100%;
  }
}

tr.subtotal-line {
  display: flex;
  flex-direction: row;
  width: 100% !important;
  justify-content: space-between;
  align-items: center;
}
tr.shipping-line {
  display: flex;
  flex-direction: row;
  width: 100% !important;
  justify-content: space-between;
  align-items: center;
}
tr.total-line {
  display: flex;
  flex-direction: row;
  width: 100% !important;
  justify-content: space-between;
  align-items: center;
}
tr.discount-line {
  display: flex;
  flex-direction: row;
  width: 100% !important;
  justify-content: space-between;
  align-items: center;
  margin-top: 0px;
}

.three-quarter-spinner {
  animation: spin 0.9s linear 0s infinite;
}

.warning_banner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  background-color: #b42d1e;
  padding: 0 0 24px;
  text-align: center;
  position: relative;
}
.warning_banner::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 100%;
  background-color: #c11619;
  background-image: linear-gradient(
    45deg,
    #fef837 25%,
    transparent 25%,
    transparent 50%,
    #fef837 50%,
    #fef837 75%,
    transparent 75%,
    transparent
  );
  background-size: 50px 50px;
  animation: progressUnitLeft 2s linear infinite;
}
.warning_banner::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 100%;
  background-color: #c11619;
  background-image: linear-gradient(
    -45deg,
    #fef837 25%,
    transparent 25%,
    transparent 50%,
    #fef837 50%,
    #fef837 75%,
    transparent 75%,
    transparent
  );
  background-size: 50px 50px;
  animation: progressUnitRight 2s linear infinite;
}
/* Animations for both sides */
@keyframes progressUnitLeft {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -50px 50px;
  }
}
@keyframes progressUnitRight {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

.extras-page-content {
  max-width: 950px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

#userway_buttons_wrapper {
  display: none !important;
}
