/* licenced under EUPL, https://eupl.eu/1.2/nl/*/

/*icoon + polling*/
#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: #a7b7d2;
    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 icoon navbar*/
.icon.dc {
    fill: #002c4b !important;
    width: 20px;
    cursor: pointer;
}


#downloadcentrum .download_polling  {
    color: var(--default-blue-primary) !important;
    font-size: 10px;
    margin-top: -2px;
    font-weight: 800;
}

#downloadcentrum_modal {
    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(--default-blue-primary);
    font-weight: 600;
    background-color: var(--default-blue-primary-tint-2);
    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;
}

.bin svg{
    fill: var(--default-blue-primary-tint-2);
}

.download_status svg {
    height: 15px                            !important;
    width: 15px                             !important;
    -webkit-font-smoothing: antialiased;
}

.regel_downloadcentrum {
    margin: 0 20px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.documentnaam {
    color: var(--default-blue-primary);
    font-weight: 500;
}

.icon_wrapper {
    display: flex;
    gap: 5px;
}

button.sluit_scherm.downloadcentrum {
    margin: 0 20px 20px 0;
}

div.checkbox_div {
    height: 13px;
    width: 13px;
    /*margin: 0;*/
}
.icon .download_status .gelukt {
    width: 20px;
    height: 20px;
}
.icon svg {
    fill: #821226;
}



/*icoon + polling*/
/*#downloadcentrum {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*}*/

.bounce {
    animation: bounce 2s ease infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-3px);}
    60% {transform: translateY(-1px);}
}

.glow {
    animation: glow 1s infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0px 0px 0px #f2f7fb);
    }
    to {
        filter: drop-shadow(0px 0px 10px white);
    }
}
