:root {
    --bs-primary: #6600ff;
    --bs-secondary: #fee106;
    --text: #010202;
    --bs-gray-100: #f5f5f5;
    --bs-gray-200: #e8e8e8;
    --bs-gray-400: #dadada;
    --bs-gray-500: #bebebe;
    --bs-gray-600: #adadad;
    --bs-gray-700: #747474;
    --bs-gray-800: #010202;
}

html,
body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    color: var(--text);
    font-family: Public Sans !important;
}

main {
    background-image: url(https://lirclstaticfiles.azureedge.net/backgrounds/bg_login.png);
    background-position: center;
    background-size: cover;
}

h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    padding: 0;
}

h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    padding: 0;
}

h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    padding: 0;
}

h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    padding: 0;
}

    h6.subtitle1 {
        font-size: 16px;
    }
    h6.body2 {
        font-weight: 400;
        font-size: 14px
    }
    h6.body1 {
        font-weight: 400;
        font-size: 16px
    }
p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    margin: 0;
    padding: 0;
}

.rounded-8 {
    border-radius: 0.5rem;
}

.rounded-16 {
    border-radius: 1rem;
}

.border-gray-400 {
    border-color: var(--bs-gray-400) !important;
}

.color-primary {
    color: var(--bs-primary);
}

.color-gray-500 {
    color: var(--grey-500);
}

.bg-gray-100 {
    background: var(--bs-gray-100) !important;
}

@media (max-width: 540px) {
    .h-sm-100 {
        height: 100%;
    }
}

.min-w-100 {
    min-width: 100px;
}

.max-w-600 {
    max-width: 600px;
}

.min-h-300 {
    min-height: 300px;
}

.min-h-200 {
    min-height: 200px;
}

.cursor-pointer {
    cursor: pointer;
}

/* custom boostrap */
*:focus:not(.no-focus) {
    border-color: var(--bs-primary) !important;
}
*:focus {
    box-shadow: unset !important;
}
.nav-link:focus, .nav-link:hover {
    color: var(--bs-primary);
}

.btn {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    height: 40px;
}

.btn.hover:hover {
    filter: brightness(80%);
}

.btn-primary {
    background-color: var(--bs-primary);
    border: unset;
}

.btn-primary.hover:hover {
    background-color: var(--bs-primary) !important;
}

.btn-primary:disabled {
    background-color: var(--bs-primary);
    filter: brightness(80%);
    pointer-events: unset !important;
    cursor: not-allowed;
}

.btn-outline-primary {
    border-color: var(--bs-primary);
}

.btn-secondary {
    background-color: var(--bs-secondary);
    color: var(--text);
    border: unset;
}

.btn-secondary.hover:hover {
    background-color: var(--bs-secondary);
    color: var(--text);
}

.btn-secondary:focus {
    color: var(--text);
    background-color: var(--bs-secondary);
}

.btn-outline-primary.hover:hover {
    background-color: unset !important;
    border-color: var(--bs-primary) !important;
}

.btn-outline-primary:hover {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

input {
    padding: 10.5px 12px !important;
    border-radius: 8px !important;
    border-color: var(--bs-gray-700) !important;
    color: var(--text);
    height: 40px;
}

.form-control::placeholder {
    color: var(--bs-gray-500);
    font-size: 1rem;
    font-weight: 400;
}

.language-selector {
    height: 32px;
}
/* ------------- */

/* authentication spinner */
.overlay {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    background: #22222257;
}

.overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 75px;
    height: 75px;
    display: inline-block;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.05);
    border-top-color: white;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
}
.bg-role-selector {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    min-height:100%;
}
.card-role {
    background: rgba(244, 240, 250, 1);
    max-width: 340px;
    min-width: 222px;
}
    .card-role:hover {
        background: #F0E5FF;
    }
.content-role {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    height: calc(100% - 72px);
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}
.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.grid-roles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    width: 100%;
    height: 100%;
}
.btn-role {
    font-weight: 400 !important;
    text-align: center !important;
}
.select-country {
    width: 130px;
    height: 32px;
    gap: 8px;
    border-radius: 8px;
    padding-right: 8px;
    padding-left: 8px;
    border-width: 0.5px;
    border-color: #B2B2B2;
    padding-top: 0px;
    padding-bottom: 0px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}
.card-no-role {
    width: 400px;
    height: 296px;
    border-radius: 16px;
    padding: 32px;
  
    background-color: #FFD8D5;
}
.text-red {
    color: #A22F27 !important;
}
.logout-text{
    font-weight:400;
    color:black!important;
}
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
/* ------------- */
