html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
}

.highlight {
    background-color: yellow;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    margin-bottom: 60px;
}


.error-message {
    color: red;
}

.error input {
    box-shadow: 0 0 3px #CC0000;
}

.valid input {
    box-shadow: 0 0 3px #36cc00;
}

.progress {
    height: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}

.progress-bar {
    float: left;
    width: 0%;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #337ab7;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;
}

#wrapper {
    display: flex;
}

#accordionSidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    width: 14rem; /* Default SB Admin 2 sidebar width */
}

#content-wrapper {
    margin-left: 14rem;
    width: calc(100% - 14rem);
    min-height: 100vh;
}

@media (max-width: 767px) {
    #accordionSidebar {
        width: 6.5rem;
    }
    #content-wrapper {
        margin-left: 6.5rem;
        width: calc(100% - 6.5rem);
    }
}