
/**
 * Contenido
 *
 *  Preloader
 *  Blockquote
 *  Padding margin property 
 *  float property 
 *  Thumb size
 *  Opacity
 *  font weight
 *  Background colors
 *  Rounds
 *  Labels
 *  Badge
 *  List-style-none
 *  Card
 *  Labels
 *  Display Classes
 *  Topbar
 *  Notify
 *  Megamenu
 *  Main sidebar
 *  sidebar navigation
 *  Right side toggle
 *  Themecolors
 *  Perfect-scrollbar 
 *  Custom-select
 *  textarea
 *  Form-control
 *  Form Dropzone
 *  Form Pickers
 *  Form summernote
 *  Form addons -Bootstrap select
 *  Form Material - Material inputs
 *  Form validation error 
 *  File Upload
 *  Radio button
 *  Form Validation
 *  Form Input States
 *  Table Cell
 *  Table td vertical middle
 *  Table-Layout
 *  Table-Data Table
 *  Table- responsive
 *  Table- editable table
 *  Table-Jsgrid table
 *  calendar - profile
 *  Notification page Jquery toaster
 *  c3 chart global
 *  Breadcrumb and page title
 *  Footer
 *  Wave Effects
 *  Fixed -sidebar
 *  Fixed -Header
 *  Boxed
 *  Single Column
 *  Mini sidebar
 *  Logo center
 *  User mail widgets
 *  Weather
 *  Comment widgets
 *  To do widgets
 *  Chat widget
 *  Calendar widget
 *  Steam line widget
 *  Feed widget
 *  Vertical carousel
 *  social-widgets
 *  social-profile-first
 *  profile timeline widget
 *  States row
 *  Guage chart
 *  country-state
 *  contact widgets
 *  Blog widgets
 *  Msg box
 *  Activity widgets
 *  widget-chart-page product 
 *  For Desktop & above all 
 *  Ipad & above all
 *  Phone and below ipad
 *  Image Crops
 *   Ui-bootstrap
 *  Accordion
 *  Notification
 *  Flyers
 *  Nav Accesos
 *  Scroll
 */
@import url(./icons/font-awesome/css/font-awesome.min.css);
@import url(./icons/font-awesome/css/all.css);
@import url(./icons/simple-line-icons/css/simple-line-icons.css);
@import url(./icons/weather-icons/css/weather-icons.min.css);
@import url(./icons/themify-icons/themify-icons.css);
@import url(./icons/flag-icon-css/flag-icon.min.css);
@import url(./icons/material-design-iconic-font/css/materialdesignicons.min.css);
@import url(./icons/crypto-icons/cryptocoins.css);

@import url('https://fonts.googleapis.com/css?family=Overpass:100,100i,200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Barlow:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Prompt:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Kanit:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Signika:300,400,600,700');
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Krub:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i');
@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700');
@import url('https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Istok+Web:400,400i,700,700i');

/*@import url(animate.css);
@import url(skins.css);*/

/*******************
Preloader
********************/
.preloader {
  width: 100%;
  height: 100%;
  top: 0px;
  position: fixed;
  z-index: 99999;
  background: #fff;
}

  .preloader .cssload-speeding-wheel {
    position: absolute;
    top: calc(50% - 3.5px);
    left: calc(50% - 3.5px);
  }

.loader,
.loader__figure {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.loader {
  overflow: visible;
  padding-top: 2em;
  height: 0;
  width: 2em;
}

.loader__figure {
  height: 0;
  width: 0;
  box-sizing: border-box;
  border: 0 solid #1976d2;
  border-radius: 50%;
  -webkit-animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.loader__label {
  float: left;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 0.5em 0 0 50%;
  font-size: 0.875em;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  color: #1976d2;
  white-space: nowrap;
  -webkit-animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes loader-figure {
  0% {
    height: 0;
    width: 0;
    background-color: #1976d2;
  }

  29% {
    background-color: #1976d2;
  }

  30% {
    height: 2em;
    width: 2em;
    background-color: transparent;
    border-width: 1em;
    opacity: 1;
  }

  100% {
    height: 2em;
    width: 2em;
    border-width: 0;
    opacity: 0;
    background-color: transparent;
  }
}

@-moz-keyframes loader-figure {
  0% {
    height: 0;
    width: 0;
    background-color: #1976d2;
  }

  29% {
    background-color: #1976d2;
  }

  30% {
    height: 2em;
    width: 2em;
    background-color: transparent;
    border-width: 1em;
    opacity: 1;
  }

  100% {
    height: 2em;
    width: 2em;
    border-width: 0;
    opacity: 0;
    background-color: transparent;
  }
}

@keyframes loader-figure {
  0% {
    height: 0;
    width: 0;
    background-color: #1976d2;
  }

  29% {
    background-color: #1976d2;
  }

  30% {
    height: 2em;
    width: 2em;
    background-color: transparent;
    border-width: 1em;
    opacity: 1;
  }

  100% {
    height: 2em;
    width: 2em;
    border-width: 0;
    opacity: 0;
    background-color: transparent;
  }
}

@-webkit-keyframes loader-label {
  0% {
    opacity: 0.25;
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0.25;
  }
}

@-moz-keyframes loader-label {
  0% {
    opacity: 0.25;
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0.25;
  }
}

@keyframes loader-label {
  0% {
    opacity: 0.25;
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0.25;
  }
}

.btn-circle {
  border-radius: 100%;
  width: 40px;
  height: 40px;
  padding: 10px;
}

  .btn-circle.btn-sm, .btn-group-sm > .btn-circle.btn {
    width: 35px;
    height: 35px;
    padding: 8px 10px;
    font-size: 14px;
  }

  .btn-circle.btn-lg, .btn-group-lg > .btn-circle.btn {
    width: 50px;
    height: 50px;
    padding: 14px 15px;
    font-size: 18px;
    line-height: 23px;
  }

  .btn-circle.btn-xl {
    width: 70px;
    height: 70px;
    padding: 14px 15px;
    font-size: 24px;
  }

.btn-xs {
  padding: .25rem .5rem;
  font-size: 10px;
}

.btn-rounded {
  border-radius: 60px;
  padding: 7px 18px;
}

  .btn-rounded.btn-lg, .btn-group-lg > .btn-rounded.btn {
    padding: .75rem 1.5rem;
  }

  .btn-rounded.btn-sm, .btn-group-sm > .btn-rounded.btn {
    padding: .25rem .5rem;
    font-size: 12px;
  }

  .btn-rounded.btn-xs {
    padding: .25rem .5rem;
    font-size: 10px;
  }

  .btn-rounded.btn-md {
    padding: 12px 35px;
    font-size: 16px;
  }

.btn-primary, .btn-warning, .btn-outline-primary:hover, .btn-outline-warning:hover {
  color: #fff !important;
}

  .btn-primary:hover, .btn-warning:hover, .btn-outline-primary:hover:hover, .btn-outline-warning:hover:hover,
  .btn-primary:focus, .btn-warning:focus, .btn-outline-primary:focus:focus, .btn-outline-warning:focus:focus {
    color: #fff !important;
  }

.btn-secondary {
  border-color: #dee2e6;
}

.btn-outline-secondary {
  color: #212529;
  background: #fff;
  border-color: #dee2e6;
}

  .btn-outline-secondary:hover {
    border-color: #ced4da;
  }

.btn-facebook {
  color: #fff;
  background-color: #3b5998;
}

  .btn-facebook:hover {
    color: #fff;
  }

.btn-twitter {
  color: #fff;
  background-color: #55acee;
}

  .btn-twitter:hover {
    color: #fff;
  }

.btn-linkedin {
  color: #fff;
  background-color: #007bb6;
}

  .btn-linkedin:hover {
    color: #fff;
  }

.btn-dribbble {
  color: #fff;
  background-color: #ea4c89;
}

  .btn-dribbble:hover {
    color: #fff;
  }

.btn-googleplus {
  color: #fff;
  background-color: #dd4b39;
}

  .btn-googleplus:hover {
    color: #fff;
  }

.btn-instagram {
  color: #fff;
  background-color: #3f729b;
}

.btn-pinterest {
  color: #fff;
  background-color: #cb2027;
}

.btn-dropbox {
  color: #fff;
  background-color: #007ee5;
}

.btn-flickr {
  color: #fff;
  background-color: #ff0084;
}

.btn-tumblr {
  color: #fff;
  background-color: #32506d;
}

.btn-skype {
  color: #fff;
  background-color: #00aff0;
}

.btn-youtube {
  color: #fff;
  background-color: #bb0000;
}

.btn-github {
  color: #fff;
  background-color: #171515;
}

.button-group .btn {
  margin-bottom: 5px;
  margin-right: 5px;
}

.no-button-group .btn {
  margin-bottom: 5px;
  margin-right: 0px;
}

.btn .text-active {
  display: none;
}

.btn.active .text-active {
  display: inline-block;
}

.btn.active .text {
  display: none;
}

button:focus {
  outline: 0px auto -webkit-focus-ring-color;
}

* {
  outline: none;
}


body {
  margin: 0;
  overflow-x: hidden;
  color: #404448;
  font-size: 13px;
}

html {
  position: relative;
  min-height: 100%;
}

a {
  color: #1463a5;
}

  a:hover,
  a:focus {
    color: #3280b7;
    text-decoration: none;
  }

  a.link {
    color: #212529;
  }

    a.link:hover, a.link:focus {
      color: #0071b5;
    }

.box {
  border-radius: 0.25rem;
  padding: 10px;
}

.no-wrap td,
.no-wrap th {
  white-space: nowrap;
}


html body .dl {
  display: inline-block;
}

html body .db {
  display: block;
}

html body p {
  margin-bottom: 10px;
}
/*******************
Blockquote
*******************/
html body blockquote {
  border-left: 5px solid #165d99;
  border: 1px solid #e9ecef;
  padding: 15px;
}

.clear {
  clear: both;
}

ol li {
  margin: 5px 0;
}

/*******************
Padding margin property 
*******************/

html body .m-auto {
  margin: 0 auto;
}

html body .m-t-5 {
  margin-top: 5px !important;
  ;
}

html body .m-b-5 {
  margin-bottom: 5px !important;
  ;
}

html body .m-r-5 {
  margin-right: 5px !important;
  ;
}

html body .m-l-5 {
  margin-left: 5px !important;
  ;
}

html body .p-t-5 {
  padding-top: 5px !important;
}

html body .p-b-5 {
  padding-bottom: 5px !important;
}

html body .p-r-5 {
  padding-right: 5px !important;
  ;
}

html body .p-l-5 {
  padding-left: 5px !important;
  ;
}

html body .p-5 {
  padding: 5px !important;
}

html body .m-5 {
  margin: 5px;
}

html body .m-t-10 {
  margin-top: 10px !important;
}

html body .m-b-10 {
  margin-bottom: 10px !important;
}

html body .m-r-10 {
  margin-right: 10px !important;
}

html body .m-l-10 {
  margin-left: 10px !important;
}

html body .p-t-10 {
  padding-top: 10px !important;
}

html body .p-b-10 {
  padding-bottom: 10px !important;
}

html body .p-r-10 {
  padding-right: 10px !important;
}

html body .p-l-10 {
  padding-left: 10px !important;
}

html body .p-10 {
  padding: 10px !important;
}

html body .m-10 {
  margin: 10px !important;
}

html body .m-t-15 {
  margin-top: 15px !important;
}

html body .m-b-15 {
  margin-bottom: 15px !important;
}

html body .m-r-15 {
  margin-right: 15px !important;
}

html body .m-l-15 {
  margin-left: 15px !important;
}

html body .p-t-15 {
  padding-top: 15px !important;
}

html body .p-b-15 {
  padding-bottom: 15px !important;
}

html body .p-r-15 {
  padding-right: 15px !important;
}

html body .p-l-15 {
  padding-left: 15px !important;
}

html body .p-15 {
  padding: 15px !important;
}

html body .m-15 {
  margin: 15px !important;
}

html body .m-t-20 {
  margin-top: 20px !important;
}

html body .m-b-20 {
  margin-bottom: 20px !important;
}

html body .m-r-20 {
  margin-right: 20px !important;
}

html body .m-l-20 {
  margin-left: 20px !important;
}


html body .p-t-20 {
  padding-top: 20px !important;
}

html body .p-b-20 {
  padding-bottom: 20px !important;
}

html body .p-r-20 {
  padding-right: 20px !important;
}

html body .p-l-20 {
  padding-left: 20px !important;
}

html body .p-20 {
  padding: 20px !important;
}

html body .m-20 {
  margin: 20px !important;
}

html body .m-t-25 {
  margin-top: 25px !important;
}

html body .m-b-25 {
  margin-bottom: 25px !important;
}

html body .m-r-25 {
  margin-right: 25px !important;
}

html body .m-l-25 {
  margin-left: 25px !important;
}

html body .p-t-25 {
  padding-top: 25px;
}

html body .p-b-25 {
  padding-bottom: 25px;
}

html body .p-r-25 {
  padding-right: 25px;
}

html body .p-l-25 {
  padding-left: 25px !important;
}

html body .p-25 {
  padding: 25px;
}

html body .m-25 {
  margin: 25px;
}

html body .m-t-30 {
  margin-top: 30px !important;
}

html body .m-b-30 {
  margin-bottom: 30px;
}

html body .m-r-30 {
  margin-right: 30px;
}

html body .m-l-30 {
  margin-left: 30px;
}

html body .p-t-30 {
  padding-top: 30px;
}

html body .p-b-30 {
  padding-bottom: 30px;
}

html body .p-r-30 {
  padding-right: 30px;
}

html body .p-l-30 {
  padding-left: 30px;
}

html body .p-30 {
  padding: 30px;
}

html body .m-30 {
  margin: 30px;
}

html body .m-t-40 {
  margin-top: 40px;
}

html body .m-b-40 {
  margin-bottom: 40px;
}

html body .m-r-40 {
  margin-right: 40px;
}

html body .m-l-40 {
  margin-left: 40px;
}

html body .p-t-40 {
  padding-top: 40px;
}

html body .p-b-40 {
  padding-bottom: 40px;
}

html body .p-r-40 {
  padding-right: 40px;
}

html body .p-l-40 {
  padding-left: 40px;
}

html body .p-40 {
  padding: 40px;
}

html body .m-40 {
  margin: 40px;
}

/** * Zero */
html body .m-0-0 {
  margin: 0 !important;
}

html body .m-t-0 {
  margin-top: 0 !important;
}

html body .m-r-0 {
  margin-right: 0 !important;
}

html body .m-b-0 {
  margin-bottom: 0 !important;
}

html body .m-l-0 {
  margin-left: 0 !important;
}

html body .p-0-0 {
  padding: 0 !important;
}

html body .p-t-0 {
  padding-top: 0 !important;
}

html body .p-r-0 {
  padding-right: 0 !important;
}

html body .p-b-0 {
  padding-bottom: 0 !important;
}

html body .p-l-0 {
  padding-left: 0 !important;
}

/*******************
float property 
*******************/
html body .f-l {
  float: left;
}

html body .f-r {
  float: right;
}

html body .f-r-50 {
  float: right;
  width: calc(100% - 50px);
  padding: 5px 0px 5px 10px;
}

html body .f-r-60 {
  float: right;
  width: calc(100% - 60px);
  padding: 5px 0px 5px 10px;
}

/*******************
Border property 
*******************/
.b-1 {
  border-style: solid;
  border-width: 1px;
}

.b-r-1 {
  border-right-style: solid;
  border-width: 1px;
}

.b-2 {
  border-style: solid;
  border-width: 2px;
}

.b-gray-light {
  border-color: #dfe5e4;
}

.b-gray-x-light {
  border-color: #f2f2f2;
}

/*******************
line-height property 
*******************/
html body .l-h-1 {
  line-height: 1;
}

  html body .l-h-1.2 {
    line-height: 1.2;
  }

/*******************
Thumb size
*******************/
.thumb-sm {
  height: 32px;
  width: 32px;
}

.thumb-md {
  height: 48px;
  width: 48px;
}

.thumb-lg {
  height: 88px;
  width: 88px;
}

.hide {
  display: none;
}

.img-circle {
  border-radius: 100%;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

.radius {
  border-radius: 0.25rem;
}

.img-thumbnail-15 {
  padding: 0.15rem;
  background-color: #edf1f5;
  border: 1px solid #dee2e6;
  max-width: 100%;
  height: auto;
}

/*******************
Opacity
*******************/
.op-5 {
  opacity: 0.5;
}

.op-3 {
  opacity: 0.3;
}

/*******************
font weight
*******************/
html body .font-bold {
  font-weight: 700;
}

html body .font-normal {
  font-weight: 400;
}

html body .font-light {
  font-weight: 300;
}

html body .font-medium {
  font-weight: 600;
}

html body .font-16 {
  font-size: 16px !important;
}

html body .font-12 {
  font-size: 12px !important;
}

html body .font-14 {
  font-size: 14px !important;
}

html body .font-15 {
  font-size: 15px !important;
}

html body .font-10 {
  font-size: 10px !important;
}

html body .font-18 {
  font-size: 18px !important;
}

html body .font-20 {
  font-size: 20px !important;
}

html body .font-26 {
  font-size: 26px !important;
}

html body .font-30 {
  font-size: 30px !important;
}

html body .display-5 {
  font-size: 3rem !important;
}

html body .display-6 {
  font-size: 2.5rem;
}

/*******************
Background colors
*******************/

html body .bg-megna {
  background-color: #01c0c8;
}

html body .bg-theme {
  background-color: #0071b5;
}

html body .bg-inverse {
  background-color: #212529;
}

html body .bg-purple {
  background-color: #7460ee;
}

html body .bg-light {
  background-color: #e9ecef !important;
}

html body .bg-very-light {
  background-color: #f7f7f7 !important;
}

html body .bg-white {
  background-color: #fff;
}

html body .bg-t-25 {
  background: rgba(201, 201, 201, 0.25);
}

html body h1, html body .h1 {
  font-size: 24px;
}

html body h2, html body .h2 {
  font-size: 21px;
}

html body h3, html body .h3 {
  font-size: 18px;
}

html body h4, html body .h4 {
  font-size: 15px;
}

html body h5, html body .h5 {
  font-size: 14px;
}

html body .bg-light-info.active {
  /*background-color: #b4d3f1 !important; */
  border: solid 2px #0071b5;
  margin-top: 1px;
  margin-bottom: 3px;
}

html body .bg-light-success.active {
  background-color: #bdd791 !important;
}

html body .bg-light-warning.active {
  background-color: #ffe4aa !important;
}

html body .bg-light-danger.active {
  background-color: #e38d8c !important;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 500;
}


/*******************
Rounds
*******************/
.round {
  line-height: 48px;
  color: #fff;
  width: 50px;
  height: 50px;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  border-radius: 100%;
  background: #0071b5;
  line-height: 52px;
}

  .round img {
    border-radius: 100%;
  }

  .round.round-info {
    background: #0071b5;
  }

  .round.round-warning {
    background: #ffbc34;
  }

  .round.round-danger {
    background: #f62d51;
  }

  .round.round-success {
    background: #83af37;
  }

  .round.round-primary {
    background: #165d99;
  }

  .round.round-light-blue {
    background: #3399FF;
  }

  .round.round-blue {
    background: #1E3D84;
  }

  .round.round-yellow {
    background: #FFD351;
  }

  .round.round-gray {
    background: #525252;
  }

  .round.round-green {
    background: #4BB12A;
  }

  .round.round-outline-info {
    background: transparent;
    border: solid 1px #0071b5;
  }

  .round.round-outline-warning {
    background: transparent;
    border: solid 1px #ffbc34;
  }

  .round.round-outline-danger {
    background: transparent;
    border: solid 1px #f62d51;
  }

  .round.round-outline-success {
    background: transparent;
    border: solid 1px #83af37;
  }

  .round.round-outline-primary {
    background: transparent;
    border: solid 1px #165d99;
  }

  .round.round-outline-light-blue {
    background: transparent;
    border: solid 1px #3399FF;
  }

  .round.round-outline-blue {
    background: transparent;
    border: solid 1px #1E3D84;
  }

  .round.round-outline-yellow {
    background: transparent;
    border: solid 1px #FFD351;
  }

  .round.round-outline-gray {
    background: transparent;
    border: solid 1px #525252;
  }

  .round.round-outline-green {
    background: transparent;
    border: solid 1px #4BB12A;
  }

  .round.round-outline-white {
    background: transparent;
    border: solid 1px #fff;
  }

.round-lg {
  line-height: 60px;
  width: 60px;
  height: 60px;
  font-size: 30px;
}

.round-xmd {
  line-height: 45px;
  width: 45px;
  height: 45px;
  font-size: 20px;
}

.round-md {
  line-height: 35px;
  width: 35px;
  height: 35px;
  font-size: 18px;
}

.round-sm {
  line-height: 30px;
  width: 30px;
  height: 30px;
  font-size: 13px;
}

.round-xs {
  line-height: 25px;
  width: 25px;
  height: 25px;
  font-size: 15px;
}

.round-10 {
  line-height: 10px;
  width: 10px;
  height: 10px;
  font-size: 8px;
}


/*******************
 Badge
******************/
.badge {
  font-weight: 400;
  line-height: normal;
}

  .badge.badge-pill {
    padding: 0.20em 0.6em;
  }

.badge-xs {
  font-size: 9px;
}

.badge-xs,
.badge-sm {
  -webkit-transform: translate(0, -2px);
  -ms-transform: translate(0, -2px);
  -o-transform: translate(0, -2px);
  transform: translate(0, -2px);
}

/*******************
List-style-none
******************/
ul.list-style-none {
  margin: 0px;
  padding: 0px;
}

  ul.list-style-none li {
    list-style: none;
  }

    ul.list-style-none li a {
      color: #212529;
      padding: 8px 0px;
      display: block;
      text-decoration: none;
    }

      ul.list-style-none li a:hover {
        color: #0071b5;
      }

ol, ul {
  padding-left: 15px;
}


/*******************
Card
******************/

.card {
  margin-bottom: 20px;
  border-radius: 5px;
}

  .card .card-subtitle {
    font-weight: 500;
    margin-bottom: 15px;
    color: #5b86b2;
  }

  .card .card-title {
    position: relative;
    font-weight: 600;
  }

  .card .card-actions {
    float: right;
  }

    .card .card-actions a {
      padding: 0 5px;
      cursor: pointer;
    }

.card-body.p-0 .owl-carousel .owl-wrapper-outer {
  border-radius: 5px 5px 0px 0px;
}

.card-header:first-child {
  border-radius: 5px 5px 0px 0px;
}

.card-alt {
  margin: 0 -20px;
  background: #e4e9ef;
}

.card-group {
  margin-bottom: 20px;
}

  .card-group .card {
    border: 1px solid #dedede;
  }

    .card-group .card:first-child {
      border-right: 0px solid #dedede;
    }

  .card-group > .card {
    margin-bottom: 2px;
  }

.card-fullscreen {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
}

.oh {
  overflow: hidden;
}
/*
.card-header {
  background-color: rgba(139, 140, 141, 0.25);
}
*/
.login-box .card-header {
  background-color: rgba(158, 158, 158, 0.15);
}

/*******************
Labels
*******************/
label {
  padding: 3px 10px;
  font-weight: 700;
  font-size: 12px;
}

.label {
  padding: 3px 10px;
  line-height: 13px;
  color: #fff;
  font-weight: 400;
  border-radius: 0.25rem;
  font-size: 80%;
}

.label-f-85 {
  font-size: 85%;
}

.label-f-95 {
  font-size: 95%;
}

.label-rounded {
  border-radius: 60px;
}

.label-custom {
  background-color: #01c0c8;
}

.label-success {
  background-color: #83af37;
}

.label-info {
  background-color: #0071b5;
}

.label-warning {
  background-color: #ffbc34;
}

.label-danger {
  background-color: #ba3e3d;
}

.label-megna {
  background-color: #01c0c8;
}

.label-primary {
  background-color: #165d99;
}

.label-purple {
  background-color: #7460ee;
}

.label-red {
  background-color: #f62d51;
}

.label-inverse {
  background-color: #343a40;
}

.label-default {
  background-color: #f8f9fa;
}

.label-light-blue {
  background: #3399FF;
}

.label-blue {
  background: #1E3D84;
}

.label-yellow {
  background: #ffbc34;
}

.label-gray {
  background: #525252;
}

.label-green {
  background: #4BB12A;
}

/*******************
Display Classes
*******************/
@media (max-width: 575px) {
  html body .hidden-xs-down {
    display: none;
  }
}

@media (min-width: 769px) {
  html body .hidden-sm-up {
    display: none;
  }
}

@media (max-width: 767px) {
  html body .hidden-sm-down {
    display: none;
  }
}

@media (min-width: 768px) {
  html body .hidden-md-up {
    display: none;
  }
}

@media (max-width: 991px) {
  html body .hidden-md-down {
    display: none;
  }
}

@media (min-width: 992px) {
  html body .hidden-lg-up {
    display: none;
  }
}

@media (max-width: 1199px) {
  html body .hidden-lg-down {
    display: none;
  }
}

@media (min-width: 1200px) {
  html body .hidden-xl-up {
    display: none;
  }
}

/*******************
 Topbar
*******************/
.topbar {
  position: relative;
  z-index: 50;
  transition: 0.2s ease-in;
  box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.1);
}

  .topbar .navbar-collapse {
    padding: 0px;
  }

  .topbar .top-navbar {
    min-height: 50px;
    padding: 0px;
  }

    .topbar .top-navbar .dropdown-toggle::after {
      display: none;
    }

    .topbar .top-navbar .navbar-header {
      padding-right: 15px;
      line-height: 65px;
      padding-left: 15px;
      min-width: 70px;
      border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

      .topbar .top-navbar .navbar-header .navbar-brand {
        margin-right: 0px;
        /*padding-bottom: 0px;*/
        padding-top: 0px;
        display: flex;
        align-items: center;
      }

        .topbar .top-navbar .navbar-header .navbar-brand .light-logo {
          display: none;
        }

    .topbar .top-navbar .navbar-nav > .nav-item.show {
      background: rgba(0, 0, 0, 0.05);
    }

    .topbar .top-navbar .navbar-nav > .nav-item > .nav-link {
      padding-left: 15px;
      padding-right: 15px;
      font-size: 18px;
      line-height: 50px;
    }

    .topbar .top-navbar .navbar-nav > .nav-item > span {
      line-height: 45px;
      font-size: 24px;
      font-weight: 600;
      color: #fff;
      padding: 0 10px;
    }

  .topbar .dropdown-menu {
    box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
    border-color: #e9ecef;
  }

    .topbar .dropdown-menu .dropdown-item {
      padding: 7px 1.5rem;
    }

  .topbar .user-dd {
    width: 280px;
    padding-bottom: 10px;
  }

/*******************
Notify
*******************/
.notify {
  position: relative;
  top: -28px;
  right: -7px;
}

  .notify .heartbit {
    position: absolute;
    top: -20px;
    right: -4px;
    height: 25px;
    width: 25px;
    z-index: 10;
    border: 5px solid #ba3e3d;
    border-radius: 70px;
    -moz-animation: heartbit 1s ease-out;
    -moz-animation-iteration-count: infinite;
    -o-animation: heartbit 1s ease-out;
    -o-animation-iteration-count: infinite;
    -webkit-animation: heartbit 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }

  .notify .point {
    width: 6px;
    height: 6px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: #ba3e3d;
    position: absolute;
    right: 6px;
    top: -10px;
  }

@-moz-keyframes heartbit {
  0% {
    -moz-transform: scale(0);
    opacity: 0.0;
  }

  25% {
    -moz-transform: scale(0.1);
    opacity: 0.1;
  }

  50% {
    -moz-transform: scale(0.5);
    opacity: 0.3;
  }

  75% {
    -moz-transform: scale(0.8);
    opacity: 0.5;
  }

  100% {
    -moz-transform: scale(1);
    opacity: 0.0;
  }
}

@-webkit-keyframes heartbit {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
  }

  25% {
    -webkit-transform: scale(0.1);
    opacity: 0.1;
  }

  50% {
    -webkit-transform: scale(0.5);
    opacity: 0.3;
  }

  75% {
    -webkit-transform: scale(0.8);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 0.0;
  }
}

.search-box .app-search {
  position: absolute;
  margin: 0px;
  display: block;
  z-index: 110;
  width: 100%;
  top: -1px;
  box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0px;
}

  .search-box .app-search input {
    width: 100.5%;
    padding: 20px 40px 20px 20px;
    border-radius: 0px;
    font-size: 17px;
    transition: 0.5s ease-in;
  }

    .search-box .app-search input:focus {
      border-color: #fff;
    }

  .search-box .app-search .srh-btn {
    position: absolute;
    top: 23px;
    cursor: pointer;
    background: #fff;
    width: 15px;
    height: 15px;
    right: 20px;
    font-size: 14px;
  }

/*******************
Megamenu
******************/
.mega-dropdown {
  position: static;
  width: 100%;
}

  .mega-dropdown .dropdown-menu {
    width: 100%;
    padding: 30px;
    margin-top: 0px;
  }

  .mega-dropdown ul {
    padding: 0px;
  }

    .mega-dropdown ul li {
      list-style: none;
    }

  .mega-dropdown .carousel-item .container {
    padding: 0px;
  }

  .mega-dropdown .nav-accordion .card {
    margin-bottom: 1px;
  }

  .mega-dropdown .nav-accordion .card-header {
    background: #fff;
  }

    .mega-dropdown .nav-accordion .card-header h5 {
      margin: 0px;
    }

      .mega-dropdown .nav-accordion .card-header h5 a {
        text-decoration: none;
        color: #212529;
      }
/*******************
AccessMenu
******************/
.access-dropdown {
  position: static;
  width: 100%;
}

  .access-dropdown .dropdown-menu {
    width: 100%;
    padding: 30px;
    margin-top: 0px;
  }

  .access-dropdown ul {
    padding: 0px;
  }

    .access-dropdown ul li {
      list-style: none;
    }

  .access-dropdown .carousel-item .container {
    padding: 0px;
  }

  .access-dropdown .nav-accordion .card {
    margin-bottom: 1px;
  }

  .access-dropdown .nav-accordion .card-header {
    background: #fff;
  }

    .access-dropdown .nav-accordion .card-header h5 {
      margin: 0px;
    }

      .access-dropdown .nav-accordion .card-header h5 a {
        text-decoration: none;
        color: #212529;
      }

  .access-dropdown .dropdown-menu {
    height: 480px;
    overflow: auto;
  }

/*******************
Main sidebar
******************/
.left-sidebar {
  position: absolute;
  width: 260px;
  height: 100%;
  top: 0px;
  left: -200px;
  z-index: 50;
  padding-top: 0px;
  background: #fff;
  box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease-in;
}

  .left-sidebar .nav-text-box {
    padding: 13px 25px 13px 15px;
    border-bottom: 1px solid #e9ecef;
  }

/*******************
sidebar navigation
******************/
.scroll-sidebar {
  height: calc(100% - 80px);
  position: relative;
  /*&.ps .ps__scrollbar-y-rail {
        left: 2px;
        right: auto;
        background: none;
        width: 6px;
        
    }*/
}

.collapse.in {
  display: block;
}

.sidebar-nav {
  padding: 15px 0 0 0px;
}

  .sidebar-nav ul {
    margin: 0px;
    padding: 0px;
  }

    .sidebar-nav ul li {
      list-style: none;
    }

      .sidebar-nav ul li a {
        color: #c3dfec;
        padding: 10px 15px 10px 15px;
        display: block;
        align-items: center;
      }

        .sidebar-nav ul li a span {
          -webkit-transition: 1s; /* For Safari 3.1 to 6.0 */
          transition: 1s;
        }

        .sidebar-nav ul li a i {
          float: right;
          font-style: normal;
          width: 32px;
          text-align: center;
          -webkit-transition: 1s; /* For Safari 3.1 to 6.0 */
          transition: 1s;
        }

        .sidebar-nav ul li a.active, .sidebar-nav ul li a:hover {
          color: #ffffff;
          font-size: 14px;
        }

          .sidebar-nav ul li a.active i, .sidebar-nav ul li a:hover i {
            color: #ffffff;
            font-size: 19px;
          }

          .sidebar-nav ul li a.active, .sidebar-nav ul li a.active i {
            color: #ffffff;
          }

      .sidebar-nav ul li ul {
        padding: 10px 0px 10px 0px;
        background: rgba(0, 0, 0, 0.02);
      }

        .sidebar-nav ul li ul li a {
          padding: 7px 15px 7px 20px;
        }

        .sidebar-nav ul li ul ul {
          padding-left: 15px;
        }

      .sidebar-nav ul li.nav-small-cap {
        font-size: 12px;
        margin-bottom: 0px;
        margin: 10px 0px 10px 0px;
        color: #adb5bd;
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
        font-weight: 600;
      }

      .sidebar-nav ul li.nav-devider {
        height: 1px;
        background: #e9ecef;
        display: block;
        margin: 15px 0;
      }

  .sidebar-nav > ul > li > a i {
    font-size: 16px;
    margin-top: 3px;
    vertical-align: middle;
    color: #c3dfec;
  }

  .sidebar-nav > ul > li > a .badge {
    margin-right: 7px;
    vertical-align: top;
  }

  .sidebar-nav > ul > li {
    margin-bottom: 8px;
    margin-top: 8px;
  }

    .sidebar-nav > ul > li.selected > a {
      color: #0071b5;
    }

      .sidebar-nav > ul > li.selected > a i {
        color: #0071b5;
      }

  .sidebar-nav .waves-effect {
    transition: none;
    -webkit-transition: none;
    -o-transition: none;
  }

  .sidebar-nav .has-arrow {
    position: relative;
  }

    .sidebar-nav .has-arrow::after {
      position: absolute;
      content: '';
      width: 7px;
      height: 7px;
      border-width: 1px 0 0 1px;
      border-style: solid;
      border-color: #54667a;
      margin-left: 10px;
      -webkit-transform: rotate(135deg) translate(0, -50%);
      -ms-transform: rotate(135deg) translate(0, -50%);
      -o-transform: rotate(135deg) translate(0, -50%);
      transform: rotate(135deg) translate(0, -50%);
      -webkit-transform-origin: top;
      -ms-transform-origin: top;
      -o-transform-origin: top;
      transform-origin: top;
      top: 21px;
      -webkit-transition: all .3s ease-out;
      -o-transition: all .3s ease-out;
      transition: all .3s ease-out;
    }

    /*.sidebar-nav .active > .has-arrow::after,*/
    .sidebar-nav li.selected > .has-arrow::after,
    .sidebar-nav li > .has-arrow.active::after,
    .sidebar-nav .has-arrow[aria-expanded="true"]::after {
      -webkit-transform: rotate(-135deg) translate(0, -50%);
      -ms-transform: rotate(-135deg) translate(0, -50%);
      -o-transform: rotate(-135deg) translate(0, -50%);
      top: 42%;
      width: 7px;
      transform: rotate(-135deg) translate(0, -50%);
    }

/*******************
 Right side toggle
*******************/
.right-sidebar {
  position: fixed;
  right: -240px;
  width: 240px;
  display: none;
  z-index: 1100;
  background: #fff;
  top: 0px;
  padding-bottom: 20px;
  height: 100%;
  box-shadow: 5px 1px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

  .right-sidebar .rpanel-title {
    display: block;
    padding: 22px 20px;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    background: #0071b5;
  }

    .right-sidebar .rpanel-title span {
      float: right;
      cursor: pointer;
      font-size: 11px;
    }

      .right-sidebar .rpanel-title span:hover {
        color: #fff;
      }

  .right-sidebar .r-panel-body {
    padding: 20px;
  }

    .right-sidebar .r-panel-body ul {
      margin: 0px;
      padding: 0px;
    }

      .right-sidebar .r-panel-body ul li {
        list-style: none;
        padding: 5px 0;
      }

.shw-rside {
  right: 0px;
  width: 300px;
  display: block;
}

/*******************
 Themecolors
*******************/
ul#themecolors {
  display: block;
}

  ul#themecolors li {
    display: inline-block;
  }

    ul#themecolors li:first-child {
      display: block;
    }

    ul#themecolors li a {
      width: 50px;
      height: 50px;
      display: inline-block;
      margin: 5px;
      color: transparent;
      position: relative;
    }

      ul#themecolors li a.working:before {
        content: "\f00c";
        font-family: "FontAwesome";
        font-size: 18px;
        line-height: 50px;
        width: 50px;
        height: 50px;
        position: absolute;
        top: 0;
        left: 0;
        color: #fff;
        text-align: center;
      }

