.progress-btn {
    display: block;
    padding: 15px 30px;
    background-color: black; /*#ffb6c1;*/
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 20px;
}
.progress-btn:hover {color:white;background-color: black;}

.progress-btn .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #ED1D24;
    transition: width 0.1s linear;
    z-index: 0;
}

.progress-btn .btn-text {
    position: relative;
    z-index: 1;
}

.progress-btn.ready {
    background-color: #ED1D24; /*#4CAF50;*/
}
.progress-btn.ready:hover {color:white;background-color: black;}


.progress-btn.ready .progress-bar {
    display: none;
}
.menu_custom{
    li{
        margin-bottom: 10px;
        svg{
            margin-right: 3px;
        }
    }
}