@view-transition {
    navigation: auto;
}

body {
    background-color: #F0F5FC;
}

hr {
    border-color: #CDD9EA;
}

ul {
    list-style: disc inside;
    padding-left: 1.5em;
}

.ul-v2 {
    list-style-type: circle;
}

ul li {
    color: #D457F2;
    text-indent: -1.4em;
}

.li-v2 {
    color: #2C76D9;
    text-indent: -1.4em;
}

ul li span,
ol li span {
    color: #000000;
}

ol {
    list-style: decimal inside;
    padding-left: 1.5em;
}

.custom-list {
    counter-reset: list-level-1;
    padding-left: 0;
    list-style: none;
}

.custom-list li {
    counter-increment: list-level-1;
    margin-bottom: 12px;
    position: relative;
    padding-left: 50px;
}

.custom-list>li::before {
    content: counter(list-level-1) ".";
    position: absolute;
    left: 0;
    top: 0;

    font-weight: bold;
    color: #D457F2;
    font-size: 24px;
    width: 40px;
    text-align: right;
    margin-right: 10px;
}


.custom-list ol {
    counter-reset: list-level-2;
    padding-left: 20px;
    margin-top: 10px;
    list-style: none;
}

.custom-list ol li {
    counter-increment: list-level-2;
    margin-bottom: 8px;
}

.custom-list ol li::before {
    content: counter(list-level-1) "." counter(list-level-2) ".";
    position: absolute;
    left: 0;
    top: 0;

    font-weight: normal;
    color: #000000;
    font-size: 24px;
    width: 40px;
    text-align: right;
    margin-right: 10px;
}

.horizontal-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

button {
    cursor: pointer;
}

.btn-v1 {
    background-color: #D457F2;
    border: none;
    border-radius: 29px;
    color: white;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: bold;
    line-height: normal;
    transition: 0.3s ease;
}

.btn-v1:hover {
    background-color: #2C76D9;
}

.btn-v2 {
    background-color: transparent;
    border: 2px solid #D457F2;
    border-radius: 29px;
    color: #D457F2;
    padding: 8px 30px;
    font-size: 14px;
    transition: 0.3s ease;
}

.not-active {
    cursor: not-allowed;
    color: #b6b6b6;
    border: 2px solid #b6b6b6;
}

.btn-v2:hover {
    transform: scale(1.1);
}

.a-v1 {
    color: #2C76D9;
    text-decoration: underline;
    transition: 0.3s ease;
}

.a-v1:hover {
    color: #205eb2;
}

.card-v1 {
    background-color: #2C76D9;
    border-radius: 30px;
    color: white;
    padding: 23px;
}

.card-v2 {
    background-color: #D4E5FD;
    border-radius: 30px;
    color: #2C76D9;
    padding: 30px;
}

.card-v3 {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 25px #ACB4E353;
    border-radius: 29px;
    padding: 33px 28px;
}

.card-v4 {
    background-color: transparent;
    border: 2px solid #CDD9EA;
    border-radius: 10px;
    padding: 22px;
    height: 100%;
    cursor: pointer;
    transition: 0.3s ease;
}

.card-v4:hover {
    border: 2px solid #2C76D9;
    color: #2C76D9;
}

.card-v4.selected {
    border: 2px solid #2C76D9;
    color: #2C76D9;
}

.card-v4.selected.fit-content {
    height: fit-content;
}

.pill-v1 {
    background-color: transparent;
    border: 2px solid #CDD9EA;
    border-radius: 29px;
    padding: 14px 30px;
    height: 100%;
    cursor: pointer;
    transition: 0.3s ease;
}

.pill-v1:hover {
    border: 2px solid #2C76D9;
    color: #2C76D9;
}

.pill-v1.selected {
    border: 2px solid #2C76D9;
    color: #2C76D9;
}

table {
    border: 1px solid #CDD9EA;
    border-radius: 0 0 10px 10px;
    border-collapse: separate;
}

caption {
    background-color: #2C76D9;
    border-radius: 10px 10px 0 0;
    font-size: 24px;
    font-weight: bold;
    color: white;
    padding: 15px;
}

th {
    text-align: start;
    white-space: nowrap;
}

th,
td {
    border-bottom: 1px solid #CDD9EA;
    border-right: 1px solid #CDD9EA;
    padding: 12px;
}

td {
    vertical-align: top;
}

table tr th:last-child {
    border-right: none !important;
}

table tr td:last-child {
    border-right: none !important;
}

table tr:last-child td {
    border-bottom: none !important;
}

.radio-v1 {
    background-color: transparent;
    border-color: #D457F2;
}

.label-v1 {
    color: #D457F2;
    font-size: 14px;
    font-weight: bold;
    line-height: normal;
}


.line-height-normal {
    line-height: 1.2;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.fw-bold {
    font-weight: bold;
}

.fs-14 {
    font-size: 14px;
}

.fs-18 {
    font-size: 18px;
}

.fs-24 {
    font-size: 24px;
}

.fs-27 {
    font-size: 27px;
}

.fs-32 {
    font-size: 32px;
}

.fs-42 {
    font-size: 42px;
}

.fs-81 {
    font-size: clamp(1.5rem, -2.9531rem + 14.25vw, 5.0625rem);
}

.color-v1 {
    color: #D457F2;
}

.color-v2 {
    color: #2C76D9;
}

/* Fade-in */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.8s;
}