
[wire\:loading][wire\:loading],
[wire\:loading\.delay][wire\:loading\.delay],
[wire\:loading\.inline-block][wire\:loading\.inline-block],
[wire\:loading\.inline][wire\:loading\.inline],
[wire\:loading\.block][wire\:loading\.block],
[wire\:loading\.flex][wire\:loading\.flex],
[wire\:loading\.table][wire\:loading\.table],
[wire\:loading\.grid][wire\:loading\.grid],
[wire\:loading\.inline-flex][wire\:loading\.inline-flex] {
    display: none;
}

[wire\:loading\.delay\.none][wire\:loading\.delay\.none],
[wire\:loading\.delay\.shortest][wire\:loading\.delay\.shortest],
[wire\:loading\.delay\.shorter][wire\:loading\.delay\.shorter],
[wire\:loading\.delay\.short][wire\:loading\.delay\.short],
[wire\:loading\.delay\.default][wire\:loading\.delay\.default],
[wire\:loading\.delay\.long][wire\:loading\.delay\.long],
[wire\:loading\.delay\.longer][wire\:loading\.delay\.longer],
[wire\:loading\.delay\.longest][wire\:loading\.delay\.longest] {
    display: none;
}

[wire\:offline][wire\:offline] {
    display: none;
}

[wire\:dirty]:not(textarea):not(input):not(select) {
    display: none;
}

[x-cloak]:not([x-cloak-pointer-events-none]) {
    display: none !important;
}

[x-cloak][x-cloak-pointer-events-none] {
    pointer-events: none;
}

.whoops-container {
    position: absolute;
    /* Fallback */
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 600px;
    transform: translateX(-150%);
    transition: transform 1s;
    z-index: 100;
    /* */
}

.whoops-container[aria-hidden="false"] {
    transform: translateX(0%);
}

.whoops {
    padding: 10px;
    background: #fff;
    color: #0a0a0a;
    font-size: 14px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 768px) {
    .whoops {
        white-space: normal;
    }

    .whoops p:first-of-type {
        display: flex !important;
    }
}

.whoops img {
    height: 55px;
}

.whoops p {
    margin-bottom: 5px;
    word-break: break-all;
}

.whoops p:first-of-type {
    display: inline-block;
}

.whoops.default {
    border-color: black;
}


/* Make clicks pass-through */

#nprogress {
    pointer-events: none;
}

