/* slider start*/

.switch {

  position: relative;

  display: inline-block;

  width: 30px;

  height: 17px;

}



.switch input {

  opacity: 0;

  width: 0;

  height: 0;

}



.slider {

  position: absolute;

  cursor: pointer;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-color: #ccc;

  -webkit-transition: .4s;

  transition: .4s;

}



.slider:before {

  position: absolute;

  content: "";

  height: 12px;

  width: 12px;

  left: 3px;

  bottom: 3px;

  background-color: white;

  -webkit-transition: .4s;

  transition: .4s;

}



input:checked+.slider {

  background-color: #2196F3;

}

input:disabled+.slider {

  background-color: #ffb2b2;

}

input:focus+.slider {

  box-shadow: 0 0 1px #2196F3;

}



input:checked+.slider:before {

  -webkit-transform: translateX(12px);

  -ms-transform: translateX(12px);

  transform: translateX(12px);

}



/* Rounded sliders */

.slider.round {

  border-radius: 10px;

}



.slider.round:before {

  border-radius: 50%;

}

.control-label {

  float: left;

}

/* slider end*/

.btn-success {

  background-color: #4CAF50;

  border: none;

  color: white;

  padding: 12px 20px;

  text-align: center;

  text-decoration: none;

  display: inline-block;

  font-size: 14px;

  margin: 4px 2px;

  cursor: pointer;

}

.btn-danger {

  background-color: #555555;

  border: none;

  color: white;

  padding: 12px 20px;

  text-align: center;

  text-decoration: none;

  display: inline-block;

  font-size: 14px;

  margin: 4px 2px;

  cursor: pointer;

}

.btn-sm {

  padding: 10px 15px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px
}

/*.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out,-o-transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}*/

.custominput-group {

  position: relative;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

  -ms-flex-align: stretch;

  align-items: stretch;

  width: 100%;

}



.custominput-group>.form-control,

.custominput-group>.form-control-plaintext,

.custominput-group>.custom-select,

.custominput-group>.custom-file {

  position: relative;

  -ms-flex: 1 1 auto;

  flex: 1 1 auto;

  width: 1%;

  min-width: 0;

  margin-bottom: 0;

}



.custominput-group>.form-control+.form-control,

.custominput-group>.form-control+.custom-select,

.custominput-group>.form-control+.custom-file,

.custominput-group>.form-control-plaintext+.form-control,

.custominput-group>.form-control-plaintext+.custom-select,

.custominput-group>.form-control-plaintext+.custom-file,

.custominput-group>.custom-select+.form-control,

.custominput-group>.custom-select+.custom-select,

.custominput-group>.custom-select+.custom-file,

.custominput-group>.custom-file+.form-control,

.custominput-group>.custom-file+.custom-select,

.custominput-group>.custom-file+.custom-file {

  margin-left: -1px;

}



.custominput-group>.form-control:focus,

.custominput-group>.custom-select:focus,

.custominput-group>.custom-file .custom-file-input:focus~.custom-file-label {

  z-index: 3;

}



.custominput-group>.custom-file .custom-file-input:focus {

  z-index: 4;

}



.custominput-group>.form-control:not(:last-child),

.custominput-group>.custom-select:not(:last-child) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}



.custominput-group>.form-control:not(:first-child),

.custominput-group>.custom-select:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}



.custominput-group>.custom-file {

  display: -ms-flexbox;

  display: flex;

  -ms-flex-align: center;

  align-items: center;

}



.custominput-group>.custom-file:not(:last-child) .custom-file-label,

.custominput-group>.custom-file:not(:last-child) .custom-file-label::after {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}



.custominput-group>.custom-file:not(:first-child) .custom-file-label {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}



.custominput-group-prepend,

.custominput-group-append {

  display: -ms-flexbox;

  display: flex;

}



.custominput-group-prepend .btn,

.custominput-group-append .btn {

  position: relative;

  z-index: 2;

}



.custominput-group-prepend .btn:focus,

.custominput-group-append .btn:focus {

  z-index: 3;

}



.custominput-group-prepend .btn+.btn,

.custominput-group-prepend .btn+.custominput-group-text,

.custominput-group-prepend .custominput-group-text+.custominput-group-text,

.custominput-group-prepend .custominput-group-text+.btn,

.custominput-group-append .btn+.btn,

.custominput-group-append .btn+.custominput-group-text,

.custominput-group-append .custominput-group-text+.custominput-group-text,

.custominput-group-append .custominput-group-text+.btn {

  margin-left: -1px;

}



.custominput-group-prepend {

  margin-right: -1px;

}



.custominput-group-append {

  margin-left: -1px;

}



.custominput-group-text {

  display: -ms-flexbox;

  display: flex;

  -ms-flex-align: center;

  align-items: center;

  padding: 0.375rem 0.75rem;

  margin-bottom: 0;

  font-size: 1rem;

  font-weight: 400;

  line-height: 1.5;

  color: #495057;

  text-align: center;

  white-space: nowrap;

  background-color: #e9ecef;

  border: 1px solid #ced4da;

  border-radius: 0.25rem;

}



.custominput-group-text input[type="radio"],

.custominput-group-text input[type="checkbox"] {

  margin-top: 0;

}



.custominput-group-lg>.form-control:not(textarea),

.custominput-group-lg>.custom-select {

  height: calc(1.5em + 1rem + 2px);

}



.custominput-group-lg>.form-control,

.custominput-group-lg>.custom-select,

.custominput-group-lg>.custominput-group-prepend>.custominput-group-text,

.custominput-group-lg>.custominput-group-append>.custominput-group-text,

.custominput-group-lg>.custominput-group-prepend>.btn,

.custominput-group-lg>.custominput-group-append>.btn {

  padding: 0.5rem 1rem;

  font-size: 1.25rem;

  line-height: 1.5;

  border-radius: 0.3rem;

}



.custominput-group-sm>.form-control:not(textarea),

.custominput-group-sm>.custom-select {

  height: calc(1.5em + 0.5rem + 2px);

}



.custominput-group-sm>.form-control,

.custominput-group-sm>.custom-select,

.custominput-group-sm>.custominput-group-prepend>.custominput-group-text,

.custominput-group-sm>.custominput-group-append>.custominput-group-text,

