.side-nav h4{
    margin: 0;
}

p#bread-crumb{
    margin: 0;
    font-size: 14px;
}

p{
    font-size: 16px;
}

h4{
    margin-top: 0;
    margin-bottom: 0;
}

.required{
    color: red;
}

input[disabled]{
    background: #ebebeb;
    cursor: not-allowed;
}

.router-form-error-message {
    background-color: #ffd7d7;
    border: 1px solid #c72d25;
    border-left: 5px solid #c72d25;
    margin: 2rem 0;
    padding: 0.5rem;
}

label{
    font-size: 14px;
}
.paragraph-section{
    width: 84%;
}

.router-form{
    width: 50%;
}

.flex-row.between{
    justify-content: space-between;
}

input.prefix{
    width: 3rem;
    border: solid 1px;
}

input{
    height: initial;
}

.top-margin{
    margin-top: 1rem;
}

.non-network-provider-body, .non-network-provider-wrapper{
    width: 100%;
}

h1, h5{
    margin: 0;
}

img{
    height: auto;
    max-width: 100%;
}

.main-flex {
    display: flex;
    flex-direction: row;
}

.image-container {
    width: 40%;
}

.button-generic {
    background-color: white;
    border: 2px solid #0a87b8;
    border-radius: 0.4em;
    color: #0a87b8;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    padding: 1rem;
    transition-duration: 0.4s;
}

.button-generic.orange {
    background-color: #ed8d41;
    color: white;
    border: 2px solid transparent;
}

.button-generic:not(:disabled):hover{
    transform: translateY(-10%);
}

.button-generic.orange:not(:disabled):hover {
    color: #fff;
    background-color: #F77300;
}

.gap {
    margin-right: 1rem;
}

.between {
    justify-content: space-between;
}

.center {
    align-items: center;
}

input[type="radio"] {
    -ms-transform: scale(1.5);
    /* IE 9 */
    -webkit-transform: scale(1.5);
    /* Chrome, Safari, Opera */
    transform: scale(1.5);
    margin: 0.75rem;
}

.info-spacing {
    margin-bottom: 2rem;
}

.info-spacing p{
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 1rem;
}

.provider-side-nav {
    display: flex;
    flex-direction: column;
    margin-left: 3rem;
    row-gap: 0.75rem;
    width: 70%;
}

.resources-and-nav {
    margin: 2rem 0;
}

.title {
    margin: 0.5rem 0 0;
}

.wrapper {
    margin: 2rem auto;
    width: 90%;
}

@media screen and (max-width: 600px) {
    aside#side-nav {
        margin: 0;    
    }
    
    .flex-row.between, .flex-row.wrapper {
        flex-direction: column;
    }
    form.router-form {
        width: 90%;
    }
    
    #prefix{
        padding: 0;
        height: 2rem;
    }

    .image-container {
        margin: 2rem auto 0;
        width: 85%;
    }
    
    .side-nav {
        margin: 0;
    }
}