#nprogress .bar {
    background: var(--livewire-progress-bar-color, #29d);

    position: fixed;
    z-index: 1031;
    top: 0;
    left: 0;

    width: 100%;
    height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
    display: block;
    position: absolute;
    right: 0px;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px var(--livewire-progress-bar-color, #29d), 0 0 5px var(--livewire-progress-bar-color, #29d);
    opacity: 1.0;

    -webkit-transform: rotate(3deg) translate(0px, -4px);
    -ms-transform: rotate(3deg) translate(0px, -4px);
    transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
    display: block;
    position: fixed;
    z-index: 1031;
    top: 15px;
    right: 15px;
}

#nprogress .spinner-icon {
    width: 18px;
    height: 18px;
    box-sizing: border-box;

    border: solid 2px transparent;
    border-top-color: var(--livewire-progress-bar-color, #29d);
    border-left-color: var(--livewire-progress-bar-color, #29d);
    border-radius: 50%;

    -webkit-animation: nprogress-spinner 400ms linear infinite;
    animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
    overflow: hidden;
    position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
    position: absolute;
}

@-webkit-keyframes nprogress-spinner {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes nprogress-spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


html {
    box-sizing: border-box;
    text-size-adjust: 100%;
    word-break: normal;
    -moz-tab-size: 4;
    tab-size: 4
}

*,
:before,
:after {
    background-repeat: no-repeat;
    box-sizing: border-box
}

:before,
:after {
    text-decoration: inherit;
    vertical-align: inherit
}

* {
    padding: 0;
    margin: 0
}

hr {
    overflow: visible;
    height: 0;
    color: inherit;
    border: 0;
    border-top: 1px solid
}

details,
main {
    display: block
}

summary {
    display: list-item
}

small {
    font-size: 80%
}

[hidden] {
    display: none
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

a {
    background-color: transparent
}

a:active,
a:hover {
    outline-width: 0
}

code,
kbd,
pre,
samp {
    font-family: monospace
}

pre {
    font-size: 1em
}

b,
strong {
    font-weight: bolder
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    border-color: inherit;
    text-indent: 0
}

iframe {
    border-style: none
}

input {
    border-radius: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

textarea {
    overflow: auto;
    resize: vertical
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
    color: inherit
}

optgroup {
    font-weight: 700
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
    cursor: pointer
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button,
html [type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button
}

button,
input,
select,
textarea {
    background-color: transparent;
    border-style: none
}

button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    outline: 1px dotted ButtonText
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline-width: 0
}

select::-ms-expand {
    display: none
}

select::-ms-value {
    color: currentcolor
}

legend {
    border: 0;
    color: inherit;
    display: table;
    white-space: normal;
    max-width: 100%
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    color: inherit;
    font: inherit
}

[disabled] {
    cursor: default
}

img {
    border-style: none
}

progress {
    vertical-align: baseline
}

[aria-busy=true] {
    cursor: progress
}

[aria-controls] {
    cursor: pointer
}

[aria-disabled=true] {
    cursor: default
}

ul,
ol {
    list-style-type: none
}

figure {
    margin: 0
}

.guard-popup {
    font-family: FigtreeVF, sans-serif;
    position: fixed;
    z-index: 2147483638;
    top: 8px;
    left: 24px;
    overflow: visible;
    color: #222e3a;
    background-color: #fff;
    max-width: 416px;
    width: calc(100% - 48px);
    border-radius: 16px;
    box-shadow: 0 4px 20px #00000040;
    padding: 24px
}

.guard-popup__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 16px;
    margin-bottom: 24px
}

.guard-popup__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    opacity: .7
}

.guard-popup__img {
    line-height: 0;
    margin-bottom: 24px
}

.guard-popup__img img {
    width: 100%;
    aspect-ratio: 368/142;
    object-fit: cover;
    border-radius: 12px;
    overflow: hidden
}

.guard-popup__title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px
}

.guard-popup__description {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: #4a5764;
    margin-bottom: 28px
}

.guard-popup__actions {
    display: flex;
    justify-content: flex-end;
    column-gap: 16px
}

.guard-popup__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(180deg, #5695fd, #1554ff)
}


@font-face {
    font-family: FigtreeVF;
    src: url(chrome-extension://majdfhpaihoncoakbjgbdhglocklcgno/fonts/FigtreeVF.woff2) format("woff2 supports variations"), url(chrome-extension://majdfhpaihoncoakbjgbdhglocklcgno/fonts/FigtreeVF.woff2) format("woff2-variations");
    font-weight: 100 1000;
    font-display: swap
}

.breach-popup {
    font-family: FigtreeVF, sans-serif;
    position: fixed;
    z-index: 2147483638;
    text-rendering: optimizelegibility;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    padding-inline: 16px;
    height: 0;
    overflow: visible;
    color: #222e3a
}

.breach-popup * {
    box-sizing: border-box
}

.breach-popup__inner {
    background-color: #de4558;
    width: 100%;
    border-radius: 16px;
    margin-inline: auto;
    pointer-events: all;
    position: relative;
    transition: transform .25s ease-in-out, max-width .25s ease-in-out;
    transform: translateY(16px);
    max-height: calc(100svh - 80px);
    display: flex;
    flex-direction: column
}

.breach-popup__header {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 16px;
    padding: 4px;
    cursor: pointer
}

.breach-popup__close {
    cursor: pointer;
    background-color: transparent;
    border-style: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    opacity: .5
}

.breach-popup__wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease-in-out;
    overflow: hidden
}

.breach-popup__content {
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px)
}

.breach-popup--minimize .breach-popup__inner {
    max-width: 485px;
    transform: translateY(-100%)
}

.breach-popup--collapse .breach-popup__inner {
    max-width: 485px
}

.breach-popup--expand .breach-popup__inner {
    max-width: 1120px
}

.breach-popup--expand .breach-popup__wrap {
    grid-template-rows: 1fr
}

.breach-popup--expand .breach-popup__content {
    opacity: 1;
    transform: translateY(0);
    transition: transform .25s ease-in-out, opacity .25s ease-in-out;
    transition-delay: .15s
}

.breach-popup--expand .breach-popup__header {
    cursor: default
}

.breach-info {
    padding: 2px;
    height: 100%
}

.breach-info__inner {
    padding: 22px 22px 0;
    background-color: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    height: 100%;
    overflow: auto
}

.breach-info__alert {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin: 0
}

.breach-info__list {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px
}

@media only screen and (width >=992px) {
    .breach-info__list {
        flex-wrap: nowrap
    }
}

.breach-info__item {
    width: 100%
}

.breach-info__item:nth-child(2) {
    max-width: 320px
}

.breach-info__item:nth-child(3) {
    max-width: 200px
}

.breach-info__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -.1px;
    color: #de4558;
    margin-top: 0;
    margin-bottom: 4px
}

