/*MODAL*/

.modalListCards {
    display: flex;
    flex-direction: column;
    width: 100%
}

.modalListCards .groupCards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 10px
}

.modalListCards .groupAttachments {
    display: flex;
    flex-direction: column;
    width: 100%
}

.modalListCards .groupAttachments .attachment {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #e9edf4;
    padding: 10px 0;
}

@media screen and (min-width: 600px) {
   .modalListCards .groupAttachments .attachment {
        flex-direction: row
    }
}

.modalListCards .groupAttachments .attachment .button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%
}

@media screen and (min-width: 600px) {
    .modalListCards .groupAttachments .attachment .button {
        width: 150px
    }
}

.modalListCards .groupAttachments .attachment .button a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 130px;
    min-height: 25px;
    padding: 5px;
    background-color: var(--color_primary);
    color: #fff;
    border: 1px solid var(--color_primary);
    border-radius: 5px;
    font-weight: 500;
    font-size: 1.2rem;
    font-family: var(--font_family);
    cursor: pointer;
    transition: all .3s ease;
    outline: none
}

.modalListCards .groupAttachments .attachment .button a:hover {
    background-color: var(--color_light);
    border: 1px solid var(--color_dark);
    color: #fff
}


.modalListCards .cardItem {
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: all .3s ease
}

.modalListCards .cardItem:nth-of-type(odd) {
    background-color: #f6f6f6
}

.modalListCards .cardItem:nth-of-type(even) {
    background-color: #f1f1f1
}

.modalListCards .cardItem .cardItem__resume {
    padding: 15px 30px;
    position: relative;
    transition: all .3s ease;
    cursor: pointer
}

.modalListCards .cardItem .cardItem__resume span {
    position: absolute;
    right: 15px;
    top: calc(50% - 7px);
    color: var(--color_primary);
    font-weight: 900;
    font-size: 1.4rem;
    transition: all .3s ease
}

.modalListCards .cardItem .cardItem__resume p {
    font-size: 1.3rem;
    color: var(--color_primary);
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
   -webkit-line-clamp: 2; 
   -webkit-box-orient: vertical;
}

.modalListCards .cardItem .cardItem__resume .cardItem__resume--description {
    color: var(--color_primary);
}

.modalListCards .cardItem .cardItem__resume h1 {
    display: flex;
}

.modalListCards .cardItem .cardItem__resume:hover {
    background-color: var(--color_primary);
    transition: all .3s ease
}

.modalListCards .cardItem .cardItem__resume:hover span {
    color: #fff;
    transition: all .3s ease
}

.modalListCards .cardItem .cardItem__resume:hover p {
    color: #fff;
    transition: all .3s ease
}

.modalListCards .cardItem .cardItem__details {
    display: flex;
    flex-direction: column;
    width: 100%;
    z-index: -9;
    transition: all .3s ease
}

.modalListCards .cardItem .cardItem__details .cardItem__details--background {
    background-color: rgba(0, 0, 0, .75);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transition: all .3s ease
}

.modalListCards .cardItem .cardItem__details .cardItem__details--info {
    display: flex;
    flex-direction: column;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    max-width: 800px;
    border-radius: 5px;
    position: fixed;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 10px), calc(-50% - 10px));
    overflow: auto;
    padding: 10px;
    margin: 10px 0 0 10px;
    transition: all .3s ease;
    opacity: 0;
}

@media screen and (min-width: 1024px) {
    .modalListCards .cardItem .cardItem__details .cardItem__details--info {
        height: 100%;
        max-height: 600px;
        padding: 20px
    }
}

.modalListCards .cardItem .cardItem__details .cardItem__details--info::-webkit-scrollbar {
    width: 16px
}

.modalListCards .cardItem .cardItem__details .cardItem__details--info::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 0 10px 10px 0
}

