@keyframes rise {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-150px);
    }
}

@keyframes pulse_once {
    0% { color: black }
    50% { color: #d10000 }
    100% { color: black }
}

.rise {
    animation: rise .3s;
}

#msisdn {
    width: 100%;
    max-width: 310px;
    padding: 19px 5px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 24px;
    border: solid 1px #dee2e6;
    border-radius: 6px;
    color: #000000;
    line-height: 1;
    background: #ffffff!important;
}

.invalid {
    animation: pulse_once .5s;
}

.terms {
    width: 90%;
    margin: 0 auto 20px;
    font-size: 12px;
    color: #b2b2b2;

    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.terms input[type="checkbox"] {
    -webkit-appearance: checkbox;
    display: block;

    min-width: 16px;
    min-height: 16px;
}

.disclaimer {
    font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    line-height: 12px;
    text-align: left;
    width: 90%;

    position: relative;
    display: block;
    margin: 16px auto;
    max-width: 640px;
    font-size: 12px;
    background: #e6e6e6;

    border-radius: 10px;
    color: #000;
    z-index: 2
}

.disclaimer .body {
    padding-bottom: 1px;
}

.disclaimer .w30 {
    width: 30%;
    font-size: 12px;
}

.disclaimer .w70 {
    width: 70%;
    background: #ffffff;
    padding: 5px;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    color: #909090;
    font-size: 12px
}

.disclaimer a {
    color: inherit;
    text-decoration: none
}

.disclaimer .body > div {
    display: flex;
    align-items: center;
    padding: 2px 10px;
    list-style: none;
    line-height: 1.25;
    margin-bottom: 3px;
}

.disclaimer span {
    border: none;
    background: transparent
}

.disclaimer #header {
    font-size: 16px;
    margin-bottom: 6px;
    background-color: #80878c;
    position: relative;
    border-radius: 10px 10px 0 0;
    padding: 6px;
    margin-right: 20px;
    color: #f4f4f4;
    font-weight: bold;
    width: 100%;

    display: flex;
    align-items: center;
}

.disclaimer #header::before {
    content: "i";
    display: inline-block;
    margin-right: 8px;
    width: 22px;
    height: 22px;
    background: #ef4747;
    border-radius: 8px;
    color: #f4f4f4;
    font-size: 12px;
    font-weight: bold;
    line-height: 22px;
    text-align: center
}
.terms{
    padding-top: 10rem;
    transition: padding-top 0.5s ease;
}
.terms.slide-up {
    padding-top: 0;
}