@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css');
@import url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');
/*-------------------------------------------------------------------------------------------
  CSS definations for Dashboard
-------------------------------------------------------------------------------------------*/

/* RESET */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
        -ms-box-sizing:border-box;
         -o-box-sizing:border-box;
            box-sizing:border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a,
a:hover,
a:focus {
    outline:none;
    text-decoration:none;
    color: #03A9F4;
}

/* form */
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 500;
}
.form-group {
    margin-bottom: 25px;
}
.form-group .add-more {
    display: inline-block;
    margin-top: 5px;
    font-size: 12px;
}
.form-control {
    border: 1px solid #ddd;
    background: #fff;
    height: auto;
    padding: 10px 15px;
    font-size: 14px;
    color: #000;
    line-height: 24px;
    border-radius: 5px;
    box-shadow: none;
}

.btn {
    padding: 12px 15px;
    line-height: normal;
    outline: none !important;
}
.btn-primary {
    background: #03A9F4;
    border-color: #03A9F4;
}
.btn-primary:hover {
    background: #fff;
    border-color: #03A9F4;
    color: #03A9F4;
}

/* form-check */
.form-check {
    position: relative;
    display: block;
}
.form-check input {
    display: none;
}
.form-check label {
    margin: 0;
    font-weight: 400;
    line-height: 20px;
}
.form-check .checkbox-check,
.form-check .radio-check {
    border: 1px solid #ccc;
    width: 20px;
    height: 20px;
    float: left;
    margin-right: 5px;
    position: relative;
    border-radius: 3px;
}
.form-check .radio-check,
.form-check .radio-check:after {
    border-radius: 100%;
}
.form-check .checkbox-check:after,
.form-check .radio-check:after {
    width: 10px;
    height: 10px;
    float: left;
    content: '';
    position: absolute;
    left: 4px;
    top: 4px;
    z-index: 2;
}
.form-check input[type='radio']:checked + label .radio-check:after {
    background: #ccc;
}
.form-check input[type='checkbox']:checked + label .checkbox-check:after {
    background: #ccc;
}

.bg-white {
    background: #fff;
}

/*-------------------------------------------------------------------------------------------*/
/* SITE STRUCTURE & APPEARANCE */
/*-------------------------------------------------------------------------------------------*/
body {
    background: #f1f2f7;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: 300;
}

/* Header */
.header {
    background: #343d45;
    width: 100%;
    padding: 10px 0 10px 260px;
    box-shadow: rgba(0,0,0,0.1) 0px 0px 2px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    transition: 0.4s;
}
.header.active {
    padding: 10px 0 10px 56px;
}

/* logo */
.logo {
    background: #fff;
    width: 100%;
    min-height: 52px;
    padding: 10px 10px 2px 10px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}
.logo a {
    color: #fff;
}
.logo img {
    width: auto;
    height: 40px;
}
.logo .icon {
    display: none;
}
.hide-logo .img {
    display: none;
}
.hide-logo .icon {
    display: block;
}

/* menu-link */
.menu-link {
    height: 40px;
    float: left;
    line-height: 40px;
}
.menu-link img {
    width: auto;
    height: 20px;
}

/* top-nav */
.top-nav {
    float: right;
}
.top-nav>ul>li {
    float: left;
    margin-left: 20px;
}

/* user-menu */
.user-menu {
    line-height: 40px;
    position: relative;
}
.user-menu img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
}
.user-menu ul {
    min-width: 200px;
    padding-top: 10px;
    white-space: nowrap;
    position: absolute;
    right: 0;
    top: 100%;
    box-shadow: 0 5px 15px 2px rgba(64, 70, 74, 0.2);
    display: none;
}
.user-menu ul:after {
    content: "";
    position: absolute;
    top: 4px;
    right: 14px;
    display: inline-block !important;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
}
.user-menu li {
    border-top: 1px solid #eee;
}
.user-menu li:first-child {
    border-top: none;
}
.user-menu li a {
    background: #fff;
    display: block;
    padding: 10px 15px;
    color: #333;
    line-height: normal;
}
.user-menu li a i.fa {
    width: 20px;
}

/* main-container */
.main-container {
    height: 100vh;
    padding: 60px 0 30px 0;
}

/* leftcol */
.leftcol {
    background: #fff;
    max-width: 260px;
    width: auto;
    height: 100%;
    float: left;
    transition: 0.4s;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 101;
}