.default-theme {
  background: #adb5bd;
}

.green-theme {
  background: #36bea6;
}

.yellow-theme {
  background: #ffbc34;
}

.red-theme {
  background: #ba3e3d;
}

.blue-theme {
  background: #0071b5;
}

.purple-theme {
  background: #7460ee;
}

.megna-theme {
  background: #01c0c8;
}

.default-dark-theme {
  background: #343a40;
  /* Old browsers */
  background: -moz-linear-gradient(left, #343a40 0%, #343a40 23%, #adb5bd 23%, #adb5bd 99%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #343a40 0%, #343a40 23%, #adb5bd 23%, #adb5bd 99%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #343a40 0%, #343a40 23%, #adb5bd 23%, #adb5bd 99%);
}

.green-dark-theme {
  background: #343a40;
  /* Old browsers */
  background: -moz-linear-gradient(left, #343a40 0%, #343a40 23%, #36bea6 23%, #36bea6 99%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #343a40 0%, #343a40 23%, #00c292 23%, #36bea6 99%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #343a40 0%, #343a40 23%, #36bea6 23%, #36bea6 99%);
}

.yellow-dark-theme {
  background: #343a40;
  /* Old browsers */
  background: -moz-linear-gradient(left, #343a40 0%, #343a40 23%, #f62d51 23%, #f62d51 99%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #343a40 0%, #343a40 23%, #f62d51 23%, #f62d51 99%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #343a40 0%, #343a40 23%, #f62d51 23%, #f62d51 99%);
}

.blue-dark-theme {
  background: #343a40;
  /* Old browsers */
  background: -moz-linear-gradient(left, #343a40 0%, #343a40 23%, #0071b5 23%, #0071b5 99%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #343a40 0%, #343a40 23%, #0071b5 23%, #0071b5 99%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #343a40 0%, #343a40 23%, #0071b5 23%, #0071b5 99%);
}

.purple-dark-theme {
  background: #343a40;
  /* Old browsers */
  background: -moz-linear-gradient(left, #343a40 0%, #343a40 23%, #7460ee 23%, #7460ee 99%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #343a40 0%, #343a40 23%, #7460ee 23%, #7460ee 99%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #343a40 0%, #343a40 23%, #7460ee 23%, #7460ee 99%);
}

.megna-dark-theme {
  background: #343a40;
  /* Old browsers */
  background: -moz-linear-gradient(left, #343a40 0%, #343a40 23%, #01c0c8 23%, #01c0c8 99%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #343a40 0%, #343a40 23%, #01c0c8 23%, #01c0c8 99%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #343a40 0%, #343a40 23%, #01c0c8 23%, #01c0c8 99%);
}

.red-dark-theme {
  background: #343a40;
  /* Old browsers */
  background: -moz-linear-gradient(left, #343a40 0%, #343a40 23%, #f62d51 23%, #f62d51 99%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #343a40 0%, #343a40 23%, #f62d51 23%, #f62d51 99%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #343a40 0%, #343a40 23%, #f62d51 23%, #f62d51 99%);
}

.chatonline img {
  margin-right: 10px;
  float: left;
  width: 30px;
}

.chatonline li a {
  padding: 13px 0;
  float: left;
  width: 100%;
}

  .chatonline li a span {
    color: #212529;
    line-height: 28px;
  }

    .chatonline li a span small {
      display: block;
      font-size: 10px;
    }

/*******************
 Perfect-scrollbar 
*******************/
.ps {
  -ms-touch-action: auto;
  touch-action: auto;
  overflow: hidden !important;
  -ms-overflow-style: none;
}

@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

.ps.ps--active-x > .ps__scrollbar-x-rail,
.ps.ps--active-y > .ps__scrollbar-y-rail {
  display: block;
  background-color: transparent;
}

.ps.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
  background-color: #eee;
  opacity: 0.9;
}

.ps.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  background-color: transparent;
  width: 8px;
}

.ps > .ps__scrollbar-x-rail {
  display: none;
  position: absolute;
  /* please don't change 'position' */
  opacity: 0;
  bottom: 0px;
  /* there must be 'bottom' for ps__scrollbar-x-rail */
  height: 6px;
}

  .ps > .ps__scrollbar-x-rail > .ps__scrollbar-x {
    position: absolute;
    /* please don't change 'position' */
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    bottom: 2px;
    /* there must be 'bottom' for ps__scrollbar-x */
    height: 6px;
  }

  .ps > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x,
  .ps > .ps__scrollbar-x-rail:active > .ps__scrollbar-x {
    height: 6px;
  }

.ps > .ps__scrollbar-y-rail {
  display: none;
  position: absolute;
  /* please don't change 'position' */
  opacity: 0;
  right: 0;
  /* there must be 'right' for ps__scrollbar-y-rail */
  width: 6px;
}

  .ps > .ps__scrollbar-y-rail > .ps__scrollbar-y {
    position: absolute;
    /* please don't change 'position' */
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    right: 2px;
    /* there must be 'right' for ps__scrollbar-y */
    width: 6px;
  }

  .ps > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y,
  .ps > .ps__scrollbar-y-rail:active > .ps__scrollbar-y {
    width: 6px;
  }

.ps:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0.9;
}

  .ps:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
    background-color: rgba(0, 0, 0, 0.2);
    height: 6px;
  }

.ps:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  background-color: rgba(0, 0, 0, 0.2);
  width: 6px;
}

.ps:hover > .ps__scrollbar-x-rail,
.ps:hover > .ps__scrollbar-y-rail {
  opacity: 0.6;
}

  .ps:hover > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x {
    background-color: rgba(0, 0, 0, 0.2);
  }

  .ps:hover > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y {
    background-color: rgba(0, 0, 0, 0.2);
  }

#slimtest3.ps .ps__scrollbar-y-rail {
  left: 3px;
  right: auto;
}

#slimtest4.ps > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  background-color: #01c0c8;
}