.custominput-group-sm>.custominput-group-prepend>.btn,

.custominput-group-sm>.custominput-group-append>.btn {

  padding: 0.25rem 0.5rem;

  font-size: 0.875rem;

  line-height: 1.5;

  border-radius: 0.2rem;

}



.custominput-group-lg>.custom-select,

.custominput-group-sm>.custom-select {

  padding-right: 1.75rem;

}



.custominput-group>.custominput-group-prepend>.btn,

.custominput-group>.custominput-group-prepend>.custominput-group-text,

.custominput-group>.custominput-group-append:not(:last-child)>.btn,

.custominput-group>.custominput-group-append:not(:last-child)>.custominput-group-text,

.custominput-group>.custominput-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),

.custominput-group>.custominput-group-append:last-child>.custominput-group-text:not(:last-child) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}



.custominput-group>.custominput-group-append>.btn,

.custominput-group>.custominput-group-append>.custominput-group-text,

.custominput-group>.custominput-group-prepend:not(:first-child)>.btn,

.custominput-group>.custominput-group-prepend:not(:first-child)>.custominput-group-text,

.custominput-group>.custominput-group-prepend:first-child>.btn:not(:first-child),

.custominput-group>.custominput-group-prepend:first-child>.custominput-group-text:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}





.home-v1-slider .owl-dots,

.home-v2-slider .owl-dots,

.home-v3-slider .owl-dots {

  position: absolute;

  bottom: 3%;

  display: block;

  text-align: center;

  width: 100%;

}



.hero-action-btn a {

  color: #333e48;

  font-weight: 100;

}



.home-v2-slider {

  left: 33.33%;

}



.hero-1 {

  font-size: 4.125em;

  color: #333e48;

  font-weight: 300;

  line-height: 0.788em;

  margin-bottom: 10px;

  text-transform: uppercase;

}



.hero-2 {

  font-size: 3.000em;

  color: #333e48;

  font-weight: 300;

  line-height: 1.000em;

  margin-bottom: 30px;

  text-transform: uppercase;

}



.hero-v2 {

  font-size: 4.143em !important;

}



.hero-subtitle {

  font-size: 0.938em;

  font-weight: 800;

  line-height: 1.467em;

  margin-bottom: 40px;

  text-transform: uppercase;

}



.hero-subtitle-v2 {

  font-weight: 600;

  color: #34bcec;

  font-size: 1.125em;

  line-height: 1.222em;

  margin-bottom: 20px;

  text-transform: uppercase;

}



.hero-action-btn {

  color: #333e48 !important;

  font-size: 1.286em !important;

  padding: 0.611em 3.172em !important;

  border-radius: 0.714em !important;

  line-height: 1.3em !important;

}



.image {

  position: absolute;

  right: 0;

  overflow: hidden;

  height: 485px;

}



.hero-v2-price {

  font-weight: 300;

  margin-bottom: 20px;

  text-transform: uppercase;

}

.hero-v2-price span {

  font-size: 3.500em;

  line-height: 0.929em;

  font-weight: 700;

}

/* @media (max-width: 700px) {



  .home-v1-slider,

  .home-v2-slider,

  .home-v3-slider {

    background-color: #f9f9f9;

    width: 100vw;

    position: relative;

    margin-left: -50vw;

    left: 50%;

    margin-bottom: 3em;

    height: 150px; 

  }

  .home-v1-slider .item,

  .home-v2-slider .item,

  .home-v3-slider .item {

    height: 150px; 

  }

} */

.home-v1-slider,

.home-v2-slider,

.home-v3-slider {

  background-color: #f9f9f9;

  width: 100vw;

  position: relative;

  margin-left: -50vw;

  left: 50%;

  margin-bottom: 3em;

  /* height: 350px;  */

}

@media (min-width: 700px) {



  .home-v1-slider .item,

  .home-v2-slider .item,

  .home-v3-slider .item {

    /* height: 350px;  */

  }

}



/* @media (max-width: 700px) {

  #owl-main .item {

    background-position: center 55%;

    background-size: cover;

    height: 150px;

    width: 100%; 

  }

} */

/* @media (min-width: 700px) {

  #owl-main .item {

    background-position: center 55%;

    background-size: cover;

    height: 350px;

    width: 100%; 

  }

} */

#owl-main .item .container {

  display: table;

  height: inherit;

  width: 100%;

}

#owl-main .item .caption {

  padding-top: 85px;

  display: table-cell;

}



/*===================================================================================*/

/*  Home Full Width Slider

/*===================================================================================*/

.home-full-width-slider {

  margin-bottom: 2em;

}

/*===================================================================================*/

/*  OWL-CAROUSEL-CORE

/*===================================================================================*/

.owl-carousel {

  display: none;

  width: 100%;

  -webkit-tap-highlight-color: transparent;

  /* position relative and z-index fix webkit rendering fonts issue */

  position: relative;

  z-index: 1;

}

.owl-carousel .owl-stage {

  position: relative;

  -ms-touch-action: pan-Y;

}

.owl-carousel .owl-stage:after {

  content: ".";

  display: block;

  clear: both;

  visibility: hidden;

  line-height: 0;

  height: 0;

}

.owl-carousel .owl-stage-outer {

  position: relative;

  overflow: hidden;

  /* fix for flashing background */

  -webkit-transform: translate3d(0px, 0px, 0px);

}

.owl-carousel .owl-item {

  position: relative;

  min-height: 1px;

  float: left;

  -webkit-backface-visibility: hidden;

  -webkit-tap-highlight-color: transparent;

  -webkit-touch-callout: none;

}

.owl-carousel .owl-item img {

  -webkit-transform-style: preserve-3d;

  display: block;

  width: 100%;

  height: auto;

}

.owl-carousel .owl-nav.disabled,

.owl-carousel .owl-dots.disabled {

  display: none;

}

.owl-carousel .owl-nav .owl-prev,

.owl-carousel .owl-nav .owl-next,

.owl-carousel .owl-dot {

  cursor: pointer;

  cursor: hand;

  -webkit-user-select: none;

  -khtml-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

}

.owl-carousel.owl-loaded {

  display: block;

}

.owl-carousel.owl-loading {

  opacity: 0;

  display: block;

}

