.project-bar-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background: #12151f;
    padding: 15px 10px;
    border-radius: 5px;
}
.bg-project-bar-info{
    background: #12151f;
}
.project-breadcrumb {
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    /*border: 1px solid #3c4576;*/
    border: 1px dashed #3c4576;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    transition: 0.8s;
}

.project-breadcrumb:hover {
    background: #1b243f;
    border: 1px dashed #88b979;
    cursor: pointer;
    transition: 0.8s;
}

.outline-animation{
    border: 1px dashed #3c4576;
}
.outline-animation:hover {
    border: 1px dashed #88b979;
    cursor: pointer;
    transition: 0.8s;
}

.project-breadcrumb-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ml-auto {
    margin-left: auto;
}

.icon-color {
    fill: #b7bde4;
}


/*Dialog Styles*/
dialog {
    padding: 1rem 3rem;
    background: rgba(255, 255, 255, 0.93);
    /*max-width: 400px;*/
    max-width: 80%;
    padding-top: 2rem;
    border-radius: 20px;
    border: 0;
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
    -webkit-animation: fadeIn 1s ease-in-out both;
    animation: fadeIn 1s ease-in-out both;
    background-position: center;
    background-image: linear-gradient(#3c4576 1px, transparent 0), linear-gradient(90deg, #3c4576 1px, #12151f 0);
    background-size: 40px 40px;
}

dialog::backdrop {
    -webkit-animation: fadeIn 1s ease both;
    animation: fadeIn 1s ease both;
    background: rgb(19 18 23 / 24%);
    z-index: 2;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(5px);
}

dialog .x {
    filter: grayscale(1);
    border: none;
    background: none;
    position: absolute;
    top: 15px;
    right: 10px;
    transition: ease filter, transform 0.3s;
    cursor: pointer;
    transform-origin: center;
}

dialog .x:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

dialog h2 {
    font-weight: 600;
    font-size: 2rem;
    padding-bottom: 1rem;
}

dialog p {
    font-size: 1rem;
    line-height: 1.3rem;
    padding: 0.5rem 0;
}

dialog p a:visited {
    color: rgb(var(--vs-primary));
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


#projects-main-wrapper {
    position: relative;
    border: 1px dashed #88b979;
    background-position: center;
    background-image: linear-gradient(#3c4576 1px, transparent 0), linear-gradient(90deg, #3c4576 1px, #12151f 0);
    background-size: 40px 40px;
    border-radius: 5px;
}

#additional-info-top-project {
    font-size: 14px;
    z-index: 1;
    position: absolute;
    left: 5px;
    top: 5px;
    background: #2a325be3;
    padding: 10px;
    border-radius: 2px;
}