#slimtest4.ps:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  background-color: #01c0c8;
}

#slimtest4.ps:hover > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y {
  background-color: #01c0c8;
}


/*******************
textarea
******************/
textarea {
  resize: none;
}

/*******************
Form-control
******************/

.form-control::placeholder { /* Firefox  Chrome*/
  color: #99a7b4;
  opacity: 1;
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #99a7b4;
  opacity: 1;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #99a7b4;
  opacity: 1;
}

.form-control {
  color: #212529;
  min-height: 35px;
  display: initial;
  padding: 0.275rem 0.65rem;
  font-size: 13px;
}

.form-control-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  min-height: 20px;
}

.form-control:disabled,
.form-control[readonly] {
  opacity: 0.7;
}

.form-group.required .control-label:after {
  content: " *";
  color: red;
  margin-left: 1px;
}

.custom-control-input:focus ~ .custom-control-indicator {
  box-shadow: none;
}

.custom-control-input:checked ~ .custom-control-indicator {
  background-color: #83af37;
}

form label {
  font-weight: 400;
}

.form-group {
  margin-bottom: 25px;
}

.form-horizontal label {
  margin-bottom: 0px;
}

.form-control-static {
  padding-top: 0px;
}

.custom-control-label::before, .custom-control-label::after {
  top: 0.15rem;
}

.form-bordered .form-group {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 20px;
}

.custom-control-label::before {
  width: 1.2rem;
  height: 1.2rem;
}

.custom-control label {
  padding: 2px 5px 10px;
  font-weight: 500;
  font-size: 13px;
}

.custom-control-label::after {
  width: 1.2rem;
  height: 1.2rem;
}

.custom-control-label::before, .custom-control-label::after {
  top: 0.15rem;
}

@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}

/*******************
Form Dropzone
******************/
.dropzone {
  border: 1px dashed #e9ecef;
}

  .dropzone .dz-message {
    padding: 5% 0;
    margin: 0px;
  }

/*******************
Form Pickers
******************/
.asColorPicker-dropdown {
  max-width: 260px;
}

.asColorPicker-trigger {
  position: absolute;
  top: 0;
  right: -35px;
  height: 38px;
  width: 37px;
  border: 0;
}

.asColorPicker-clear {
  display: none;
  position: absolute;
  top: 5px;
  right: 10px;
  text-decoration: none;
}



table th {
  font-weight: 400;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #0071b5;
}

.datepicker.dropdown-menu {
  padding: 8px;
}

.datepicker table tr td.today,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today:hover {
  background: #0071b5;
  color: #fff;
}

.datepicker td,
.datepicker th {
  padding: 3px 6px;
}

.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover {
  background: #f6f6f6;
}

