:root {
    --color1: rgb(255, 196, 0);
}

* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    padding: 0;
    margin: 0;
    background: #f1f1f1;
}

.dc-navbar {
    border: none;
    z-index: 9003 !important;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.1);
       -moz-box-shadow: 0 5px 10px rgba(0,0,0,.1);
            box-shadow: 0 5px 10px rgba(0,0,0,.1);
}

.dc-container {
    height: 100vh;
    padding-top: 55px;
}

.dc-side-navbar {
    width: 250px;
    padding-top: 20px;
    padding-bottom: 50px;
    background: #333;
    overflow-y: scroll;
}

@media screen and (max-width: 799px){
    .dc-side-navbar,
    .dc-dropdown-lg {
        display: none;
    }

    .dc-dropdown-sm {
        display: block;
    }

    .dc-side-navbar {
        width: 250px;
        height: 100%;
        right: 0;
        position: absolute;
        z-index: 9906;
    }
}

@media screen and (min-width: 799px){
    .dc-dropdown-sm {
        display: none;
    }
}

.dc-side-navbar ul {
    margin: 0;
    padding: 0;
}

.dc-side-navbar ul li {
    list-style: none;
}

.dc-side-navbar ul li a {
    text-decoration: none;
    color: #ebebeb;
    display: block;
    padding: 5px 20px;
    font-size: 14px;
}

.dc-side-navbar ul li a:hover,
.dc-side-navbar ul li.active a {
    color: rgb(255, 174, 0);
}

.dc-side-navbar-title {
    margin: 10px 0;
    padding: 10px 20px;
    color: #999;
    font-size: 12px;
    background: rgba(0,0,0,.1)
}

.dc-content {
    background: rgb(207, 207, 207);
    overflow-y: scroll;
    padding: 20px;
    width: 100%;
    font-size: 14px;
}

.dc-content-title {
    font-size: 24px;
    font-weight: 500;
    border-left: 5px solid #0096da;
    margin-bottom: 35px;
    padding-left: 20px;
}

.dc-content-box {
    display: block;
    padding: 15px 25px;
    border: 1px solid #ccc;
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: 10px;
    text-decoration: none !important;
    color: #333;
    text-align: center;
    width: 300px;
}

.dc-content-box:hover {
    background: #0096da;
    color: #FFF;
}

.dc-content-box h4 {
    font-size: 16px;
    padding-top: 40px;
    position: relative;
}

.dc-content-box h4::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background: rgba(0,0,0,.2);
    margin-top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.required label::after {
    content: "*";
    color: red;
}

.dc-loader {
    position: fixed;
    z-index: 9005;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.5);
}

.dc-loader div {
    color: #FFF;
    padding: 10px 20px;
    background: rgba(0,0,0,.8);

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.btn-group-xs > .btn, .btn-xs {
	padding: .25rem .4rem;
	font-size: .875rem;
	line-height: .5;
	border-radius: .2rem;
}

.bootstrap-select .btn-light {
    border-color: #ccc !important;
}