/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Utendo-Medium";
    font-style: normal;
    font-weight: normal;
    font-display: auto;
    src: url("/wp-content/plugins/multistepstripe/public/multistep/file2.woff2") format("woff2");
    src: url("/wp-content/plugins/multistepstripe/public/multistep/file2.woff2") format("woff2");
}

@font-face {
    font-family: "Utendo-Regular";
    font-style: normal;
    font-weight: normal;
    font-display: auto;
    src: url("/wp-content/plugins/multistepstripe/public/multistep/file1.woff2") format("woff2");
    src: url("/wp-content/plugins/multistepstripe/public/multistep/file1.woff2") format("woff2");
}

@font-face {
    font-family: "Utendo-Light";
    font-style: normal;
    font-weight: normal;
    font-display: auto;
    src: url("/wp-content/plugins/multistepstripe/public/multistep/file3.woff2") format("woff2");
    src: url("/wp-content/plugins/multistepstripe/public/multistep/file3.woff2") format("woff2");
}

body {
    font-family: "Utendo-Regular";
}

ul,
ol {
    margin: 0 !important;
}

section.step-form-sec {
    padding: 90px 0;
}

/* Animation styles */
section.step-form-sec .step {
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

section.step-form-sec .step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: fadeIn 0.5s ease-in-out forwards;
}

section.step-form-sec .step.fade-out {
    animation: fadeOut 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50px);
    }
}

body:has(.bg-color-active.active) {
    background: #0069ff;
}

.step.step-1.active.bg-color-active button {
    background: #fff;
    color: #0069ff;
}

.step.step-1.active.bg-color-active button img {
    filter: brightness(0) saturate(100%) invert(43%) sepia(80%) saturate(6835%) hue-rotate(210deg) brightness(102%) contrast(107%);
}

section.step-form-sec .wrap {
    max-width: 1325px;
    margin: 0 auto;
}

section.step-form-sec .step:not(.step-1) {
    max-width: 832px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 08px #000;
    border-radius: 10px;
}

section.step-form-sec .buttons {
    display: flex;
    justify-content: center;
    background: #0069FF;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

section.step-form-sec .buttons .next,
section.step-form-sec .buttons .prev,
section.step-form-sec .buttons .backtohome {
    border: none;
    background: none;
    display: flex;
    gap: 20px;
    text-transform: uppercase;
    color: #fff;
    font-size: 20px;
    width: 100%;
    justify-content: center;
    padding: 20px;
    cursor: pointer;
}

section.step-form-sec .buttons .next img,
section.step-form-sec .buttons .prev img,
section.step-form-sec .buttons .backtohome img {
    width: auto;
    height: 18px;
    float: left;
    margin-top: 2px;
}

section.step-form-sec .buttons .next {
    letter-spacing: 1px;
    font-size: 16px;
}

section.step-form-sec .buttons .next img {
    height: 13px;
}

section.step-form-sec .buttons .next:hover img {
    animation: wobble 2s ease infinite;
}

section.step-form-sec .buttons .backtohome {
    letter-spacing: 1px;
    font-size: 16px;
    text-decoration: none;
}

section.step-form-sec .buttons .backtohome img {
    height: 13px;
}

section.step-form-sec .buttons .backtohome:hover img {
    animation: wobble 2s ease infinite;
}

section.step-form-sec .buttons .prev {
    letter-spacing: 1px;
    font-size: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.3215686275);
}

section.step-form-sec .buttons .prev img {
    height: 13px;
}

section.step-form-sec .buttons .prev:hover img {
    animation: wobble 2s ease infinite;
}

section.step-form-sec .step:not(.step-1) .buttons .next {
    letter-spacing: 1px;
    font-size: 16px;
    justify-content: flex-end;
}

section.step-form-sec .step:not(.step-1) .buttons .next img {
    height: 13px;
}

section.step-form-sec .step:not(.step-1) .buttons .next:hover img {
    animation: wobble 2s ease infinite;
}

section.step-form-sec .step:not(.step-1) .buttons .prev {
    letter-spacing: 1px;
    font-size: 16px;
    justify-content: flex-start;
    opacity: 0.7;
}

section.step-form-sec .step:not(.step-1) .buttons .prev img {
    height: 13px;
}