.owl-carousel.owl-hidden {

  opacity: 0;

}

.owl-carousel.owl-refresh .owl-item {

  display: none;

}

.owl-carousel.owl-drag .owl-item {

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

}

.owl-carousel.owl-grab {

  cursor: move;

  cursor: grab;

}

.owl-carousel.owl-rtl {

  direction: rtl;

}

.owl-carousel.owl-rtl .owl-item {

  float: right;

}



/* No Js */

.no-js .owl-carousel {

  display: block;

}



/*

 *  Owl Carousel - Animate Plugin

 */

.owl-carousel .animated {

  animation-duration: 1000ms;

  animation-fill-mode: both;

}



.owl-carousel .owl-animated-in {

  z-index: 0;

}



.owl-carousel .owl-animated-out {

  z-index: 1;

}



.owl-carousel .fadeOut {

  animation-name: fadeOut;

}



@keyframes fadeOut {

  0% {

    opacity: 1;

  }

  100% {

    opacity: 0;

  }
}



/*

 *  Owl Carousel - Lazy Load Plugin

 */

.owl-carousel .owl-item .owl-lazy {

  opacity: 0;

  transition: opacity 400ms ease;

}



.owl-carousel .owl-item img {

  transform-style: preserve-3d;

}



.owl-dots {

  text-align: center;

}

.owl-dots .owl-dot {

  width: 8px;

  height: 8px;

  background-color: #bcbcbc;

  display: inline-block;

  border-radius: 50%;
  padding: 0;
  border: 0;

}

.owl-dots .owl-dot.active {

  width: 30px;

  height: 8px;

  border-radius: 3px;

}

.owl-dots .owl-dot+.owl-dot {

  margin-left: 1em;

}

.main-sidebar {

  /*position: absolute;*/

  top: 0;

  left: 0;

  padding-top: 60px;

  min-height: 100%;

  /*width: 260px;*/

  z-index: 810;

  -webkit-transition: -webkit-transform .3s ease-in-out, width .3s ease-in-out;

  -moz-transition: -moz-transform .3s ease-in-out, width .3s ease-in-out;

  -o-transition: -o-transform .3s ease-in-out, width .3s ease-in-out;

  transition: transform .3s ease-in-out, width .3s ease-in-out;

}

.main-sidebar .sidebar-footer {

  background-color: #ffffff;

  border-right: 1px solid rgba(72, 94, 144, 0.16);

}



.sidebar-footer {

  position: fixed;

  z-index: 10;

  bottom: 0;

  left: 0;

  transition: .2s ease-out;

  width: 260px;

  background-color: #ffffff;

  border-top: 1px solid rgba(71, 95, 123, 0.13);

}

.sidebar-footer a {

  padding: 12px;

  width: 33.333337%;

  float: left;

  text-align: center;

  font-size: 18px;

}



.layout-boxed .sidebar-footer {

  position: absolute;

}



@media (max-width: 991px) {

  .main-sidebar {

    padding-top: 60px;

  }
}

@media (max-width: 767px) {

  .main-sidebar {

    margin-top: 110px;

    padding-top: 0px;

    -webkit-transform: translate(-260px, 0);

    -ms-transform: translate(-260px, 0);

    -o-transform: translate(-260px, 0);

    transform: translate(-260px, 0);

  }



  .sidebar-open .main-sidebar {

    -webkit-transform: translate(0, 0);

    -ms-transform: translate(0, 0);

    -o-transform: translate(0, 0);

    transform: translate(0, 0);

  }
}

@media (min-width: 768px) {

  .sidebar-collapse .main-sidebar {

    -webkit-transform: translate(-260px, 0);

    -ms-transform: translate(-260px, 0);

    -o-transform: translate(-260px, 0);

    transform: translate(-260px, 0);

  }

  .sidebar-collapse .sidebar-footer {

    width: 60px;

  }

  .sidebar-collapse .sidebar-footer a {

    width: 100%;

  }
}

.sidebar {

  padding-bottom: 10px;

}



.sidebar-form input:focus {

  border-color: transparent;

}



.sidebar-menu {

  list-style: none;

  margin: 0 10px;

  padding: 0px 0px 50px 0px;

}

.sidebar-menu>li {

  position: relative;

  margin: 0 5px;

  padding-left: 0px;

  padding-right: 0px;

  border-radius: 0;

  border-left: 0px solid #ffffff;

}

.sidebar-menu>li.user-profile:hover>a,
.sidebar-menu>li.user-profile:active>a,
.sidebar-menu>li.user-profile.active>a {

  color: #000000;

  background-color: transparent !important;

}

.sidebar-menu>li.user-profile:hover>a .email-id,
.sidebar-menu>li.user-profile:active>a .email-id,
.sidebar-menu>li.user-profile.active>a .email-id {

  color: rgba(71, 95, 123, 0.7);

}

.sidebar-menu>li.user-profile.menu-open>a {

  color: #000000;

  background-color: transparent !important;

}

.sidebar-menu>li.user-profile>a {

  opacity: 1;

  padding: 25px;

  display: flex;

}

.sidebar-menu>li.user-profile>.treeview-menu {

  background-color: #475F7B !important;

}

.sidebar-menu>li:hover>a,
.sidebar-menu>li:active>a,
.sidebar-menu>li.active>a {

  opacity: 1;

  padding-left: 0px;

  padding-right: 0px;

}

.sidebar-menu>li:active>a,
.sidebar-menu>li.active>a,
.sidebar-menu>li:focus>a {

  font-weight: 600;

}

.sidebar-menu>li.treeview.menu-open {

  background-color: rgba(250, 250, 250, 0) !important;

}

.sidebar-menu>li.treeview.menu-open>a {

  opacity: 1;

}

.sidebar-menu>li>a {

  padding: 5px 0px;

  display: block;

}

.sidebar-menu>li>a>i {

  width: 30px;

  line-height: 28px;

  font-size: 1rem;

  display: inline-block;

  vertical-align: middle;

  color: #475F7B;

  text-align: center;

  border-radius: 10px;

  margin-right: 20px;

  background-color: #e6ecf3;

}