/* navigation */
.navigation {
    height: calc(100vh - 52px);
    overflow: auto;
}
.navigation li a {
    color: #545454;
    position: relative;
    vertical-align: middle;
    display: block;
    overflow: hidden;
    line-height: 26px;
    padding: 9px 15px;
    margin: 8px 0px 0px 0px;
    position: relative;
}
.navigation li a.dd:before,
.navigation li a.dd:after {
    background: url(../images/plus.svg) no-repeat center center;
    width: 10px;
    height: 10px;
    content: '';
    position: absolute;
    right: 10px;
    top: 17px;
    z-index: 2;
}
.navigation li a.dd:after {
    background: url(../images/minus.svg) no-repeat center center;
    content: '';
    display: none;
}
.navigation li a.min-active:before {
    display: none;
}
.navigation li a.min-active:after {
    display: block;
}
.navigation li a.min-active {
    background-color: rgba(0, 0, 0, 0.03);
}
.navigation li li a.dd:before,
.navigation li li a.dd:after {
    width: 8px;
    height: 8px;
    right: initial;
    left: 30px;
    top: 15px;
}
.navigation li li li a.dd:before,
.navigation li li li a.dd:after {
    left: 45px;
}
.navigation li a strong {
    float: left;
}
.navigation li a i {
    width: 26px;
    height: 26px;
    float: left;
    line-height: 26px;
}
.navigation li a span.txt {
    display: block;
    min-width: 201px;
    margin-left: 32px;
}
.navigation li.hide-txt a span.txt,
.navigation li.hide-txt a.dd:before,
.navigation li.hide-txt a.dd:after {
    display: none;
}
.navigation>ul>li>a:hover,
.navigation>ul>li>:active,
.navigation>ul>li>:focus {
    background-color: rgba(0, 0, 0, 0.03);
}
.navigation li a.active {
    background: rgba(146, 144, 144, 0.28);
}

.navigation li ul {
    display: none;
}
.navigation li li a {
    display: block;
    padding: 6px 15px 6px 47px;
}
.navigation>ul>li>ul>li>a:hover {
    background-color: rgba(0, 0, 0, 0.03);
}
.navigation ul ul ul {
    display: none;
}
.navigation li li li a {
    padding: 6px 15px 6px 60px;
}
.navigation>ul>li>ul>li>ul>li>a:hover {
    background-color: rgba(0, 0, 0, 0.03);
}
.navigation li li li li a {
    padding: 6px 15px 6px 70px;
}
.navigation>ul>li>ul>li>ul>li>ul>li>a:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

/* data-info */
.navigation .data-info {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    margin-top: 10px;
}
.navigation .leftSideProgress {
    padding: 0 20px 20px 20px;
}
.navigation .data-info.hide-txt {
    display: none;
}

/* rightcol */
.rightcol {
    border-left: 1px solid #c7c7c7;
    padding-left: 258px;
    margin-left: 1px;
    position: relative;
    transition: 0.4s;
}
.rightcol.active {
    padding-left: 54px;
}
.rightcol-in {
    width: 100%;
    float: left;
    padding: 30px;
}

/* white-box */
.white-box {
    border: 1px solid #eee;
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
}
.white-box .heading {
    border-bottom: 1px solid #eee;
    background: #f9f9f9;
    margin: -30px -30px 30px -30px;
    padding: 15px;
    border-radius: 3px 3px 0 0;
}
.white-box .heading h3 {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    line-height: normal;
}

