.boxes {
    background: linear-gradient(to top, #005f9e 0%, #000a18 100%);
    width: 100%;
    height: 100vh;
}

.single-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.single-box li {
    position: absolute;
    display: block;
    list-style: none;
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 20s linear infinite;
    bottom: -150px;
}

.single-box li:nth-child(1) {
    left: 86%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.single-box li:nth-child(2) {
    left: 12%;
    width: 30px;
    height: 30px;
    animation-delay: 1.5s;
    animation-duration: 10s;
}

.single-box li:nth-child(3) {
    left: 29%;
    width: 100px;
    height: 100px;
    animation-delay: 5.5s;
}

.single-box li:nth-child(4) {
    left: 42%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 15s;
}

.single-box li:nth-child(5) {
    left: 65%;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
}

.single-box li:nth-child(6) {
    left: 15%;
    width: 110px;
    height: 110px;
    animation-delay: 3.5s;
}

.single-box li:nth-child(7) {
    left: 75%;
    width: 200px;
    height: 200px;
    animation-delay: 4.5s;
    bottom: -250px;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-800px) rotate(360deg);
        opacity: 0;
    }
}

.new-login-box {
    position: absolute !important;
    margin: 0 !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.new-register-box {
    position: absolute !important;
    margin: -200px 0 0 -200px !important;
    top: 50% !important;
    left: 50% !important;
    /*transform: translate(-50%, -50%) !important;*/
    width: 400px;
}

.login-button {
    background: #3cb2d0 !important;
    border: 1px solid #3cb2d0 !important;
    transition: all .25s;
}

.login-button:hover {
    /*background: #49dbff !important;*/
    background: #49dbff !important;
    border: 1px solid cyan !important;
    color: white;
}

.login-button:focus {
    background: #49dbff !important;
    border: 1px solid cyan !important;
    color: white;
}

.logo-style {
    width: 20rem;
    transform: translate(-10px, -5px);
}

#to-recover:hover {
    color: cyan;
    transition: all .25s;
}

#to-login:hover {
    color: cyan;
    transition: all .25s;
}

input {
    margin-bottom: 1rem;
}

input:focus {
    border-color: cyan !important;
}

input:hover {
    border-color: cyan !important;
}

.phone-number {
    width: 100% !important;
}

.iti__country-list {
    width: 400px !important;
}

a.link:hover {
    color: white;
}

.message-alert {
    position: absolute;
    bottom: 10px;
    width: 200px;
    right: 10px;
    padding: 10px 15px;
    z-index: 999;
    font-size: 14px;
    border-radius: 10px
}

@media (max-width: 480px) {
    .new-login-register .new-register-box {
        position: fixed !important;
        margin: -150px 0 0 -150px !important;
        width: 300px !important;
        /*scale: .9;*/
        /*transform: translate(-55%, -55%) !important;*/
    }

    .title {
        font-size: 16px !important;
    }
}

.custom-select {
    position: relative;
    width: auto;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

ul.options {
    list-style: none;
    position: absolute;
    width: 100%;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 5px 5px;
    max-height: 150px;
    overflow-y: auto;
    display: none;
}

ul.options li {
    padding: 10px;
    cursor: pointer;
}

ul.options li:hover {
    background-color: #f0f0f0;
}
#optionsList{
    background: white;z-index: 1;padding:0;color: black;list-style: none;margin: 0
}
.input-group-append{
    position: absolute;
    top: 50%;
    right: 25px;
    color: black;
}

.cards-container {
    width: 80vw;
    margin-left: auto !important;
    margin-right: auto !important;
}

.subscription-card {
    padding: 40px !important;
    border: 2px solid #e5e5e5;
    border-radius: 20px;
    min-height: 700px;
    transition: all .2s;
    max-width: 410px;
    margin: 10px auto;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    position: relative;
}

.subscription-card:hover {
    border: 2px solid #3cd0cc;
    transform: scale(1.04);
}

.subscription-card.active {
    border: 2px solid #3cd0cc;
    box-shadow: cyan 0 0 5px;
}

.main-title {
    font-size: 30px;
}

.title {
    font-size: 25px;
    font-weight: 400;
    transition: all .2s;
    text-transform: capitalize;
}

.title:hover {
    color: #3cd0cc;
}

.price {
    font-size: 40px;
    font-weight: 500;
}

.price-type {
    font-size: 15px;
}

.buy-now {
    background-color: black;
    width: 100%;
    padding: 10px 20px;
    margin: 30px 0;
    color: white;
    border: 2px solid black;
    font-weight: 500;
    transition: all .2s;
    border-radius: 10px;
}

.buy-now:hover {
    background-color: #4f4f4f;
    border: 2px solid #4f4f4f;
    color: white;
}

.free-trial {
    background-color: transparent;
    width: 100%;
    padding: 10px 20px;
    margin: 30px 0 0;
    color: #3cd0cc;
    border: 2px solid #b1d0cd;
    font-weight: 500;
    transition: all .2s;
    border-radius: 10px;
}

.free-trial:hover {
    background-color: #3cd0cc;
    border: 2px solid #3cd0cc;
    color: white;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0
}

ul li {
    padding: 10px;
    text-transform: capitalize;
    cursor: pointer;;
}

.ti-check {
    color: #3cd0cc;
    font-size: 20px;
    margin-right: 10px;
    font-weight: bold !important;
}

.horizontal-line {
    text-align: center;
    position: relative;
}

hr {
    width: 100%;
    border: 1px solid #e5e5e5 !important; /* You can change the color and style of the line */
    margin: 0 auto !important;
}

.line-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff; /* Set the background color as needed */
    padding: 5px 10px; /* Adjust padding to your liking */
    z-index: 1; /* Ensure the text is above the line */
}

.aligned {
    display: flex;
    align-items: center;
    margin-bottom: 0 !important;
}

.popular {
    cursor: pointer;
    pointer-events: none;
    position: absolute;
    top: 15px;
    right: 15px;
    color: #3cd0cc;
    background-color: #d6ffff;
    padding: 5px 10px;
    font-weight: 500;
    border-radius: 20px;
    font-size: 12px;
}

.popular-card {
    border: 2px solid #3cd0cc;
}

.free-trial-description {
    font-size: 12px;
    font-weight: 400;
    color: #b9b9b9;
    text-align: center;
    margin-top: 5px;
}

.boxes {
    height: auto !important;
    min-height: 100vh;
}

.single-box {
    z-index: 0;
}

.description-text {
    color: white;
    max-width: 500px;
    margin: auto auto;
}

.text-white {
    color: white;
}

.footer-description {
    position: relative;
    z-index: 1;
}

.login-link {
    color: white;
    text-decoration: underline;
    font-weight: bold;
    font-size: 15px
}

@media (max-width: 768px) {
    .cards-container {
        width: auto;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .main-title {
        font-size: 20px;
    }

    .subscription-card {
        padding: 15px !important;
        border: 2px solid #e5e5e5;
        border-radius: 20px;
        min-height: 0;
        transition: all .2s;
        max-width: 410px;
        margin: 10px auto;
    }

    .card-column {
        padding: 0 !important;
    }
}
.term-container{
    width: fit-content;
    margin: 20px auto;
    background: #d6ffff;
    border-radius: 20px;
    padding: 2px 2px;
}
.cycle{
    border-radius: 35px;
    color: black;
    font-weight: 400;
    font-size: 15px;
    background: transparent;
    padding: 3px 15px;
    cursor: pointer;
    border: 0!important;
}
.selector:hover{
    cursor: pointer;
}
.active{
    background: #3fd1cd;
    color: white;
}