.sidebar-menu>li>a>svg {

  width: 24px;

  display: inline-block;

  vertical-align: middle;

  color: #485e90;

  text-align: center;

  margin-right: 10px;

  fill: rgba(27, 46, 75, 0.06);

}

.sidebar-menu>li>a>img.svg-icon {

  width: 35px;

  height: 35px;

  margin-right: 10px;

  padding: 8px;

  margin-top: -2px;

  border: 1px solid rgba(71, 95, 123, 0.5);

  border-radius: 100px;

}

.sidebar-menu>li:hover>a>i,
.sidebar-menu>li:active>a>i,
.sidebar-menu>li.active>a>i {

  color: #475F7B;

}

.sidebar-menu>li:hover>a>svg,
.sidebar-menu>li:active>a>svg,
.sidebar-menu>li.active>a>svg {

  color: #475F7B;

}

.sidebar-menu>li.menu-open>a>i {

  color: #475F7B;

}

.sidebar-menu>li.menu-open>a>svg {

  color: #475F7B;

}

.sidebar-menu>li .badge {

  margin-right: 5px;

  width: 20px;

  height: 20px;

  border-radius: 100%;

  line-height: 16px;

  text-align: center;

  font-weight: 300;

  margin-top: 3px;

}

.sidebar-menu>li .label {

  margin-right: 5px;

  width: 20px;

  height: 20px;

  border-radius: 100%;

  line-height: 16px;

  text-align: center;

  font-weight: 300;

}

.sidebar-menu li.nav-devider {

  height: 1px;

  background-color: rgba(71, 95, 123, 0.13);

  display: block;

  margin: 15px 0;

}

.sidebar-menu li.header {

  padding: 10px 0px 10px 0px;

  font-size: 12px;

  font-weight: 700;

  color: #b8c6d6;

  text-transform: uppercase;

}

.sidebar-menu li>a>.fa-angle-right {

  width: auto;

  height: auto;

  padding: 0;

  margin-right: 10px;

  -webkit-transition: transform .5s ease;

  -o-transition: transform .5s ease;

  transition: transform .5s ease;

  position: absolute;

  top: 50%;

  right: 10px;

  margin-top: -8px;

}

.sidebar-menu li>a>.pull-right-container>i {

  width: auto;

  height: auto;

  padding: 0;

  margin-right: 10px;

  -webkit-transition: transform .5s ease;

  -o-transition: transform .5s ease;

  transition: transform .5s ease;

}

.sidebar-menu li>a>.pull-right-container>.fa-angle-right {

  width: auto;

  height: auto;

  padding: 0;

  margin-right: 10px;

  -webkit-transition: transform .5s ease;

  -o-transition: transform .5s ease;

  transition: transform .5s ease;

}

.sidebar-menu .menu-open>a>.fa-angle-right {

  -webkit-transform: rotate(90deg);

  -ms-transform: rotate(90deg);

  -o-transform: rotate(90deg);

  transform: rotate(90deg);

}

.sidebar-menu .menu-open>a>.pull-right-container>.fa-angle-right {

  -webkit-transform: rotate(90deg);

  -ms-transform: rotate(90deg);

  -o-transform: rotate(90deg);

  transform: rotate(90deg);

}

.sidebar-menu .menu-open>a>.pull-right-container>i {

  -webkit-transform: rotate(90deg);

  -ms-transform: rotate(90deg);

  -o-transform: rotate(90deg);

  transform: rotate(90deg);

}

.sidebar-menu .user-profile .treeview-menu>li>a {

  color: #ffffff !important;

  opacity: 1;

  background-color: transparent;

  padding: 8px 5px 8px 30px;

}

.sidebar-menu .active>.treeview-menu {

  display: block;

}



.sidebar-collapse .sidebar-menu>li.user-profile:hover>a,
.sidebar-collapse .sidebar-menu>li.user-profile:active>a,
.sidebar-collapse .sidebar-menu>li.user-profile.active>a {

  background-color: #475F7B !important;

  color: #ffffff;

}

.sidebar-collapse .sidebar-menu>li.user-profile:hover>a .email-id,
.sidebar-collapse .sidebar-menu>li.user-profile:active>a .email-id,
.sidebar-collapse .sidebar-menu>li.user-profile.active>a .email-id {

  color: #cccccc;

}

.sidebar-collapse .sidebar-menu>li.user-profile.menu-open>a {

  background-color: #475F7B !important;

  color: #ffffff;

}

.sidebar-collapse .sidebar-menu>li.user-profile.menu-open>a .email-id {

  color: #cccccc;

}

.sidebar-collapse .sidebar-menu>li.user-profile>a {

  display: block;

}



.sidebar-mini.sidebar-collapse .sidebar-menu>li.user-profile>a {

  padding: 10px;

}



.user-panel {

  position: relative;

  width: 100%;

  padding: 10px 0 10px;

  background-image: url(../images/user-info.jpg);

}

.user-panel:before,
.user-panel:after {

  content: " ";

  display: table;

}

.user-panel>.image>img {

  width: 100%;

  max-width: 25%;

  height: auto;

  margin: 0 10px;

  border: 2px solid rgba(71, 95, 123, 0.13);

}

.user-panel>.info {

  padding: 5px;

  line-height: 1;

  margin: 0 auto;

  text-align: left;

  position: absolute;

  left: 60px;

}

.user-panel>.info>p {

  font-weight: 300;

  margin-bottom: 9px;

}

.user-panel>.info>a {

  text-decoration: none;

  padding-right: 5px;

  margin-top: 3px;

  font-size: 11px;

}

.user-panel>.info>a>i {

  margin-right: 3px;

}



.sidebar-collapse .user-panel>.image>img {

  max-width: 50px;

  margin: 0 0px;

}



.user-profile .info {

  width: auto;

  visibility: visible;

  opacity: 1;

  height: 40px;

  overflow: hidden;

  -webkit-transition: all .1s ease-in-out;

  -o-transition: all .1s ease-in-out;

  -moz-transition: all .1s ease-in-out;

  transition: all .1s ease-in-out;

}

.user-profile .btn-group {

  display: block;

}

.user-profile .btn-group .btn {

  width: 100%;

  border-radius: 0;

  background-color: rgba(71, 95, 123, 0.4);

  border: none;

  text-align: left;

  padding: 5px 15px;

  color: #ffffff;

}

