/* Outer step navigation container. */

div.rf-step-nav-container {
    padding-top: 7%;
    padding-bottom: 5%;
    min-width: 30%;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    margin-bottom: 20%;
}

/* Step container - content goes in here. */

div.rf-step-container {
    border-radius: 5px;
    min-height: 400px;
    margin-bottom: 10px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    background-color:  rgba(19, 189, 255, .9); ;
}

div.rf-step-container.rf-hidden {
    display: none ;
}

div.rf-step-panel {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Step indicators. */

div.rf-step-ind-container {
    display: block ;
    margin-left: auto;
    margin-right: auto;
    background-color: white ;
}

div.rf-step-ind-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

span.rf-step-ind {
    min-width: 120px;
    min-height: 40px;
    margin: 5px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 20px;
    text-align: center;
    color: white ;
    background-color: cornflowerblue ;
    cursor: pointer;
}

span.rf-step-ind.rf-inactive {
    background-color: gray ;
}

/* Buttons. */

div.rf-step-btn-container {
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    background-color: white ;
}

div.rf-step-btn-panel {
    display: flex;
    align-items: center;
    justify-content: center;
}

button.rf-step-btn {
    border: none;
    color: white;
    background-color: blue ;
    padding: 15px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin: 5px 10px;
    cursor: pointer;
    font-family: 'Roboto', Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

button.rf-step-btn.rf-inactive {
    color: whitesmoke;
    background-color: grey ;
}

button.rf-step-btn.rf-hidden {
    display: none ;
}

button.rf-step-btn:hover {
    background-color: green;
}

div.rf-stepnav-msg-container {
    display: none ;
    position: absolute;
    bottom:20%;
    left:10%; width: 80%;
    height: auto;
    background-color: rgba(112, 10, 10, 0.9);
    cursor: pointer;
  }
  
  p.rf-stepnav-msg {
    color: white;
    margin-left: 20px;
    margin-top: 20px;
    width: 90% ;
    font-size: large;
}
  
  span.rf-stepnav-popup-btn {
    color: white;
    font-size: large;
    margin: 20px;
    float: right ;
  }
  

@media screen and (max-width: 90rem) {

    div.rf-step-nav-container {
        padding-top: 7%;
        min-width: 30%;
        max-width: 98%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }
    
    /* Step container - content goes in here. */
    
    div.rf-step-container {
        border-radius: 5px;
        min-height: 400px;
        margin-bottom: 10px;
        padding: 2px;
        margin-left: auto;
        margin-right: auto;
        background-color:  rgba(19, 189, 255, .9); ;
    }
    
    button.rf-step-btn {
        padding: 10px 16px;
        font-size: 20px;
        margin: 2px 5px;
        cursor: pointer;
        font-family: 'Roboto', Arial, 'Helvetica Neue', Helvetica, sans-serif;
    }

    span.rf-step-ind {
        margin: 3px;
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 3px;
        padding-bottom: 3px;
    }
        
}