.modalListCards .cardItem .cardItem__details .cardItem__details--info::-webkit-scrollbar-thumb {
    border: 5px solid rgba(0, 0, 0, 0);
    border-radius: 100px;
    background-color: #8070d4;
    background-color: var(--color_dark);
    background-clip: content-box
}

.modalListCards .cardItem .cardItem__details .cardItem__details--info .cardItemHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ccc;
    margin-bottom: 10px;
    padding-bottom: 10px
}

.modalListCards .cardItem .cardItem__details .cardItem__details--info .cardItemHeader h2 {
    color: var(--color_light);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px
}

.modalListCards .cardItem .cardItem__details .cardItem__details--info .cardItemHeader button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0);
    background-color: var(--color_primary);
    color: #fff;
    transition: all .3s ease
}

.modalListCards .cardItem .cardItem__details .cardItem__details--info .cardItemHeader button:hover {
    cursor: pointer;
    border: 1px solid var(--color_dark);
    background-color: rgba(0, 0, 0, 0);
    color: var(--color_dark);
    transition: all .3s ease
}

.modalListCards .cardItem .cardItem__details .cardItem__details--info .cardItemBody .sectionTitle {
    display: flex;
    width: 100%;
    font-weight: 500;
    color: var(--color_primary);
    font-size: 1.4rem;
    margin-top: 15px;
    font-weight: 600
}

.modalListCards .cardItem .cardItem__details .cardItem__details--info .cardItemBody .card {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    padding: 5px
}

.modalListCards .cardItem .cardItem__details .cardItem__details--info .cardItemBody .card.highlight {
    padding: 10px;
    background-color: #f6f6f6
}

.modalListCards .cardItem .cardItem__details .cardItem__details--info .cardItemBody .card .cardTitle {
    color: var(--color_primary);
    /* font-weight: 400; */
    font-size: 1.4rem
}

.modalListCards .cardItem .cardItem__details .cardItem__details--info .cardItemBody .card p {
    color: var(--color_primary);
    font-size: 1.3rem;
    /* font-weight: 500 */
}

.modalListCards .cardItem .cardItem__details .cardItem__details--info .cardItemFooter {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    align-items: center;
    margin: 30px 0 0 0
}

.modalListCards .cardItem .cardItem__details .cardItem__details--info .cardItemFooter button,
.modalListCards .cardItem .cardItem__details .cardItem__details--info .cardItemFooter a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 1.4rem;
    transition: all .3s ease;
    cursor: pointer;
    font-weight: 500;
}

.modalListCards .cardItem .cardItem__details .cardItem__details--info .cardItemFooter button {
    background-color: rgba(0, 0, 0, 0);
    color: #999;
    border: 0
}

.modalListCards .cardItem .cardItem__details .cardItem__details--info .cardItemFooter button:hover {
    color: var(--color_dark);
    transition: all .3s ease
}

.modalListCards .cardItem .cardItem__details .cardItem__details--info .cardItemFooter a {
    border: 1px solid var(--color_primary);
    color: var(--color_primary);
    background-color: #fff;
    text-decoration: none
}

.modalListCards .cardItem .cardItem__details .cardItem__details--info .cardItemFooter a:hover {
    background-color: var(--color_primary);
    border: 1px solid var(--color_dark);
    color: #fff;
    transition: all .3s ease
}

.modalListCards .cardItem.itemActive {
    transition: all .3s ease
}

.modalListCards .cardItem.itemActive .cardItem__details {
    opacity: 1;
    z-index: 999999;
    transition: all .3s ease
}

.modalListCards .cardItem.itemActive .cardItem__details .cardItem__details--background {
    opacity: 1;
    transition: all .3s ease
}

.modalListCards .cardItem.itemActive .cardItem__details .cardItem__details--info {
    opacity: 1;
    top: 50%;
    transition: all .3s ease
}

.sec-obj {
    padding: 10px;
    background-color: #f6f6f6;
}

.w100line {
    border-top: 1px solid #e9edf4;
}