:root {
    --brand-color-indicator: #FF4646;
}

hr {
    height: 0.06em;
    background-color: var(--color-font);
    border: none;
}

.content ul {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-inline-start: 40px;
    list-style-type: disc;
    line-height: 1.5;
}

.column-center {
    text-align: center;
}

.form-error {
    color: #af0c0c;
    background-color: #ffe0e0;
    padding: 0.5em;
    margin: 0.5em 0;
    border-radius: 0.3em;
}

/* Registration Page Start */
.input-select {
    padding: 0.5em;
    width: 100%;
    max-width: 16rem;
    border-radius: .5rem;
    color: var(--color-select-font);
}
.input-date {
    max-width: 10em;
    min-width: 4.2em;
    color: var(--color-select-font);
    text-align: center;
    height: calc(1.5em + 1.25rem + 2px);
    line-height: 1.5;
    padding: .625rem .75rem;
    margin: 0 .1rem;
    border-radius: .5rem;
}
.consent {
    margin: 1.7em 0;
}

.custom-control {
    display: block;
    min-height: 1.5rem;
    padding-left: 3.5rem;
    position: relative;
    print-color-adjust: exact;
    z-index: 1;
}
.custom-control-input {
    height: 1.5rem;
    left: 0;
    opacity: 0;
    position: absolute;
    width: 1.5rem;
    z-index: -1;
}
.custom-control-label {
    margin-bottom: 0;
    position: relative;
    vertical-align: top;
}
.custom-control-label:before {
    background-color: transparent;
    border: 2px solid #fff;
    pointer-events: none;
}
.custom-checkbox .custom-control-label:before {
    border-radius: 0.25rem;
}
.custom-control-label:after {
    background: 50%/100% no-repeat;
}
.custom-control-label:after, .custom-control-label:before {
    content: "";
    display: block;
    height: 1.5rem;
    left: -2.8rem;
    position: absolute;
    top: 0;
    width: 1.5rem;
}
.custom-checkbox .custom-control-label:before {
    border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath fill='%23fff' d='M16 0H0v16h16V0ZM6.222 12.444 1.778 8l1.257-1.257 3.187 3.188 6.743-6.743 1.257 1.256-8 8Z'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:checked~.custom-control-label:after {
    border-radius: 0.25rem;
}


.button-login {
    padding-left: 3rem;
    padding-right: 3rem;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--color-primary-700);
    text-align: center;
}
/* Registration Page End */


/* Home page start */
.main-wrapper {
    margin: 0 auto;
    padding: 1rem;
}

.cards-wrapper {
    max-inline-size: var(--wrapper-max-width);
    min-inline-size: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-block-end: 0.1rem;
    background-color: var(--color-primary-900);
    padding: 0.625rem;
}
.card {
    background-color: var(--color-info-card);
    color: var(--color-info-card-font);
    box-shadow: none;
    
    border-radius: var(--border-radius-card);
    padding: 1rem;
    line-height: 1.3rem;
}

.tile-badge {
    position: absolute;
    top: 0.5em;
    right: 0.6em;
    width: 1.3em;
    height: 1.3em;
    padding: 0.2em;
    border-radius: 50%;
    text-align: center;
    font-size: 90%;
    line-height: 1.4em;
    background-color: var(--brand-color-indicator);
    color: var(--color-font);
    font-weight: bold;
}
/* Home page end */


/* Toggle Switch - Start */
.switch-control {
    height: 2.8em;
}

.switch-control label {
    line-height: 2.6em;
    margin: 0.3em 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.switch,
[dir="ltr"] .switch,
[dir="auto"] .switch {
    float: right;
}
[dir="rtl"] .switch {
    float: left;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-switch-off);
    -webkit-transition: .4s;
    transition: .4s;
    border: solid 1px transparent;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 3px;
    background-color: var(--color-switch-thumb);
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--color-switch-on);
    border: solid 1px var(--color-switch-thumb);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--color-switch-thumb);
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
    width: 60px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Toggle Switch - End */