.ps-loading {
    color: transparent !important;
    text-shadow: none !important;
    pointer-events: none;
    position: relative;
}
.ps-loading::after {
    content: '';
    top: 50%;
    left: 50%;
    border: 4px solid #bbbbbb;
    border-radius: 50%;
    border-top: 4px solid transparent;
    position: absolute;
    width: 30px;
    height: 30px;
    -webkit-animation: ps-spin 1s linear infinite; /* Safari */
    animation: ps-spin 1s linear infinite;
}
/* Safari */
@-webkit-keyframes ps-spin {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes ps-spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.lead-form {
    position: relative;
}
.thank-you-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    opacity: 0;
    display: none;
}
.thank-you-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    display: none;
    width: 100%;
    text-align: center;
    font-size: 2rem;
}
.hover-zoom img {
    transition: all 0.2s linear;
}
.hover-zoom img:hover {
    transform: scale(1.1);
}
a[href=""] {
    cursor: default;
}
.ps-language-ul {
    list-style: none;
    display: flex;
    margin: 0 !important;
    padding: 0 !important;
}
.ps-language-li {
    width: 2rem;
    margin: 0 10px;
}
@media (max-width: 992px) {
    .ps-justify-content-right, .ps-justify-content-left {
        text-align: center !important;
    }
}
.ps-justify-content-left {
    text-align: left;
    justify-content: flex-start;
}
.ps-justify-content-right {
    text-align: right;
    justify-content: flex-end;
}
.ps-justify-content-center {
    text-align: center;
    justify-content: center;
}
.checkout-result {
    width: 100px;
    margin: 0 auto;
    animation: breathing 1s ease-out infinite normal
}
@keyframes breathing {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
}
html body .ps-show-only-on-mobile {
    display: none !important;
}
@media (max-width: 991px) {
    html body .ps-show-only-on-mobile {
        display: inherit !important;
    }
    html body .ps-show-only-on-desktop {
        display: none !important;
    }
}