section.step-form-sec .step:not(.step-1) .buttons .prev:hover {
    opacity: 1;
}

section.step-form-sec .step:not(.step-1) .buttons .prev:hover img {
    animation: wobble 2s ease infinite;
}

@keyframes wobble {
    0% {
        transform: translateX(0%);
    }

    15% {
        transform: translateX(-25%);
    }

    30% {
        transform: translateX(20%);
    }

    45% {
        transform: translateX(-15%);
    }

    60% {
        transform: translateX(10%);
    }

    75% {
        transform: translateX(-5%);
    }

    100% {
        transform: translateX(0%);
    }
}

section.step-form-sec .step.step-1 {
    max-width: 768px;
    margin: 0 auto;
    background: #0447A5;
    border-radius: 10px;
    overflow: hidden;
}

section.step-form-sec .step.step-1 .decp {
    padding: 32px;
    text-align: center;
}

section.step-form-sec .step.step-1 a.logo img {
    max-width: 300px;
    margin: 15px 0 30px;
}

section.step-form-sec .step.step-1 h2 {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    max-width: 630px;
    margin: 0 auto 20px;
    line-height: 45px;
    letter-spacing: 0.5px;
    font-family: "Utendo-Medium";
}

section.step-form-sec .step.step-1 p {
    color: #fff;
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    margin: 0 0 20px;
    font-family: "Utendo-Light";
}

section.step-form-sec .decp2 {
    padding: 1.5em 2.4em;
}

section.step-form-sec .decp2 h3 {
    font-size: 25px;
    font-family: "Utendo-Light";
    letter-spacing: 1px;
    margin: 0 0 20px;
}

section.step-form-sec .decp2 h3 sup {
    color: rgb(227, 67, 67);
    font-size: 24px;
}

section.step-form-sec .decp2 h3 span {
    display: block;
    font-size: 15px;
    color: #bababa;
}

section.step-form-sec .decp2 .ddl-select {
    visibility: hidden;
}

section.step-form-sec .decp2 .ddl {
    position: relative;
    height: 50px;
    width: 100%;
    text-align: initial;
}

section.step-form-sec .decp2 .ddl::after {
    content: "";
    position: absolute;
    top: 25px;
    right: 20px;
    width: 12px;
    height: 2px;
    background: #555;
    z-index: 99;
    transform: rotate(-40deg);
    transition: 0.5s;
}

section.step-form-sec .decp2 .ddl::before {
    content: "";
    position: absolute;
    top: 25px;
    right: 28px;
    width: 12px;
    height: 2px;
    background: #555;
    z-index: 99;
    transform: rotate(40deg);
    transition: 0.5s;
}

section.step-form-sec .decp2 .ddl.active::after {
    right: 28px;
}

section.step-form-sec .decp2 .ddl.active::before {
    right: 20px;
}

section.step-form-sec .decp2 .ddl-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 6px;
    padding: 10px 20px;
    outline: none;
    background: #fff;
    border: 1px solid #e9e9e9;
    font-size: 16px;
}

section.step-form-sec .decp2 .ddl.active .ddl-options {
    visibility: visible;
    opacity: 1;
}

section.step-form-sec .decp2 .ddl .ddl-options {
    position: absolute;
    width: 100%;
    top: 55px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: 0.25s;
    z-index: 999;
    border: 1px solid #e9e9e9;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow: auto;
}

section.step-form-sec .decp2 .ddl .ddl-options>div {
    padding: 13px 20px;
    cursor: pointer;
    font-family: "Utendo-Light";
    letter-spacing: 0.5px;
    transition: all 0.5s ease-out;
    color: #000;
}

section.step-form-sec .decp2 .ddl .ddl-options .active {
    background: #0169ff;
    color: #fff;
}

section.step-form-sec .decp2 .ddl .ddl-options>div:hover {
    background: rgba(1, 105, 255, 0.1098039216);
}

