body {
    font-size: .875rem;
}

.feather {
    width: 16px;
    height: 16px;
    vertical-align: text-bottom;
}

/*
 * Sidebar
 */

.sidebar {
    position: fixed;
    top: 0;
    /* rtl:raw:
    right: 0;
    */
    bottom: 0;
    /* rtl:remove */
    left: 0;
    z-index: 100; /* Behind the navbar */
    padding: 48px 0 0; /* Height of navbar */
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

@media (max-width: 767.98px) {
    .sidebar {
        top: 5rem;
    }
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: .5rem;
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.sidebar .nav-link .feather {
    margin-right: 4px;
    color: #727272;
}

.sidebar .nav-link.active {
    color: #2470dc;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
    color: inherit;
}

.sidebar-heading {
    font-size: .75rem;
    text-transform: uppercase;
}

/*
 * Navbar
 */

.navbar-brand {
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, .25);
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
}

.navbar .navbar-toggler {
    top: .25rem;
    right: 1rem;
}

.navbar .form-control {
    padding: .75rem 1rem;
    border-width: 0;
    border-radius: 0;
}

.form-control-dark {
    color: #fff;
    background-color: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .1);
}

.form-control-dark:focus {
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}

.row-striped:nth-of-type(odd){
    background-color: #efefef;
    border-left: 4px #000000 solid;
}

.row-striped:nth-of-type(even){
    background-color: #ffffff;
    border-left: 4px #efefef solid;
}

.row-striped {
    padding: 15px 0;
}


/*
STEPPER
 */

.stepper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 10px;
}

.stepper .steps-container {
/*    height: 100%;*/
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.stepper .steps-container .steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    overflow-x: auto;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.stepper .steps-container .steps .step {
    display: table-cell;
    text-align: center;
    position: relative;
    min-width: 150px;
    max-width: 150px;
}

.stepper .steps-container .steps .step .step-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 5px;
    padding: 10px 0;
    opacity: 0.8;
}

.stepper .steps-container .steps .step .step-title .step-number {
    font-size: 30px;
    font-weight: 600;
}

.stepper .steps-container .steps .step .step-title .step-text {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    margin-left: 10px;
    text-align: start;
    max-width: 150px;
    word-wrap: break-word;
}

.stepper .steps-container .steps .step .step-indicator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.stepper .steps-container .steps .step .step-indicator .step-divider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 10px;
}

.stepper .steps-container .steps .step .step-indicator .step-divider span {
    margin: 0 2px;
    border-radius: 6px;
    -webkit-transition: 0.4;
    transition: 0.4;
    opacity: 0.8;
    background-color: #9f9d9d;
}

.stepper .steps-container .steps .step .step-indicator .step-divider span:nth-child(1) {
    width: 6px;
    height: 6px;
}

.stepper .steps-container .steps .step .step-indicator .step-divider span:nth-child(2) {
    width: 50px;
    height: 6px;
}

.stepper .steps-container .steps .step .step-indicator .step-node {
    position: relative;
    /*cursor: pointer;*/
    width: 45px;
    height: 45px;
    font-size: 16px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: width 0.3;
    transition: width 0.3;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    background-color: #9f9d9d;
}

.stepper .steps-container .steps .step.prev .step-node {
    background-color: green;
    color: #fff;
    border: 2px solid #cccccc;
}

.stepper .steps-container .steps .step.prev .step-title {
    opacity: 1 !important;
}

.stepper .steps-container .steps .step.prev .step-divider span:nth-child(1) {
    background: #333333 !important;
}

.stepper .steps-container .steps .step.prev .step-divider span:nth-child(2) {
    background: #333333 !important;
}

.stepper .steps-container .steps .step.active .step-node {
    background-color: lightblue;
    border: 2px solid darkgrey;
    color: #fff;
}

.stepper .steps-container .steps .step.active .step-title {
    opacity: 1 !important;
}

.stepper .steps-container .steps .step.active .step-divider span:nth-child(1) {
    background: #333333 !important;
}

.stepper .stepper-content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.stepper .stepper-content-container .stepper-content {
    width: 100%;
    /* padding: 15px 10px; */
    display: none;
}

.stepper .stepper-content-container .stepper-content.show {
    display: block;
}


.fade-in {
    -webkit-animation: fadeIn 0.5s;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        margin-top: 50px;
    }
    100% {
        opacity: 1;
        margin-top: 0px;
    }
}


.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */
    height: 100%;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 1500; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

.overlay-content {
    position: relative;
    top: 25%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
    color: #D3D3D3;
}

a {
    color: #08c;
    text-decoration: none;
}
a:hover {
    color: #036690;
    text-decoration: underline;
}

.blurry-text {
    color: transparent;
    text-shadow: 0 0 8px rgba(0,0,0,0.5);
}