.user-profile .btn-group button.btn.dropdown-toggle::after {

  position: absolute;

  right: 20px;

  top: 15px;

}

.user-profile .profile-pic {

  padding: 15px 0;

  text-align: center;

}

.user-profile .ulogo {

  text-align: center;

  padding: 20px 0 0;

  font-size: 1.286rem;

  color: #ffffff;

}

.user-profile img {

  width: 50px;

  height: 50px;

  margin: 0 auto;

  border-radius: 100px !important;

  border: 5px solid rgba(255, 255, 255, 0.3);

}

.user-profile .dropdown-menu {

  left: 0px;

  right: 0px;

  width: 180px;

}

.user-profile .profile-setting li a svg {

  width: 18px;

}



.sidebar-collapse .user-profile .profile-pic {

  padding: 5px 0;

}

.sidebar-collapse .user-profile .ulogo,
.sidebar-collapse .user-profile .info {

  width: 0;

  visibility: hidden;

  opacity: 0;

  height: 40px;

  overflow: hidden;

  -webkit-transition: all .1s ease-in-out;

  -o-transition: all .1s ease-in-out;

  -moz-transition: all .1s ease-in-out;

  transition: all .1s ease-in-out;

  margin-left: -20px !important;

}

.sidebar-collapse .user-profile .profile-info,
.sidebar-collapse .user-profile .profile-setting {

  display: none !important;

  -webkit-transition: all .5s ease-in-out;

  -o-transition: all .5s ease-in-out;

  -moz-transition: all .5s ease-in-out;

  transition: all .5s ease-in-out;

}



.sidebar .user-profile .ulogo a {

  background-color: transparent;

}

.sidebar .user-profile .btn-group a {

  color: #475F7B;

  background-color: transparent;

}



.sidebar-collapse.sidebar-mini .user-profile {

  overflow: hidden;

  padding-left: 5px !important;

  padding-right: 5px !important;

}



.sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu>li.user-profile:hover>.treeview-menu,
.sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu>li.user-profile:active>.treeview-menu,
.sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu>li.user-profile.active>.treeview-menu {

  top: 79px;

}



.sidebar-menu .user-profile>a img {

  width: 45px;

  border-radius: 100%;

  margin-right: 10px;

}



.sidebar-collapse .sidebar-menu .user-profile>a img {

  margin-right: 0px;

}



.light-sidebar .sidebar-menu>li:hover>a>i,
.light-sidebar .sidebar-menu>li:active>a>i,
.light-sidebar .sidebar-menu>li.active>a>i {

  border: 1px solid rgba(0, 0, 0, 0.2);

}

.light-sidebar .sidebar-menu>li.menu-open>a>i {

  border: 1px solid rgba(0, 0, 0, 0.2);

}

.light-sidebar .sidebar-menu>li>a>i {

  border: 1px solid rgba(0, 0, 0, 0.2);

}



@media (min-width: 768px) {

  .sidebar-mini.sidebar-expanded-on-hover .content-wrapper {

    margin-left: 60px;

  }

  .sidebar-mini.sidebar-expanded-on-hover .main-header .navbar {

    margin-left: 260px;

  }

  .sidebar-mini.sidebar-expanded-on-hover .main-header .logo-box {

    position: absolute;

    z-index: 9;

    background: #f2f4f4;

  }

  .sidebar-mini.fixed.sidebar-mini-expand-feature .main-header .logo-box {

    position: absolute;

    z-index: 9;

    background: #ffffff;

  }

  .sidebar-mini.sidebar-collapse .content-wrapper {

    margin-left: 60px;

    z-index: 840;

  }

  .sidebar-mini.sidebar-collapse .main-footer {

    margin-left: 60px;

    z-index: 840;

  }

  .sidebar-mini.sidebar-collapse .right-side {

    margin-left: 60px;

    z-index: 840;

  }

  .sidebar-mini.sidebar-collapse .main-sidebar {

    -webkit-transform: translate(0, 0);

    -ms-transform: translate(0, 0);

    -o-transform: translate(0, 0);

    transform: translate(0, 0);

    width: 60px;

    z-index: 850;

  }

  .sidebar-mini.sidebar-collapse .main-sidebar .user-panel>.info {

    display: none !important;

    -webkit-transform: translateZ(0);

  }

  .sidebar-mini.sidebar-collapse .sidebar-menu>li {

    position: relative;

    padding: 0px 15px;

    margin: 0 0px;

  }

  .sidebar-mini.sidebar-collapse .sidebar-menu>li>a {

    margin-right: 0;

    padding-left: 0;

    padding-right: 0;

  }

  .sidebar-mini.sidebar-collapse .sidebar-menu>li>a i {

    margin-right: 0;

  }

  .sidebar-mini.sidebar-collapse .sidebar-menu>li>a svg {

    margin-right: 0;

    margin-left: 11px;

  }

  .sidebar-mini.sidebar-collapse .sidebar-menu>li>a>span {

    border-top-right-radius: 5px;

    display: none !important;

    -webkit-transform: translateZ(0);

  }

  .sidebar-mini.sidebar-collapse .sidebar-menu>li>a>.pull-right {

    display: none !important;

    -webkit-transform: translateZ(0);

  }

  .sidebar-mini.sidebar-collapse .sidebar-menu>li:not(.treeview)>a>span {

    border-top-right-radius: 5px;

  }

  .sidebar-mini.sidebar-collapse .sidebar-menu>li>.treeview-menu {

    padding-top: 0px;

    padding-bottom: 0px;

    border-bottom-right-radius: 5px;

    display: none !important;

    -webkit-transform: translateZ(0);

  }

  .sidebar-mini.sidebar-collapse .sidebar-menu li.header {

    visibility: hidden;

    overflow: hidden;

    width: 0;

    height: 0;

    padding: 0;

    -webkit-transform: translateZ(0);

  }

  .sidebar-mini.sidebar-collapse .sidebar-form {

    display: none !important;

    -webkit-transform: translateZ(0);

  }

  .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu>li:hover>a>span:not(.pull-right) {

    display: block !important;

    position: absolute;

    width: 260px;

    left: 54px;

    text-align: left;

  }

  .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu>li:hover>a>span {

    top: 0;

    margin-left: -10px;

    padding: 14px 0px 14px 30px;

    background-color: inherit;

  }

  .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu>li:hover>a>.pull-right-container {

    position: relative !important;

    float: right;

    width: auto !important;

    left: 250px !important;

    top: -16px !important;

    z-index: 900;

    background-color: transparent !important;

    box-shadow: none;

  }

  .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu>li:hover>a>.pull-right-container>.label:not(:first-of-type) {

    display: none;

  }

  .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu>li:hover>a:after {

    display: none;

  }

  .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu>li:hover>.treeview-menu {

    display: block !important;

    position: absolute;

    width: 260px;

    left: 69px;

    top: 53px;

    margin-left: 0;

  }

  .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu>li .user-profile:hover>a>.pull-right-container {

    left: 237px !important;

  }



  .sidebar-collapse .treeview-menu {

    margin-left: -10px !important;

  }



  .control-sidebar-open .content-wrapper {

    margin-right: 345px;

  }

  .control-sidebar-open .main-footer {

    margin-right: 345px;

  }

  .control-sidebar-open .right-side {

    margin-right: 345px;

  }
}

