:root {
    --main-color: #2F6E74;
    --hover-main-color: #2F6E74;
    --light-grey: #959494;
}

a {
    color: black;
}

a:hover {
    color: var(--hover-main-color);
}

h3 {
    margin: 0;
    margin-right: 15px;
}

body {
    font-family: 'Rubik', serif;
}

label {
    color: var(--light-grey);
}

.btn {
    margin: 0 5px;
    box-shadow: 0 0 2px rgb(145 158 171 / 24%), 0 16px 32px -4px rgb(145 158 171 / 24%);
}

.btn-success {
    background-color: var(--main-color);
}

.btn-success:hover, .btn-success:active {
    background-color: var(--hover-main-color);
}

.btn-light {
    background-color: transparent;
    border: 1px solid rgba(145, 158, 171, 0.32);
    color: #212B36;
    box-shadow: 0 0;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
}

.btn-icon svg {
    width: 18px;
    height: 18px;
}

.btn-icon-text svg {
    margin-right: 10px;
}

.card {
    border: 0px;
    box-shadow: 0 0 2px rgb(145 158 171 / 24%), 0 16px 32px -4px rgb(145 158 171 / 24%);
}

.header {
    box-shadow: 0 0 2px rgb(145 158 171 / 24%), 0 16px 32px -4px rgb(145 158 171 / 24%);
}

.nav-link {
    color: black;
}

.nav-link.active {
    color: var(--main-color);
}

.nav-link:hover {
    color: var(--hover-main-color);
}

.logout-icon {
    display: block;
    width: 24px;
    height: 24px;
}

.logout-icon svg {
    width: 100%;
    height: 100%;
}

.logout-icon:hover svg {
    filter: invert(33%) sepia(30%) saturate(792%) hue-rotate(137deg) brightness(101%) contrast(85%);
}

.breadcrumb {
    margin: 25px 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #c1c4c7;
    content: '•';
}

.breadcrumb-item a {
    color: var(--light-grey);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--hover-main-color);
}

.app-card {
    position: relative;
    padding-top: 40px;
}

.app-actions {
    position: absolute;
    top: 15px;
    right: 10px;
}

.accordion {
    box-shadow: none;
}

.accordion-body {
    height: 0;
    padding: 0;
    overflow: hidden;
}

.accordion.open {
    box-shadow: 0 0 2px rgb(145 158 171 / 24%), 0 16px 32px -4px rgb(145 158 171 / 24%);
}

.accordion.open .accordion-body {
    height: auto;
    padding: 20px;
}

.alerts-container {
    width: 25vw;
    position: absolute;
    top: 80px;
    right: 30px;
}

.alert {
    position: relative;
    padding-right: 30px;
}

.alert-close {
    cursor: pointer;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 15px;
    bottom: 0;
    width: 18px;
}

.alert-close svg {
    width: 100%;
}

@media (max-width: 768px) {
    .alerts-container {
        width: 100vw;
        position: absolute;
        top: 25px;
        right: 0;
        left: 0;
    }
}

.card-file {
    display: flex;
}

.card-file svg {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}

.invalid-feedback {
    display: block !important;
}