body {
    background: linear-gradient(135deg, #95c5f9, #95c5f944);

    --highlight-color: #4e83bd;
    --progress-color: #0008;
}

header:has(.title h2) {
    background: #FFF;
    color: var(--highlight-color);
    border-radius: 0 0 1rem 1rem;
}

header:has(.title h2) .brand {
    width: fit-content;
    --brand-width: 4rem;
}

header .title h1 ,
header .title h2 {
    text-align: left;
    padding: 0;
    color: inherit;
    margin: 0;
}

header .title h1 {
    font-size: 0.8rem;
    font-weight: bold;
}

header .title h2 {
    font-size: 0.7rem;
    font-weight: normal;
}

section {
    color: white;
}

section:has(.progress-container) {
    padding-top: 6rem;
}

.card {
    color: #000d;
    background: #fffc;
}

.btn {
    background: #777;
    color: #fff;
}

.btn.enabled {
    background-color: #e4a732;
}

footer, footer a {
    color: #0008;
}

body.orange {
    background: linear-gradient(184deg, #fc7c13 0%, #fff686 70%, #882d2d 100%);

    --highlight-color: #fd9327;

    --tc-background-color: #db6a46;
    --tc-baloon-color: #fff;
    --tc-color: #fff;
    --tc-active-color: #460b45;
    --tc-border: solid 2px #fdd422;
}

.orange header:has(.title h2) {
    background-color: #fff;
    color: #1c120f;
}

.orange footer,
.orange footer a {
    color: white;
}

.orange ol li::before {
    background: #fdd422;
}

.orange .sector {
    stroke: #fdd422!important;
}

.orange .checkmark {
    fill: #db6a46!important;
}

.orange .phone-input,
.orange .pin-input input {
    border: 2px solid #fdd422;
}

.orange .btn.enabled {
    background-color: #e4a732;
}

.orange .action .triangle-shape {
    fill: #db6a46;
}



body.purple {
    background: linear-gradient(180deg, #2f62c9 0%, #c412b3 70%, #460b45 100%);
    color: #fff;
    --highlight-color: #460b45;

    --tc-background-color: #c412b3;
    --tc-baloon-color: #fff;
    --tc-color: #fff;
    --tc-active-color: #460b45;
    --tc-border: solid 2px #00a7ff;
}

.purple .btn {
    background-color: #ccc;
    color: #fff;
}

.purple ol li::before {
    background: #2f62c9;
    color: #fff;
}

.purple .progress-ring {
    background: #fff;
}

.purple .sector {
    stroke: #6f42b7;
}

.purple .checkmark {
    fill: #72c43c;
}

.purple .phone-input,
.purple .pin-input input {
    border: 2px solid #187aff;
    box-shadow: 0 0 .5rem rgba(24,122,255,.5);
    background-color: #fff;
}

.purple .phone-input.complete,
.purple .pin-input.complete input {
    border-color: #86c152;
}

.purple .phone-input input,
.purple .phone-input .msisdn_leading_digits,
.purple .pin-input input {
    color: #777;
}

.purple .phone-input .phone {
    background-color: #ecefff;
}

.purple .checkmark__icon {
    stroke: #fff;
    box-shadow: inset 0 0 0 #67b9db;
}

.purple header:has(.title h2) {
    background-color: #fff;
    color: #2f62c9;
}

.purple footer,
.purple footer a {
    color: #fffb;
}

.purple .links a {
    color: #fff;
}

.purple .btn {
    background-color: #777;
}

.purple .btn.enabled {
    background-color: #e4a732;
}

.purple .card {
    background-color: rgba(255, 255, 255, .85);
    color: #1a1a1a;
}

.purple .action .triangle-shape {
    fill: #187aff;
}

.purple .sms-highlight {
    color: #2b669c;
}

ol {
    counter-reset: item;
    display: flex;
    flex-flow: column;
    list-style: none;
    margin: 0 auto;
    max-width: 360px;
    padding: 1rem;
    text-align: left;
}

ol li {
    align-items: center;
    counter-increment: item;
    display: flex;
    margin-bottom: 10px;
}

ol li::before {
    align-items: center;
    border-radius: .5rem;
    content: counter(item);
    background: #9ecafa;
    color: #fff;
    display: inline-flex;
    flex-shrink: 0;
    font-weight: bold;
    justify-content: center;
    height: 1.75rem;
    width: 1.75rem;
    margin-right: .5rem;
}

.blue ol li {
    color: black
}

.progress-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -85px auto 0;
}

.progress-ring {
    background: #fff;
    box-shadow: 0 0 .75rem rgba(0,0,0,.125);
    border-radius: 50%;
    transform: rotate(-30deg);
}
/*
	.progress-container::before {
		border-radius: 50%;
		content: "";
		height: 100%;
		width: 100%;
		background: linear-gradient(450deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.35) 100%);
		position: absolute;
		z-index: 3;
	}
*/
.progress-container .sector {
    fill: none;
    stroke: #4683bc;
    stroke-width: 12;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    opacity: 0;
    transition: stroke-dashoffset 0.5s ease-in-out, opacity 1s ease-in-out;
}

.progress-container .checkmark {
    position: absolute;
    font-size: 2.5rem;
    fill: #2f62c9;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.progress-text {
    animation: 2s opacity forwards;
    text-align: center;
    margin: 1rem 0 2rem;
    font-size: 1.2rem;
    color: var(--progress-color);
}

.progress-text.enabled {
    animation: none;
    color: inherit;
    font-size: 1.5rem;
    font-weight: 700;
}

@keyframes opacity {
    50% { opacity: .25; }
}

.action .triangles {
    display: none;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 0;
}

.action:has(input) .triangles {
    display: block;
}

.action .complete .triangles {
    animation-name: none;
    display: none;
}

.action .triangle-icon {
    height: 20px;
    width: 20px;
}

.action .triangle-shape {
    fill: #187aff;
    stroke: white;
    stroke-width: 5%;
}

.action .triangle-icon {
    position: absolute;
    top: 35%;

}

.action .triangle-icon:first-of-type {
    animation: move 1s infinite;
    right: 100%;
    transform: rotate(90deg);
}

.action .triangle-icon:last-of-type {
    animation: move1 1s infinite;
    left: 100%;
    transform: rotate(-90deg);
}

@keyframes move {
    25% {
        transform: translateX(-.25rem) rotate(90deg);
    }
    50% {
        transform: translateX(.25rem) rotate(90deg);
    }
}

@keyframes move1 {
    25% {
        transform: translateX(.25rem) rotate(-90deg);
    }
    50% {
        transform: translateX(-.25rem) rotate(-90deg);
    }
}

body.download {
    background: #fff linear-gradient(135deg, #f5f3f0, #fff);
    --theme-color: #2a092b;
    --highlight-color: #ff8800;
    color: var(--theme-color);
    flex: 1;
}

.download header {
    justify-content: flex-start;
}

.download header {
    background: grey!important;
    border-radius: 0!important;
}

.download .title {
    display: none;
}

.download .brand {
    --brand-width: 100%!important;
    width: 100%!important;
}
.download h1 {
    color: var(--theme-color);
}

.download ol li::before {
    color: #319ad1;
}

.download .img_fit {
    margin-top: 2rem;
    width: 100%;
    height: 10rem;
    background: center / contain url(../../images/bg/file_download.png) no-repeat;;
}

.download .btn {
    background: linear-gradient(#ff8800, #ff8800);
    border-radius: 3rem;
    color: white;
}

.download .card {
    background: transparent;
    color: var(--theme-color);
}