@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&display=swap');

:root {
    --bs-info-bg-subtle: #d1ecf1;
    --bs-info-border-subtle: #bee5eb;
}

html {
    font-size: 90%;
    width: 100%;
    height: 100%;
}

body {
    font-family: "Montserrat", sans-serif;
}

.modal-backdrop {
    width: 100%;
    height: 100%;
}

a,
.btn-link {
    color: #0366d6;
}

a:not(.btn):not(.nav-link):hover {
    text-decoration: underline;
}

.accordion-item {
    border: none;
    background-color: transparent;
}

.list-group-item {
    padding: 0.75rem 1.25rem;
    background-color: transparent;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item.show {
    background-color: #0d4d67;
    color: white !important;
}

.dropdown-item.active:hover,
.dropdown-item:active:hover,
.dropdown-item.show:hover {
    background-color: #0b3d54;
    color: white !important;
}

.dropdown-item:focus {
    background-color: #0b3d54;
    color: white !important;
}

.dropdown-item:hover {
    background-color: #eceff1;
    color: rgba(4, 44, 61, 1);
}

.btn-primary {
    color: #fff;
    background-color: #0d4d67;
    border-color: #0d4d67;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #0b3d54;
    border-color: #0b3d54;
    color: #fff;
}

.btn-primary.show {
    background-color: #0b3d54;
    border-color: #0b3d54;
    color: #fff;
}

.btn-primary:active {
    background-color: #093144 !important;
    border-color: #093144 !important;
    color: #fff !important;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
}

.btn-primary:disabled,
.btn-primary.disabled {
    color: #fff;
    background-color: #0d4d67;
    border-color: #0d4d67;
    opacity: 0.65;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-outline-primary {
    color: #0d4d67;
    border-color: #0d4d67;
    background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    color: #fff;
    background-color: #0d4d67;
    border-color: #0d4d67;
}

.btn-outline-primary.show {
    background-color: #0b3d54;
    border-color: #0b3d54;
    color: #fff;
}

.btn-outline-primary:active {
    background-color: #093144 !important;
    border-color: #093144 !important;
    color: #fff !important;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
}

.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
    color: #0d4d67;
    border-color: #0d4d67;
    background-color: transparent;
    opacity: 0.65;
    cursor: not-allowed;
    box-shadow: none;
}

.bg-primary {
    background-color: #0d4d67 !important;
}

.form-control:focus {
    box-shadow: 0 0 8px rgba(13, 77, 103, 0.3);
    border-color: #0d4d67;
}

.form-select:focus {
    box-shadow: 0 0 8px rgba(13, 77, 103, 0.3);
    border-color: #0d4d67;
}

.form-check-input:focus {
    box-shadow: 0 0 8px rgba(13, 77, 103, 0.3);
    border-color: #0d4d67;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}


#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* Loading display  */
.loading-section {
    text-align: center;
    height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.loading-section h2 {
    color: #000000;
}

.loader-dot {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #dc0025;
    display: inline-block;
    -webkit-animation: grow 2.1s infinite ease-in-out both;
    animation: grow 2.1s infinite ease-in-out both;
}

.loader-dot.dot1 {
    -webkit-animation-delay: -0.96s;
    animation-delay: -0.96s;
}

.loader-dot.dot2 {
    -webkit-animation-delay: -0.48s;
    animation-delay: -0.48s;
}

.dotted-tooltip {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    cursor: help;
}

.dotted-tooltip::after {
    content: "";
    width: 100%;
    border-bottom: 1px dotted currentColor;
    margin-top: 2px;
}

@media (max-width: 767.98px) {
    .user-wrapper {
        min-height: 100vh;
    }

    .wallpaper-wrapper {
        display: none !important;
    }
}

@keyframes grow {

    0%,
    80%,
    100% {
        transform: scale(0)
    }

    40% {
        transform: scale(1.0)
    }
}