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

.light-text {
    color: var(--light-grey);
}

button {
    border: 0;
    background-color: transparent;
}

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;
}

.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-body img {
    max-width: 100%;
}

.accordion.open {
    box-shadow: 0 0 2px rgb(49 112 118 / 24%), 0 16px 32px -4px rgb(49 112 118 / 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;
    }

    .task-completed {
        font-size: 12px;
    }
}

.card-file {
    display: flex;
}

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

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

.red-mark {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: red;
    top: -2px;
    right: 2px;
}

.application-mark {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: none;
}

.application-mark svg {
    width: 100%;
    height: 100%;
    filter: invert(33%) sepia(30%) saturate(792%) hue-rotate(137deg) brightness(101%) contrast(85%);
}

.card-mark.active .application-mark {
    display: block;
}

.card-mark {
    border: 2px solid white;
}

.card-mark.active {
    border: 2px solid var(--main-color);
}

.ck-editor__editable_inline {
    min-height: 400px;
}

.task-completed {
    color: var(--light-grey);
}

.add-comment__field, .add-comment__actions {
    display: none;
}

.add-comment__new {
    display: flex;
}

.add-comment.open .add-comment__actions {
    display: flex;
}

.add-comment.open .add-comment__field {
    display: block;
}

.add-comment.open .add-comment__new {
    display: none;
}