/* breadcrumb */
.breadcrumb {
    background: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.breadcrumb ul {
    float: right;
}
.breadcrumb li {
    float: left;
    margin-left: 10px;
    line-height: 18px;
}
.breadcrumb li a {
    display: block;
    color: #212529;
}
.breadcrumb li a:after {
    float: right;
    margin: 1px 0 0 8px;
    font-family: FontAwesome;
    font-size: 10px;
    content: "\f054";
    color: #666;
    line-height: 18px;
}
.breadcrumb li .icon {
    float: left;
    margin: -2px 4px 0 0;
}
.breadcrumb li .icon img {
    width: auto;
    height: 18px;
}
.breadcrumb li:first-child a {
    padding-left: 17px;
}
.breadcrumb .active {
    color: #ff7201;
}

/* form */
.dropzone {
    border: 1px solid #ddd;
    background: #f1f1f1;
    padding: 20px;
    border-radius: 5px;
    
}
.dz-message {
    margin: 30px 0;
    text-align: center;
}
.dz-message h3 {
    padding-bottom: 10px;
    font-size: 20px;
    color: #333;
    font-weight: 600;
}
.dz-message .fa {
    padding-bottom: 10px;
    font-size: 60px;
    color: #777;
    font-weight: 600;
}

/* switchery */
.switchery {
    background-color: rgb(255, 255, 255);
    border-color: rgb(223, 223, 223);
    box-shadow: rgb(223, 223, 223) 0px 0px 0px 0px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s;
    border: 1px solid #ddd;
    border-radius: 100px;
    cursor: pointer;
    display: inline-block;
    height: 16px;
    width: 30px;
    position: relative;
}
.switchery small {
    left: 14px;
    transition: background-color 0.4s ease 0s, left 0.2s ease 0s;
    background-color: rgb(255, 255, 255);
    height: 14px;
    width: 14px;
    border-radius: 100px;
    box-shadow: 0 1px 3px rgba(0,0,0,.4);
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}
.switchery.active {
    background-color: rgb(100, 189, 99);
    border-color: rgb(100, 189, 99);
    box-shadow: rgb(100, 189, 99) 0px 0px 0px 12px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}
.switchery.active small {
    left: 14px;
    transition: background-color 0.4s ease 0s, left 0.2s ease 0s;
    background-color: rgb(255, 255, 255);
}

/* photo-list */
.photo-list h3 {
    background: #ddd;
    padding: 10px;
    margin: 10px -10px 0 -10px;
    font-size: 14px;
    color: #333;
}
.photo-list ul {
    margin: 0 -15px;
}
.photo-list li {
    width: 25%;
    float: left;
    padding: 15px;
}
.photo-list .column {
    border: 1px solid #ddd;
    padding: 10px;
}
.photo-list .imgb img {
    width: 100%;
    height: auto;
}
.photo-list .action {
    border-top: 1px solid #ddd;
    margin: 0 -10px;
    padding: 10px 10px 0 10px;
}
.photo-list .action .action-link.pull-right {
    margin: 0;
}

/* role-list */
.role-list .column {
    border: 1px solid #ddd;
    margin-bottom: 30px;
    border-radius: 3px;
}
.role-list li {
    background: #f9f9f9;
}
.role-list li .form-check label {
    display: block;
    padding: 15px;
}
.role-list li li {
    border-top: 1px solid #ddd;
    background: #fff;
}
.role-list li li .form-check label {
    padding: 15px 15px 15px 40px;
}

.white-box>div {
    overflow: auto;
}


.pull-right .btn,.heading a{
    padding: 6px 11px;
    position: relative;
    top: -4px;
    color:#fff;
}

/*///////////////////////////////////////////////
                Responsive  CSS
///////////////////////////////////////////////*/
@media (min-width: 10px) and (max-width: 767px) {

/* header */
.header {
    padding: 10px 0 10px 0;
}
.header.active {
    padding: 10px 0;
}
.header .logo {
    width: 61px;
    height: 61px;
    float: left;
    margin: -10px 15px -10px -15px;
}

/* rightcol */
.rightcol {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
}
.rightcol.active {
    padding-left: 0;
}
.rightcol-in {
    padding: 30px 15px;
}

/* leftcol */
.leftcol {
    left: -260px;
}
.leftcol.active {
    left: 0;
    z-index: 98;
}

/* navigation */
.navigation li.hide-txt a span.txt,
.navigation li.hide-txt a.dd:before,
.navigation li.hide-txt a.dd:after,
.navigation .data-info.hide-txt {
    display: block;
}

/* breadcrumb */
.breadcrumb {
    font-size: 12px;
}
.breadcrumb ul {
    float: none;
}
.breadcrumb li:first-child {
    margin-left: 0;
}
.breadcrumb li:first-child a {
    padding-left: 0;
}
.breadcrumb li a:after {
    margin: 1px 0 0 3px;
}

/* white-box */
.white-box {
    padding: 15px;
}
.white-box .heading {
    border-bottom: 1px solid #eee;
    background: #f9f9f9;
    margin: -15px -15px 15px -15px;
    padding: 15px;
}



}


@media (min-width: 768px) and (max-width: 991px) {



}