.breach-info__description {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -.1px
}

.breach-info__description ul {
    margin: 0
}

.breach-info__actions {
    display: flex;
    justify-content: center;
    padding-top: 32px;
    padding-bottom: 22px;
    background-color: #fff;
    position: sticky;
    bottom: 0
}

.breach-info__btn {
    cursor: pointer;
    border-style: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    height: 48px;
    padding-inline: 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -.1px;
    color: #fff;
    background-color: #ff6400
}

.button-expand {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    z-index: 1
}

.button-expand__pointer {
    cursor: pointer
}

.button-expand__alert {
    pointer-events: none;
    transition: opacity .25s ease-in-out
}

.button-expand__arrow {
    pointer-events: none;
    transition: transform .25s ease-in-out, opacity .25s ease-in-out;
    transform-origin: center
}

.button-expand--minimize .button-expand__arrow,
.button-expand--collapse .button-expand__alert,
.button-expand--expand .button-expand__alert {
    opacity: 0
}

.button-expand--expand .button-expand__arrow {
    transform: rotate(180deg)
}

.header-collapse {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 4px;
    padding-left: 8px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -.1px;
    color: #fff
}

.header-expand {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 4px;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -.1px;
    color: #fff
}


@font-face {
    font-family: FigtreeVF;
    src: url(chrome-extension://majdfhpaihoncoakbjgbdhglocklcgno/fonts/FigtreeVF.woff2) format("woff2 supports variations"), url(chrome-extension://majdfhpaihoncoakbjgbdhglocklcgno/fonts/FigtreeVF.woff2) format("woff2-variations");
    font-weight: 100 1000;
    font-display: swap
}


.cart-input-ixopay::placeholder {
    color: rgb(117 117 117) !important;
}

.cart-input-ixopay {
    font-family: Arial;
}

.payment-declined-message-popup {
    --btn-background-primary: #0084FD;
    --btn-box-shadow-primary: none;
    --btn-border-radius: 10px;
}
                  

.checkout-banner{
    background-image: url(../images/bg-desktop.jpg);
}
.cod-delivery-box{
    background-image: url(../images/bg.jpg);
}

@media(max-width:992px){
    .checkout-banner{
        background-image: url(../images/bg-mobile.jpg);
    }
    .cod-delivery-box{
        background-image: url(../images/bg-mob.jpg);
    }
}

.paypal-button > .paypal-button-label-container {
    margin: auto;
    /* height: 22px; */
    /* position: relative; */
    top: 50%;
    /* transform: translateY(-50%); */
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paypal-button {
    display: inline-block;
    text-align: center;
    /* height: 22px; */
    position: relative;
    width: 100%;
    box-sizing: border-box;
    border: none;
    vertical-align: top;
    cursor: pointer;
    /* overflow: hidden; */
    background: #ffc439;
    border-radius: 4px;
    padding: 10px;
}

.paypal-logo-paypal{
    width: 80px;
}