.main-sidebar .user-panel {

  white-space: nowrap;

  overflow: hidden;

}



.sidebar-menu {

  white-space: nowrap;

  overflow: hidden;

}

.sidebar-menu>li.header {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: clip;

}

.sidebar-menu>li.header.line {

  background-color: #d5dfea;

  height: 2px;

  padding: 0;

  margin: 20px 0px;

}

.sidebar-menu>li:hover.header,
.sidebar-menu>li:active.header,
.sidebar-menu>li:focus.header,
.sidebar-menu>li.active.header {

  background: transparent !important;

  border-color: transparent !important;

}

.sidebar-menu li>a {

  position: relative;

  font-weight: 600;

  opacity: 0.9;

  white-space: nowrap;

  align-items: center;

  line-height: 25px;

}

.sidebar-menu li>a>.pull-right-container {

  position: absolute;

  right: 0px;

  top: 50%;

  margin-top: -7px;

}

.sidebar-menu:hover {

  overflow: visible;

}

.sidebar-menu .treeview-menu>li.active>a {

  opacity: 1;

}

.sidebar-menu .treeview-menu>li.active>a:hover {

  opacity: 1;

}

.sidebar-menu .treeview-menu>li>a:hover {

  opacity: 1;

}



.sidebar-collapse .sidebar-menu.tree {

  padding: 0;

  margin: 0;

}

.sidebar-collapse .sidebar-menu>li:hover>a,
.sidebar-collapse .sidebar-menu>li:active>a,
.sidebar-collapse .sidebar-menu>li.active>a {

  border-radius: 0;

}

.sidebar-collapse .sidebar-menu>li.menu-open>a {

  border-radius: 0;

}



.sidebar-form {

  float: left;

  margin: 20px 10px 10px;

  overflow: hidden;

  text-overflow: clip;

}



.nav-tabs.control-sidebar-tabs>li>a {

  border-radius: 0;

  border-top: none;

  border-right: none;

  border-left: none;

  border-bottom: 1px solid transparent;

}

.nav-tabs.control-sidebar-tabs>li>a:hover,
.nav-tabs.control-sidebar-tabs>li>a:focus {

  border-top: none;

  border-right: none;

  border-left: none;

  border-bottom: 1px solid transparent;

}

.nav-tabs.control-sidebar-tabs>li>a .icon {

  font-size: 16px;

}

.nav-tabs.control-sidebar-tabs>li:first-of-type>a {

  border-left-width: 0;

}

.nav-tabs.control-sidebar-tabs>li:first-of-type>a:hover,
.nav-tabs.control-sidebar-tabs>li:first-of-type>a:focus {

  border-left-width: 0;

}

.nav-tabs.control-sidebar-tabs>li.active>a {

  border-top: none;

  border-right: none;

  border-bottom: none;

}

.nav-tabs.control-sidebar-tabs>li.active>a:hover,
.nav-tabs.control-sidebar-tabs>li.active>a:active,
.nav-tabs.control-sidebar-tabs>li.active>a:focus,
.nav-tabs.control-sidebar-tabs>li.active>a.active {

  border-top: none;

  border-right: none;

  border-bottom: none;

}



.control-sidebar-bg {

  position: fixed;

  z-index: 1000;

  bottom: 0;

  top: 0;

  right: -355px;

  width: 345px;

  -webkit-transition: right .3s ease-in-out;

  -o-transition: right .3s ease-in-out;

  transition: right .3s ease-in-out;

}



.control-sidebar {

  top: 0;

  right: -355px;

  width: 345px;

  -webkit-transition: right .3s ease-in-out;

  -o-transition: right .3s ease-in-out;

  transition: right .3s ease-in-out;

  position: absolute;

  padding: 30px 30px 30px 30px;

  z-index: 9999;

}

.control-sidebar>.tab-content {

  padding: 15px 0px;

}

.control-sidebar.control-sidebar-open {

  right: 0;

}

.control-sidebar.control-sidebar-open.control-sidebar-bg,
.control-sidebar.control-sidebar-open+.control-sidebar-bg {

  right: 0;

}

.control-sidebar .nav-tabs.control-sidebar-tabs>li {

  margin-right: 30px;

}

.control-sidebar .nav-tabs.control-sidebar-tabs>li>a {

  padding: 10px 0px;

  display: block;

  font-size: 24px;

}

.control-sidebar .rpanel-title {

  position: absolute;

  top: 0;

  right: 0;

  color: #ffffff;

}

.control-sidebar .rpanel-title .btn {

  padding: 0;

  margin: 0.75rem 1rem;

}



@media (min-width: 768px) {

  .control-sidebar {

    padding: 30px;

    right: -345px;

    width: 345px;

  }



  .control-sidebar-bg {

    right: -345px;

    width: 345px;

  }



  .nav-tabs.control-sidebar-tabs>li {

    display: table-cell;

  }
}

@media (max-width: 767px) {

  .control-sidebar {

    padding: 20px;

    width: 300px;

  }



  .control-sidebar-bg {

    width: 300px;

  }
}

.control-sidebar-open .control-sidebar {

  right: 0;

}

