/* CSS Personalizado*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

progress {
    -webkit-appearance: none;
    appearance: none;
}

progress::-webkit-progress-bar {
    background-color: #ccc;
    border-radius: 30px;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;*/
}

progress::-webkit-progress-value {
    background-color: #8BC8BA;
    border-radius: 15pc;
    display: block;
    overflow: hidden;
}

.close-modal-style {
    background-color: white;
    text-align: right;
    position: absolute !important;
    right: 30px;
    top: 25px;
    cursor: pointer !important;
    margin: 0px;
    width: 20px;
    height: 20px;
    padding: 0 6px 7px 2px;
    color: black;
    border-radius: 15px;
}

.contenedor-botones {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

#Get_Out,
#Get_In {
    padding: 12px 24px;
    background-color: #000;
    border-radius: 40px;
    color: #fff;
    line-height: 1em;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}

#Get_Out:hover,
#Get_In:hover {
    color: #000;
    background-color: #fff;
}

@media (max-width: 992px) {

    #Get_Out,
    #Get_In {
        font-size: 40px;
        padding: 15px 50px;
    }

    .contenedor-botones {
        bottom: 40px;
        left: 40px;
    }
}