@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    font-family: "Open Sans", serif;
}

.steps i {
    opacity: 0;
    color: #5cb85d;
}

.secondStep.steps-step1, .steps-step2 {
    opacity: 0.5;
}

.secondStep.steps-step2, .secondStep.steps i {
    opacity: 1;
}

.grey-bg {
    background-color: transparent;
}

.form-wrapper {
    color: #333;
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 .25rem .625rem #0003;
}

label {
    font-size: 14px;
}

.ui-input {
    border-bottom: 2px solid #d8d8d8;
    border-radius: 3px;
    padding: 0.3rem;
    border: 1px solid #d1d5db;
    border-radius: .25rem;
    color: #333;
}

.payment2-content {
    background: url(../img/background.svg) no-repeat #f2f2f2;
    background-size: cover;
}

.header {
    color: #fff;
    text-align: center;
    padding-top: 15px;
}

.header p {
    display: inline-block;
    border-radius: 2rem;
    background: #fff;
    padding: .5rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}

.header h1 {
    color: #333;
    font-weight: 800;
    font-size: 50px;
}

.product {
    position: relative;
    height: 100%;
}

.circle-price {
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 20%;
    left: 5%;
    width: 100px;
    aspect-ratio: 1 / 1;
    background: radial-gradient(83.79% 83.79% at 82.42% 22.46%, #85cbff, #ff578f 61.43%, #b156ff);
    transform: rotate(-25deg);
    color: #fff;
    border-radius: 50%;
    box-shadow: #110c2e26 0 3rem 6.25rem;
    animation: blink 3.5s ease-in-out infinite;

}

.product__img {
    width: 100%;
    align-self: flex-end;
}

.price-container {
    font-size: 18px;
    font-weight: 700;
}

.price {
    line-height: 1;
}

.price-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.currency {
    font-size: 20px;
    font-weight: 600;
}

.form-header {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 800;
}

.product__color {
    width: 100%;
    box-shadow: 0 0 0 1px #ededed;
    border-radius: .5rem;
    transition: box-shadow .15s ease-in-out;
}

.product__color--active {
    box-shadow: 0 0 0 3px #000;
}

.form-text {
    color: #cbcbcb;
}

.variations {
    margin-top: 50px;
}

.variations-img {
    width: 100%;
    max-width: 550px;
    display: block;
    margin: 0 auto;
    padding: 0 15px;
}

.variations-text {
    color: #fff;
    text-align: center;
    margin: 0 auto;
    font-size: 32px;
    font-weight: 600;
    color: #a5a5a5;
}

.text-highlight {
    color: #000;
}

.specs {
    margin-top: 50px;
    text-align: center;
    color: #fff;
}

.specs-header {
    color: #3faefe;
}

.specs-text {
    color: #000;
    font-weight: 700;
}

.iti {
    color: #000;
}

.intl-tel-input, .iti {
    width: 100%;
}

.card-pos {
    position: relative;
}

.form-cards {
    position: absolute;
    right: 5px;
    height: 23px;
    top: 50%;
    transform: translateY(-50%);
}

.cvv-img {
    transform: translateY(-54%);
}

.terms {
    background-color: #f2f2f2;
}

@keyframes blink {
    0% {
        scale: 1;
    }

    50% {
        scale: 1.1;
    }

    100% {
        scale: 1;
    }
}

@media (max-width: 768px) {
    .variations-text {
        font-size: 18px;
        margin: 0 10px !important;
    }
    .product__img{
        max-width: 150px;
    }
    .circle-price {
        left: 15%;
        width: 80px;
    }
    .header h1 {
        font-size: 32px;
    }
    .form-header {
        font-size: 18px;
    }
}
