#popup_excel {
    /* height: 430px; */
    padding: 30px;
    width: 400px;
    background-color: #14151a;
    border:none;
}

#popup_excel .content {
    padding: 0px;
    line-height: 1.2;
}

#popup_excel .content h3 {
    font-size: 22px;
}

#popup_excel .step {
    display: none;
    flex-direction: column;
}

#popup_excel .step.active {
    display: flex;
    /* height: 340px; */
}

#popup_excel .step.loading.active {
    justify-content: center;
    text-align: center;
    align-items: center;
}

#popup_excel .step .progress-value{
    margin-top: -18px;
    text-align: center;
}

#popup_excel label {
    display: flex;
    column-gap: 20px;
    margin: 10px 0px;
    align-items: center;
}

#popup_excel input[type="file"] {
    display: block;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

#popup_excel ol {
    margin-left: 20px;
    margin-top: 15px;
}

#popup_excel ol li {
    margin-top: 8px;
}

#popup_excel progress {
    width: 100%;
    height: 20px;
    border-radius: 20px;
    margin-top: 10px;
    overflow: hidden;
}

#popup_excel progress[value]::-webkit-progress-value {
    transition: all ease-in-out 0.5s;
    background-color: #2997FF;
}

#popup_excel progress[value]::-webkit-progress-bar {
    background-color: #262831;
}

#popup_excel select {
    display: none!important;
}