@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html {
    overflow-x: hidden !important;
}

body {
    font-family: "Inter", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", sans-serif;
}

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

.form-wrapper {
    color: #000;
    background-color: #f4f4f4;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 .25rem .625rem #0003;
}

label {
    font-size: 14px;
}

.ui-input {
    padding: 8px 15px;
    border: 1px solid #000;
    box-shadow: 0px 0px 7px 0px rgba(14, 159, 249, 0.3);
    border-radius: 5px;
    color: #000;
    background-color: transparent;
}

select.ui-input {
    padding: 13px 15px;
}

button.ui-form__submit-button {
    display: inline-block;
    height: auto;
    background: #2189ff;
    border-radius: 50px !important;
    font-size: 22px !important;
    font-weight: bold;
    padding: 10px 24px 10px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    text-shadow: 0 0 7px rgba(0, 0, 0, 0.75);
}

.ui-form__submit {
    margin: 20px 0 10px 0;
}

.payment2-content {
    background: url(../img/background.jpg) no-repeat left;
    background-size: cover;
    padding: 10px 0;
}

.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: #000;
    font-size: 50px;
    line-height: 1.24;
    text-align: center;
    font-weight: 700;
    margin: 0;
}

.header img {
    display: block;
    width: 200px;
    margin: 0 auto 20px;
}

#timer {
    color: #31b1fa;
    margin: 0px;
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.product {
    position: relative;
}

.circle-price {
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 5%;
    width: 100px;
    aspect-ratio: 1 / 1;
    background: radial-gradient(83.79% 83.79% at 82.42% 22.46%, #2d6bd5, #31abff);
    color: #fff;
    border-radius: 50%;
    box-shadow: #110c2e26 0 3rem 6.25rem;
    animation: blink 3.5s ease-in-out infinite;

}

.product__img {
    width: 80%;
}

.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;
}

.product-details {
    max-width: 1020px;
    margin-top: 100px;
}

.product-details h3 {
    font-size: 48px;
    line-height: 1.16;
    font-weight: 700;
}

.product-details p {
    font-size: 20px;
    line-height: 1.55;
}

.img-space {
    padding-top: 80px;
}

.terms {
    margin-top: 100px;
    background-color: #f2f2f2;
}

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

#myVideo {
    width: 1440px;
    display: block;
    margin: 0 auto;
}

.specs {
    margin-top: 100px;
}

.header-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.specs h1 {
    max-width: 820px;
    text-align: center;
    font-size: 66px;
    font-weight: bold;
    background: linear-gradient(-39deg, #0e9ff9 51%, #64e9e3 76%, #9ffac7 81%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: 0 auto 50px;
}

.under-btn {
    text-align: center;
    color: #616774;
    font-size: 13px;
}

#cvv {
    background: url(../img/cvv.png);
    background-size: 35px;
    background-repeat: no-repeat;
    background-position: center right 2%;
}

#ccnum {
    background: url(../img/card-types.png);
    background-size: 150px;
    background-repeat: no-repeat;
    background-position: center right 2%;
}

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

    50% {
        scale: 1.1;
    }

    100% {
        scale: 1;
    }
}

@media (max-width: 768px) {
    #myVideo {
        width: 100%;
    }

    .form-header {
        font-size: 18px;
    }

    .product-details {
        text-align: center;
    }

    .product-details h3 {
        font-size: 36px;
    }

    .img-space {
        padding-top: 20px;
    }

    .specs h1 {
        font-size: 42px;
    }
}