/* licenced under EUPL, https://eupl.eu/1.2/nl/*/

/*icoon + polling*/
/*old situation*/
#downloadcentrum {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: fit-content;
    max-width: 250px;
    position: absolute;
    top: 50px;
    right: 0px;
    z-index: 200;
    cursor: pointer;
    background: var(--clr-primary-tint-2);
    padding: 10px 5px 10px 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    /*filter: drop-shadow(2px 2px 1px rgba(0,0,0,0.10));*/
}

/*!*downloadcentrum old icon styles*!*/
#downloadcentrum.old-icon .icon.dc {
    fill: #002c4b;
    height: 18px;
    width: 20px;
    cursor: pointer;
}

#downloadcentrum.old-icon .download_polling {
    color: #002c4b;
    font-size: 10px;
    font-weight: 800;
    position: relative;
    margin-left: 0;
}


#downloadcentrum .download_polling  {
    color: white;
    font-size: 10px;
    margin-top: -2px;
    font-weight: 800;
    margin-left: 25px;
    position: absolute;
}


#downloadcentrum_modal:not(.navbar-dropdown) {
    position: absolute;
    z-index: 200;
    top: 50px;
    right: 0;
    height: auto;
    width: 250px;
    background-color: white;
    filter: drop-shadow(2px 2px 1px rgba(0,0,0,0.10));

    animation: expand 0.2s ease-in;
}

@keyframes expand {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        min-width: 250px;
        opacity: 1;
    }

}

.downloadcentrum_modal_flexbox {
    height: auto;
    min-height: 150px;
    /*min-width: 269.84px;*/
    /*padding: 20px;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.downloadcentrum_content_flexbox {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.downloadcentrum_button_flexbox {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    gap: 10px;
}




button.downloadcentrum {
    height: 20px !important;
    font-size: 12px !important;
}


.downloadcentrum_modal_flexbox .detail_modal_header {
    max-height: 53px; /*voor animatie*/
    text-wrap: nowrap; /*voor animatie*/
    margin-top: 0;
    margin-left: 0;
    color: var(--clr-primary);
    font-weight: 600;
    background-color: var(--clr-primary);
    padding: 10px;
    font-size: 12px;
}
.downloadcentrum_modal_flexbox .detail_modal_header div {
    display: inline-flex;
    top: 3px;
    position: relative;
}
.downloadcentrum_modal_flexbox .detail_modal_header svg {
    width: 15px;

}

.bin {
    height: 15px;
    width: 15px;
    cursor: pointer;

    svg {
        fill: var(--clr-primary-tint-2);
    }
}


.download_status svg {
    height: 15px                            !important;
    width: 15px                             !important;
    -webkit-font-smoothing: antialiased;
}

.regel_downloadcentrum {
    margin: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.documentnaam {
    color: var(--main-txt-black);
    font-weight: 500;


    p {
        font-family: monospace;
        font-size: 14px;
        max-width: 185px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.icon_wrapper {
    display: flex;
    gap: 5px;
}

button.sluit_scherm.downloadcentrum {
    letter-spacing: 0.06rem;
    margin: 0 15px 5px 0;
}

div.checkbox_div {
    height: 13px;
    width: 13px;
    /*margin: 0;*/
}

.icon .download_status .gelukt {
    width: 20px;
    height: 20px;
}

.bounce {
    animation: bounce 2s ease infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-3px);}
    60% {transform: translateY(-1px);}
}




