:root {
    --primary-color: #02c2a5;
}

a {
    text-decoration: none !important;
}

h11 {
    color: rgb(247, 144, 144);
}

.form-label {
    font-size: .92857143em !important;
    margin-bottom: 0.1rem !important;
}

.h-100 {
    min-height: 100vh;
}

.text-sm {
    font-size: 12px !important;
}

.text-smm {
    font-size: 13.5px !important;
}

.container-loading {
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 999999 !important;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
}

.logo {
    width: 350px;
}

.loader {
    width: 100%;
    height: 4px;
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.2);
    position: relative;
}

.loader::before {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 30px;
    animation: ani 1s ease-in-out infinite;
}

@keyframes ani {
    50% {
        width: 100%;
    }

    100% {
        width: 0;
        right: 0;
        left: unset;
    }
}

/* Maintainer */
.carousel-item-bg {
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    overflow: auto;
}

.right {
    z-index: 10;
    height: 100vh;
    overflow-y: auto;
    padding: 0 !important;
    background: #fff;
}

.center-xs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

#progressbar {
    margin-top: 1em !important;
    margin-bottom: 1em !important;
    padding-left: 0;
    overflow: hidden;
    counter-reset: step
}

#progressbar li {
    list-style-type: none;
    color: #111;
    text-transform: uppercase;
    text-align: center;
    font-size: 9px;
    width: 30%;
    float: left;
    position: relative
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 20px;
    line-height: 20px;
    display: block;
    font-size: 10px;
    color: #111;
    background: #CCC;
    border-radius: 3px;
    margin: 0 auto 5px auto
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #CCC;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1
}

#progressbar li:first-child:after {
    content: none
}

#progressbar li.active:before,
#progressbar li.active:after {
    color: white;
}

#progressbar li.active:before,
#progressbar li.active:after {
    background-color: var(--primary-color) !important;
}

/*
Input Custom
*/
.input-container {
    position: relative;
    height: 3rem;
    width: 100%;
}

.input-container input {
    position: absolute;
    height: 100%;
    width: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
}

.input-container .radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 300ms ease;
}

.input-container ion-icon {
    color: var(--primary-color);
    font-size: 3rem;
}

.input-container label {
    color: var(--primary-color);
    font-size: 0.80rem;
    font-weight: 600;
    text-transform: uppercase;
}

input:checked+.radio-tile {
    background-color: var(--primary-color);
    box-shadow: 0 0 12px var(--primary-color);
    transform: scale(1.1);
}

input:hover+.radio-tile {
    box-shadow: 0 0 12px var(--primary-color);
}

input:checked+.radio-tile ion-icon,
input:checked+.radio-tile label {
    color: white;
}

.btn_other {
    cursor: pointer;
}

.arrow_other {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.box-alert {
    position: absolute;
    z-index: 9999;
    width: 100%;
    top: 0;
    left: 0;
}

.bg-login {
    background-image: url(/assets_admin/img/bg-login.jpg);
    background-repeat: no-repeat;
    background-position: top center !important;
    background-size: 100% !important;
}

.swal2-container {
    z-index: 9999 !important;
}

.swal2-title {
    font-size: 1.2em !important;
}

.thanksH1 {
    background-color: #3b4443;
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    z-index: 2;
    position: relative;
    font-weight: 900;
}

.thanksH2 {
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 900;
    box-shadow: 0 8px 32px 0 rgba(82, 82, 82, 0.37);
}

.text-smm {
    font-size: 10px !important;
}