@import url(https://fonts.googleapis.com/css?family=Roboto);
html {
    height: 100vh;
}

body {
    overflow-x: hidden !important;
    font-size: 13px !important;
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    text-transform: capitalize;
}

.navbar {
    padding: 3px 20px !important;
}


/*
} */

.header-sidebar {
    text-align: center !important;
}

#menu-toggle {
    color: #fff;
    position: absolute;
    top: 20px;
    z-index: 1;
    margin-left: 3px
}


/* 
} */

a {
    text-decoration: none !important;
}

.material-icons {
    font-size: 16px !important
}

.heading h3 {
    text-transform: uppercase;
    font-size: 2em;
    padding-bottom: 0.5em;
    text-align: center;
    letter-spacing: 1px;
}

.heading-training h3 {
    text-transform: uppercase;
    font-size: 2em;
    padding-bottom: 0.5em;
    text-align: left;
    letter-spacing: 1px;
}

.heading-training h5 {
    text-transform: uppercase;
    /* font-size: 2em; */
    padding-bottom: 0.5em;
    text-align: left;
    letter-spacing: 1px;
}


/* .form-control:disabled,
.form-control[readonly] {
    opacity: 0.5 !important;
} */


/* span.line-vs-tabs{
    width:200px !important
  } */

.circle_blue {
    color: rgb(84, 150, 232);
    font-size: 28px;
}

.circle_green {
    color: rgb(70, 201, 58);
    font-size: 28px;
}

.circle_purple {
    color: #9560f9;
    font-size: 28px;
}

.circle_red {
    color: rgb(255, 71, 87);
    font-size: 28px;
}

.circle_black {
    color: rgb(30, 30, 30);
    font-size: 28px;
}

.circle_yellow {
    color: rgb(255, 186, 0);
    font-size: 28px;
}

.label_blue {
    color: rgb(84, 150, 232);
    font-size: 28px;
}

.label_green {
    color: rgb(70, 201, 58);
    font-size: 28px;
}

.label_red {
    color: rgb(255, 71, 87);
    font-size: 28px;
}

.label_black {
    color: rgb(30, 30, 30);
    font-size: 28px;
}

.label_yellow {
    color: rgb(255, 186, 0);
    font-size: 28px;
}

button:focus {
    outline: 0px -webkit-focus-ring-color !important
}

.ul-tabs {
    margin-bottom: 0px !important;
}

.vs-tabs--content {
    padding: 2px 0px !important;
}

.header-sidebar {
    /* width: 200px; */
    height: auto !important;
    margin: 25px auto !important;
}

.router-link-active {
    background: #d0d0d0 !important;
    border-right: 5px solid #06a6e0 !important;
}

.linked {
    background: transparent !important;
    border-right: transparent !important;
}

.border-radius {
    box-shadow: 1px 2px 8px 4px #a5a5a5
}

.vs-breadcrumb--ol {
    padding: 10px 0px !important;
}

.vs-icon {
    font-size: 1rem !important
}

.table-bordered thead th.borderless,
.table-bordered thead td {
    border: transparent !important;
}

.was-validated .custom-file-input:valid~.custom-file-label,
.custom-file-input.is-valid~.custom-file-label {
    overflow: hidden !important
}

.was-validated .custom-file-input:invalid~.custom-file-label,
.custom-file-input.is-invalid~.custom-file-label {
    border-color: #cecece;
    overflow: hidden !important
}

.ti-tag {
    background: linear-gradient(to bottom, #1da7ee, #178ee9) !important;
}
.modal-backdrop {
    background: #fff !important;
  }
  .modal-backdrop.show {
    opacity: 0.8 !important;
  }
/* 
  .list-group-item {
    border-right-width: 0;
    border-left-width: 0;
    border-radius: 0;
    color: #000 !important;
    font-weight: 600 !important;
    font-size: 17px !important;
}
  .list-group-item:active {
    border-right-width: 0;
    border-left-width: 0;
    border-radius: 0;
    color: #06a6e0 !important;
    font-weight: 600 !important;
    font-size: 17px !important;
} */

/* scrollbar css starts */


/* width */

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}


/* Track */

 ::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
}


/* Handle */

 ::-webkit-scrollbar-thumb {
    background: rgba(7, 167, 225);
    border-radius: 50px;
}


/* Handle on hover */

 ::-webkit-scrollbar-thumb:hover {
    background: rgba(7, 167, 225);
}


/* scrollbar css ends */

.vs-tabs-warning .con-ul-tabs,
.vs-tabs-warning .con-ul-tabs button {
    font-size: 20px !important;
}

.vs-tabs-success .con-ul-tabs,
.vs-tabs-success .con-ul-tabs button {
    font-size: 20px !important;
}

.selectize-dropdown.single.col-sm-4.mt-3.plugin-remove_button {
    width: 500px !important;
}
.list-group-item:hover {
  padding-left: 30px;
  transition: 0.5s ease;
}


/* highlighter */

.highlight {
    position: relative !important;
    height: 50%;
    width: 100%;
    top: 15%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}


/* active state */

.floating-input:focus~.highlight,
.floating-select:focus~.highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}


/* animation */

@-webkit-keyframes inputHighlighter {
    from {
        background: #5264ae;
    }
    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #5264ae;
    }
    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #5264ae;
    }
    to {
        width: 0;
        background: transparent;
    }
}


/* dropdown background color */

.selectize-control.single .selectize-input,
.selectize-dropdown.single {
    background: #fff !important;
}

.selectize-control.single .selectize-input,
.selectize-dropdown.single {
    border: 1px solid #ccc !important;
}

.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active {
    border: 2px solid rgba(7, 167, 225, 0.61) !important;
}

@media(max-width:620px) {
    .ul-tabs-fixed {
        overflow: scroll !important
    }
}

@media (max-width: 768px) {
    span.line-vs-tabs {
        display: none !important;
    }
}


/* css for fix header and scrolling page  */

body {
    overflow: hidden !important;
}

#sidebar-wrapper .list-group {
    overflow: auto !important;
    height: 75vh !important;
}

#page-content-wrapper {
    overflow: scroll  !important;
    height: 100vh !important;
}

.navbar {
    position: absolute !important;
    width: 100% !important;
    z-index: 10 !important;
}

#menu-toggle {
    z-index: 20 !important;
}

.navbar ul {
    margin-right: 220px !important;
}
.dropdown-item{
    padding: 0.25rem 0.8rem !important;
  }

@media only screen and (max-width: 768px) {
    .navbar ul {
        margin-right: 0px !important;
    }
}

.highcharts-credits {
    display: none !important;
  }
  .highcharts-title {
    display: none !important;
  }
  @media print{
  rect.highcharts-background{
    fill:transparent !important;
  }
  #page-content-wrapper {
    overflow: visible !important;
    height: auto !important;
}
}