/* Download */

.download-container{
    display: flex;
    flex-direction: column;
}

.download{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background-color: #fff;
    color: #242424;
    min-height: 80px;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
    border-radius: 15px;
}

.download:last-child{
    border-bottom: 0 none;
}

.download p{
    padding: 0;
    margin: 0;
}

.download-type{
    width: 280px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    font-weight: 600;
}

.download-name{
    flex: 1;
    padding-left: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.download-button{
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-button img{
    max-width: 44px;
    display: block;
    transform: scale(1);
    transition: all 0.2s ease-in-out;
}

.download-button img:hover{
    transform: scale(1.15);
}


/* Schnelleinstieg */

.schnelleinstieg {
    position: relative;
    display: inline-block;
    font-family: "Fira Sans", Sans-serif;
}

.schnelleinstieg-button {
    background-color: #004E9E;
    color: white;
    padding: 10px 15px;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    width: 300px;
    max-width: 100%;
    text-align: left;
}

.schnelleinstieg-button:hover,.schnelleinstieg-button:active,.schnelleinstieg-button:focus {
    background-color: #004E9E;
}

.schnelleinstieg-content {
    display: block;
    position: absolute;
    background-color: #f9f9f9;
    width: 300px;
    max-width: 100%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1;
    padding: 5px 0;
}

.schnelleinstieg-content a {
    color: #004E9E;
    font-size: 14px;
    font-weight: 900;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease-in-out;
}

.schnelleinstieg-content a:hover {
    padding-left: 25px;
}

.schnelleinstieg:hover .schnelleinstieg-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (min-width: 768px){
    .schnelleinstieg-button {
        font-size: 28px;
        width: 350px;
    }
    .schnelleinstieg-content {
        width: 350px;
    }
    .schnelleinstieg-content a {
        font-size: 16px;
    }
}

@media (min-width: 1024px){
    .schnelleinstieg-button {
        padding: 10px 30px;
        font-size: 28px;
        width: 500px;
    }
    .schnelleinstieg-content {
        width: 500px;
        padding: 15px;
    }
    .schnelleinstieg-content a {
        font-size: 18px;
        padding: 10px 15px;
    }
}