section.step-form-sec .decp2 ul.d1 {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

section.step-form-sec .decp2 ul.d1 li {
    width: 48%;
    border: 1px solid #5f5f5f;
    display: flex;
    align-items: center;
    border-radius: 4px;
}

section.step-form-sec .decp2 ul.d1 li:hover {
    background: rgba(1, 105, 255, 0.1215686275);
    border: 1px solid #0169ff;
}

section.step-form-sec .decp2 ul.d1 li label {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 14px 12px;
    gap: 22px;
    letter-spacing: 0.5px;
    cursor: pointer;
    line-height: 16px;
    font-size: 16px;
}

section.step-form-sec .decp2 ul.d1 li label input[type=checkbox]:after {
    line-height: 1.5em;
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-top: -4px;
    border: 1px solid #333;
    background: #fff;
    float: left;
}

section.step-form-sec .decp2 ul.d1 li label input[type=checkbox]:checked:after {
    background: #0169ff;
    box-shadow: inset 0 0 0 3px #fff;
}

section.step-form-sec .decp2 ul.d1 li label input[type=radio] {
    width: 20px;
    height: 20px;
}

section.step-form-sec .decp2 ul.d1 li.active {
    background: rgba(1, 105, 255, 0.1215686275);
    border: 1px solid #0169ff;
}

section.step-form-sec .decp2 ul.d1 li.active input[type=checkbox]:after {
    border: 1px solid #0169ff;
}

section.step-form-sec .decp2 ul.d1 li.active input[type=checkbox]:checked:after {
    background: #0169ff;
    box-shadow: inset 0 0 0 3px #fff;
}

section.step-form-sec .decp2 ul.d2 {
    padding-left: 15px;
    margin: 0 0 40px;
}

section.step-form-sec .decp2 ul.d2 li {
    color: #626262;
    margin: 0 0 12px;
}

section.step-form-sec .decp2 h4 {
    margin: 0 0 30px;
    font-size: 18px;
}

section.step-form-sec .decp2 ul.d3 {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

section.step-form-sec .decp2 ul.d3 li {
    max-width: 270px;
    width: 100%;
    position: relative;
}

section.step-form-sec .decp2 ul.d3 li label {
    width: 100%;
    display: table;
    text-align: center;
    border: 1px solid #0169ff;
    padding: 15px;
    font-size: 21px;
    text-transform: uppercase;
    border-radius: 10px;
    color: #0169ff;
    cursor: pointer;
    font-family: "Utendo-Light";
}

section.step-form-sec .decp2 ul.d3 li input[type=radio] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

section.step-form-sec .decp2 ul.d3 li input[type=radio]:checked+label {
    background-color: #0169ff;
    color: white;
}

section.step-form-sec .decp2 p {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 25px;
    color: #818181;
}

section.step-form-sec .decp2 .ck.ck-content {
    min-height: 200px;
}

section.step-form-sec .decp2 input:not([type=submit]):not([type=checkbox]):not([type=radio]) {
    width: 100%;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #adadad;
    font-size: 17px;
    height: auto;
}

section.step-form-sec .decp2 .tow-col {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

section.step-form-sec .decp2 .tow-col .col-1 {
    width: 48%;
}

section.step-form-sec .decp2 .tow-col .col-3 {
    width: 48%;
}

section.step-form-sec .decp2 aside.security-number {
    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem;
    width: 100%;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #adadad;
    font-size: 17px;
}

section.step-form-sec .decp2 aside.security-number input:not([type=submit]):not([type=checkbox]):not([type=radio]) {
    width: 5%;
    padding: 0.4rem 0.7rem;
    border-radius: 0.2rem 0.2rem 0 0;
    border: none;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: transparent;
    color: #020202;
    caret-color: #883aea;
    transition: transform 0.2s, border-bottom-color 0.2s, background-color 0.5s;
    cursor: text;
}

section.step-form-sec .decp2 aside.security-number input:not([type=submit]):not([type=checkbox]):not([type=radio]):focus {
    outline: none;
    border-bottom-color: #e0ccfa;
    animation: border-bottom-pulse 1s infinite 1.5s;
}

section.step-form-sec .decp2 aside.security-number input:not([type=submit]):not([type=checkbox]):not([type=radio])::-moz-placeholder {
    color: #000;
    opacity: 0.8;
}

section.step-form-sec .decp2 aside.security-number input:not([type=submit]):not([type=checkbox]):not([type=radio])::placeholder {
    color: #000;
    opacity: 0.8;
}

section.step-form-sec .decp2 aside.security-number input:not([type=submit]):not([type=checkbox]):not([type=radio]):focus::-moz-placeholder {
    opacity: 0;
}

section.step-form-sec .decp2 aside.security-number input:not([type=submit]):not([type=checkbox]):not([type=radio]):focus::placeholder {
    opacity: 0;
}

section.step-form-sec .decp2 aside.security-number input:not([type=submit]):not([type=checkbox]):not([type=radio]):hover {
    transform: translateY(-3px);
    background-color: transparent;
}

section.step-form-sec .decp2 .wrp {
    padding: 15px;
    border-left: 4px solid #0069FF;
    background: rgba(0, 106, 255, 0.0745098039);
    display: flex;
    align-items: center;
}

section.step-form-sec .decp2 .wrp h4 {
    font-size: 18px;
    font-family: "Utendo-Light";
    letter-spacing: 1px;
    margin: 0 0 10px;
    text-transform: uppercase;
}

section.step-form-sec .decp2 .wrp p {
    margin-bottom: 10px;
}

section.step-form-sec .decp2 .wrp .price {
    width: 10%;
    text-align: right;
}

section.step-form-sec .decp2 .wrp .price h6 {
    font-size: 14px;
    font-family: "Utendo-Light";
    letter-spacing: 1px;
}

section.step-form-sec .decp2 .wrp+h5,
.decp2>h5 {
    font-size: 18px;
    line-height: 25px;
    color: #818181;
    text-align: right;
    font-weight: 400;
}

section.step-form-sec .decp2 .wrp+h5 span,
.decp2>h5>span {
    font-size: 18px;
    font-family: "Utendo-Light";
    letter-spacing: 1px;
    font-weight: 600;
    color: #000;
    margin-left: 6px;
}

section.step-form-sec .decp2 .inpt-wrp {
    position: relative;
}

section.step-form-sec .decp2 .inpt-wrp>img {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 100px;
}

section.step-form-sec .decp2 .inner-col {
    display: flex;
    justify-content: space-between;
    gap: 0 33px;
}

section.step-form-sec .decp2 .inner-col .col-6 {
    width: 48%;
}

.fl-wdth li {
    width: 100% !important;
}

h3:has(.cart) {
    display: flex;
    justify-content: space-between;
}

h3 .cart {
    height: 35px;
    width: 35px;
    background: #0069FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
}

h3 .cart span {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: red;
    font-size: 8px !important;
    line-height: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    position: absolute;
    top: -5px;
    right: -5px;
}

h3 .cart img {
    display: block;
    height: 18px;
    width: 18px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7496%) hue-rotate(332deg) brightness(102%) contrast(103%);
}

@keyframes border-bottom-pulse {
    50% {
        border-bottom-color: #883aea;
    }
}

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

/* add css on 10.03.2025 */

section.step-form-sec .step.step-1 a.logo img {
    width: 100%;
}




@media screen and (max-width: 991px) {

    section.step-form-sec form#multiStepForm {
        padding: 0 30px;
    }

    section.step-form-sec .step.step-1 h2 {
        font-size: 30px;
        line-height: 40px;

    }

    section.step-form-sec .step.step-1 p {
        font-size: 20px;
        line-height: 30px;
    }

    section.step-form-sec {
        padding: 60px 0;
    }

    section.step-form-sec .decp2 ul.d2 li {
        margin: 0 0 0px;
    }

    section.step-form-sec .decp2 h4 {
        margin: 10px 0 20px;
        font-size: 14px;
    }

    section.step-form-sec .decp2 h3 {
        font-size: 22px;
        margin: 0 0 10px;
    }

}

@media screen and (max-width: 767px) {
    section.step-form-sec .decp2 aside.security-number input:not([type=submit]):not([type=checkbox]):not([type=radio]) {
        padding: 0;
    }

    section.step-form-sec .decp2 aside.security-number input:not([type=submit]):not([type=checkbox]):not([type=radio]):hover {
        transform: translateY(0px);
        background-color: transparent;
    }

    section.step-form-sec form#multiStepForm {
        padding: 0 30px;
    }

    section.step-form-sec .step.step-1 h2 {
        font-size: 28px;
        line-height: 38px;

    }

    section.step-form-sec .step.step-1 p {
        font-size: 18px;
        line-height: 28px;
    }

    section.step-form-sec {
        padding: 30px 0;
    }

    section.step-form-sec .step.step-1 .decp {
        padding: 15px;
    }

    section.step-form-sec .decp2 h3 {
        font-size: 16px;
        letter-spacing: 1px;
        line-height: 20px;
    }

    section.step-form-sec .decp2 input:not([type=submit]):not([type=checkbox]):not([type=radio]) {
        padding: 6px 10px;
        font-size: 0.9em;
    }

    section.step-form-sec .buttons .next,
    section.step-form-sec .buttons .prev,
    section.step-form-sec .buttons .backtohome {
        padding: 15px;
    }

    section.step-form-sec .decp2 .ddl::after {
        top: 18px;
        right: 18px;
        width: 10px;
    }

    section.step-form-sec .decp2 .ddl::before {
        top: 18px;
        width: 10px;
        right: 24px;
    }

    section.step-form-sec .decp2 {
        padding: 1.5em 1.7em;
    }

    section.step-form-sec .decp2 ul.d1 li {
        width: 100%;

    }

    /*section.step-form-sec .decp2 h3 sup {*/
    /*    top: 0;*/
    /*}*/
    section.step-form-sec .decp2 h3 sup {
        font-size: 14px;
    }

    section.step-form-sec .decp2 ul.d1 li label {
        padding: 9px 12px;
        gap: 10px;
        line-height: 1.25em;
        font-size: 0.9em;
    }

    section.step-form-sec .decp2 ul.d1 li label input[type=checkbox]:after {
        gap: 10px;
    }

    section.step-form-sec .decp2 ul.d1 {
        gap: 10px;
    }

    section.step-form-sec .decp2 ul.d1 li label input[type=checkbox]:after {
        margin-top: -2px;
    }

    section.step-form-sec .decp2 ul.d2 {
        margin: 0 0 10px;
    }

    section.step-form-sec .decp2 ul.d2 li {
        margin: 0 0 0px;
        font-size: 0.8em;
    }

    section.step-form-sec .decp2 h4 {
        margin: 10px 0 15px;
        font-size: 14px;
    }

    section.step-form-sec .decp2 ul.d3 {
        gap: 10px;
        flex-direction: column;
    }

    section.step-form-sec .decp2 ul.d3 li {
        max-width: 100%;
        width: 100%;
    }

    section.step-form-sec .decp2 ul.d3 li label {
        padding: 0.6em;
        font-size: 1.25em;

    }

    section.step-form-sec .decp2 h3 {
        margin: 0 0 10px;
    }

    section.step-form-sec .decp2 p {
        font-size: 12px;
        line-height: 18px;
    }

    section.step-form-sec .decp2 .tow-col {
        gap: 10px;
        margin-top: 10px;
    }

    section.step-form-sec .decp2 .wrp .price h6 {
        white-space: nowrap;
    }

    section.step-form-sec .decp2 .inner-col {
        gap: 0 10px;
    }
}

.StripeElement {
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #adadad;
    font-size: 17px;
    height: auto;
}

section.step-form-sec .decp3 {
    padding: 0em 2.4em !important;
}


.promo-section {
    display: flex;
    margin-top: 20px;
}

.promo-section .promo-input {
    flex-grow: 1;
    margin-right: 10px;
}

.promo-section .promo-btn {
    display: flex;
}

.promo-error {
    padding: 10px 0px;
    color: red;
    font-weight: bold;
}

.promo-success {
    padding: 10px 0px;
    color: green;
    font-weight: bold;
}

/* Loading Modal Styles */
.loading-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.loading-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: white;
    margin-top: 10px;
}


.payment-providers{}
.payment-providers li{ list-style:none; margin-bottom:10px;}
.payment-providers label{ font-size:18px; padding:10px; cursor:pointer; display: block; border: 1px solid #5f5f5f;
    border-radius: 5px;}
.payment-providers label:hover {
    background: rgba(1, 105, 255, 0.1215686275);
    border: 1px solid #0169ff;
}