.control-sidebar-open .control-sidebar-bg {

  right: 0;

}



.fixed .control-sidebar {

  position: fixed;

  height: 100%;

  overflow-y: auto;

  padding-bottom: 50px;

}



.control-sidebar-heading {

  font-weight: 600;

  padding: 10px 0;

  margin-bottom: 0px;

  margin-top: 0;

}



.control-sidebar-subheading {

  display: block;

  font-weight: 500;

  font-size: 16px;

}



.control-sidebar-menu {

  list-style: none;

  padding: 0;

  margin: 0 -15px;

}

.control-sidebar-menu>li>a {

  display: block;

  padding: 10px 15px;

}

.control-sidebar-menu>li>a:before,
.control-sidebar-menu>li>a:after {

  content: " ";

  display: table;

}

.control-sidebar-menu>li>a>.control-sidebar-subheading {

  margin-top: 0;

}

.control-sidebar-menu .menu-icon {

  float: left;

  width: 35px;

  height: 35px;

  text-align: center;

  line-height: 35px;

}

.control-sidebar-menu .menu-info {

  margin-left: 45px;

  margin-top: 3px;

}

.control-sidebar-menu .menu-info>.control-sidebar-subheading {

  margin: 0;

}

.control-sidebar-menu .menu-info>p {

  margin: 0;

  font-size: 11px;

}

.control-sidebar-menu .progress {

  margin: 0;

}



#control-sidebar-theme-demo-options-tab p {

  font-size: 12px;

}

#control-sidebar-theme-demo-options-tab .form-group {

  margin-bottom: 0.5rem;

}

#control-sidebar-theme-demo-options-tab .form-group label {

  font-weight: 300;

  font-size: 12px;

}



/*treeview*/

.treeview-menu {

  display: none;

  list-style: none;

  padding: 0;

  margin: 0;

}

.treeview-menu .treeview-menu {

  padding-left: 20px;

}

.treeview-menu>li {

  margin: 0;

}

.treeview-menu>li>a {

  padding: 3px 5px 3px 25px;

  display: block;

  font-size: 13px;

}

.treeview-menu>li>a>i {

  width: 20px;

  padding-right: 20px;

  padding-left: 10px;

}

.treeview-menu>li>a>.fa-angle-down {

  width: auto;

}

.treeview-menu>li>a>.fa-angle-left {

  width: auto;

}

.treeview-menu>li>a>.pull-right-container>.fa-angle-down {

  width: auto;

}

.treeview-menu>li>a>.pull-right-container>.fa-angle-left {

  width: auto;

}



.sidebar-collapse .treeview-menu>li {

  margin: 0;

}

.sidebar-collapse .treeview-menu>li>a {

  padding: 10px 5px 10px 20px;

}



.sidebar-menu .treeview-menu>li.active>a i.ti-more:before {

  content: "\e628";

}

.sidebar-menu .treeview-menu>li>a:hover i.ti-more:before {

  content: "\e628";

}







.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto
}

.row {
  margin-right: -15px;
  margin-left: -15px
}

.row-no-gutters {
  margin-right: 0;
  margin-left: 0
}

.row-no-gutters [class*=col-] {
  padding-right: 0;
  padding-left: 0
}

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px
}

.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  float: left
}

.col-xs-12 {
  width: 100%
}

.col-xs-11 {
  width: 91.66666667%
}

.col-xs-10 {
  width: 83.33333333%
}

.col-xs-9 {
  width: 75%
}

.col-xs-8 {
  width: 66.66666667%
}

.col-xs-7 {
  width: 58.33333333%
}

.col-xs-6 {
  width: 50%
}

.col-xs-5 {
  width: 41.66666667%
}

.col-xs-4 {
  width: 33.33333333%
}

.col-xs-3 {
  width: 25%
}

.col-xs-2 {
  width: 16.66666667%
}

.col-xs-1 {
  width: 8.33333333%
}

.col-xs-pull-12 {
  right: 100%
}

.col-xs-pull-11 {
  right: 91.66666667%
}

.col-xs-pull-10 {
  right: 83.33333333%
}

.col-xs-pull-9 {
  right: 75%
}

.col-xs-pull-8 {
  right: 66.66666667%
}

.col-xs-pull-7 {
  right: 58.33333333%
}

.col-xs-pull-6 {
  right: 50%
}

.col-xs-pull-5 {
  right: 41.66666667%
}

.col-xs-pull-4 {
  right: 33.33333333%
}

.col-xs-pull-3 {
  right: 25%
}

.col-xs-pull-2 {
  right: 16.66666667%
}

.col-xs-pull-1 {
  right: 8.33333333%
}

.col-xs-pull-0 {
  right: auto
}

.col-xs-push-12 {
  left: 100%
}

.col-xs-push-11 {
  left: 91.66666667%
}

.col-xs-push-10 {
  left: 83.33333333%
}

.col-xs-push-9 {
  left: 75%
}

.col-xs-push-8 {
  left: 66.66666667%
}

.col-xs-push-7 {
  left: 58.33333333%
}

.col-xs-push-6 {
  left: 50%
}

.col-xs-push-5 {
  left: 41.66666667%
}

.col-xs-push-4 {
  left: 33.33333333%
}

.col-xs-push-3 {
  left: 25%
}

.col-xs-push-2 {
  left: 16.66666667%
}

.col-xs-push-1 {
  left: 8.33333333%
}

.col-xs-push-0 {
  left: auto
}

.col-xs-offset-12 {
  margin-left: 100%
}

.col-xs-offset-11 {
  margin-left: 91.66666667%
}

.col-xs-offset-10 {
  margin-left: 83.33333333%
}

.col-xs-offset-9 {
  margin-left: 75%
}

.col-xs-offset-8 {
  margin-left: 66.66666667%
}

.col-xs-offset-7 {
  margin-left: 58.33333333%
}

.col-xs-offset-6 {
  margin-left: 50%
}

.col-xs-offset-5 {
  margin-left: 41.66666667%
}

.col-xs-offset-4 {
  margin-left: 33.33333333%
}

.col-xs-offset-3 {
  margin-left: 25%
}

.col-xs-offset-2 {
  margin-left: 16.66666667%
}

