.close {
    right: -51vw !important;
}

.btn_close {
    width: 30px;
    background-color: white;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 5px;
    height: 36px;
    position: absolute;
    top: 50px;
    padding-left: 8px;
    cursor: pointer;
}

#download-center {
    transition: right 0.5s;
    max-width: 683px;
    height: 100vh;
    width: 50vw;
    background-color: var(--green);
    position: fixed;
    right: 0px;
    top: 0px;
    z-index: 100;
    -webkit-box-shadow: -5px 0px 13px -7px var(--dark-gray); 
    box-shadow: -5px 0px 13px -7px var(--dark-gray);
}

#download-center .title {
    font-size: 42px;
    color: white;
    font-weight: 900;
    text-align: center;
    margin-top: 30px;
}

#download-center .subtitle {
    font-size: 20px;
    color: white;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 30px;
}

.download-center-separator {
    border-bottom: 3px solid white;
    width: 152px;
    margin: auto;
    padding-top: 0px;
    margin-bottom: 30px;
    margin-top: -15px;
}

#download-center .row {
    margin-left: 0px;
    margin-right: 0px;
    height: calc((100vh - 260px) / 6);
}

#download-center .row img {
    height: 20px;
    float: left;
    margin-bottom: 50px;
    margin-right: 10px;
    margin-top: 3px;
    cursor: pointer;
}

.download-center-logo {
    position: absolute !important;
    width: 125px !important;
    height: 47px !important;
    bottom: 30px !important;
    margin: 0px !important;
    padding: 0px !important;
    left: 20px !important;
}

.download-center-text p {
    color: white;
    font-size: 16px;
    font-weight: 300;
    margin: 0px;
    padding: 0px;
    margin-top: -5px;
    border-left: 1px solid white;
    padding-left: 10px;
}

.download-center-text {
    position: absolute;
    bottom: 25px;
    left: 150px;
}

.file_title {
    font-size: 14px !important;
    font-weight: bold;
    color: white;
    padding: 0px;
    margin: 0px;
}

.file_info {
    font-size: 14px !important;
    font-weight: 300;
    color: white;
    padding: 0px;
    margin: 0px;
}

.last_file_title {
    font-weight: 300;
    font-size: 14px !important;
    color: var(--green);
    padding: 0px;
    margin: 0px;
    margin-top: 3px;
}

.last_file_subtitle {
    font-weight: 600;
    font-size: 14px !important;
    color: var(--green);
    padding: 0px;
    margin: 0px;
    margin-top: 4px;
}

.last_file_info {
    font-weight: 300;
    font-size: 14px !important;
    color: var(--green);
    padding: 0px;
    margin: 0px;
}

.last_file img {
    margin-bottom: 0px !important;
}

.last_file {
    background-color: white;
    position: absolute;
    right: 20px;
    width: calc(33.3333% - 20px);
    padding-bottom: 10px;
    padding-top: 10px;
}

@media screen and (max-width: 1024px) {
    .close {
        right: -101vw !important;
    }

    #download-center {
        max-width: 683px;
        height: 100vh;
        width: 100vw;
    }
}

#download-center .is-desktop {
    display: block;
}

#download-center .is-mobile {
    display: none;
}

@media screen and (max-width: 600px) {
    .download-center-text {
        position: relative;
        bottom: 25px;
        left: 140px;
        padding-bottom: 20px;
    }

    .download-center-logo {
        position: relative !important;
        bottom: -20px !important;
    }

    #download-center {
        overflow-y: auto;
        overflow-x: hidden;
    }

    #download-center .col-4 {
        width: 100% !important;
        height: 70px;
    }

    #download-center .row {
        height: 210px;
    }

    .last_file {
        position: initial !important;
        height: 85px !important;
    }

    #download-center .is-desktop {
        display: none;
    }
    
    #download-center .is-mobile {
        display: block;
    }
}