.datepicker table tr td span.active.active, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled.disabled, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active.disabled:hover.active, .datepicker table tr td span.active.disabled:hover.disabled, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active.disabled:hover:hover, .datepicker table tr td span.active.disabled:hover[disabled], .datepicker table tr td span.active.disabled[disabled], .datepicker table tr td span.active:active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active:hover.active, .datepicker table tr td span.active:hover.disabled, .datepicker table tr td span.active:hover:active, .datepicker table tr td span.active:hover:hover, .datepicker table tr td span.active:hover[disabled], .datepicker table tr td span.active[disabled] {
  background-color: #0071b5;
}

  .datepicker table tr td span.active,
  .datepicker table tr td span.active.disabled,
  .datepicker table tr td span.active.disabled:hover,
  .datepicker table tr td span.active:hover {
    background-color: #0071b5;
    background-image: -moz-linear-gradient(to bottom, #0071b5, #0071b5);
    background-image: -ms-linear-gradient(to bottom, #0071b5, #0071b5);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0071b5), to(#0071b5));
    background-image: -webkit-linear-gradient(to bottom, #0071b5, #0071b5);
    background-image: -o-linear-gradient(to bottom, #0071b5, #0071b5);
    background-image: linear-gradient(to bottom, #0071b5, #0071b5);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0071b5', endColorstr='#0071b5', GradientType=0);
    border-color: #0071b5;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  }

.datepicker table tr td.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover {
  background-color: #0071b5;
  background-image: -moz-linear-gradient(to bottom,#0071b5,#0071b5);
  background-image: -ms-linear-gradient(to bottom,#0071b5,#0071b5);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#0071b5),to(#0071b5));
  background-image: -webkit-linear-gradient(to bottom,#0071b5,#0071b5);
  background-image: -o-linear-gradient(to bottom,#0071b5,#0071b5);
  background-image: linear-gradient(to bottom,#0071b5,#0071b5);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0071b5', endColorstr='#0071b5', GradientType=0);
  border-color: #0071b5;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0,0,0,.25);
}

.datepicker table tr td span.new, .datepicker table tr td span.old {
  color: #212529;
}

.datepicker table tr td span.disabled, .datepicker table tr td span.disabled:hover {
  background: 0 0;
  color: #999;
  cursor: default;
}

.datepicker.dropdown-menu {
  border: 1px solid #e1e1e1 !important;
  border-radius: 0.25rem !important;
}

.datepicker .prev i, .datepicker .next i {
  font-size: 17px;
}
/*******************
Form summernote
******************/
.note-popover,
.note-icon-caret {
  display: none;
}

.note-editor.note-frame {
  border: 1px solid #e9ecef;
}

  .note-editor.note-frame .panel-heading {
    padding: 6px 10px 10px;
    border-bottom: 1px solid #e9ecef;
  }

.label {
  display: inline-block;
}

/*******************
Bootstrap select
******************/

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}

.bootstrap-select .dropdown-menu li a {
  display: block;
  padding: 7px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #212529;
  white-space: nowrap;
}

  .bootstrap-select .dropdown-menu li a:hover, .bootstrap-select .dropdown-menu li a:focus {
    color: #0071b5;
    background: #f8f9fa;
  }

.bootstrap-select .show > .dropdown-menu {
  display: block;
}

.bootstrap-touchspin .input-group-btn-vertical > .btn {
  padding: 9px 10px;
}

.select2-container--default .select2-selection--single {
  border-color: #e9ecef;
  height: 38px;
}

  .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 33px;
  }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  float: right;
  color: #fff;
  margin-right: 0px;
  margin-left: 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: #0071b5;
  color: #fff;
  border-color: #0071b5;
}

.input-form .btn {
  padding: 8px 12px;
}


.bootstrap-select .dropdown-menu li a span.text {
  font-size: 13px;
}

.bootstrap-select > .dropdown-toggle {
  background: #fff;
  border: 1px solid #e9ecef;
  font-size: 13px;
}

.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
}
/*******************
Form Material - Material inputs
******************/
.form-material .form-group {
  overflow: hidden;
}

.form-material .form-control {
  background-color: transparent;
  background-position: center bottom, center calc(100% - 1px);
  background-repeat: no-repeat;
  background-size: 0 2px, 100% 1px;
  padding: 0;
  transition: background 0s ease-out 0s;
}

  .form-material .form-control,
  .form-material .form-control.focus,
  .form-material .form-control:focus {
    background-image: linear-gradient(#0071b5, #0071b5), linear-gradient(#e9ecef, #e9ecef);
    border: 0 none;
    border-radius: 0;
    box-shadow: none;
    float: none;
  }

    .form-material .form-control.focus,
    .form-material .form-control:focus {
      background-size: 100% 2px, 100% 1px;
      outline: 0 none;
      transition-duration: 0.3s;
    }

.form-control-line .form-group {
  overflow: hidden;
}

.form-control-line .form-control {
  border: 0px;
  border-radius: 0px;
  padding-left: 0px;
  border-bottom: 1px solid #e9ecef;
}

  .form-control-line .form-control:focus {
    border-bottom: 1px solid #0071b5;
  }

/*******************
Form validation error 
******************/
.error .help-block {
  color: #ba3e3d;
}

/*******************
File Upload 
******************/
.fileupload {
  overflow: hidden;
  position: relative;
}

  .fileupload input.upload {
    cursor: pointer;
    filter: alpha(opacity=0);
    font-size: 20px;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
  }

.scale-up {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(0);
  transform: scale(0);
  display: inline-block;
  transform-origin: right 0px;
}

.scale-up-left {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(0);
  transform: scale(0);
  display: inline-block;
  transform-origin: left 0px;
}

.show > .scale-up {
  transform: scale(1);
  transform-origin: right 0px;
}

.show > .scale-up-left {
  transform: scale(1);
  transform-origin: left 0px;
}

/*Radio button*/
@keyframes ripple {
  0% {
    box-shadow: 0px 0px 0px 1px transparent;
  }

  50% {
    box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1);
  }

  100% {
    box-shadow: 0px 0px 0px 15px transparent;
  }
}

/*Floating label*/
/*Bootstrap Select*/
.bootstrap-select.btn-group .dropdown-menu {
  box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
}

/*Form Validation*/
.help-block ul {
  padding: 0px;
  margin: 0px;
}

  .help-block ul li {
    list-style: none;
  }

.error .form-control {
  border-color: #ba3e3d;
}

.validate .form-control {
  border-color: #83af37;
}

/*Form Input States*/
.form-control-success,
.form-control-warning,
.form-control-danger {
  padding-right: 2.25rem;
  background-repeat: no-repeat;
  background-position: center right 0.5625rem;
  -webkit-background-size: 1.125rem 1.125rem;
  background-size: 1.125rem 1.125rem;
}

.has-success .form-control-feedback,
.has-success .form-control-label,
.has-success .col-form-label,
.has-success .form-check-label,
.has-success .custom-control {
  color: #83af37;
}

.has-success .form-control {
  border-color: #83af37;
}

.has-success .input-group-addon {
  color: #83af37;
  border-color: #83af37;
}

.has-success .form-control-success {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
}

.has-warning .form-control-feedback,
.has-warning .form-control-label,
.has-warning .col-form-label,
.has-warning .form-check-label,
.has-warning .custom-control {
  color: #ffbc34;
}

.has-warning .form-control {
  border-color: #ffbc34;
}

.has-warning .input-group-addon {
  color: #ffbc34;
  border-color: #ffbc34;
}

.has-warning .form-control-warning {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E");
}

.has-danger .form-control-feedback,
.has-danger .form-control-label,
.has-danger .col-form-label,
.has-danger .form-check-label,
.has-danger .custom-control {
  color: #ba3e3d;
}

.has-danger .form-control {
  border-color: #ba3e3d;
}

.has-danger .input-group-addon {
  color: #ba3e3d;
  border-color: #ba3e3d;
}

.has-danger .form-control-danger {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E");
}

/*******************
Table Cell
*******************/
.table-box {
  display: table;
  width: 100%;
}

.cell {
  display: table-cell;
  vertical-align: middle;
}

.table thead th,
.table th {
  font-weight: 600;
}

.nowrap {
  white-space: nowrap;
}

.lite-padding td {
  padding: 5px;
}

.v-middle td,
.v-middle th {
  vertical-align: middle;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-striped tbody tr:nth-of-type(odd) {
  background: #f8f9fa;
}

.table th {
  padding: 0.5rem;
}

.table td {
  padding: 0.3rem;
}


.table-outlin-box {
  width: 100%;
}

  .table-outlin-box > thead > tr > th {
    text-align: center;
    font-weight: bold;
    border-bottom: solid 1px #D9E6F1;
    padding: 10px;
  }

  .table-outlin-box > thead > tr:first-child > th {
    text-align: center;
    padding: 25px 10px 10px;
    font-size: 16px;
    text-align: center;
    font-weight: 700;
  }

  .table-outlin-box > tbody > tr > td {
    padding-top: 20px;
    text-align: center;
  }

/*******************
Table td vertical middle
*******************/
.vm.table td,
.vm.table th {
  vertical-align: middle;
}

.no-th-brd.table th {
  border: 0px;
}

.table.no-border tbody td {
  border: 0px;
}

/*******************
Table-Layout
******************/
.color-table th {
  border: 0px;
}

.color-table.primary-table thead th {
  background-color: #165d99;
  color: #fff;
}

.table-striped tbody tr:nth-of-type(odd) {
  background: #f8f9fa;
}

.color-table.success-table thead th {
  background-color: #83af37;
  color: #fff;
}

.color-table.info-table thead th {
  background-color: #01c0c8;
  color: #fff;
}

.color-table.warning-table thead th {
  background-color: #ffbc34;
  color: #fff;
}

.color-table.danger-table thead th {
  background-color: #ba3e3d;
  color: #fff;
}

.color-table.inverse-table thead th {
  background-color: #343a40;
  color: #fff;
}

.color-table.dark-table thead th {
  background-color: #343a40;
  color: #fff;
}

.color-table.red-table thead th {
  background-color: #f62d51;
  color: #fff;
}

.color-table.purple-table thead th {
  background-color: #7460ee;
  color: #fff;
}

.color-table.muted-table thead th {
  background-color: #adb5bd;
  color: #fff;
}

.color-bordered-table.primary-bordered-table {
  border: 2px solid #165d99;
}

  .color-bordered-table.primary-bordered-table thead th {
    background-color: #165d99;
    color: #fff;
  }

.color-bordered-table.success-bordered-table {
  border: 2px solid #83af37;
}

  .color-bordered-table.success-bordered-table thead th {
    background-color: #83af37;
    color: #fff;
  }

.color-bordered-table.info-bordered-table {
  border: 2px solid #01c0c8;
}

  .color-bordered-table.info-bordered-table thead th {
    background-color: #01c0c8;
    color: #fff;
  }

.color-bordered-table.warning-bordered-table {
  border: 2px solid #ffbc34;
}

  .color-bordered-table.warning-bordered-table thead th {
    background-color: #ffbc34;
    color: #fff;
  }

.color-bordered-table.danger-bordered-table {
  border: 2px solid #ba3e3d;
}

  .color-bordered-table.danger-bordered-table thead th {
    background-color: #f62d51;
    color: #fff;
  }

.color-bordered-table.inverse-bordered-table {
  border: 2px solid #343a40;
}

  .color-bordered-table.inverse-bordered-table thead th {
    background-color: #343a40;
    color: #fff;
  }

.color-bordered-table.dark-bordered-table {
  border: 2px solid #343a40;
}

  .color-bordered-table.dark-bordered-table thead th {
    background-color: #343a40;
    color: #fff;
  }

.color-bordered-table.red-bordered-table {
  border: 2px solid #f62d51;
}

  .color-bordered-table.red-bordered-table thead th {
    background-color: #f62d51;
    color: #fff;
  }

.color-bordered-table.purple-bordered-table {
  border: 2px solid #7460ee;
}

  .color-bordered-table.purple-bordered-table thead th {
    background-color: #7460ee;
    color: #fff;
  }

.color-bordered-table.muted-bordered-table {
  border: 2px solid #adb5bd;
}

  .color-bordered-table.muted-bordered-table thead th {
    background-color: #adb5bd;
    color: #fff;
  }

.full-color-table.full-primary-table {
  color: #3c327c;
  background-color: #e3dffc;
  border-color: #d8d2fa;
}

  .full-color-table.full-primary-table hr {
    border-top-color: #c4bbf7;
  }

  .full-color-table.full-primary-table .alert-link {
    color: #2a2358;
  }

  .full-color-table.full-primary-table thead th {
    color: #3c327c;
    background-color: #6b58db;
    border-color: #d8d2fa;
    color: #fff;
  }

    .full-color-table.full-primary-table thead th hr {
      border-top-color: #c4bbf7;
    }

    .full-color-table.full-primary-table thead th .alert-link {
      color: #2a2358;
    }

  .full-color-table.full-primary-table tbody td {
    border: 0;
  }

  .full-color-table.full-primary-table tr:hover {
    color: #3c327c;
    background-color: #aca0f5;
    border-color: #d8d2fa;
    color: #fff;
  }

    .full-color-table.full-primary-table tr:hover hr {
      border-top-color: #c4bbf7;
    }

    .full-color-table.full-primary-table tr:hover .alert-link {
      color: #2a2358;
    }

.full-color-table.full-secondary-table {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

  .full-color-table.full-secondary-table hr {
    border-top-color: #ececf6;
  }

  .full-color-table.full-secondary-table .alert-link {
    color: #686868;
  }

  .full-color-table.full-secondary-table thead th {
    color: #818182;
    background-color: #e4e5e6;
    border-color: #fdfdfe;
    color: #fff;
  }

    .full-color-table.full-secondary-table thead th hr {
      border-top-color: #ececf6;
    }

    .full-color-table.full-secondary-table thead th .alert-link {
      color: #686868;
    }

  .full-color-table.full-secondary-table tbody td {
    border: 0;
  }

  .full-color-table.full-secondary-table tr:hover {
    color: #818182;
    background-color: #fbfbfc;
    border-color: #fdfdfe;
    color: #fff;
  }

    .full-color-table.full-secondary-table tr:hover hr {
      border-top-color: #ececf6;
    }

    .full-color-table.full-secondary-table tr:hover .alert-link {
      color: #686868;
    }

.full-color-table.full-success-table {
  color: #1c6356;
  background-color: #d7f2ed;
  border-color: #c7ede6;
}

  .full-color-table.full-success-table hr {
    border-top-color: #b4e7dd;
  }

  .full-color-table.full-success-table .alert-link {
    color: #113b33;
  }

  .full-color-table.full-success-table thead th {
    color: #1c6356;
    background-color: #32af99;
    border-color: #c7ede6;
    color: #fff;
  }

    .full-color-table.full-success-table thead th hr {
      border-top-color: #b4e7dd;
    }

    .full-color-table.full-success-table thead th .alert-link {
      color: #113b33;
    }

  .full-color-table.full-success-table tbody td {
    border: 0;
  }

  .full-color-table.full-success-table tr:hover {
    color: #1c6356;
    background-color: #86d8ca;
    border-color: #c7ede6;
    color: #fff;
  }

    .full-color-table.full-success-table tr:hover hr {
      border-top-color: #b4e7dd;
    }

    .full-color-table.full-success-table tr:hover .alert-link {
      color: #113b33;
    }

.full-color-table.full-info-table {
  color: #005283;
  background-color: #ccecfe;
  border-color: #b8e4fe;
}

  .full-color-table.full-info-table hr {
    border-top-color: #9fdafe;
  }

  .full-color-table.full-info-table .alert-link {
    color: #003250;
  }

  .full-color-table.full-info-table thead th {
    color: #005283;
    background-color: #0091e7;
    border-color: #b8e4fe;
    color: #fff;
  }

    .full-color-table.full-info-table thead th hr {
      border-top-color: #9fdafe;
    }

    .full-color-table.full-info-table thead th .alert-link {
      color: #003250;
    }

  .full-color-table.full-info-table tbody td {
    border: 0;
  }

  .full-color-table.full-info-table tr:hover {
    color: #005283;
    background-color: #66c5fd;
    border-color: #b8e4fe;
    color: #fff;
  }

    .full-color-table.full-info-table tr:hover hr {
      border-top-color: #9fdafe;
    }

    .full-color-table.full-info-table tr:hover .alert-link {
      color: #003250;
    }

.full-color-table.full-warning-table {
  color: #85621b;
  background-color: #fff2d6;
  border-color: #ffecc6;
}

  .full-color-table.full-warning-table hr {
    border-top-color: #ffe4ad;
  }

  .full-color-table.full-warning-table .alert-link {
    color: #5b4312;
  }

  .full-color-table.full-warning-table thead th {
    color: #85621b;
    background-color: #ebad30;
    border-color: #ffecc6;
    color: #fff;
  }

    .full-color-table.full-warning-table thead th hr {
      border-top-color: #ffe4ad;
    }

    .full-color-table.full-warning-table thead th .alert-link {
      color: #5b4312;
    }

  .full-color-table.full-warning-table tbody td {
    border: 0;
  }

  .full-color-table.full-warning-table tr:hover {
    color: #85621b;
    background-color: #ffd785;
    border-color: #ffecc6;
    color: #fff;
  }

    .full-color-table.full-warning-table tr:hover hr {
      border-top-color: #ffe4ad;
    }

    .full-color-table.full-warning-table tr:hover .alert-link {
      color: #5b4312;
    }

.full-color-table.full-danger-table {
  color: #80172a;
  background-color: #fdd5dc;
  border-color: #fcc4ce;
}

  .full-color-table.full-danger-table hr {
    border-top-color: #fbacba;
  }

  .full-color-table.full-danger-table .alert-link {
    color: #550f1c;
  }

  .full-color-table.full-danger-table thead th {
    color: #80172a;
    background-color: #e2294b;
    border-color: #fcc4ce;
    color: #fff;
  }

    .full-color-table.full-danger-table thead th hr {
      border-top-color: #fbacba;
    }

    .full-color-table.full-danger-table thead th .alert-link {
      color: #550f1c;
    }

  .full-color-table.full-danger-table tbody td {
    border: 0;
  }

  .full-color-table.full-danger-table tr:hover {
    color: #80172a;
    background-color: #fa8197;
    border-color: #fcc4ce;
    color: #fff;
  }

    .full-color-table.full-danger-table tr:hover hr {
      border-top-color: #fbacba;
    }

    .full-color-table.full-danger-table tr:hover .alert-link {
      color: #550f1c;
    }

.full-color-table.full-light-table {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

  .full-color-table.full-light-table hr {
    border-top-color: #ececf6;
  }

  .full-color-table.full-light-table .alert-link {
    color: #686868;
  }

  .full-color-table.full-light-table thead th {
    color: #818182;
    background-color: #e4e5e6;
    border-color: #fdfdfe;
    color: #fff;
  }

    .full-color-table.full-light-table thead th hr {
      border-top-color: #ececf6;
    }

    .full-color-table.full-light-table thead th .alert-link {
      color: #686868;
    }

  .full-color-table.full-light-table tbody td {
    border: 0;
  }

  .full-color-table.full-light-table tr:hover {
    color: #818182;
    background-color: #fbfbfc;
    border-color: #fdfdfe;
    color: #fff;
  }

    .full-color-table.full-light-table tr:hover hr {
      border-top-color: #ececf6;
    }

    .full-color-table.full-light-table tr:hover .alert-link {
      color: #686868;
    }

.full-color-table.full-cyan-table {
  color: #016468;
  background-color: #ccf2f4;
  border-color: #b8edf0;
}

  .full-color-table.full-cyan-table hr {
    border-top-color: #a3e8ec;
  }

  .full-color-table.full-cyan-table .alert-link {
    color: #013335;
  }

  .full-color-table.full-cyan-table thead th {
    color: #016468;
    background-color: #01b1b8;
    border-color: #b8edf0;
    color: #fff;
  }

    .full-color-table.full-cyan-table thead th hr {
      border-top-color: #a3e8ec;
    }

    .full-color-table.full-cyan-table thead th .alert-link {
      color: #013335;
    }

  .full-color-table.full-cyan-table tbody td {
    border: 0;
  }

  .full-color-table.full-cyan-table tr:hover {
    color: #016468;
    background-color: #67d9de;
    border-color: #b8edf0;
    color: #fff;
  }

    .full-color-table.full-cyan-table tr:hover hr {
      border-top-color: #a3e8ec;
    }

    .full-color-table.full-cyan-table tr:hover .alert-link {
      color: #013335;
    }

.full-color-table.full-dark-table {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

  .full-color-table.full-dark-table hr {
    border-top-color: #b9bbbe;
  }

  .full-color-table.full-dark-table .alert-link {
    color: #040505;
  }

  .full-color-table.full-dark-table thead th {
    color: #1b1e21;
    background-color: #30353b;
    border-color: #c6c8ca;
    color: #fff;
  }

    .full-color-table.full-dark-table thead th hr {
      border-top-color: #b9bbbe;
    }

    .full-color-table.full-dark-table thead th .alert-link {
      color: #040505;
    }

  .full-color-table.full-dark-table tbody td {
    border: 0;
  }

  .full-color-table.full-dark-table tr:hover {
    color: #1b1e21;
    background-color: #85898c;
    border-color: #c6c8ca;
    color: #fff;
  }

    .full-color-table.full-dark-table tr:hover hr {
      border-top-color: #b9bbbe;
    }

    .full-color-table.full-dark-table tr:hover .alert-link {
      color: #040505;
    }

.full-color-table.full-purple-table {
  color: #3c327c;
  background-color: #e3dffc;
  border-color: #d8d2fa;
}

  .full-color-table.full-purple-table hr {
    border-top-color: #c4bbf7;
  }

  .full-color-table.full-purple-table .alert-link {
    color: #2a2358;
  }

  .full-color-table.full-purple-table thead th {
    color: #3c327c;
    background-color: #6b58db;
    border-color: #d8d2fa;
    color: #fff;
  }

    .full-color-table.full-purple-table thead th hr {
      border-top-color: #c4bbf7;
    }

    .full-color-table.full-purple-table thead th .alert-link {
      color: #2a2358;
    }

  .full-color-table.full-purple-table tbody td {
    border: 0;
  }

  .full-color-table.full-purple-table tr:hover {
    color: #3c327c;
    background-color: #aca0f5;
    border-color: #d8d2fa;
    color: #fff;
  }

    .full-color-table.full-purple-table tr:hover hr {
      border-top-color: #c4bbf7;
    }

    .full-color-table.full-purple-table tr:hover .alert-link {
      color: #2a2358;
    }



.table td.hiddenRow, .table th.hiddenRow {
  padding: 0px;
}

.table .table {
  background-color: #fafafa;
  margin-bottom: 0px;
}


  .table .table th, .table .table td {
    border-top: 1px solid #ededed;
  }

.table-accordion .table td {
  background: #f7f7f7;
}

.table-accordion .table .table th, .table-accordion .table .table td {
  background-color: #fff;
}

.table-accordion .accordion-toggle {
  cursor: pointer;
}
/*******************
Table-Data Table
******************/
.dataTables_wrapper {
  padding-top: 2px;
}

.dt-buttons {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 15px;
}

  .dt-buttons .dt-button {
    padding: 5px 15px;
    border-radius: 0.25rem;
    background: #0071b5;
    color: #fff;
    margin-right: 3px;
  }

    .dt-buttons .dt-button:hover {
      background: #343a40;
    }

.dataTables_info,
.dataTables_length {
  display: inline-block;
  font-size: 12px
}

.dataTables_length {
  margin-top: 10px;
}

  .dataTables_length select {
    border: 0;
    background-image: linear-gradient(#0071b5, #0071b5), linear-gradient(#e9ecef, #e9ecef);
    background-size: 0 2px, 100% 1px;
    background-repeat: no-repeat;
    background-position: center bottom, center calc(100% - 1px);
    background-color: transparent;
    transition: background 0s ease-out;
    padding-bottom: 5px;
  }

    .dataTables_length select:focus {
      outline: none;
      background-image: linear-gradient(#0071b5, #0071b5), linear-gradient(#e9ecef, #e9ecef);
      background-size: 100% 2px, 100% 1px;
      box-shadow: none;
      transition-duration: 0.3s;
    }

.dataTables_filter {
  float: left;
  margin-top: 10px;
  font-size: 12px;
}

  .dataTables_filter input {
    border: 0;
    background-image: linear-gradient(#0071b5, #0071b5), linear-gradient(#e9ecef, #e9ecef);
    background-size: 0 2px, 100% 1px;
    background-repeat: no-repeat;
    background-position: center bottom, center calc(100% - 1px);
    background-color: transparent;
    transition: background 0s ease-out;
    float: none;
    box-shadow: none;
    border-radius: 0;
    margin-left: 10px;
  }

    .dataTables_filter input:focus {
      outline: none;
      background-image: linear-gradient(#0071b5, #0071b5), linear-gradient(#e9ecef, #e9ecef);
      background-size: 100% 2px, 100% 1px;
      box-shadow: none;
      transition-duration: 0.3s;
    }

@media (min-width: 450px) {
  .dataTables_filter {
    float: right;
  }
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  background: transparent;
}

  table.dataTable thead .sorting_asc:after {
    content: "\f0de";
    margin-left: 10px;
    font-family: fontawesome;
    cursor: pointer;
  }

  table.dataTable thead .sorting_desc:after {
    content: "\f0dd";
    margin-left: 10px;
    font-family: fontawesome;
    cursor: pointer;
  }

  table.dataTable thead .sorting:after {
    content: "\f0dc";
    margin-left: 10px;
    font-family: fontawesome !important;
    cursor: pointer;
    color: rgba(50, 50, 50, 0.5);
  }

.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  padding-top: 0.25em;
  font-size: 12px;
}

  .dataTables_wrapper .dataTables_paginate .paginate_button {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    padding: 0.5em 1em;
    margin-left: 2px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    *cursor: hand;
    color: #54667a;
    border: 1px solid transparent;
    border-radius: 2px;
  }

    .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
      color: #ffffff;
      border: 1px solid #3182c1;
      background-color: #3182c1;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
      cursor: default;
      color: #54667a;
      border: 1px solid transparent;
      background: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
      color: white;
      border: 1px solid #225ea2;
      background-color: #225ea2;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button:active {
      outline: none;
      background-color: #54667a;
    }

  .dataTables_wrapper .dataTables_paginate .ellipsis {
    padding: 0 1em;
  }

.dataTables_scrollHead table {
  margin-bottom: 0px;
}

.dataTables_scrollBody table {
  margin-bottom: 0px;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.child, table.dataTable.dtr-inline.collapsed > tbody > tr > th.child, table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty {
  cursor: default !important;
}

  table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before, table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before, table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before {
    display: none !important;
  }

table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child, table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}

  table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child:before, table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child:before {
    top: 8px;
    left: 4px;
    height: 14px;
    width: 14px;
    display: block;
    position: absolute;
    color: white;
    border: 2px solid white;
    border-radius: 14px;
    box-shadow: 0 0 3px #444;
    box-sizing: content-box;
    text-align: center;
    text-indent: 0 !important;
    font-family: 'Courier New', Courier, monospace;
    line-height: 16px;
    content: '+';
    background-color: #83af37;
  }

table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before, table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
  content: '-';
  background-color: #c6545f;
}

table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child, table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {
  padding-left: 27px;
}

  table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before, table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {
    top: 5px;
    left: 4px;
    height: 14px;
    width: 14px;
    border-radius: 14px;
    line-height: 14px;
    text-indent: 3px;
  }

table.dataTable.dtr-column > tbody > tr > td.control, table.dataTable.dtr-column > tbody > tr > th.control {
  position: relative;
  cursor: pointer;
}

  table.dataTable.dtr-column > tbody > tr > td.control:before, table.dataTable.dtr-column > tbody > tr > th.control:before {
    top: 50%;
    left: 50%;
    height: 16px;
    width: 16px;
    margin-top: -10px;
    margin-left: -10px;
    display: block;
    position: absolute;
    color: white;
    border: 2px solid white;
    border-radius: 14px;
    box-shadow: 0 0 3px #444;
    box-sizing: content-box;
    text-align: center;
    text-indent: 0 !important;
    font-family: 'Courier New', Courier, monospace;
    line-height: 16px;
    content: '+';
    background-color: #83af37;
  }

table.dataTable.dtr-column > tbody > tr.parent td.control:before, table.dataTable.dtr-column > tbody > tr.parent th.control:before {
  content: '-';
  background-color: #c6545f;
}

table.dataTable > tbody > tr.child {
  padding: 0.5em 1em;
}

  table.dataTable > tbody > tr.child:hover {
    background: transparent !important;
  }

  table.dataTable > tbody > tr.child ul.dtr-details {
    display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

    table.dataTable > tbody > tr.child ul.dtr-details > li {
      /*border-bottom: 1px solid #efefef;
    */
      padding: 0.5em 0;
    }

      table.dataTable > tbody > tr.child ul.dtr-details > li:first-child {
        padding-top: 0;
      }

      table.dataTable > tbody > tr.child ul.dtr-details > li:last-child {
        border-bottom: none;
      }

  table.dataTable > tbody > tr.child span.dtr-title {
    display: inline-block;
    font-weight: bold;
  }

  table.dataTable > tbody > tr.child span.dtr-data {
    margin-left: 15px;
    text-align: left;
  }
/*******************
Table- responsive
******************/
.tablesaw-bar .btn-group label {
  color: #212529 !important;
}

.table th, .table td {
  border-top: 1px solid #f2f2f2;
}

.table tr:first-of-type td {
  border-top: 0px solid #f2f2f2;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 3px solid #f2f2f2;
}

.table tfoot th {
  vertical-align: bottom;
  border-top: 2px solid #f2f2f2;
}

/*******************
Table- editable table
******************/
.dt-bootstrap {
  display: block;
}

.paging_simple_numbers .pagination .paginate_button {
  padding: 0px;
  background: #fff;
}

  .paging_simple_numbers .pagination .paginate_button:hover {
    background: #fff;
  }

  .paging_simple_numbers .pagination .paginate_button a {
    padding: 3px 10px;
    border: 0px;
  }

  .paging_simple_numbers .pagination .paginate_button.active a,
  .paging_simple_numbers .pagination .paginate_button:hover a {
    background: #01c0c8;
    color: #fff;
  }

.stylish-table.table td {
  padding: 0.7rem;
}

.stylish-table tbody tr {
  border-left: 3px solid transparent;
}

  .stylish-table tbody tr:hover, .stylish-table tbody tr.active {
    border-color: #0071b5;
  }

.stylish-table thead th {
  font-weight: 400;
  color: #808c92;
  border: 0px;
  border-bottom: 1px;
}

.stylish-table tbody tr {
  border-left: 4px solid #ffffff;
}

  .stylish-table tbody tr:hover, .stylish-table tbody tr.active {
    border-left: 4px solid #b3d4f5;
  }

.stylish-table tbody td {
  vertical-align: middle;
}

  .stylish-table tbody td h6 {
    font-weight: 400;
    margin-bottom: 0px;
    /*white-space: nowrap;*/
  }

  .stylish-table tbody td small {
    line-height: 12px;
    font-size: 12px;
  }

/*******************
Table-Jsgrid table
******************/
.jsgrid-pager-page a,
.jsgrid-pager-current-page,
.jsgrid-pager-nav-button a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.5em 1em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  color: #67757c;
  border: 1px solid #ddd;
}

  .jsgrid-pager-page a:hover,
  .jsgrid-pager-nav-button a:hover {
    background-color: #0071b5;
    color: #fff;
  }

.jsgrid-pager-current-page {
  background-color: #0071b5;
  color: #fff;
}

.jsgrid-pager-page,
.jsgrid-pager-nav-button {
  padding: 0;
}

  .jsgrid-pager-page.jsgrid-pager-current-page {
    padding: 0.5em 1em !important;
  }

/*******************
calendar - profile
*******************/
.calendar-events {
  padding: 8px 10px;
  border: 1px solid #fff;
  cursor: move;
}

  .calendar-events:hover {
    border: 1px dashed #e9ecef;
  }

  .calendar-events i {
    margin-right: 8px;
  }

.profile-tab li a.nav-link,
.customtab li a.nav-link {
  border: 0px;
  padding: 15px 20px;
  color: #212529;
}

  .profile-tab li a.nav-link.active,
  .customtab li a.nav-link.active {
    border-bottom: 2px solid #0071b5;
    color: #0071b5;
  }

  .profile-tab li a.nav-link:hover,
  .customtab li a.nav-link:hover {
    color: #0071b5;
  }

html body .jqstooltip,
html body .flotTip {
  width: auto !important;
  height: auto !important;
  background: #343a40;
  color: #fff;
  padding: 5px 10px;
}

body .jqstooltip {
  border-color: transparent;
  border-radius: 60px;
}

/*******************
Notification - toaster
******************/
.jq-icon-info {
  background-color: #3280b7;
  color: #fff;
}

.jq-icon-success {
  background-color: #83af37;
  color: #fff;
}

.jq-icon-error {
  background-color: #ba3e3d;
  color: #fff;
}

.jq-icon-warning {
  background-color: #f3b632;
  color: #fff;
}

/*******************
Notification - toast
******************/

.toast {
  background-color: #3280b7;
  pointer-events: auto;
}

.toast-success {
  background-color: #83af37;
}

.toast-error {
  background-color: #ba3e3d;
}

.toast-info {
  background-color: #428bbf;
}

.toast-warning {
  background-color: #f3b632;
}

.toast-close-button {
  top: -0.8em;
  text-shadow: 0 0px 0 #ffffff;
}

.toast-container .toast {
  border-radius: 0px;
  box-shadow: 0 0 0px #999999;
  padding: 15px 15px 20px 50px;
}

  .toast-container .toast:hover {
    border-radius: 0px;
    box-shadow: 0 0 0px #999999;
  }

.toast-close-button {
  text-shadow: none;
  font-size: 18px;
  font-weight: 400;
}

.toast-message {
  margin-top: 5px;
}

.toast-progress {
  height: 5px;
  background-color: #7d0f0e;
}
/*******************
c3 chart global
******************/
.c3 text {
  fill-opacity: 0.5;
}

.no-shrink {
  flex-shrink: 0;
}

.up-img {
  background-size: cover;
  background-position: center center;
  min-height: 340px;
}

.badge.badge-pill {
  padding: 0.2em 1em;
}

/*******************
list-inline
******************/
ul.list-inline li {
  display: inline-block;
  margin: 0 5px;
}


/*============================================================== 
 For all pages 
 ============================================================== */
#main-wrapper {
  width: 100%;
  overflow: hidden;
}

.page-wrapper {
  background: #edf1f5;
  position: relative;
  transition: 0.2s ease-in;
}

.container-fluid {
  padding: 0px 20px 20px 20px;
}

/*******************
 Breadcrumb and page title
*******************/
.page-titles {
  padding: 14px 10px;
  margin: 5px -20px 5px -20px;
}

  .page-titles h4 {
    margin-bottom: 0px;
    margin-top: 0px;
  }

  .page-titles .breadcrumb {
    padding: 0px;
    margin: 0px;
    background: transparent;
  }

    .page-titles .breadcrumb li a {
      color: #212529;
    }

    .page-titles .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
      content: "\e649";
      font-family: themify;
      color: #ced4da;
      font-size: 11px;
    }

    .page-titles .breadcrumb .breadcrumb-item.active {
      color: #0071b5;
      font-weight: 600;
    }

.dropdown-menu {
  padding: 0px;
  border: 0px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
}

  .dropdown-menu .with-arrow {
    position: absolute;
    height: 10px;
    overflow: hidden;
    width: 40px;
    top: -10px;
  }

    .dropdown-menu .with-arrow > span {
      transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      background-color: #fff;
      width: 12px;
      height: 12px;
      top: 5px;
      left: 17px;
      position: absolute;
      content: "";
      -moz-border-radius: 3px 0 0 0;
      border-radius: 3px 0 0 0;
      /*box-shadow:-3px -3px 8px rgba(0, 0, 0, 0.1);    */
    }

  .dropdown-menu.dropdown-menu-right .with-arrow {
    right: 0px;
  }

    .dropdown-menu.dropdown-menu-right .with-arrow > span {
      right: 22px;
      left: auto;
    }

/*******************
 Footer
*******************/
.footer {
  bottom: 0;
  color: #212529;
  left: 0px;
  padding: 17px 15px;
  right: 0;
  border-top: 1px solid #e9ecef;
  background: #fff;
}

/*******************
Wave Effects
*******************/
.waves-effect {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  vertical-align: middle;
  z-index: 1;
  will-change: opacity, transform;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

  .waves-effect .waves-ripple {
    position: absolute;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.7s ease-out;
    -moz-transition: all 0.7s ease-out;
    -o-transition: all 0.7s ease-out;
    -ms-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    -o-transition-property: -o-transform, opacity;
    transition-property: transform, opacity;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    pointer-events: none;
  }

  .waves-effect.waves-light .waves-ripple {
    background-color: rgba(255, 255, 255, 0.45);
  }

  .waves-effect.waves-red .waves-ripple {
    background-color: rgba(244, 67, 54, 0.7);
  }

  .waves-effect.waves-yellow .waves-ripple {
    background-color: rgba(255, 235, 59, 0.7);
  }

  .waves-effect.waves-orange .waves-ripple {
    background-color: rgba(255, 152, 0, 0.7);
  }

  .waves-effect.waves-purple .waves-ripple {
    background-color: rgba(156, 39, 176, 0.7);
  }

  .waves-effect.waves-green .waves-ripple {
    background-color: rgba(76, 175, 80, 0.7);
  }

  .waves-effect.waves-teal .waves-ripple {
    background-color: rgba(0, 150, 136, 0.7);
  }

html body .waves-notransition {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
}

.waves-circle {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  text-align: center;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  border-radius: 50%;
  -webkit-mask-image: none;
}

.waves-input-wrapper {
  border-radius: 0.2em;
  vertical-align: bottom;
}

  .waves-input-wrapper .waves-button-input {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
  }

.waves-block {
  display: block;
}

/*******************
Fixed -sidebar
******************/
.fixed-sidebar .left-sidebar {
  position: fixed;
}

.fixed-sidebar.mini-sidebar .navbar-collapse, .fixed-sidebar.mini-sidebar .footer {
  margin-left: 70px;
}

@media (max-width: 767px) {
  .fixed-sidebar.mini-sidebar .navbar-header {
    position: relative;
  }

  .fixed-sidebar.mini-sidebar .navbar-collapse {
    margin-left: 0px;
  }
}

/*******************
Fixed -Header
******************/
.fixed-header .topbar {
  position: fixed;
  width: 100%;
}

.fixed-header .page-wrapper {
  padding-top: 67px;
}

.fixed-layout .left-sidebar, .fixed-layout .topbar {
  position: fixed;
}

.fixed-layout .topbar {
  width: 100%;
}

.fixed-layout .page-wrapper {
  padding-top: 67px;
}

/*******************
Boxed
******************/
.boxed #main-wrapper {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
}

  .boxed #main-wrapper .sidebar-footer {
    position: absolute;
  }

  .boxed #main-wrapper .topbar {
    max-width: 1300px;
  }

  .boxed #main-wrapper .footer {
    display: none;
  }

.boxed.fixed-layout .left-sidebar {
  position: absolute;
}

/*******************
Single Column
******************/
.single-column .left-sidebar {
  display: none;
}

.single-column .navbar-header {
  margin-left: 0px;
}

.single-column .page-wrapper {
  margin-left: 0px !important;
}

/*******************
Mini sidebar
******************/
@media (min-width: 769px) {
  .left-sidebar:hover {
    left: 0px;
  }

  .navbar-header {
    margin-left: 60px;
    flex-shrink: 0;
  }

    .navbar-header .navbar-brand {
      padding-top: 0px;
    }

  .lock-nav .left-sidebar {
    left: 0px;
    width: 220px;
  }

  .lock-nav .page-wrapper, .lock-nav .footer {
    margin-left: 220px;
  }

  .lock-nav .topbar {
    padding-left: 220px;
  }

    .lock-nav .topbar .navbar-header {
      margin-left: 0px;
    }
}

@media (max-width: 768px) {
  .show-sidebar .left-sidebar {
    left: 0px;
  }

  .left-sidebar {
    left: -260px;
  }
}

/*******************
Logo center
******************/
.logo-center .top-navbar .navbar-header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}

  .logo-center .top-navbar .navbar-header a {
    justify-content: center;
  }

@media (min-width: 769px) {
  .logo-center .top-navbar {
    margin-left: 60px;
  }
}

/*******************
/*User mail widgets*/
/*******************/
.topbar .top-navbar .mailbox {
  width: 300px;
}

  .topbar .top-navbar .mailbox ul {
    padding: 0px;
  }

    .topbar .top-navbar .mailbox ul li {
      list-style: none;
    }

html body .navbar-dark .mailbox ul li .drop-title {
  font-weight: 600;
  padding: 11px 20px 15px;
  border-bottom: 1px solid #e9ecef;
  border-radius: 0.25rem 0.25rem 0 0;
  position: relative;
}

  html body .navbar-dark .mailbox ul li .drop-title:after {
    content: "";
    position: absolute;
    background: url(../img/cab-default.png) no-repeat;
    opacity: 0.2;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-size: cover;
  }

html body .navbar-dark .mailbox ul li h5 {
  color: #212529;
}

html body .navbar-dark .mailbox ul li .nav-link {
  border-top: 1px solid #e9ecef;
  padding-top: 15px;
  color: #212529;
}

  html body .navbar-dark .mailbox ul li .nav-link:hover {
    color: #0071b5;
  }

html body .navbar-dark .mailbox .message-center {
  height: 317px;
  overflow: auto;
  position: relative;
}

  html body .navbar-dark .mailbox .message-center a {
    border-bottom: 1px solid #e9ecef;
    display: block;
    text-decoration: none;
    padding: 9px 15px;
  }

    html body .navbar-dark .mailbox .message-center a:hover {
      background: #e9ecef;
    }

    html body .navbar-dark .mailbox .message-center a div {
      white-space: normal;
    }

    html body .navbar-dark .mailbox .message-center a .user-img {
      width: 40px;
      position: relative;
      display: inline-block;
      margin: 0 0px 5px 0;
    }

      html body .navbar-dark .mailbox .message-center a .user-img img {
        width: 100%;
      }

      html body .navbar-dark .mailbox .message-center a .user-img .profile-status {
        border: 2px solid #fff;
        border-radius: 50%;
        display: inline-block;
        height: 10px;
        left: 30px;
        position: absolute;
        top: 1px;
        width: 10px;
      }

      html body .navbar-dark .mailbox .message-center a .user-img .online {
        background: #83af37;
      }

      html body .navbar-dark .mailbox .message-center a .user-img .busy {
        background: #f62d51;
      }

      html body .navbar-dark .mailbox .message-center a .user-img .away {
        background: #ffbc34;
      }

      html body .navbar-dark .mailbox .message-center a .user-img .offline {
        background: #ffbc34;
      }

    html body .navbar-dark .mailbox .message-center a .mail-contnet {
      display: inline-block;
      width: 80%;
      padding-left: 10px;
      vertical-align: middle;
    }

      html body .navbar-dark .mailbox .message-center a .mail-contnet h5 {
        margin: 5px 0px 0;
      }

      html body .navbar-dark .mailbox .message-center a .mail-contnet .mail-desc,
      html body .navbar-dark .mailbox .message-center a .mail-contnet .time {
        font-size: 12px;
        display: block;
        margin: 1px 0;
        text-overflow: ellipsis;
        overflow: hidden;
        color: #adb5bd;
        white-space: nowrap;
      }

/*******************/
/*Weather*/
/*******************/
.city-weather-days {
  margin: 0px;
}

  .city-weather-days li {
    text-align: center;
    padding: 15px 0;
  }

    .city-weather-days li span {
      display: block;
      padding: 10px 0 0;
      color: #adb5bd;
    }

    .city-weather-days li i {
      display: block;
      font-size: 20px;
      color: #0071b5;
    }

    .city-weather-days li h3 {
      font-weight: 300;
      margin-top: 5px;
    }

/*Weather small*/
.weather-small h1 {
  line-height: 30px;
}

.weather-small sup {
  font-size: 60%;
}

/*******************/
/*Comment widgets*/
/*******************/
.comment-widgets {
  position: relative;
  margin-bottom: 10px;
}

  .comment-widgets .comment-row {
    border-bottom: 1px solid transparent;
    padding: 5px 14px
  }

    .comment-widgets .comment-row:last-child {
      border-bottom: 0px;
    }

    .comment-widgets .comment-row:hover, .comment-widgets .comment-row.active {
      background: #f8f9fa;
    }

.comment-text {
  padding: 14px 15px 14px 20px;
  width: 80%;
}

  .comment-text:hover .comment-footer .action-icons,
  .comment-text.active .comment-footer .action-icons {
    visibility: visible;
  }

  .comment-text p {
    max-height: 65px;
    width: 100%;
    overflow: hidden;
  }

.comment-footer .action-icons {
  visibility: hidden;
}

  .comment-footer .action-icons a {
    padding-left: 7px;
    vertical-align: middle;
    color: #7f848a;
  }

    .comment-footer .action-icons a:hover, .comment-footer .action-icons a.active {
      color: #107dbf;
    }

/*******************/
/*To do widgets*/
/*******************/
.todo-list li {
  border: 0px;
  margin-bottom: 0px;
  padding: 20px 15px 15px 0px;
}

  .todo-list li .custom-checkbox {
    width: 100%;
  }

    .todo-list li .custom-checkbox label {
      font-weight: 400;
      width: 100%;
    }

      .todo-list li .custom-checkbox label span:first-child {
        width: 70%;
        display: inline-block;
        line-height: 25px;
      }

  .todo-list li:last-child {
    border-bottom: 0px;
  }

  .todo-list li .assignedto {
    padding: 0px 0 0 30px;
    margin: 0px;
  }

    .todo-list li .assignedto li {
      list-style: none;
      padding: 0px;
      display: inline-block;
      border: 0px;
      margin-right: 2px;
    }

      .todo-list li .assignedto li img {
        width: 30px;
        border-radius: 100%;
      }

  .todo-list li .item-date {
    padding-left: 30px;
    font-size: 12px;
    margin-top: 5px;
    display: inline-block;
  }

.list-task .task-done span {
  text-decoration: line-through;
}

/*******************/
/*Chat widget*/
/*******************/
.chat-list {
  margin: 0px;
  padding: 0px;
}

  .chat-list li {
    list-style: none;
    margin-top: 15px;
  }

    .chat-list li .chat-img {
      display: inline-block;
      width: 40px;
      vertical-align: top;
    }

      .chat-list li .chat-img img {
        width: 40px;
        border-radius: 100%;
      }

    .chat-list li .chat-content {
      width: calc(100% - 50px);
      display: inline-block;
      padding-left: 15px;
    }

      .chat-list li .chat-content .box {
        display: inline-block;
        color: #343a40;
        background: #F1F0F0;
      }

    .chat-list li .chat-time {
      display: block;
      font-size: 10px;
      color: #adb5bd;
      /*margin: 5px 0 15px 65px;*/
    }

    .chat-list li.odd .chat-content {
      text-align: right;
      width: calc(100% - 0px);
    }

    .chat-list li.odd .chat-time {
      text-align: right;
    }

    .chat-list li.odd .box {
      clear: both;
      color: #fff;
      background: #0071b5;
    }

    .chat-list li.odd + .odd {
      margin-top: 0px;
    }

    .chat-list li.reverse {
      text-align: right;
    }
      /*.chat-list li.reverse .chat-time {
        text-align: left; }*/
      .chat-list li.reverse .chat-content {
        padding-left: 0px;
        padding-right: 15px;
      }

        .chat-list li.reverse .chat-content .box {
          background: #0084FF !important;
          color: #fff !important;
        }

/*******************/
/*Calendar widget*/
/*******************/
.calendar-widget {
  position: relative;
}

.calendar {
  float: left;
  margin-bottom: 0px;
}

.fc-view {
  margin-top: 30px;
}

.none-border .modal-footer {
  border-top: none;
}

.fc-toolbar {
  margin-bottom: 5px;
  margin-top: 15px;
}

  .fc-toolbar h2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
  }

.fc-day {
  background: #fff;
}

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active,
.fc-toolbar button:focus,
.fc-toolbar button:hover,
.fc-toolbar .ui-state-hover {
  z-index: 0;
}

.fc-widget-header {
  border: 0px !important;
}

.fc-widget-content {
  border-color: rgba(120, 130, 140, 0.13) !important;
}

.fc th.fc-widget-header {
  color: #01629c;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  padding: 7px 4px;
  font-weight: bold;
}

.fc th.fc-sun,
.fc th.fc-tue,
.fc th.fc-thu,
.fc th.fc-sat {
  background: #edf1f5;
}

.fc th.fc-mon,
.fc th.fc-wed,
.fc th.fc-fri {
  background: #edf1f5 !important;
}

.fc-view {
  margin-top: 0px;
}

.fc-toolbar {
  margin: 0px;
  padding: 0px 0px;
}

  .fc-toolbar h2 {
    font-size: 14px;
  }

.fc-button {
  background: #fff;
  border: 1px solid #e9ecef;
  color: #212529;
  text-transform: capitalize;
}

  .fc-button:hover {
    background: #e9ecef;
    opacity: 0.8;
  }

.fc-text-arrow {
  font-family: inherit;
  font-size: 16px;
}

.fc-state-hover {
  background: #f8f9fa;
}

.fc-unthemed .fc-today {
  border: 1px solid #f62d51;
  background: #d9e7f5 !important;
}

.fc-state-highlight {
  background: #f0f0f0;
}

.fc-cell-overlay {
  background: #f0f0f0;
}

.fc-unthemed .fc-today {
  background: #fff;
}

.fc-event {
  border-radius: 0px;
  border: none;
  cursor: pointer;
  color: #fff !important;
  font-size: 13px;
  margin: 1px -1px 0 -1px;
  padding: 5px 5px;
  text-align: center;
  background: #01c0c8;
}

  .fc-event .fc-bg {
    opacity: .10;
    filter: alpha(opacity=10);
  }

.calendar-event {
  cursor: move;
  margin: 10px 5px 0 0;
  padding: 6px 10px;
  display: inline-block;
  color: #fff;
  min-width: 140px;
  text-align: center;
  background: #01c0c8;
}

  .calendar-event a {
    float: right;
    opacity: 0.6;
    font-size: 10px;
    margin: 4px 0 0 10px;
    color: #fff;
  }

.fc-basic-view td.fc-week-number span {
  padding-right: 5px;
}

.fc-basic-view .fc-day-number {
  padding: 10px 15px;
  display: inline-block;
}

.fc .fc-axis {
  font-size: 12px;
}

.fc-time-grid .fc-slats td {
  height: 0.9em;
}

.fc-time-grid-event .fc-time, .fc-time-grid-event .fc-title {
  font-size: 11px;
}

.fc .fc-axis {
  width: 45px !important;
}
/*******************/
/*Steam line widget*/
/*******************/
.steamline {
  position: relative;
  border-left: 1px solid #e9ecef;
  margin-left: 20px;
}

  .steamline .sl-left {
    float: left;
    margin-left: -20px;
    z-index: 1;
    width: 40px;
    line-height: 40px;
    text-align: center;
    height: 40px;
    border-radius: 100%;
    color: #fff;
    margin-right: 15px;
  }

    .steamline .sl-left img {
      max-width: 40px;
    }

  .steamline .sl-right {
    padding-left: 35px;
  }

    .steamline .sl-right .desc,
    .steamline .sl-right .inline-photos {
      margin-bottom: 21px;
    }

  .steamline .sl-item {
    border-bottom: 1px solid #e9ecef;
    margin: 20px 0;
  }

.sl-date {
  font-size: 10px;
  color: #adb5bd;
}

.time-item {
  border-color: #e9ecef;
  padding-bottom: 1px;
  position: relative;
}

  .time-item:before {
    content: " ";
    display: table;
  }

  .time-item:after {
    background-color: #fff;
    border-color: #e9ecef;
    border-radius: 10px;
    border-style: solid;
    border-width: 2px;
    bottom: 0;
    content: '';
    height: 14px;
    left: 0;
    margin-left: -8px;
    position: absolute;
    top: 5px;
    width: 14px;
  }

.time-item-item:after {
  content: " ";
  display: table;
}

.item-info {
  margin-bottom: 15px;
  margin-left: 15px;
}

  .item-info p {
    margin-bottom: 10px !important;
  }

/*******************/
/*Feed widget*/
/*******************/
.feeds {
  margin: 0px;
  padding: 0px;
}

  .feeds li {
    list-style: none;
    padding: 12px 15px;
    display: block;
  }

    .feeds li:hover {
      background: #f8f9fa;
    }

    .feeds li > div {
      width: 40px;
      height: 40px;
      margin-right: 5px;
      display: inline-block;
      text-align: center;
      vertical-align: middle;
      border-radius: 100%;
      color: #fff;
    }

      .feeds li > div i {
        line-height: 40px;
      }

    .feeds li span {
      float: right;
      width: auto;
      font-size: 12px;
    }

/*******************/
/*Vertical carousel*/
/*******************/
.vert .carousel-item-next.carousel-item-left,
.vert .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.vert .carousel-item-next,
.vert .active.carousel-item-right {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100% 0);
}

.vert .carousel-item-prev,
.vert .active.carousel-item-left {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

/*******************/
/*social-widgets*/
/*******************/
.social-widget .soc-header {
  padding: 15px;
  text-align: center;
  font-size: 36px;
  color: #fff;
}

  .social-widget .soc-header.box-facebook {
    background: #3b5998;
  }

  .social-widget .soc-header.box-twitter {
    background: #00aced;
  }

  .social-widget .soc-header.box-google {
    background: #f86c6b;
  }

  .social-widget .soc-header.box-linkedin {
    background: #4875b4;
  }

.social-widget .soc-content {
  display: flex;
  text-align: center;
}

  .social-widget .soc-content div {
    padding: 10px;
  }

    .social-widget .soc-content div h3 {
      margin-bottom: 0px;
    }

/*******************/
/*social-profile-first*/
/*******************/
.social-profile-first {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 96px;
}

  .social-profile-first.bg-over {
    background: rgba(56, 83, 161, 0.7);
  }

  .social-profile-first .middle {
    vertical-align: middle;
  }

/*******************/
/*profile timeline widget*/
/*******************/
.profiletimeline {
  position: relative;
  padding-left: 40px;
  margin-right: 10px;
  border-left: 1px solid #e9ecef;
  margin-left: 30px;
}

  .profiletimeline .sl-left {
    float: left;
    margin-left: -60px;
    z-index: 1;
    margin-right: 15px;
  }

    .profiletimeline .sl-left img {
      max-width: 40px;
    }

  .profiletimeline .sl-item {
    margin-top: 8px;
    margin-bottom: 30px;
  }

  .profiletimeline .sl-date {
    font-size: 12px;
    color: #adb5bd;
  }

  .profiletimeline .time-item {
    border-color: #e9ecef;
    padding-bottom: 1px;
    position: relative;
  }

    .profiletimeline .time-item:before {
      content: " ";
      display: table;
    }

    .profiletimeline .time-item:after {
      background-color: #fff;
      border-color: #e9ecef;
      border-radius: 10px;
      border-style: solid;
      border-width: 2px;
      bottom: 0;
      content: '';
      height: 14px;
      left: 0;
      margin-left: -8px;
      position: absolute;
      top: 5px;
      width: 14px;
    }

  .profiletimeline .time-item-item:after {
    content: " ";
    display: table;
  }

  .profiletimeline .item-info {
    margin-bottom: 15px;
    margin-left: 15px;
  }

    .profiletimeline .item-info p {
      margin-bottom: 10px !important;
    }

/*little-profile*/
.little-profile .pro-img {
  margin-bottom: 20px;
}

  .little-profile .pro-img img {
    width: 128px;
    height: 128px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 100%;
  }

.little-profile .soc-pro a {
  color: #adb5bd;
}

  .little-profile .soc-pro a:hover {
    color: #343a40;
  }

/*******************
/*States row*/
/*******************/
.stats-row {
  margin-bottom: 20px;
}

  .stats-row .stat-item {
    display: inline-block;
    padding-right: 15px;
  }

    .stats-row .stat-item + .stat-item {
      padding-left: 15px;
      border-left: 1px solid #e9ecef;
    }

/*******************/
/*Guage chart*/
/*******************/
.gaugejs-box {
  position: relative;
  margin: 0 auto;
}

  .gaugejs-box canvas.gaugejs {
    width: 100% !important;
    height: auto !important;
  }

/*******************/
/*country-state*/
/*******************/
.country-state {
  list-style: none;
  margin: 0;
  padding: 0 0 0 10px;
}

  .country-state li {
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .country-state h2 {
    margin-bottom: 0px;
    font-weight: 400;
  }

/*contact widgets*/
.contact-box {
  position: relative;
}

  .contact-box .add-ct-btn {
    position: absolute;
    right: 4px;
    top: -46px;
  }

  .contact-box .contact-widget > a {
    padding: 15px 10px;
  }

    .contact-box .contact-widget > a .user-img {
      margin-bottom: 0px !important;
    }

/*Blog widgets*/
.blog-widget {
  margin-top: 30px;
}

  .blog-widget .blog-image img {
    border-radius: 0.25rem;
    margin-top: -45px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  }

/*******************/
/*Msg box*/
/*******************/
.msg-item {
  margin-bottom: 20px;
}

.msg-body {
  background: #fff;
  padding: 15px;
  font-size: 14px;
  position: relative;
}

  .msg-body .dwn-aro {
    width: 0;
    position: absolute;
    bottom: -8px;
    height: 0;
    left: 10px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
  }

.m-pic img {
  width: 40px;
  border-radius: 100%;
}

.message-box ul li .drop-title {
  font-weight: 600;
  padding: 11px 20px 15px;
  border-bottom: 1px solid #e9ecef;
}

.message-box ul li .nav-link {
  border-top: 1px solid #e9ecef;
  padding-top: 15px;
}

.message-box .message-widget {
  position: relative;
}

  .message-box .message-widget a {
    border-bottom: 1px solid #e9ecef;
    display: block;
    text-decoration: none;
    padding: 9px 15px;
  }

    .message-box .message-widget a:hover {
      background: #e9ecef;
    }

    .message-box .message-widget a:last-child {
      border-bottom: 0px;
    }

    .message-box .message-widget a div {
      white-space: normal;
    }

    .message-box .message-widget a .user-img {
      width: 45px;
      position: relative;
      display: inline-block;
      margin: 0 10px 15px 0;
    }

      .message-box .message-widget a .user-img img {
        width: 100%;
      }

      .message-box .message-widget a .user-img .profile-status {
        border: 2px solid #fff;
        border-radius: 50%;
        display: inline-block;
        height: 10px;
        left: 33px;
        position: absolute;
        top: -1px;
        width: 10px;
      }

      .message-box .message-widget a .user-img .online {
        background: #83af37;
      }

      .message-box .message-widget a .user-img .busy {
        background: #ba3e3d;
      }

      .message-box .message-widget a .user-img .away {
        background: #ffbc34;
      }

      .message-box .message-widget a .user-img .offline {
        background: #ffbc34;
      }

    .message-box .message-widget a .mail-contnet {
      display: inline-block;
      width: 70%;
      vertical-align: middle;
    }

      .message-box .message-widget a .mail-contnet h5 {
        margin: 5px 0px 0;
        color: #212529;
      }

      .message-box .message-widget a .mail-contnet .mail-desc,
      .message-box .message-widget a .mail-contnet .time {
        display: block;
        margin: 1px 0;
        text-overflow: ellipsis;
        overflow: hidden;
        color: #adb5bd;
        white-space: nowrap;
      }

      .message-box .message-widget a .mail-contnet .time {
        color: #212529;
        font-size: 12px;
      }

/*******************/
/*Activity widgets*/
/*******************/
.activity-box .date-devider {
  border-top: 2px solid #e9ecef;
  position: relative;
}

  .activity-box .date-devider span {
    background: #e9ecef;
    padding: 5px 15px;
    border-radius: 60px;
    font-size: 14px;
    top: -15px;
    position: relative;
    margin-left: 20px;
  }

.activity-box .activity-item {
  display: flex;
  margin-bottom: 30px;
}

  .activity-box .activity-item .image-list > a {
    margin-left: -15px;
    position: relative;
    vertical-align: middle;
  }

    .activity-box .activity-item .image-list > a:first-child, .activity-box .activity-item .image-list > a:last-child {
      margin-left: 0px;
    }

    .activity-box .activity-item .image-list > a:hover {
      z-index: 10;
    }

      .activity-box .activity-item .image-list > a:hover img {
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
      }

.news-slide .overlaybg {
  height: 380px;
  overflow: hidden;
  background-color: #343a40;
}

  .news-slide .overlaybg img {
    width: 100%;
  }

/*============================================================== 
widget-chart-page product review
 ============================================================== */
.product-review {
  margin: 0px;
  padding: 25px;
}

  .product-review li {
    display: block;
    padding: 20px 0;
    list-style: none;
  }

    .product-review li .font,
    .product-review li span {
      display: inline-block;
      margin-left: 10px;
    }

  .product-review li {
    display: block;
    padding: 20px 0;
    list-style: none;
  }

    .product-review li .font, .product-review li span {
      display: inline-block;
      margin-left: 10px;
    }

.social-profile {
  text-align: center;
  background: rgba(7, 10, 43, 0.8);
}

.profile-tab li a.nav-link, .customtab li a.nav-link {
  border: 0px;
  padding: 15px 20px;
  color: #212529;
}

  .profile-tab li a.nav-link.active, .customtab li a.nav-link.active {
    border-bottom: 2px solid #0071b5;
    color: #0071b5;
  }

  .profile-tab li a.nav-link:hover, .customtab li a.nav-link:hover {
    color: #0071b5;
  }


/*============================================================== 
 For Desktop & above all (1650px) 
 ============================================================== */
/*============================================================== 
 For Laptop & above all (1370px) 
 ============================================================== */
/*-- ============================================================== 
 Small Desktop & above all (1024px) 
 ============================================================== */
@media (min-width: 1024px) {
  .page-wrapper, .footer {
    margin-left: 60px;
  }
}

@media (max-width: 1023px) {
  .inbox-center a {
    width: 200px;
  }

  .d-flex {
    display: block !important;
  }

    .d-flex.no-block {
      display: flex !important;
    }
}

@media (max-height: 492px) {
  .login-register {
    /*position: relative;
        */
    overflow: auto;
  }
}

.login-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  overflow: visible;
  z-index: 99;
  clear: both;
  background-color: rgba(0,0,0,0.6);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#99000000', endColorstr='#99000000');
  text-align: center;
}

  .login-footer .text-copy {
    color: #fff;
    font-size: 12px;
    line-height: 28px;
    white-space: nowrap;
    display: inline-block;
    margin-left: 8px;
    margin-right: 8px;
  }
/*-- ============================================================== 
 Ipad & above all(768px) 
 ============================================================== */
@media (min-width: 769px) {
  .page-titles .breadcrumb {
    float: right;
  }

  .mega-dropdown .dropdown-menu, .search-box .app-search {
    left: 60px;
    width: calc(100% - 60px);
  }

  .lock-nav .mega-dropdown .dropdown-menu, .search-box .app-search {
    left: 0px;
    width: 100%
  }

  .access-dropdown .dropdown-menu, .search-box .app-search {
    left: 60px;
    width: 340px;
  }

  .lock-nav .access-dropdown .dropdown-menu, .search-box .app-search {
    left: 0px;
  }

  .material-icon-list-demo .icons div {
    width: 33%;
    padding: 15px;
    display: inline-block;
    line-height: 40px;
  }

  .page-wrapper, .footer {
    margin-left: 60px;
  }
}


/*-- ============================================================== 
 Phone and below ipad(767px) 
 ============================================================== */
@media (max-width: 767px) {
  .container-fluid {
    padding: 0px 15px 0px 15px;
    overflow: hidden;
  }
  /*Header*/
  .topbar {
    width: 100%;
    padding-right: 10px;
  }

    .topbar .top-navbar {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      flex-direction: row;
      flex-wrap: nowrap;
      -webkit-align-items: center;
    }

      .topbar .top-navbar .navbar-collapse {
        display: flex;
        width: 100%;
      }

      .topbar .top-navbar .navbar-nav {
        flex-direction: row;
      }

        .topbar .top-navbar .navbar-nav .nav-item > .nav-link {
          padding-left: 8px;
          padding-right: 8px;
          font-size: 15px;
        }

        .topbar .top-navbar .navbar-nav > .nav-item.show {
          position: static;
        }

          .topbar .top-navbar .navbar-nav > .nav-item.show .dropdown-menu {
            width: 100%;
            margin-top: 0px;
          }

        .topbar .top-navbar .navbar-nav .dropdown-menu {
          position: absolute;
        }

          .topbar .top-navbar .navbar-nav .dropdown-menu .with-arrow {
            display: none;
          }

  .mega-dropdown .dropdown-menu {
    height: 480px;
    overflow: auto;
  }

  .comment-text .comment-footer .action-icons {
    display: block;
    padding: 10px 0;
  }

  .vtabs .tabs-vertical {
    width: auto;
  }
  /*Footer*/
  .material-icon-list-demo .icons div {
    width: 100%;
  }

  .error-page .footer {
    position: fixed;
    bottom: 0px;
    z-index: 10;
  }

  .error-box {
    position: relative;
    padding-bottom: 60px;
  }

  .error-body {
    padding-top: 10%;
  }

    .error-body h1 {
      font-size: 100px;
      font-weight: 600;
      line-height: 100px;
    }


  /*This is for chat page*/
  .chat-main-box .chat-left-aside {
    left: -250px;
    position: absolute;
    transition: 0.5s ease-in;
    background: #fff;
  }

    .chat-main-box .chat-left-aside.open-pnl {
      left: 0px;
    }

    .chat-main-box .chat-left-aside .open-panel {
      display: block;
    }

  .chat-main-box .chat-right-aside {
    width: 100%;
  }
  /*Timeline*/
  ul.timeline:before {
    left: 40px;
  }

  ul.timeline > li > .timeline-panel {
    width: calc(100% - 90px);
  }

  ul.timeline > li > .timeline-badge {
    top: 16px;
    left: 15px;
    margin-left: 0;
  }

  ul.timeline > li > .timeline-panel {
    float: right;
  }

    ul.timeline > li > .timeline-panel:before {
      right: auto;
      left: -15px;
      border-right-width: 15px;
      border-left-width: 0;
    }

    ul.timeline > li > .timeline-panel:after {
      right: auto;
      left: -14px;
      border-right-width: 14px;
      border-left-width: 0;
    }
  /*Contact app page*/
  .left-aside {
    width: 100%;
    position: relative;
    border: 0px;
  }

  .right-aside {
    margin-left: 0px;
  }

  .flex-wrap {
    flex-wrap: wrap !important;
    -webkit-flex-wrap: wrap !important;
  }

  .chat-list li .chat-content {
    width: calc(100% - 80px);
  }
  /*Calendar*/
  .fc-toolbar .fc-left, .fc-toolbar .fc-right, .fc-toolbar .fc-center {
    /*float: none;
    display: block;*/
    text-align: center;
    margin-top: 10px;
    overflow: hidden;
  }
}

/*-- ============================================================== 
Image Crops
 ============================================================== */
.user-profile .crop::before {
  margin-left: -25px !important;
}

.crop.crop-round-60 {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}

  .crop.crop-round-60 img {
    width: 60px;
  }

.crop.crop-round-150 {
  width: 150px;
  height: 150px;
  border-radius: 100%;
}

  .crop.crop-round-150 img {
    width: 150px;
  }

.crop.crop-round-50 {
  width: 50px;
  height: 50px;
  border-radius: 100%;
}

  .crop.crop-round-50 img {
    width: 50px;
  }

.crop.crop-round-30 {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}

  .crop.crop-round-30 img {
    width: 30px;
  }

.crop.crop-round-40 {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  margin-top: 3px;
}

  .crop.crop-round-40 img {
    width: 40px;
  }

.crop.crop-square-80 {
  width: 80px;
  height: 80px;
  border-radius: 10%;
  margin-top: 8px;
}

.crop {
  overflow: hidden;
  position: relative;
}

  .crop img {
    position: absolute;
    left: -100%;
    right: -100%;
    top: -100%;
    bottom: -100%;
    margin: auto;
    min-height: 100%;
    min-width: 100%;
  }

.topbar .profile-pic {
  width: 30px;
  border-radius: 100%;
}

.display-icon-6 {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
}


/*============================================================== 
 Ui-bootstrap
 ============================================================== */
ul.list-icons {
  margin: 0px;
  padding: 0px;
}

  ul.list-icons li {
    list-style: none;
    line-height: 30px;
    margin: 5px 0;
    transition: 0.2s ease-in;
  }

    ul.list-icons li a {
      color: #4b5356;
    }

      ul.list-icons li a:hover {
        color: #0071b5;
      }

    ul.list-icons li i {
      font-size: 13px;
      padding-right: 8px;
    }

ul.list-inline li {
  display: inline-block;
  padding: 0 8px;
}

ul.two-part {
  margin: 0px;
}

  ul.two-part li {
    width: 48.8%;
  }


/*******************
Accordion
******************/
html body .accordion .card {
  margin-bottom: 0px;
}
/*******************
Notification
******************/

.alert-icons {
  width: 40px;
  position: relative;
  display: inline-block;
  margin-left: 10px;
}

  .alert-icons span.icon i {
    font-size: 18px;
  }

  .alert-icons span.number {
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: inline-block;
    height: 20px;
    left: 20px;
    position: absolute;
    top: -5px;
    width: 20px;
    font-size: 8px;
    text-align: center;
    font-weight: bold;
    color: #FFF;
    background: #ffbc34;
    line-height: 15px;
  }


/*******************
Flyers
******************/
.flyers {
  padding: 0;
  margin-bottom: 10px;
}

  .flyers .item {
    list-style-type: none;
    margin: 0 5px;
    background: #fff;
    padding-bottom: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

    .flyers .item .flyer {
      position: relative;
      padding: 0px;
    }

      .flyers .item .flyer:before, .flyers .item .flyer:after {
        content: " ";
        display: table;
      }

      .flyers .item .flyer:after {
        clear: both;
      }

      .flyers .item .flyer:before, .flyers .item .flyer:after {
        content: " ";
        display: table;
      }

      .flyers .item .flyer:after {
        clear: both;
      }

      .flyers .item .flyer .text {
        color: #999999;
        margin-bottom: 40px;
      }

      .flyers .item .flyer .bottom {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 20px;
        height: 50px;
      }

        .flyers .item .flyer .bottom .icon {
          color: #467fbf;
          font-size: 30px;
          float: left;
          width: 20%;
        }

      .flyers .item .flyer .name-picture {
        float: right;
        width: 80%;
        text-align: right;
      }

        .flyers .item .flyer .name-picture h5 {
          font-size: 14px;
          text-transform: uppercase;
          letter-spacing: 0.08em;
        }

        .flyers .item .flyer .name-picture p {
          color: #999999;
          margin: 0;
          font-size: 12px;
        }

        .flyers .item .flyer .name-picture img {
          float: right;
          width: 60px;
          border-radius: 30px;
          margin-left: 10px;
        }

.box-image {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0px 0;
}

  .box-image .bg {
    position: absolute;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    filter: alpha(opacity=0);
    background: #235ea3;
  }

  .box-image .name {
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    -o-transform: translate(0, 100%);
    transform: translate(0, 100%);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    color: #fff;
    padding: 0 20px;
  }

    .box-image .name h3 {
      color: #fff;
      text-transform: uppercase;
      font-size: 18px;
      letter-spacing: 0.08em;
    }

      .box-image .name h3 a {
        color: #fff;
        text-decoration: none;
      }

  .box-image .text {
    position: absolute;
    width: 100%;
    height: 50%;
    top: 0;
    -webkit-transform: translate(0, -150%);
    -ms-transform: translate(0, -150%);
    -o-transform: translate(0, -150%);
    transform: translate(0, -150%);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    color: #fff;
    padding: 0 20px;
  }

  .box-image:hover .bg {
    opacity: 0.7;
    filter: alpha(opacity=70);
  }

  .box-image:hover .name {
    position: absolute;
    -webkit-transform: translate(0, -75%);
    -ms-transform: translate(0, -75%);
    -o-transform: translate(0, -75%);
    transform: translate(0, -75%);
  }

  .box-image:hover .text {
    position: absolute;
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    -o-transform: translate(0, 100%);
    transform: translate(0, 100%);
  }

.btn-template-transparent-primary {
  color: #ffffff;
  background-color: transparent;
  border-color: #ffffff;
}

  .btn-template-transparent-primary:hover, .btn-template-transparent-primary:focus, .btn-template-transparent-primary:active, .btn-template-transparent-primary.active {
    background: #fff;
    color: #467fbf;
    border-color: #fff;
  }

/*******************
Nav Accesos
******************/
.accesos .btn {
  white-space: inherit;
}

.btn-acceso {
  border-radius: 3px;
  position: relative;
  padding: 15px 5px;
  /* margin: 7px 0 0px 10px;
     */
  min-width: 80px;
  height: 60px;
  text-align: center;
  color: #235ea3 !important;
  border: 1px solid #ddd;
  background-color: #f4f4f4;
  font-size: 12px;
  width: 100%;
  white-space: inherit;
}

  .btn-acceso > [class^="ms-Icon--"] {
    font-size: 28px;
    display: block;
  }

  .btn-acceso > .fa, .btn-acceso > .mdi {
    font-size: 35px;
    display: block;
  }

.icono {
  line-height: 40px;
  /* font-size: 25px;
     */
}

.accesos.accesos-principal {
  border-color: #235ea3;
}

.accesos {
  border-radius: 3px;
  margin: 0 0 20px 0;
  padding: 15px 20px 10px 20px;
  border-left: 5px solid #eee;
  background-color: #fff;
}

.btn-acceso h6 {
  margin-top: 12px;
  font-size: 13px;
}

.btn-acceso:hover {
  background: #225ea2;
  -webkit-box-shadow: 0 14px 26px -12px rgba(14, 80, 147, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(84, 177, 65, 0.2);
  box-shadow: 0 14px 26px -12px rgba(14, 80, 147, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(84, 177, 65, 0.2);
  border: 1px solid #225ea2;
  color: #fff !important;
}

  .btn-acceso:hover h6 {
    color: #fff !important;
  }

.btn-accesos-ligth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

  .btn-accesos-ligth a {
    margin: 0 5px 5px 0;
    background: #f4f4f4;
    color: #225EA2;
    font-size: 12px;
    font-weight: 400;
    width: 88px;
    height: 88px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
  }

    .btn-accesos-ligth a i {
      padding-bottom: 10px;
      font-size: 25px;
      color: #225EA2;
    }

    .btn-accesos-ligth a div {
      color: #666666;
    }

    .btn-accesos-ligth a:hover {
      background-color: #225EA2;
    }

      .btn-accesos-ligth a:hover i {
        color: #fff;
      }

      .btn-accesos-ligth a:hover div {
        color: #fff;
      }

/*******************
nowrap
******************/


.nowrap-ellipsis-r-2 {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 29px;
  margin: 0 auto;
  line-height: 1;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nowrap-ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/*******************
Modal
******************/
@media (min-width: 768px) {
}

.modal {
  padding: 0 !important;
}

.modal-body {
  max-height: calc(100vh - 210px);
  overflow-y: auto;
  min-height: 200px;
}

.modal-color .modal-content {
  border: 0px solid rgba(0, 0, 0, 0.2);
  border-radius: 0rem;
}

.modal-color .modal-header {
  border-bottom: 0px solid #eaeaea;
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
}

.modal-color .close {
  font-weight: normal;
  text-shadow: none;
  opacity: 1;
  color: #fff;
}

.modal-color .modal-header .close {
  padding: 0.4rem 0.7rem;
  margin: -0.2rem -0.5rem -0.1rem auto;
}

  .modal-color .modal-header .close:hover, .modal-color .modal-header .close:focus, .modal-color .modal-header .close:active {
    border-radius: 50%;
    background-color: rgba(255,255,255,0.122);
    outline: 0px auto -webkit-focus-ring-color;
  }

@media (min-width: 576px) {
  .modal-xlg {
    max-width: 800px;
    width: 90%;
  }
}

@media (min-width: 992px) {
  .modal-xlg {
    max-width: 1200px;
    width: 90%;
  }
}

@media (min-width: 1250px) {
  .modal-xlg {
    max-width: 1500px;
    width: 90%;
  }
}




.inbox-center a {
  color: #54667a;
  padding: 2px 0 3px 0;
  overflow: hidden;
  vertical-align: middle;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  width: 100%;
}

.no-wrap-table {
  table-layout: fixed;
}


.list-group-item {
  border: 1px solid rgb(237, 241, 245);
}

  .list-group-item.active {
    z-index: 2;
    color: #003e7e;
    background-color: #ccd4dc;
    border-color: rgb(237, 241, 245);
    font-weight: 500;
  }

  .list-group-item:first-child {
    border-top-left-radius: 0.1rem;
    border-top-right-radius: 0.1rem;
  }
/*



.list-group-item i{
       padding-right: 8px;
       font-size: 11px;
       color: #225ea2;
}

.list-group-item:hover {
    z-index: 2;
    color: #fff;
    background-color: #d4dde2;
    border-color: #edf1f5;
}

.list-group-item:first-child {
    border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
}
*/
.payment-information .col-sm-6, .payment-information.col-10 {
  padding-right: 0px;
  padding-left: 0px;
}

.payment-table .payment-row {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
  padding: 10px;
  font-size: 12px;
  min-height: 65px;
  text-align: center;
  ;
}

  .payment-table .payment-row:first-of-type {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .payment-table .payment-row:last-of-type {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }


.table-card {
  display: table;
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
}

.table-row {
  display: table-row;
}

.table-cell {
  display: table-cell;
}

.title-payment {
  font-weight: 600;
}

.content-payment {
  font-size: 13px;
}

@media screen and (max-width: 576px) {
  .table-cell {
    display: block;
  }

  .table-row {
    display: table-cell;
    width: 50%;
    padding-right: 0px;
    padding-left: 0px;
  }

  .payment-information .row {
    margin-right: 0px;
    margin-left: 0px;
  }

  .payment-information .col-sm-3, .payment-information .col-sm-4, .payment-information .col-sm-6 {
    padding-right: 0px;
    padding-left: 0px;
  }

  .payment-information .col-sm-6 {
    margin-top: 5px;
  }

  .title-payment {
    text-align: left;
    font-weight: normal;
  }

  .content-payment {
    text-align: left;
    font-weight: 600;
  }
}

/*
 
.table-card:first-child  .table-cell{
     display:block;
}
.table-card:first-child  .table-row{
     display:table-cell;
        width:50%;
}

.table-card:nth-child(2) .table-cell{
     display:block;
}
.table-card:nth-child(2)  .table-row{
     display:table-cell;
        width:50%;
}
*/

/*
.container-checkmark {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}*/

.container-checkmark {
  display: block;
  /* position: relative; */
  /* padding-right: 0px; */
  /* margin-right: 10px; */
  /* margin-left: -10px; */
  /* margin-bottom: 12px; */
  cursor: pointer;
  /* font-size: 22px; */
  /* -webkit-user-select: none; */
  -moz-user-select: none;
  -ms-user-select: none;
  /* user-select: none; */
  width: 25px;
  height: 25px;
  margin-top: 5px;
}
  /* Hide the browser's default checkbox */
  .container-checkmark input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }


.card-border.card {
  border: 1px solid rgba(0,0,0,.125) !important;
  border-color: #d7dfe3;
  /*border-radius: 4px;*/
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
}

.visaButton {
  background: url(../img/PayWith.png) no-repeat;
  cursor: pointer;
  border: none;
  width: 187px;
  height: 40px;
}

.visaButton2 {
  background: url(../img/PayWith.png) no-repeat;
  cursor: pointer;
  border: none;
  width: 187px;
  height: 40px;
}

.visaButtonAnte::before {
  -webkit-animation: 2.5s blow 0s linear infinite;
  animation: 2.5s blow 0s linear infinite;
  position: absolute;
  content: '';
  width: 185px;
  height: 40px;
  top: 80px;
  margin: 0 auto;
  border-radius: 4px;
  z-index: 0;
}

/* Create a custom checkbox */
/*.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}*/

.checkmark {
  position: absolute;
  top: 5px;
  left: 5px;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container-checkmark:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-checkmark input:checked ~ .checkmark {
  background-color: #2196F3;
}

  .container-checkmark input:checked ~ .checkmark.checkmark-warning {
    background-color: #f3b632;
  }

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-checkmark input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-checkmark .checkmark:after {
  left: 10px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}



/*******************
Checkbox
*******************/
.checkbox {
  padding-left: 20px;
}

  .checkbox label {
    display: block;
    padding-left: 5px;
    position: relative;
  }

    .checkbox label::before {
      -o-transition: 0.3s ease-in-out;
      -webkit-transition: 0.3s ease-in-out;
      background-color: #ffffff;
      border-radius: 1px;
      border: 1px solid rgba(120, 130, 140, 0.33);
      content: "";
      display: inline-block;
      height: 17px;
      left: 0;
      top: 3px;
      margin-left: -20px;
      position: absolute;
      transition: 0.3s ease-in-out;
      width: 17px;
      outline: none;
    }

    .checkbox label::after {
      color: #263238;
      display: inline-block;
      font-size: 11px;
      height: 16px;
      left: 0;
      margin-left: -20px;
      padding-left: 3px;
      padding-top: 1px;
      position: absolute;
      top: 3px;
      width: 16px;
    }

  .checkbox input[type="checkbox"] {
    cursor: pointer;
    opacity: 0;
    z-index: 1;
    position: absolute;
    left: 0px;
    outline: none;
  }

    .checkbox input[type="checkbox"]:disabled + label {
      opacity: 0.65;
    }

    .checkbox input[type="checkbox"]:focus + label::before {
      outline-offset: -2px;
      outline: none;
    }

    .checkbox input[type="checkbox"]:checked + label::after {
      content: "\f00c";
      font-family: 'FontAwesome';
    }

    .checkbox input[type="checkbox"]:disabled + label::before {
      background-color: #f2f4f8;
      cursor: not-allowed;
    }

  .checkbox.checkbox-circle label::before {
    border-radius: 50%;
  }

  .checkbox.checkbox-inline {
    margin-top: 0;
  }

  .checkbox.checkbox-single label {
    height: 17px;
  }

.checkbox-primary input[type="checkbox"]:checked + label::before {
  background-color: #0e5093;
  border-color: #0e5093;
}

.checkbox-primary input[type="checkbox"]:checked + label::after {
  color: #ffffff;
}

.checkbox-danger input[type="checkbox"]:checked + label::before {
  background-color: #c6545f;
  border-color: #c6545f;
}

.checkbox-danger input[type="checkbox"]:checked + label::after {
  color: #ffffff;
}

.checkbox-info input[type="checkbox"]:checked + label::before {
  background-color: #3182c1;
  border-color: #3182c1;
}

.checkbox-info input[type="checkbox"]:checked + label::after {
  color: #ffffff;
}

.checkbox-warning input[type="checkbox"]:checked + label::before {
  background-color: #f3b632;
  border-color: #f3b632;
}

.checkbox-warning input[type="checkbox"]:checked + label::after {
  color: #ffffff;
}

.checkbox-success input[type="checkbox"]:checked + label::before {
  background-color: #83af37;
  border-color: #83af37;
}

.checkbox-success input[type="checkbox"]:checked + label::after {
  color: #ffffff;
}

.checkbox-purple input[type="checkbox"]:checked + label::before {
  background-color: #0e5093;
  border-color: #0e5093;
}

.checkbox-purple input[type="checkbox"]:checked + label::after {
  color: #ffffff;
}

.checkbox-red input[type="checkbox"]:checked + label::before {
  background-color: #c6545f;
  border-color: #c6545f;
}

.checkbox-red input[type="checkbox"]:checked + label::after {
  color: #ffffff;
}

.checkbox-inverse input[type="checkbox"]:checked + label::before {
  background-color: #2f3d4a;
  border-color: #2f3d4a;
}

.checkbox-inverse input[type="checkbox"]:checked + label::after {
  color: #ffffff;
}

/*******************
Radios 
*******************/
.radio {
  padding-left: 20px;
}

  .radio label {
    display: inline-block;
    padding-left: 5px;
    position: relative;
  }

    .radio label::before {
      -o-transition: border 0.5s ease-in-out;
      -webkit-transition: border 0.5s ease-in-out;
      background-color: #ffffff;
      border-radius: 50%;
      border: 1px solid rgba(120, 130, 140, 0.13);
      content: "";
      display: inline-block;
      height: 17px;
      left: 0;
      margin-left: -20px;
      outline: none;
      position: absolute;
      transition: border 0.5s ease-in-out;
      width: 17px;
      outline: none;
    }

    .radio label::after {
      -moz-transition: -moz-transform 0.3s cubic-bezier(0.8, -0.33, 0.2, 1.33);
      -ms-transform: scale(0, 0);
      -o-transform: scale(0, 0);
      -o-transition: -o-transform 0.3s cubic-bezier(0.8, -0.33, 0.2, 1.33);
      -webkit-transform: scale(0, 0);
      -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.8, -0.33, 0.2, 1.33);
      background-color: #263238;
      border-radius: 50%;
      content: " ";
      display: inline-block;
      height: 7px;
      left: 5px;
      margin-left: -20px;
      position: absolute;
      top: 5px;
      transform: scale(0, 0);
      transition: -webkit-transform 0.3s cubic-bezier(0.8, -0.33, 0.2, 1.33);
      -o-transition: transform 0.3s cubic-bezier(0.8, -0.33, 0.2, 1.33);
      transition: transform 0.3s cubic-bezier(0.8, -0.33, 0.2, 1.33);
      transition: transform 0.3s cubic-bezier(0.8, -0.33, 0.2, 1.33), -webkit-transform 0.3s cubic-bezier(0.8, -0.33, 0.2, 1.33);
      width: 7px;
    }

  .radio input[type="radio"] {
    cursor: pointer;
    opacity: 0;
    z-index: 1;
    outline: none;
  }

    .radio input[type="radio"]:disabled + label {
      opacity: 0.65;
    }

    .radio input[type="radio"]:focus + label::before {
      outline-offset: -2px;
      outline: none;
    }

    .radio input[type="radio"]:checked + label::after {
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      transform: scale(1, 1);
    }

    .radio input[type="radio"]:disabled + label::before {
      cursor: not-allowed;
    }

  .radio.radio-inline {
    margin-top: 0;
  }

  .radio.radio-single label {
    height: 17px;
  }

.radio-primary input[type="radio"] + label::after {
  background-color: #0e5093;
}

.radio-primary input[type="radio"]:checked + label::before {
  border-color: #0e5093;
}

.radio-primary input[type="radio"]:checked + label::after {
  background-color: #0e5093;
}

.radio-danger input[type="radio"] + label::after {
  background-color: #c6545f;
}

.radio-danger input[type="radio"]:checked + label::before {
  border-color: #c6545f;
}

.radio-danger input[type="radio"]:checked + label::after {
  background-color: #c6545f;
}

.radio-info input[type="radio"] + label::after {
  background-color: #3182c1;
}

.radio-info input[type="radio"]:checked + label::before {
  border-color: #3182c1;
}

.radio-info input[type="radio"]:checked + label::after {
  background-color: #3182c1;
}

.radio-warning input[type="radio"] + label::after {
  background-color: #f3b632;
}

.radio-warning input[type="radio"]:checked + label::before {
  border-color: #f3b632;
}

.radio-warning input[type="radio"]:checked + label::after {
  background-color: #f3b632;
}

.radio-success input[type="radio"] + label::after {
  background-color: #83af37;
}

.radio-success input[type="radio"]:checked + label::before {
  border-color: #83af37;
}

.radio-success input[type="radio"]:checked + label::after {
  background-color: #83af37;
}

.radio-purple input[type="radio"] + label::after {
  background-color: #0e5093;
}

.radio-purple input[type="radio"]:checked + label::before {
  border-color: #0e5093;
}

.radio-purple input[type="radio"]:checked + label::after {
  background-color: #0e5093;
}

.radio-red input[type="radio"] + label::after {
  background-color: #c6545f;
}

.radio-red input[type="radio"]:checked + label::before {
  border-color: #c6545f;
}

.radio-red input[type="radio"]:checked + label::after {
  background-color: #c6545f;
}

.checkbox label, .radio label {
  cursor: pointer;
  display: inline-flex;
  min-height: 0.8rem /*1.5rem*/;
}

@media (max-width: 991px) {
  .card-group-col {
    flex-flow: row wrap;
  }

  .card-group-col {
    display: flex;
    flex-direction: column;
  }

    .card-group-col > .card:last-child {
      border-top-left-radius: 0;
      border-top-right-radius: 0;
      border-bottom-left-radius: 8px;
    }

    .card-group-col > .card:first-child {
      border-top-right-radius: 8px;
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0;
    }
}


ul.list-icons li.active a {
  font-weight: 600;
  color: #0071b5;
}

ul.list-icons li.active i {
  font-weight: bold;
  color: #0071b5;
}


/* Login -Register - recover*/
.login-register {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100%;
  width: 100%;
  padding: 5% 0;
  position: fixed;
}

.login-box {
  /*width: 400px;*/
  margin: 0 auto;
}

  .login-box .footer {
    width: 100%;
    left: 0px;
    right: 0px;
  }

  .login-box .social {
    display: block;
    margin-bottom: 30px;
  }
/*Cambiado*/
#recoverform, #generateform, #successform {
  display: none;
}

.login-sidebar {
  padding: 0px;
  margin-top: 0px;
}

  .login-sidebar .login-box {
    right: 0px;
    position: absolute;
    height: 100%;
  }

@media (max-width: 600px),(max-height: 366px) {
  .login-box {
    width: 100%;
    margin: 0 auto;
    height: 100%;
  }

  .login-register {
    padding: 0 0;
  }
}


.background video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

.background div {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

.background-overlay {
  background: rgba(255, 255, 255, 0.15);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#8C000000', endColorstr='#8C000000');
  width: 100%;
  height: 100%;
}

.outer {
  display: table;
  position: absolute;
  height: 100%;
  width: 100%;
}

.middle {
  display: table-cell;
  vertical-align: middle;
}

.content {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 440px;
  width: calc(100% - 40px);
  /*padding: 44px;*/
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  min-width: 320px;
  min-height: 338px;
  overflow: hidden;
}


@media (max-width: 600px), (max-height: 366px) {
  .middle {
    vertical-align: top;
    background-color: #fff;
  }

  .background, .background > div {
    display: none;
  }

  .content {
    padding: 24px;
    margin-bottom: 68px;
    width: 100%;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 0;
  }
}

/*******************/
/*list box*/
/*******************/
.list-box ul li .drop-title {
  font-weight: 600;
  padding: 11px 20px 15px;
  border-bottom: 1px solid #e9ecef;
}

.list-box ul li .nav-link {
  border-top: 1px solid #e9ecef;
  padding-top: 15px;
}

.list-box .list-widget {
  position: relative;
}

  .list-box .list-widget a {
    border-bottom: 1px solid #e9ecef;
    display: block;
    text-decoration: none;
    padding: 9px 15px;
  }

    .list-box .list-widget a:hover {
      background: #e9ecef;
    }

    .list-box .list-widget a:last-child {
      border-bottom: 0px;
    }

    .list-box .list-widget a div {
      white-space: normal;
    }

    .list-box .list-widget a .user-img {
      width: 60px;
      position: relative;
      display: inline-block;
      margin: 0 10px 15px 0;
    }

      .list-box .list-widget a .user-img img {
        width: 100%;
      }

      .list-box .list-widget a .user-img .profile-status {
        border: 2px solid #fff;
        border-radius: 50%;
        display: inline-block;
        height: 10px;
        left: 33px;
        position: absolute;
        top: -1px;
        width: 10px;
      }

    .list-box .list-widget a .item-content {
      display: inline-block;
      width: 70%;
      vertical-align: middle;
    }

      .list-box .list-widget a .item-content h5 {
        margin: 5px 0px 0;
        color: #212529;
      }

      .list-box .list-widget a .item-content .mail-desc,
      .list-box .list-widget a .item-content .time {
        display: block;
        margin: 1px 0;
        text-overflow: ellipsis;
        overflow: hidden;
        color: #adb5bd;
        white-space: nowrap;
      }

      .list-box .list-widget a .item-content .time {
        color: #212529;
        font-size: 12px;
      }



/*******************/
/*Card box*/
/*******************/
.card-box ul li .drop-title {
  font-weight: 600;
  padding: 11px 20px 15px;
  border-bottom: 1px solid #e9ecef;
}

.card-box ul li .nav-link {
  border-top: 1px solid #e9ecef;
  padding-top: 15px;
}

.card-box .card-widget {
  position: relative;
}

  .card-box .card-widget div.card-box-content {
    padding: 10px 10px;
    width: 100%;
    float: left;
  }

    .card-box .card-widget div.card-box-content a {
      border: 1px solid #e9ecef;
      display: block;
      text-decoration: none;
      padding: 8px;
    }

      .card-box .card-widget div.card-box-content a:hover {
        background: #e9ecef;
      }

      .card-box .card-widget div.card-box-content a div {
        white-space: normal;
      }

      .card-box .card-widget div.card-box-content a .user-img {
        width: 60px;
        position: relative;
        display: inline-block;
        margin: 0 10px 3px 0;
      }

        .card-box .card-widget div.card-box-content a .user-img img {
          width: 100%;
        }

        .card-box .card-widget div.card-box-content a .user-img .profile-status {
          border: 2px solid #fff;
          border-radius: 50%;
          display: inline-block;
          height: 10px;
          left: 33px;
          position: absolute;
          top: -1px;
          width: 10px;
        }

      .card-box .card-widget div.card-box-content a .item-content {
        display: inline-block;
        width: calc(100% - 75px);
        vertical-align: middle;
      }

        .card-box .card-widget div.card-box-content a .item-content h5 {
          margin: 5px 0px 0;
          color: #212529;
        }

        .card-box .card-widget div.card-box-content a .item-content .mail-desc,
        .card-box .card-widget div.card-box-content a .item-content .time {
          display: block;
          margin: 1px 0;
          text-overflow: ellipsis;
          overflow: hidden;
          color: #adb5bd;
          white-space: nowrap;
        }

        .card-box .card-widget div.card-box-content a .item-content .time {
          color: #212529;
          font-size: 12px;
        }


@media (min-width: 576px) {
  .card-box .card-widget div.card-box-content {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .card-box .card-widget div.card-box-content {
    width: 33.33%;
  }
}

@media (min-width: 1250px) {
  .card-box .card-widget div.card-box-content {
    width: 25%;
  }
}

/************************
Sweet alert
***************************/

.sweet-alert h2 {
  padding: 0;
  font-size: 25px;
  line-height: 45px;
  margin: 0 0;
}

.sweet-alert button {
  padding: 5px 16px;
}

.sweet-alert {
  font-family: 'Segoe UI','Krub','Rubik','Quicksand',sans-serif;
}

#ActC1:active > #DesC1, #ActC1:hover > #DesC1 {
  /*background-color: #b4d3f1 !important; */
  border: solid 2px #0071b5;
  margin-top: 1px;
  margin-bottom: 3px;
}


#ActC2:active > #DesC2, #ActC2:hover > #DesC2 {
  /*background-color: #b4d3f1 !important; */
  border: solid 2px #83af37;
  margin-top: 1px;
  margin-bottom: 3px;
}

#ActC3:active > #DesC3, #ActC3:hover > #DesC3 {
  /*background-color: #b4d3f1 !important; */
  border: solid 2px #f3b632;
  margin-top: 1px;
  margin-bottom: 3px;
}


.pointer {
  cursor: pointer;
}


/*********Tooltip Tippy********/
.tippy-tooltip.info-theme {
  background-color: #0071b5;
  color: #fff;
  text-align: justify;
}

  .tippy-tooltip.info-theme[data-animatefill] {
    background-color: transparent;
  }

  .tippy-tooltip.info-theme .tippy-backdrop {
    background-color: #0071b5;
  }

.tippy-popper[x-placement^='top'] .tippy-tooltip.info-theme .tippy-arrow {
  border-top-color: #0071b5;
}

.tippy-popper[x-placement^='bottom'] .tippy-tooltip.info-theme .tippy-arrow {
  border-bottom-color: #0071b5;
}

.tippy-popper[x-placement^='left'] .tippy-tooltip.info-theme .tippy-arrow {
  border-left-color: #0071b5;
}

.tippy-popper[x-placement^='right'] .tippy-tooltip.info-theme .tippy-arrow {
  border-right-color: #0071b5;
}

.tippy-tooltip.info-theme .tippy-roundarrow {
  fill: #0071b5;
}


.tippy-tooltip.warning-theme {
  background-color: #f3b632;
  color: #fff;
  text-align: justify;
}

  .tippy-tooltip.warning-theme[data-animatefill] {
    background-color: transparent;
  }

  .tippy-tooltip.warning-theme .tippy-backdrop {
    background-color: #f3b632;
  }

.tippy-popper[x-placement^='top'] .tippy-tooltip.warning-theme .tippy-arrow {
  border-top-color: #f3b632;
}

.tippy-popper[x-placement^='bottom'] .tippy-tooltip.warning-theme .tippy-arrow {
  border-bottom-color: #f3b632;
}

.tippy-popper[x-placement^='left'] .tippy-tooltip.warning-theme .tippy-arrow {
  border-left-color: #f3b632;
}

.tippy-popper[x-placement^='right'] .tippy-tooltip.warning-theme .tippy-arrow {
  border-right-color: #f3b632;
}

.tippy-tooltip.warning-theme .tippy-roundarrow {
  fill: #f3b632;
}


.tippy-tooltip.success-theme {
  background-color: #8cb940;
  color: #fff;
  text-align: justify;
}

  .tippy-tooltip.success-theme[data-animatefill] {
    background-color: transparent;
  }

  .tippy-tooltip.success-theme .tippy-backdrop {
    background-color: #8cb940;
  }

.tippy-popper[x-placement^='top'] .tippy-tooltip.success-theme .tippy-arrow {
  border-top-color: #8cb940;
}

.tippy-popper[x-placement^='bottom'] .tippy-tooltip.success-theme .tippy-arrow {
  border-bottom-color: #8cb940;
}

.tippy-popper[x-placement^='left'] .tippy-tooltip.success-theme .tippy-arrow {
  border-left-color: #8cb940;
}

.tippy-popper[x-placement^='right'] .tippy-tooltip.success-theme .tippy-arrow {
  border-right-color: #8cb940;
}

.tippy-tooltip.success-theme .tippy-roundarrow {
  fill: #8cb940;
}


.tippy-tooltip.danger-theme {
  background-color: #ba3e3d;
  color: #fff;
  text-align: justify;
}

  .tippy-tooltip.danger-theme[data-animatefill] {
    background-color: transparent;
  }

  .tippy-tooltip.danger-theme .tippy-backdrop {
    background-color: #ba3e3d;
  }

.tippy-popper[x-placement^='top'] .tippy-tooltip.danger-theme .tippy-arrow {
  border-top-color: #ba3e3d;
}

.tippy-popper[x-placement^='bottom'] .tippy-tooltip.danger-theme .tippy-arrow {
  border-bottom-color: #ba3e3d;
}

.tippy-popper[x-placement^='left'] .tippy-tooltip.danger-theme .tippy-arrow {
  border-left-color: #ba3e3d;
}

.tippy-popper[x-placement^='right'] .tippy-tooltip.danger-theme .tippy-arrow {
  border-right-color: #ba3e3d;
}

.tippy-tooltip.danger-theme .tippy-roundarrow {
  fill: #ba3e3d;
}



/*******Full Calendar******/
.fc-list-item.bg-warning {
  background-color: inherit !important;
}

.fc-list-item.bg-info {
  background-color: inherit !important;
}

.fc-list-item.bg-danger {
  background-color: inherit !important;
}

.fc-list-item.bg-success {
  background-color: inherit !important;
}

.fc-list-item.bg-warning .fc-event-dot {
  background-color: #f3b632 !important;
}

.fc-list-item.bg-info .fc-event-dot {
  background-color: #0071b5 !important;
}

.fc-list-item.bg-danger .fc-event-dot {
  background-color: #ba3e3d !important;
}

.fc-list-item.bg-success .fc-event-dot {
  background-color: #83af37 !important;
}

.fc-list-table tr:first-child td {
  background: #edf1f5 !important;
  text-align: center;
}

.fc-ltr .fc-list-heading-main {
  color: #01629c;
  float: none;
}

.fc-unthemed .fc-list-empty {
  background-color: #f0fff4;
  font-weight: bold;
}



.fc-unthemed .fc-list-item:hover td {
  cursor: pointer;
}


a.waves-dark {
  color: #8fb74b;
}

a:hover.waves-dark, a:active.waves-dark, a:focus.waves-dark {
  color: #659a27;
}

.modal-search {
  overflow-y: hidden;
}

  .modal-search .search-input {
    margin-top: 0px;
  }

    .modal-search .search-input .input-group-text {
      background-color: #ffffff;
      border: 0px;
    }

    .modal-search .search-input .form-control {
      height: 55px;
      padding: 15px 50px;
      background-image: linear-gradient(#009efb, #009efb), linear-gradient(#e9ecef, #e9ecef);
    }


      .modal-search .search-input .form-control input {
        width: 100.5%;
        padding: 20px 40px 20px 20px;
        border-radius: 0px;
        font-size: 17px;
        -webkit-transition: 0.5s ease-in;
        -o-transition: 0.5s ease-in;
        transition: 0.5s ease-in;
        height: 68px;
      }

    .modal-search .search-input .srh-ico {
      position: absolute;
      top: 16px;
      cursor: pointer;
      background: #fff;
      width: 15px;
      height: 20px;
      left: 20px;
      font-size: 18px;
    }

    .modal-search .search-input .srh-btn {
      position: absolute;
      top: 17px;
      cursor: pointer;
      background: #fff;
      width: 15px;
      height: 15px;
      right: 20px;
      font-size: 14px;
      cursor: pointer;
      color: #a9a9a9;
    }


  .modal-search .search-content {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    min-height: 150px;
    padding: 15px;
  }



.step-time-h {
  position: relative;
  display: block;
  width: 100%;
}

  .step-time-h > ul {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin: 0;
    padding: 0;
    list-style: none;
  }

    .step-time-h > ul > li {
      display: table-cell;
      width: auto;
      vertical-align: top;
      text-align: center;
      position: relative;
    }

      .step-time-h > ul > li p {
        position: relative;
        padding-top: 20px;
        margin-top: 14px;
        margin-bottom: 14px;
        display: block;
      }

  .step-time-h .step {
    width: 15px;
    height: 15px;
    line-height: 1px;
    border: 3px solid #dee0e3;
    font-size: 1.3rem;
    border-radius: 50%;
    background-color: #fff;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -8px;
    z-index: 10;
    text-align: center;
  }

  .step-time-h .title, .step-time-h .detail {
    display: block;
    font-weight: 500;
  }

  .step-time-h > ul > li:after, .step-time-h > ul > li:before {
    top: 20px;
    width: 50%;
    height: 3px;
    background-color: #83af37;
  }

  .step-time-h > ul > li:after, .step-time-h > ul > li ~ li:after,
  .step-time-h > ul > li ~ li:before {
    background-color: #dee0e3;
  }

  .step-time-h > ul > li.active:after, .step-time-h > ul > li ~ li.active:after,
  .step-time-h > ul > li ~ li.active:before {
    background-color: #83af37;
  }

  .step-time-h > ul > li ~ li.active:before {
    background-color: #83af37;
  }

  .step-time-h > ul > li:last-child.active:after, .step-time-h > ul > li ~ li:last-child.active:after,
  {
    background-color: #dee0e3;
  }



  .step-time-h > ul > li.cancel:after, .step-time-h > ul > li ~ li.cancel:after {
    background-color: #dee0e3;
  }

  .step-time-h > ul > li ~ li.cancel:before {
    background-color: #ba3e3d;
  }


  .step-time-h > ul > li ~ li.cancel:before {
    background-color: #ba3e3d;
  }

  .step-time-h > ul > li:last-child.cancel:after, .step-time-h > ul > li ~ li:last-child.cancel:after,
  {
    background-color: #dee0e3;
  }

  .step-time-h > ul > li.wait:after, .step-time-h > ul > li ~ li.wait:after {
    background-color: #f3b632;
  }

  .step-time-h > ul > li ~ li.wait:before {
    background-color: #f3b632;
  }


  .step-time-h > ul > li ~ li.wait:before {
    background-color: #f3b632;
  }

  .step-time-h > ul > li:last-child.wait:after, .step-time-h > ul > li ~ li:last-child.wait:after,
  {
    background-color: #f3b632;
  }



  .step-time-h > ul > li:after {
    right: 0;
  }

  .step-time-h > ul > li:after, .step-time-h > ul > li:before {
    content: '';
    z-index: 9;
    display: block;
    position: absolute;
  }


  .step-time-h > ul > li.active .step {
    background-color: #83af37;
    border-color: #83af37;
    color: #fff;
  }

  .step-time-h > ul > li.active .title, .step-time-h > ul > li.active .detail {
    color: #83af37;
  }

  .step-time-h > ul > li.cancel .step {
    background-color: #ba3e3d;
    border-color: #ba3e3d;
    color: #fff;
  }

  .step-time-h > ul > li.cancel .title, .step-time-h > ul > li.cancel .detail {
    color: #ba3e3d;
  }

  .step-time-h > ul > li.wait .step {
    background-color: #f3b632;
    border-color: #f3b632;
    color: #fff;
  }

  .step-time-h > ul > li.wait .title, .step-time-h > ul > li.wait .detail {
    color: #f3b632;
  }

  .step-time-h > ul > li:first-child:before,
  .step-time-h > ul > li:last-child:after {
    content: none
  }



@media (max-width:768px) {
  .step-time-h > ul {
    margin-bottom: 20px
  }

    .step-time-h > ul > li {
      display: block;
      float: left;
      width: 50%
    }

      .step-time-h > ul > li > a {
        margin-bottom: 0
      }

      .step-time-h > ul > li:first-child:before {
        content: '';
      }

      .step-time-h > ul > li:last-child:after {
        content: '';
        background-color: #3182c1
      }

  .step-time-h > .steps {
    width: 15%
  }
}

@media (max-width:480px) {
  .step-time-h > ul > li {
    width: 100%
  }

    .step-time-h > ul > li.current:after {
      background-color: #3182c1
    }
}




.step-time-v {
  position: relative;
  display: block;
  width: 100%;
}

  .step-time-v > ul {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin: 0;
    padding: 0;
    list-style: none;
  }

    .step-time-v > ul > li {
      display: block;
      width: auto;
      vertical-align: top;
      text-align: center;
      position: relative;
    }

      .step-time-v > ul > li p {
        position: relative;
        padding-top: 20px;
        margin-top: 14px;
        margin-bottom: 14px;
        display: block;
      }

  .step-time-v .step {
    width: 15px;
    height: 15px;
    line-height: 1px;
    border: 3px solid #dee0e3;
    font-size: 1.3rem;
    border-radius: 50%;
    background-color: #fff;
    display: inline-block;
    position: absolute;
    top: 25px;
    left: 10px;
    margin-left: -8px;
    z-index: 10;
    text-align: center;
  }

  .step-time-v .title, .step-time-v .detail {
    display: block;
    font-weight: 500;
    text-align: left;
    margin-left: 30px;
  }

  .step-time-v > ul > li:after {
    top: 40px;
    height: 50%;
    width: 3px;
    background-color: #83af37;
    left: 8px;
  }

  .step-time-v > ul > li:before {
    top: -4px;
    height: 50%;
    width: 3px;
    background-color: #83af37;
    left: 8px;
  }

  .step-time-v > ul > li:after, .step-time-v > ul > li ~ li:after {
    background-color: #dee0e3;
  }

  .step-time-v > ul > li ~ li:before {
    background-color: #dee0e3;
  }

  .step-time-v > ul > li.active:after, .step-time-v > ul > li ~ li.active:after {
    background-color: #83af37;
  }

  .step-time-v > ul > li ~ li.active:before {
    background-color: #83af37;
  }

  .step-time-v > ul > li ~ li.cancel:before {
    background-color: #ba3e3d;
  }

  .step-time-v > ul > li:last-child.active:after, .step-time-v > ul > li ~ li:last-child.active:after {
    background-color: #dee0e3;
  }

  .step-time-v > ul > li:after {
    right: 0;
  }

  .step-time-v > ul > li:after {
    content: '';
    z-index: 9;
    display: block;
    position: absolute;
  }


  .step-time-v > ul > li:before {
    content: '';
    z-index: 9;
    display: block;
    position: absolute;
  }

  .step-time-v > ul > li.active .step {
    background-color: #83af37;
    border-color: #83af37;
    color: #fff;
  }

  .step-time-v > ul > li.active .title, .step-time-v > ul > li.active .detail {
    color: #83af37;
  }

  .step-time-v > ul > li.cancel .step {
    background-color: #ba3e3d;
    border-color: #ba3e3d;
    color: #fff;
  }

  .step-time-v > ul > li.cancel .title, .step-time-v > ul > li.cancel .detail {
    color: #ba3e3d;
  }


  .step-time-v > ul > li:first-child:before {
    content: none
  }

  .step-time-v > ul > li:last-child:after {
    content: none
  }


.list-date-class {
  /* margin-right: -10px; */
  /* margin-left: -10px; */
  margin-top: 10px;
  /* width: 100%; */
  padding: 5px;
}

  .list-date-class .item {
    float: left;
    padding: 5px;
    width: 33.33%;
  }

    .list-date-class .item.active .item-content {
      background-color: #83af37;
    }

  .list-date-class .item-content {
    font-family: Rubik,Roboto,Arial,sans-serif;
    width: 100%;
    height: 55px;
    border-radius: 4px;
    background-color: #6c757d;
    line-height: 1;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    justify-content: center;
  }

@media (max-width:768px) {
  .list-date-class .item {
    width: 50%;
  }
}

/*
.list-date-class .item-detail {
    display: table-cell;
    width: 75px;
    vertical-align: bottom;
    padding: 6px;
}*/

.list-date-class .item-detail {
  width: 50%;
  vertical-align: bottom;
  float: left;
  padding: 6px;
}

  .list-date-class .item-detail.date {
    border-right: solid 1px rgba(255, 255, 255, 0.3);
  }

  .list-date-class .item-detail.hour {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 11px;
  }

.list-date-class .item-content .date-name {
  font-size: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.list-date-class .item-content .date-number {
  font-size: 22px;
}

.list-date-class .item-content .date-month {
  font-size: 11px;
}



.list-lin-date-class {
  /* margin-right: -10px; */
  /* margin-left: -10px; */
  margin-top: 10px;
  /* width: 100%; */
}

  .list-lin-date-class .item {
    float: left;
    padding: 5px;
    width: 33.33%;
  }

    .list-lin-date-class .item.active .item-content {
      background-color: #83af37;
    }

  .list-lin-date-class .item-content {
    font-family: Rubik,Roboto,Arial,sans-serif;
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-color: #6c757d;
    line-height: 1;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    justify-content: center;
  }

@media (max-width:768px) {
  .list-lin-date-class .item {
    width: 50%;
  }
}

/*
.list-date-class .item-detail {
    display: table-cell;
    width: 75px;
    vertical-align: bottom;
    padding: 6px;
}*/

.list-lin-date-class .item-detail {
  width: 100%;
  vertical-align: bottom;
  /* float: left; */
  padding: 5px;
}

  .list-lin-date-class .item-detail.date {
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  }

  .list-lin-date-class .item-detail.hour {
    font-size: 11px;
  }

.list-lin-date-class .item-content .date-name {
  font-size: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.list-lin-date-class .item-content .date-number {
  font-size: 22px;
}

.list-lin-date-class .item-content .date-month {
  font-size: 11px;
}


/**************OWL CAROUSEL***************/
.bar-menu .owl-controls .owl-buttons div, .owl-theme .owl-controls .owl-buttons div {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  line-height: 30px !important;
  background: transparent !important;
}

.bar-menu .owl-controls .owl-buttons, .owl-theme .owl-controls .owl-buttons {
  top: 50% !important;
  margin-top: -15px;
  position: absolute !important;
  width: 100% !important;
}

  .owl-theme .owl-controls .owl-buttons .owl-prev {
    padding-right: 3px;
    position: absolute !important;
    left: -16px !important;
  }

  .owl-theme .owl-controls .owl-buttons .owl-next {
    position: absolute !important;
    right: -16px !important;
    padding-left: 3px !important;
  }




.box-date .item-content {
  font-family: Rubik,Roboto,Arial,sans-serif;
  width: 100%;
  height: 55px;
  border-radius: 4px;
  background-color: #90abc5;
  line-height: 1;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  justify-content: center;
}


  .box-date .item-content.active {
    background-color: #5a9a54;
  }

    .box-date .item-content.active:hover {
      background-color: #497b44;
    }



  .box-date .item-content.today {
    background-color: #94c590;
  }

    .box-date .item-content.today:hover {
      background-color: #72bb6c;
    }


  .box-date .item-content:hover {
    background: #52789e;
  }

.box-date .item-detail {
  vertical-align: bottom;
  padding: 6px;
}

  .box-date .item-detail.date {
    border-right: solid 1px rgba(255, 255, 255, 0.3);
  }

  .box-date .item-detail.hour {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 11px;
  }

.box-date .item-content .date-name {
  font-size: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.box-date .item-content .date-number {
  font-size: 22px;
}

.box-date .item-content .date-month {
  font-size: 11px;
}



.box-hour .item-content {
  font-family: Rubik,Roboto,Arial,sans-serif;
  width: 100%;
  height: 25px;
  border-radius: 4px;
  background-color: #90abc5;
  line-height: 1;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  justify-content: center;
}


  .box-hour .item-content.active {
    background-color: #5a9a54;
  }

    .box-hour .item-content.active:hover {
      background-color: #497b44;
    }



  .box-hour .item-content.today {
    background-color: #94c590;
  }

    .box-hour .item-content.today:hover {
      background-color: #72bb6c;
    }


  .box-hour .item-content:hover {
    background: #52789e;
  }

.box-hour .item-detail {
  vertical-align: bottom;
  padding: 6px;
}

#toast-container > div {
  opacity: 1;
}

.toast-bootstrap-compatibility-fix {
  opacity: 1;
}

.progress {
  height: 6px;
}

.toast-container {
  z-index: 36000000 !important;
}

/*******************
Notification - toaster
******************/
.jq-icon-info {
  background-color: #3280b7;
  color: #fff;
}

.jq-icon-success {
  background-color: #83af37;
  color: #fff;
}

.jq-icon-error {
  background-color: #ba3e3d;
  color: #fff;
}

.jq-icon-warning {
  background-color: #f3b632;
  color: #fff;
}

/*******************
Notification - toast
******************/

.toast {
  background-color: #3280b7;
  pointer-events: auto;
}

.toast-success {
  background-color: #83af37;
}

.toast-error {
  background-color: #ba3e3d;
}

.toast-info {
  background-color: #428bbf;
}

.toast-warning {
  background-color: #f3b632;
}

.toast-close-button {
  top: -0.8em;
  text-shadow: 0 0px 0 #ffffff;
}

.toast-container .toast {
  border-radius: 0px;
  box-shadow: 0 0 0px #999999;
  padding: 15px 15px 20px 50px;
}

  .toast-container .toast:hover {
    border-radius: 0px;
    box-shadow: 0 0 0px #999999;
  }

.toast-close-button {
  text-shadow: none;
  font-size: 18px;
  font-weight: 400;
}

.toast-message {
  margin-top: 5px;
}

.toast-progress {
  height: 5px;
  background-color: #7d0f0e;
}