.col-xs-offset-1 {
  margin-left: 8.33333333%
}

.col-xs-offset-0 {
  margin-left: 0
}

@media (min-width:768px) {

  .col-sm-1,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9 {
    float: left
  }

  .col-sm-12 {
    width: 100%
  }

  .col-sm-11 {
    width: 91.66666667%
  }

  .col-sm-10 {
    width: 83.33333333%
  }

  .col-sm-9 {
    width: 75%
  }

  .col-sm-8 {
    width: 66.66666667%
  }

  .col-sm-7 {
    width: 58.33333333%
  }

  .col-sm-6 {
    width: 50%
  }

  .col-sm-5 {
    width: 41.66666667%
  }

  .col-sm-4 {
    width: 33.33333333%
  }

  .col-sm-3 {
    width: 25%
  }

  .col-sm-2 {
    width: 16.66666667%
  }

  .col-sm-1 {
    width: 8.33333333%
  }

  .col-sm-pull-12 {
    right: 100%
  }

  .col-sm-pull-11 {
    right: 91.66666667%
  }

  .col-sm-pull-10 {
    right: 83.33333333%
  }

  .col-sm-pull-9 {
    right: 75%
  }

  .col-sm-pull-8 {
    right: 66.66666667%
  }

  .col-sm-pull-7 {
    right: 58.33333333%
  }

  .col-sm-pull-6 {
    right: 50%
  }

  .col-sm-pull-5 {
    right: 41.66666667%
  }

  .col-sm-pull-4 {
    right: 33.33333333%
  }

  .col-sm-pull-3 {
    right: 25%
  }

  .col-sm-pull-2 {
    right: 16.66666667%
  }

  .col-sm-pull-1 {
    right: 8.33333333%
  }

  .col-sm-pull-0 {
    right: auto
  }

  .col-sm-push-12 {
    left: 100%
  }

  .col-sm-push-11 {
    left: 91.66666667%
  }

  .col-sm-push-10 {
    left: 83.33333333%
  }

  .col-sm-push-9 {
    left: 75%
  }

  .col-sm-push-8 {
    left: 66.66666667%
  }

  .col-sm-push-7 {
    left: 58.33333333%
  }

  .col-sm-push-6 {
    left: 50%
  }

  .col-sm-push-5 {
    left: 41.66666667%
  }

  .col-sm-push-4 {
    left: 33.33333333%
  }

  .col-sm-push-3 {
    left: 25%
  }

  .col-sm-push-2 {
    left: 16.66666667%
  }

  .col-sm-push-1 {
    left: 8.33333333%
  }

  .col-sm-push-0 {
    left: auto
  }

  .col-sm-offset-12 {
    margin-left: 100%
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%
  }

  .col-sm-offset-9 {
    margin-left: 75%
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%
  }

  .col-sm-offset-6 {
    margin-left: 50%
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%
  }

  .col-sm-offset-3 {
    margin-left: 25%
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%
  }

  .col-sm-offset-0 {
    margin-left: 0
  }
}

@media (min-width:992px) {

  .col-md-1,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9 {
    float: left
  }

  .col-md-12 {
    width: 100%
  }

  .col-md-11 {
    width: 91.66666667%
  }

  .col-md-10 {
    width: 83.33333333%
  }

  .col-md-9 {
    width: 75%
  }

  .col-md-8 {
    width: 66.66666667%
  }

  .col-md-7 {
    width: 58.33333333%
  }

  .col-md-6 {
    width: 50%
  }

  .col-md-5 {
    width: 41.66666667%
  }

  .col-md-4 {
    width: 33.33333333%
  }

  .col-md-3 {
    width: 25%
  }

  .col-md-2 {
    width: 16.66666667%
  }

  .col-md-1 {
    width: 8.33333333%
  }

  .pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px
  }

  .pagination>li {
    display: inline
  }

  .pagination>li>a,
  .pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #428bca;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px
  }

  .pagination>li:first-child>a,
  .pagination>li:first-child>span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px
  }

  .pagination>li:last-child>a,
  .pagination>li:last-child>span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px
  }

  .pagination>li>a:hover,
  .pagination>li>span:hover,
  .pagination>li>a:focus,
  .pagination>li>span:focus {
    color: #2a6496;
    background-color: #eee;
    border-color: #ddd
  }

  .pagination>.active>a,
  .pagination>.active>span,
  .pagination>.active>a:hover,
  .pagination>.active>span:hover,
  .pagination>.active>a:focus,
  .pagination>.active>span:focus {
    z-index: 2;
    color: #fff;
    background-color: #428bca;
    border-color: #428bca;
    cursor: default
  }

  .pagination>.disabled>span,
  .pagination>.disabled>span:hover,
  .pagination>.disabled>span:focus,
  .pagination>.disabled>a,
  .pagination>.disabled>a:hover,
  .pagination>.disabled>a:focus {
    color: #999;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed
  }

  .pagination-lg>li>a,
  .pagination-lg>li>span {
    padding: 10px 16px;
    font-size: 18px
  }

  .pagination-lg>li:first-child>a,
  .pagination-lg>li:first-child>span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px
  }

  .pagination-lg>li:last-child>a,
  .pagination-lg>li:last-child>span {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px
  }

  .pagination-sm>li>a,
  .pagination-sm>li>span {
    padding: 5px 10px;
    font-size: 12px
  }

  .pagination-sm>li:first-child>a,
  .pagination-sm>li:first-child>span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px
  }

  .pagination-sm>li:last-child>a,
  .pagination-sm>li:last-child>span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px
  }

  .input-sm,
  input[type=datetime-local].input-sm,
  input[type=month].input-sm,
  input[type=time].input-sm {
    line-height: 30px
  }



  .form-control-static.input-lg,
  .form-control-static.input-sm {
    padding-right: 0;
    padding-left: 0
  }

  .input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
  }

  select.input-sm {
    height: 30px;
    line-height: 30px
  }

  select[multiple].input-sm,
  textarea.input-sm {
    height: auto
  }

  .form-group-sm .form-control+.form-control-feedback,
  .input-group-sm+.form-control-feedback,
  .input-sm+.form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px
  }
  table thead{
    background-color: #5fb626 !important;
    color: #ffffff;
  }