/*------------------------------------------------------------------
[ MASTER SYLESHEET ]
Project:    XAKTI MDL
Version:    1.0

/*-------------------------------------------------------------------*/
/**
 * Table of Contents
 * 1. HELPER CLASSES
 *    1.1 NOTIFICATION
 *    1.2 BUTTON_CLOSE
 *    1.3 SCROLL
 *    1.4 BACKGROUND_COLOR
 *    1.5 FONTS
 *    1.6 IMAGES
 *    1.7 MARGIN_AND_PADDING
 *    1.8 HEIGHT_AND_WIDTH
 *    1.9 POSITION
 * 1. THEMES
 * 	  1.1 DARK THEME
 * 	  1.2 FULL DARK THEME
 * 	  1.3 DARK SIBEBAR
 * 	  1.4 FULL DARK SIDEBAR
 * 2. SKIN COLORS
 * 3. LAYOUT
 *    3.1 BRAND
 *    3.2 HORIZONTAL_LAYOUT_DROPDOWN
 *    3.3 SIDEBAR_RIGHT
 * 4. CUSTOM COMPONENTS
 * 	  4.1 BRAND
 * 	  4.2 MDL_MENU
 * 	  4.3 TAB_BAR
 * 	  4.4 TIMELINE
 * 	  4.5 MDL_LIST
 * 	  4.6 CARDS
 * 	  4.7 MDL_TAB
 * 	  4.8 FORM-STEPPER
 * 5. CORE STYLE
 *	  5.1 ALERT
 *	  5.2 INFO_BOX
 *    5.3 MDL_MEDIA
 *    5.4 DIALOG
 *    5.5 MDL_TEXT-FILE
 *    5.6 MESSAGE
 *    5.7 LOGIN_FORM
 *    5.8 BADGE
 * 6. PLUGIN OVERRIDES
 * 	  6.1 DATATABLE
 * 	  6.2 FORM-STEPPER
 * 7. MEDIA_QUERY	  
 * 
 */
/* *** NOTIFICATION *** */
.titik {
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  top: -8px;
  left: 15px;
  z-index: 1;
  animation: wave 1s ease-in-out infinite alternate;
  -o-animation: wave 1s ease-in-out infinite alternate;
  -moz-animation: wave 1s ease-in-out infinite alternate;
  -webkit-animation: wave 1s ease-in-out infinite alternate; }

@keyframes wave {
  from {
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0); }
  to {
    box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.2); } }
@-webkit-keyframes wave {
  from {
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0); }
  to {
    box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.2); } }
/* *** END NOTIFICATION *** */
/* *** BADGE *** */
.x-badge {
  position: relative;
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem; }
  .x-badge .x-badge:empty {
    display: none; }

.x-badge__close {
  padding-left: 5px;
  right: 0;
  font-size: 15px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.4);
  cursor: pointer; }
  .x-badge__close:hover {
    color: rgba(0, 0, 0, 0.11); }

/* *** END BADGE *** */
/* *** BUTTON_CLOSE *** */
.mdl-close, .x-icon.dialog-close {
  padding-right: 5px;
  position: absolute;
  top: 12px;
  right: 10px;
  font-size: 15px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.4);
  cursor: pointer; }
  .mdl-close:hover, .x-icon.dialog-close:hover {
    color: rgba(0, 0, 0, 0.11); }

/* *** END BUTTON_CLOSE *** */
/* *** SCROLL *** */
.scroll {
  overflow: auto; }
  .scroll::-webkit-scrollbar {
    width: 0px; }
  .scroll::-webkit-scrollbar-track {
    background: #fff; }
  .scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    opacity: 0.1; }
  .scroll:hover::-webkit-scrollbar {
    background: #ddd;
    width: 5px; }

/* *** END SCROLL *** */
.overflow-initial {
  overflow: initial !important; }

.hover-1,
.mdl-layout__tab-bar.hover_tab .mdl-layout__tab,
.mdl-tab__dropdown-item {
  transition: 0.2s linear;
  -o-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -webkit-transition: 0.2s linear; }
  .hover-1:hover, .hover-1:focus,
  .mdl-layout__tab-bar.hover_tab .mdl-layout__tab:hover,
  .mdl-layout__tab-bar.hover_tab .mdl-layout__tab:focus,
  .mdl-tab__dropdown-item:hover,
  .mdl-tab__dropdown-item:focus {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.06) !important; }
  .hover-1:active,
  .mdl-layout__tab-bar.hover_tab .mdl-layout__tab:active,
  .mdl-tab__dropdown-item:active {
    background-color: rgba(0, 0, 0, 0.1) !important; }

/* *** BACKGROUND_COLOR *** */
.bg-indigo {
    background-color: #28a46d;
}

.bg-amber {
  background-color: #ffc107; }

.bg-blue_grey {
  background-color: #607d8b; }

.bg-blue {
  background-color: #2196f3; }

.bg-brown {
  background-color: #795548; }

.bg-cyan {
  background-color: #00bcd4; }

.bg-deep_orange {
  background-color: #ff5722; }

.bg-green {
  background-color: #4caf50; }

.bg-grey {
  background-color: #9e9e9e; }

.bg-light_blue {
  background-color: #03a9f4; }

.bg-light_green {
  background-color: #8bc34a; }

.bg-lime {
  background-color: #cddc39; }

.bg-orange {
  background-color: #ff9800; }

.bg-pink {
  background-color: #e91e63; }

.bg-purple {
  background-color: #9c27b0; }

.bg-red {
  background-color: #f44336; }

.bg-teal {
  background-color: #009688; }

.bg-yellow {
  background-color: #ffeb3b; }

.bg-dark {
  background-color: #1a1c29 !important; }

.bg-white {
  background-color: #ffffff; }

.bg-opc {
  background-color: rgba(0, 0, 0, 0.1); }

.no-bg__color {
  background-color: unset !important; }

/* *** END BACKGROUND_COLOR *** */
/* *** FONTS *** */
.ft-10 {
  font-size: 10px !important; }

.ft-11 {
  font-size: 11px !important; }

.ft-12 {
  font-size: 12px !important; }

.ft-13 {
  font-size: 13px !important; }

.ft-14 {
  font-size: 14px !important; }

.ft-15 {
  font-size: 15px !important; }

.ft-16 {
  font-size: 16px !important; }

.ft-17 {
  font-size: 17px !important; }

.ft-18 {
  font-size: 18px !important; }

.ft-19 {
  font-size: 19px !important; }

.ft-20 {
  font-size: 20px !important; }

.ft-25 {
  font-size: 25px !important; }

.ft-30 {
  font-size: 30px !important; }

.ft-bold {
  font-weight: bold !important; }

.ft-white {
  color: #fff !important; }

.ft-black {
  color: #000 !important; }

.ft-black-opc {
  color: rgba(0, 0, 0, 0.3) !important; }

.text-wrap {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden; }

.text-cut {
  text-overflow: ellipsis;
  overflow: hidden; }

.text-left {
  text-align: left !important; }

.text-center {
  text-align: center !important; }

.text-right {
  text-align: right !important; }

.text-justify {
  text-align: justify !important; }

/* *** END_FONTS *** */
/* *** CLEAR *** */
.flat {
  border: none !important;
  outline: none !important;
  text-decoration: none !important; }

.no-shadow {
  box-shadow: unset !important; }

/* *** END CLEAR *** */
/* *** IMAGES *** */
.img-responsive {
  object-fit: cover;
  width: 100%;
  height: 100%; }

.x-img-avatar {
  height: 35px;
  width: 35px;
  border-radius: 100%; }

.img-circle {
  border-radius: 100% !important; }

/* *** END IMAGES *** */
/* *** MARGIN_AND_PADDING *** */
.m-0 {
  margin: 0 !important; }

.mt-0,
.my-0 {
  margin-top: 0 !important; }

.mr-0,
.mx-0 {
  margin-right: 0 !important; }

.mb-0,
.my-0 {
  margin-bottom: 0 !important; }

.ml-0,
.mx-0 {
  margin-left: 0 !important; }

.m-1 {
  margin: 0.25rem !important; }

.mt-1,
.my-1 {
  margin-top: 0.25rem !important; }

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important; }

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important; }

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important; }

.m-2 {
  margin: 0.5rem !important; }

.mt-2,
.my-2 {
  margin-top: 0.5rem !important; }

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important; }

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important; }

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important; }

.m-3 {
  margin: 1rem !important; }

.mt-3,
.my-3 {
  margin-top: 1rem !important; }

.mr-3,
.mx-3 {
  margin-right: 1rem !important; }

.mb-3,
.my-3 {
  margin-bottom: 1rem !important; }

.ml-3,
.mx-3 {
  margin-left: 1rem !important; }

.m-4 {
  margin: 1.5rem !important; }

.mt-4,
.my-4 {
  margin-top: 1.5rem !important; }

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important; }

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important; }

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important; }

.m-5 {
  margin: 3rem !important; }

.mt-5,
.my-5 {
  margin-top: 3rem !important; }

.mr-5,
.mx-5 {
  margin-right: 3rem !important; }

.mb-5,
.my-5 {
  margin-bottom: 3rem !important; }

.ml-5,
.mx-5 {
  margin-left: 3rem !important; }

.p-0 {
  padding: 0 !important; }

.pt-0,
.py-0 {
  padding-top: 0 !important; }

.pr-0,
.px-0 {
  padding-right: 0 !important; }

.pb-0,
.py-0 {
  padding-bottom: 0 !important; }

.pl-0,
.px-0 {
  padding-left: 0 !important; }

.p-1 {
  padding: 0.25rem !important; }

.pt-1,
.py-1 {
  padding-top: 0.25rem !important; }

.pr-1,
.px-1 {
  padding-right: 0.25rem !important; }

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important; }

.pl-1,
.px-1 {
  padding-left: 0.25rem !important; }

.p-2 {
  padding: 0.5rem !important; }

.pt-2,
.py-2 {
  padding-top: 0.5rem !important; }

.pr-2,
.px-2 {
  padding-right: 0.5rem !important; }

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important; }

.pl-2,
.px-2 {
  padding-left: 0.5rem !important; }

.p-3 {
  padding: 1rem !important; }

.pt-3,
.py-3 {
  padding-top: 1rem !important; }

.pr-3,
.px-3 {
  padding-right: 1rem !important; }

.pb-3,
.py-3 {
  padding-bottom: 1rem !important; }

.pl-3,
.px-3 {
  padding-left: 1rem !important; }

.p-4 {
  padding: 1.5rem !important; }

.pt-4,
.py-4 {
  padding-top: 1.5rem !important; }

.pr-4,
.px-4 {
  padding-right: 1.5rem !important; }

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important; }

.pl-4,
.px-4 {
  padding-left: 1.5rem !important; }

.p-5 {
  padding: 3rem !important; }

.pt-5,
.py-5 {
  padding-top: 3rem !important; }

.pr-5,
.px-5 {
  padding-right: 3rem !important; }

.pb-5,
.py-5 {
  padding-bottom: 3rem !important; }

.pl-5,
.px-5 {
  padding-left: 3rem !important; }

.m-auto {
  margin: auto !important; }

.mt-auto,
.my-auto {
  margin-top: auto !important; }

.mr-auto,
.mx-auto {
  margin-right: auto !important; }

.mb-auto,
.my-auto {
  margin-bottom: auto !important; }

.ml-auto,
.mx-auto {
  margin-left: auto !important; }

/* *** END MARGIN_AND_PADDING *** */
/* *** HEIGHT_AND_WIDTH *** */
.h-100 {
  height: 100% !important; }

.w-100 {
  width: 100% !important; }

.w-75 {
  width: 75% !important; }

.w-70 {
  width: 70% !important; }

.min-w {
  min-width: unset !important; }

/* *** END HEIGHT_AND_WIDTH *** */
.bd-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12); }

.x-icon {
  color: currentColor; }

.float-right {
  float: right !important; }

.ps-relative {
  position: relative !important; }

.display-block, .d-block {
  display: block !important; }

.d-flex {
  display: flex !important; }

.justify-content__between {
  display: flex !important;
  justify-content: space-between !important;
  -webkit-justify-content: space-between !important; }

.justify-content__around {
  display: flex !important;
  justify-content: space-around !important;
  -webkit-justify-content: space-around !important; }

.align-items__center {
  align-items: center !important; }

.align-content__center {
  align-content: center !important; }

.align-self__center {
  align-self: center !important; }

.align-self-start, .align-self__start {
  align-self: flex-start !important; }

/* *** LAYOUT DARK *** */
.mdl-layout__dark-theme .scroll::-webkit-scrollbar-track, .mdl-layout__dark-theme-full .scroll::-webkit-scrollbar-track {
  background: #888; }
.mdl-layout__dark-theme .scroll::-webkit-scrollbar-thumb, .mdl-layout__dark-theme-full .scroll::-webkit-scrollbar-thumb {
  background: #1a1c29 !important; }
.mdl-layout__dark-theme .scroll:hover::-webkit-scrollbar, .mdl-layout__dark-theme-full .scroll:hover::-webkit-scrollbar {
  background: #1a1c29 !important; }
.mdl-layout__dark-theme .mdl-layout__drawer .mdl-navigation .mdl-navigation__link, .mdl-layout__dark-theme-full .mdl-layout__drawer .mdl-navigation .mdl-navigation__link {
  color: #fff !important; }
  .mdl-layout__dark-theme .mdl-layout__drawer .mdl-navigation .mdl-navigation__link:hover, .mdl-layout__dark-theme-full .mdl-layout__drawer .mdl-navigation .mdl-navigation__link:hover {
    background-color: rgba(0, 0, 0, 0.5); }
.mdl-layout__dark-theme .mdl-layout__drawer .mdl-navigation .mdl-navigation__toggle > .mdl-navigation__link:after, .mdl-layout__dark-theme-full .mdl-layout__drawer .mdl-navigation .mdl-navigation__toggle > .mdl-navigation__link:after {
  filter: invert(1);
  -webkit-filter: invert(1); }
.mdl-layout__dark-theme .mdl-layout__content, .mdl-layout__dark-theme-full .mdl-layout__content {
  background-color: #141620 !important; }
.mdl-layout__dark-theme .mdl-card,
.mdl-layout__dark-theme .mdl-layout__drawer,
.mdl-layout__dark-theme .info-box-1,
.mdl-layout__dark-theme .info-box-2,
.mdl-layout__dark-theme .info-box-3,
.mdl-layout__dark-theme .mdl-menu,
.mdl-layout__dark-theme [class*="mdl-menu--bottom"],
.mdl-layout__dark-theme [class*="mdl-menu--top"],
.mdl-layout__dark-theme .timeline,
.mdl-layout__dark-theme .mdl-list,
.mdl-layout__dark-theme .mdl-media,
.mdl-layout__dark-theme select,
.mdl-layout__dark-theme .wizard .content,
.mdl-layout__dark-theme .mdl-data-table,
.mdl-layout__dark-theme .x-sidebar-right, .mdl-layout__dark-theme-full .mdl-card,
.mdl-layout__dark-theme-full .mdl-layout__drawer,
.mdl-layout__dark-theme-full .info-box-1,
.mdl-layout__dark-theme-full .info-box-2,
.mdl-layout__dark-theme-full .info-box-3,
.mdl-layout__dark-theme-full .mdl-menu,
.mdl-layout__dark-theme-full [class*="mdl-menu--bottom"],
.mdl-layout__dark-theme-full [class*="mdl-menu--top"],
.mdl-layout__dark-theme-full .timeline,
.mdl-layout__dark-theme-full .mdl-list,
.mdl-layout__dark-theme-full .mdl-media,
.mdl-layout__dark-theme-full select,
.mdl-layout__dark-theme-full .wizard .content,
.mdl-layout__dark-theme-full .mdl-data-table,
.mdl-layout__dark-theme-full .x-sidebar-right {
  background-color: #26293c; }
.mdl-layout__dark-theme .mdl-list .mdl-list__item,
.mdl-layout__dark-theme .mdl-card__supporting-text,
.mdl-layout__dark-theme .mdl-card__title,
.mdl-layout__dark-theme [class*="info-box-"],
.mdl-layout__dark-theme .mdl-menu li,
.mdl-layout__dark-theme .mdl-menu__item,
.mdl-layout__dark-theme .x-icon,
.mdl-layout__dark-theme p, .mdl-layout__dark-theme h1, .mdl-layout__dark-theme h2, .mdl-layout__dark-theme h3, .mdl-layout__dark-theme h4, .mdl-layout__dark-theme h5, .mdl-layout__dark-theme h6, .mdl-layout__dark-theme strong,
.mdl-layout__dark-theme .mdl-dialog--title,
.mdl-layout__dark-theme .mdl-dialog--footer,
.mdl-layout__dark-theme .mdl-media,
.mdl-layout__dark-theme .mdl-tabs .mdl-tabs__tab,
.mdl-layout__dark-theme .mdl-textfield__label,
.mdl-layout__dark-theme .mdl-data-table th, .mdl-layout__dark-theme-full .mdl-list .mdl-list__item,
.mdl-layout__dark-theme-full .mdl-card__supporting-text,
.mdl-layout__dark-theme-full .mdl-card__title,
.mdl-layout__dark-theme-full [class*="info-box-"],
.mdl-layout__dark-theme-full .mdl-menu li,
.mdl-layout__dark-theme-full .mdl-menu__item,
.mdl-layout__dark-theme-full .x-icon,
.mdl-layout__dark-theme-full p, .mdl-layout__dark-theme-full h1, .mdl-layout__dark-theme-full h2, .mdl-layout__dark-theme-full h3, .mdl-layout__dark-theme-full h4, .mdl-layout__dark-theme-full h5, .mdl-layout__dark-theme-full h6, .mdl-layout__dark-theme-full strong,
.mdl-layout__dark-theme-full .mdl-dialog--title,
.mdl-layout__dark-theme-full .mdl-dialog--footer,
.mdl-layout__dark-theme-full .mdl-media,
.mdl-layout__dark-theme-full .mdl-tabs .mdl-tabs__tab,
.mdl-layout__dark-theme-full .mdl-textfield__label,
.mdl-layout__dark-theme-full .mdl-data-table th {
  color: rgba(255, 255, 255, 0.8) !important; }
.mdl-layout__dark-theme .info-box-2 .info-box-icon .x-icon,
.mdl-layout__dark-theme .msg-time,
.mdl-layout__dark-theme .mdl-list__item-sub-title, .mdl-layout__dark-theme-full .info-box-2 .info-box-icon .x-icon,
.mdl-layout__dark-theme-full .msg-time,
.mdl-layout__dark-theme-full .mdl-list__item-sub-title {
  color: rgba(255, 255, 255, 0.2) !important; }
.mdl-layout__dark-theme .mdl-menu__item:hover,
.mdl-layout__dark-theme .mdl-data-table tbody tr:hover, .mdl-layout__dark-theme-full .mdl-menu__item:hover,
.mdl-layout__dark-theme-full .mdl-data-table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.5) !important; }
.mdl-layout__dark-theme .mdl-textfield__input, .mdl-layout__dark-theme-full .mdl-textfield__input {
  color: #fff !important; }
.mdl-layout__dark-theme .mdl-tabs__tab-bar, .mdl-layout__dark-theme-full .mdl-tabs__tab-bar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3) !important; }
.mdl-layout__dark-theme .no-bg__color, .mdl-layout__dark-theme-full .no-bg__color {
  background-color: unset !important; }

/* *** END LAYOUT DARK *** */
/* *** SIDEBAR LEFT *** */
.mdl-navigation {
  position: absolute;
  top: 64px;
  bottom: 0;
  left: 0;
  right: 0; }
  .mdl-navigation .mdl-navigation__link {
    padding-left: 20px !important;
    padding-right: 12px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    color: #000 !Important; }
    .mdl-navigation .mdl-navigation__link .x-icon {
      vertical-align: middle;
      margin-right: 10px;
      font-size: 22px; }
    .mdl-navigation .mdl-navigation__link:focus {
      font-weight: bold !important; }
    .mdl-navigation .mdl-navigation__link.active {
        color: #28a46d !important;
    }
  .mdl-navigation .mdl-navigation__dropdown {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
    display: none; }
  .mdl-navigation .mdl-navigation__toggle > .mdl-navigation__link:after {
    transition: 0.3s linear;
    -o-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    float: right;
    content: '';
    width: 18px;
    height: 18px;
    margin-top: 5px;
    background-size: contain;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAQAAABLCVATAAAAZ0lEQVR4Ae3MMQ4CIRgF4Yn2JHBEzqUWnsflSLBhazYZWvNP+14+ov2i6EnirsTDM19+ZFYVGh9LvRmMSS2Zub1QVfp1P8hLplNhlyqCUVSjCMZSgnGUYBwlGEMJxlKCkVQliqJ/6wSw0UNZdSsg1gAAAABJRU5ErkJggg=="); }
  .mdl-navigation .mdl-navigation__toggle > .mdl-navigation__link.is_slide:after {
    transition: 0.3s linear;
    -o-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg); }
  .mdl-navigation .mdl-navigation__toggle .mdl-navigation__link.active ~ .mdl-navigation__dropdown {
    display: block; }
  .mdl-navigation .mdl-navigation__toggle .mdl-navigation__link.active:after {
    transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg); }
  .mdl-navigation .mdl-navigation__toggle > .mdl-navigation__link.active.is_slide:after {
    transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg); }

/* *** END SIDEBAR LEFT *** */
/* *** SKINS *** */
.mdl-layout__indigo-skin .mdl-layout__header {
    background-color: #28a46d !important;
}
.mdl-layout__indigo-skin .mdl-layout__drawer .mdl-layout-title {
    background-color: #28a46d !important;
}
.mdl-layout__indigo-skin .mdl-navigation__link.active {
    color: #28a46d !important;
}

.mdl-layout__amber-skin .mdl-layout__header {
  background-color: #ffc107 !important; }
.mdl-layout__amber-skin .mdl-layout__drawer .mdl-layout-title {
  background-color: #ffc107 !important; }
.mdl-layout__amber-skin .mdl-navigation__link.active {
  color: #ffc107 !important; }

.mdl-layout__blue_grey-skin .mdl-layout__header {
  background-color: #607d8b !important; }
.mdl-layout__blue_grey-skin .mdl-layout__drawer .mdl-layout-title {
  background-color: #607d8b !important; }
.mdl-layout__blue_grey-skin .mdl-navigation__link.active {
  color: #607d8b !important; }

.mdl-layout__blue-skin .mdl-layout__header {
  background-color: #2196f3 !important; }
.mdl-layout__blue-skin .mdl-layout__drawer .mdl-layout-title {
  background-color: #2196f3 !important; }
.mdl-layout__blue-skin .mdl-navigation__link.active {
  color: #2196f3 !important; }

.mdl-layout__brown-skin .mdl-layout__header {
  background-color: #795548 !important; }
.mdl-layout__brown-skin .mdl-layout__drawer .mdl-layout-title {
  background-color: #795548 !important; }
.mdl-layout__brown-skin .mdl-navigation__link.active {
  color: #795548 !important; }

.mdl-layout__cyan-skin .mdl-layout__header {
  background-color: #00bcd4 !important; }
.mdl-layout__cyan-skin .mdl-layout__drawer .mdl-layout-title {
  background-color: #00bcd4 !important; }
.mdl-layout__cyan-skin .mdl-navigation__link.active {
  color: #00bcd4 !important; }

.mdl-layout__deep_orange-skin .mdl-layout__header {
  background-color: #ff5722 !important; }
.mdl-layout__deep_orange-skin .mdl-layout__drawer .mdl-layout-title {
  background-color: #ff5722 !important; }
.mdl-layout__deep_orange-skin .mdl-navigation__link.active {
  color: #ff5722 !important; }

.mdl-layout__green-skin .mdl-layout__header {
  background-color: #4caf50 !important; }
.mdl-layout__green-skin .mdl-layout__drawer .mdl-layout-title {
  background-color: #4caf50 !important; }
.mdl-layout__green-skin .mdl-navigation__link.active {
  color: #4caf50 !important; }

.mdl-layout__grey-skin .mdl-layout__header {
  background-color: #9e9e9e !important; }
.mdl-layout__grey-skin .mdl-layout__drawer .mdl-layout-title {
  background-color: #9e9e9e !important; }
.mdl-layout__grey-skin .mdl-navigation__link.active {
  color: #9e9e9e !important; }

.mdl-layout__light_blue-skin .mdl-layout__header {
  background-color: #03a9f4 !important; }
.mdl-layout__light_blue-skin .mdl-layout__drawer .mdl-layout-title {
  background-color: #03a9f4 !important; }
.mdl-layout__light_blue-skin .mdl-navigation__link.active {
  color: #03a9f4 !important; }

.mdl-layout__light_green-skin .mdl-layout__header {
  background-color: #8bc34a !important; }
.mdl-layout__light_green-skin .mdl-layout__drawer .mdl-layout-title {
  background-color: #8bc34a !important; }
.mdl-layout__light_green-skin .mdl-navigation__link.active {
  color: #8bc34a !important; }

.mdl-layout__lime-skin .mdl-layout__header {
  background-color: #cddc39 !important; }
.mdl-layout__lime-skin .mdl-layout__drawer .mdl-layout-title {
  background-color: #cddc39 !important; }
.mdl-layout__lime-skin .mdl-navigation__link.active {
  color: #cddc39 !important; }

.mdl-layout__orange-skin .mdl-layout__header {
  background-color: #ff9800 !important; }
.mdl-layout__orange-skin .mdl-layout__drawer .mdl-layout-title {
  background-color: #ff9800 !important; }
.mdl-layout__orange-skin .mdl-navigation__link.active {
  color: #ff9800 !important; }

.mdl-layout__pink-skin .mdl-layout__header {
  background-color: #e91e63 !important; }
.mdl-layout__pink-skin .mdl-layout__drawer .mdl-layout-title {
  background-color: #e91e63 !important; }
.mdl-layout__pink-skin .mdl-navigation__link.active {
  color: #e91e63 !important; }

.mdl-layout__purple-skin .mdl-layout__header {
  background-color: #9c27b0 !important; }
.mdl-layout__purple-skin .mdl-layout__drawer .mdl-layout-title {
  background-color: #9c27b0 !important; }
.mdl-layout__purple-skin .mdl-navigation__link.active {
  color: #9c27b0 !important; }

.mdl-layout__red-skin .mdl-layout__header {
  background-color: #f44336 !important; }
.mdl-layout__red-skin .mdl-layout__drawer .mdl-layout-title {
  background-color: #f44336 !important; }
.mdl-layout__red-skin .mdl-navigation__link.active {
  color: #f44336 !important; }

.mdl-layout__teal-skin .mdl-layout__header {
  background-color: #009688 !important; }
.mdl-layout__teal-skin .mdl-layout__drawer .mdl-layout-title {
  background-color: #009688 !important; }
.mdl-layout__teal-skin .mdl-navigation__link.active {
  color: #009688 !important; }

.mdl-layout__yellow-skin .mdl-layout__header {
  background-color: #ffeb3b !important; }
.mdl-layout__yellow-skin .mdl-layout__drawer .mdl-layout-title {
  background-color: #ffeb3b !important; }
.mdl-layout__yellow-skin .mdl-navigation__link.active {
  color: #ffeb3b !important; }

.mdl-layout__white-skin .mdl-layout__header {
  background-color: #fff;
  color: #000; }
.mdl-layout__white-skin .x-nav-menu {
  color: #000 !important; }
.mdl-layout__white-skin .mdl-layout__drawer .mdl-layout-title {
  background-color: #fff !important;
  color: #000; }
.mdl-layout__white-skin .mdl-layout__drawer-button {
  color: #000; }
.mdl-layout__white-skin .mdl-layout__tab-bar .mdl-layout__tab {
  color: #333; }

.mdl-layout__dark-theme.mdl-layout__white-skin .mdl-layout__drawer .mdl-layout-title {
  color: #000 !important; }
.mdl-layout__dark-theme.mdl-layout__white-skin .x-nav-menu {
  color: #000 !important; }

.mdl-layout__dark-skin .mdl-layout__header,
.mdl-layout__dark-theme-full .mdl-layout__header {
  background-color: #1a1c29 !important; }
.mdl-layout__dark-skin .mdl-layout__drawer .mdl-layout-title,
.mdl-layout__dark-theme-full .mdl-layout__drawer .mdl-layout-title {
  background-color: #1a1c29 !important; }

.mdl-layout__dark-sidebar .mdl-layout__drawer, .mdl-layout__dark-sidebar-full .mdl-layout__drawer {
  background-color: #1a1c29 !important; }
  .mdl-layout__dark-sidebar .mdl-layout__drawer .mdl-navigation .mdl-navigation__link, .mdl-layout__dark-sidebar-full .mdl-layout__drawer .mdl-navigation .mdl-navigation__link {
    color: #fff !important; }
    .mdl-layout__dark-sidebar .mdl-layout__drawer .mdl-navigation .mdl-navigation__link:hover, .mdl-layout__dark-sidebar-full .mdl-layout__drawer .mdl-navigation .mdl-navigation__link:hover {
      background-color: rgba(0, 0, 0, 0.5); }
  .mdl-layout__dark-sidebar .mdl-layout__drawer .mdl-navigation .mdl-navigation__toggle > .mdl-navigation__link:after, .mdl-layout__dark-sidebar-full .mdl-layout__drawer .mdl-navigation .mdl-navigation__toggle > .mdl-navigation__link:after {
    filter: invert(1);
    -webkit-filter: invert(1); }
.mdl-layout__dark-sidebar .ft-black-opc, .mdl-layout__dark-sidebar-full .ft-black-opc {
  color: rgba(255, 255, 255, 0.3) !important; }

.mdl-layout__dark-sidebar .mdl-layout__drawer .mdl-layout-title {
    background-color: #28a46d;
}

.mdl-layout__dark-sidebar-full .mdl-layout__drawer .mdl-layout-title {
  background-color: rgba(0, 0, 0, 0) !important;
  color: rgba(255, 255, 255, 0.9) !important; }

/* *** END SKINS *** */
/* *** BRAND *** */
.mdl-layout__drawer {
  overflow-y: hidden;
  background-color: #fff; }
    .mdl-layout__drawer .mdl-layout-title {
        color: #fff;
        background-color: #28a46d;
    }

/* *** END BRAND *** */
/* *** MDL_MENU *** */
.mdl-menu .mdl-menu__item .x-icon {
  vertical-align: middle;
  margin-right: 10px; }

.mdl-menu__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 300px; }
  .mdl-menu__grid .mdl-menu__item {
    width: 60px;
    padding: 15px;
    text-align: center; }
    .mdl-menu__grid .mdl-menu__item .x-icon {
      display: block;
      margin-right: unset; }

.mdl-menu--custom .mdl-menu {
  color: #000;
  text-align: center;
  font-weight: bold; }

.x-nav-menu {
  list-style-type: none;
  display: flex;
  color: currentColor; }
  .x-nav-menu .x-nav__item {
    display: inline-block;
    color: #fff;
    align-self: center;
    color: currentColor; }
    .x-nav-menu .x-nav__item .x-icon {
      font-size: 20px; }
    .x-nav-menu .x-nav__item .x-nav__link {
      position: relative;
      color: currentColor;
      padding-left: 6px;
      padding-right: 6px; }
    .x-nav-menu .x-nav__item .x-nav__item-avatar {
      height: 35px;
      width: 35px;
      border-radius: 100%; }

/* *** END MDL_MENU *** */
/* *** TAB_BAR *** */
.mdl-layout--tab-bar .mdl-layout__tab-bar-container .mdl-layout__tab-bar {
  padding-left: 0;
  width: 100%; }
  .mdl-layout--tab-bar .mdl-layout__tab-bar-container .mdl-layout__tab-bar .x-icon {
    vertical-align: middle;
    font-size: 22px;
    margin-right: 7px; }
.mdl-layout--tab-bar .mdl-layout__tab-bar-left-button,
.mdl-layout--tab-bar .mdl-layout__tab-bar-right-button {
  display: none !important; }

/* *** END TAB_BAR *** */
/* *** HORIZONTAL_LAYOUT_DROPDOWN *** */
.mdl-tab__dropdown-menu,
.mdl-tab__dropdown-menu-level {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  background-color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  border-radius: 0 0 2px;
  min-width: 200px;
  position: relative; }
  .mdl-tab__dropdown-menu .mdl-tab__dropdown-item,
  .mdl-tab__dropdown-menu-level .mdl-tab__dropdown-item {
    height: 48px;
    line-height: 48px;
    font-weight: 500;
    font-size: 14px;
    display: block;
    padding: 0 7px; }
    .mdl-tab__dropdown-menu .mdl-tab__dropdown-item .mdl-tab__dropdown-link,
    .mdl-tab__dropdown-menu-level .mdl-tab__dropdown-item .mdl-tab__dropdown-link {
      padding: 0 8px;
      display: block;
      flex-grow: 0;
      -ms-flex-positive: 0;
      -webkit-flex-grow: 0;
      flex-shrink: 0;
      -ms-flex-negative: 0;
      -webkit-flex-shrink: 0; }
  .mdl-tab__dropdown-menu li, .mdl-tab__dropdown-menu a,
  .mdl-tab__dropdown-menu-level li,
  .mdl-tab__dropdown-menu-level a {
    color: #333;
    text-decoration: none; }

.mdl-tab__dropdown-menu {
  position: fixed;
  z-index: 999;
  margin-top: 48px; }

.mdl-layout__tab-item.mdl-tab__dropdown:hover .mdl-tab__dropdown-menu,
.mdl-tab__dropdown-item:hover .mdl-tab__dropdown-menu-level {
  display: block !important; }

.mdl-tab__dropdown-menu-level {
  left: 207px;
  top: -48px; }

/* *** END HORIZONTAL_LAYOUT_DROPDOWN *** */
/* *** SIDEBAR_RIGHT *** */
.x-sidebar-right.hide_sb_right {
  margin-right: -400px !important;
  animation: hide_sb_right 0.3s ease;
  -o-animation: hide_sb_right 0.3s ease;
  -moz-animation: hide_sb_right 0.3s ease;
  -webkit-animation: hide_sb_right 0.3s ease; }

.x-sidebar-right.show_sb_right {
  animation: show_sb_right 0.3s ease;
  -o-animation: show_sb_right 0.3s ease;
  -moz-animation: show_sb_right 0.3s ease;
  -webkit-animation: show_sb_right 0.3s ease; }

.x-sidebar-right {
  position: fixed;
  top: 64px;
  right: 0;
  width: 300px;
  bottom: 0;
  background-color: #fff;
  z-index: 9; }

.mdl-layout--tab-bar .x-sidebar-right {
  top: 112px; }

.page-sb-right {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  width: 300px;
  bottom: 0;
  z-index: 9; }

/* *** END SIDEBAR_RIGHT *** */
/* *** MDL_MEDIA *** */
.mdl-media {
  padding: 5px;
  display: flex;
  display: -webkit-flex;
  position: relative;
  line-height: normal;
  width: 250px;
  padding-left: 10px;
  background-color: #fff; }
  .mdl-media .mdl-media-body {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%; }
  .mdl-media .mdl-media-middle {
    align-self: center; }
  .mdl-media .mdl-media-bottom {
    align-self: flex-end; }
  .mdl-media .mdl-media-left {
    display: flex;
    height: 100%;
    align-self: flex-start; }

/* *** END MDL_MEDIA *** */
/* *** INFO_BOX *** */
.info-box-1 {
  display: flex;
  display: -webkit-flex;
  position: relative;
  height: 100px;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
  .info-box-1 .info-box-icon {
    width: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-around;
    -webkit-justify-content: space-around;
    color: #fff; }
    .info-box-1 .info-box-icon .x-icon {
      display: flex;
      align-items: center;
      font-size: 40px;
      color: currentColor; }
  .info-box-1 .info-box-body {
    padding-left: 20px;
    padding-top: 5px;
    display: flex;
    flex-flow: column nowrap;
    -webkit-flex-flow: column nowrap;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; }
    .info-box-1 .info-box-body .info-box-title {
      font-size: 15px;
      padding: 5px 0px; }
    .info-box-1 .info-box-body .info-box-subtitle {
      margin: 8px 0px;
      font-size: 30px; }

.info-box-2 {
  height: 120px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  flex-flow: column nowrap;
  -webkit-flex-flow: column nowrap;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden; }
  .info-box-2 .info-box-icon {
    position: absolute;
    bottom: 5px;
    right: 5px; }
    .info-box-2 .info-box-icon .x-icon {
      font-size: 6em;
      color: rgba(255, 255, 255, 0.2);
      z-index: 0;
      margin-right: 0;
      display: flex;
      align-items: center;
      transition: 0.5s ease;
      -o-transition: 0.5s ease;
      -moz-transition: 0.5s ease;
      -webkit-transition: 0.5s ease; }
  .info-box-2 .info-box-body {
    padding: 10px; }
    .info-box-2 .info-box-body .info-box-subtitle {
      font-size: 1.8em; }
  .info-box-2:hover.info-box-2 .info-box-icon .x-icon {
    transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
    transform: scale(1.4, 1.4);
    -o-transform: scale(1.4, 1.4);
    -ms-transform: scale(1.4, 1.4);
    -moz-transform: scale(1.4, 1.4);
    -webkit-transform: scale(1.4, 1.4); }

.info-box-3 {
  display: flex;
  display: -webkit-flex;
  position: relative;
  height: 100px;
  color: #000;
  padding: 10px;
  margin-bottom: 3px;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
  .info-box-3:hover.info-box-3 .info-box-icon {
    transition: 0.2s ease;
    -o-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -webkit-transition: 0.2s ease;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1); }
  .info-box-3 .info-box-icon {
    width: 70px;
    height: 70px;
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: space-around;
    -webkit-justify-content: center;
    align-self: center;
    font-size: 50px;
    margin-left: 15px;
    box-shadow: 0px 0px 0px 10px rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 100%; }
    .info-box-3 .info-box-icon .x-icon {
      display: flex;
      align-items: center;
      font-size: 30px;
      color: currentColor; }
  .info-box-3 .info-box-body {
    padding: 5px 10px 2px 25px;
    position: absolute;
    left: auto;
    right: 25px;
    color: currentColor;
    text-align: right;
    align-self: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; }
    .info-box-3 .info-box-body .info-box-title {
      font-size: 15px;
      line-height: 0.6;
      opacity: 0.7; }
    .info-box-3 .info-box-body .info-box-subtitle {
      font-size: 30px;
      line-height: 1.2;
      margin-right: -4px; }

/* *** END INFO_BOX *** */
h1.mdl-media-title,
h2.mdl-media-title,
h3.mdl-media-title,
h4.mdl-media-title,
h5.mdl-media-title,
h6.mdl-media-title {
  margin-top: 0 !important; }

/* *** TIMELINE *** */
.timeline-outer {
  margin: 0 auto; }

.timeline {
  border-left: 8px solid #42A5F5;
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  color: #333;
  margin: 50px auto;
  letter-spacing: 0.5px;
  position: relative;
  line-height: 1.4em;
  padding: 20px;
  list-style: none;
  text-align: left; }
  .timeline .timeline-header {
    font-size: 1.4em; }
  .timeline .event {
    border-bottom: 1px solid rgba(160, 160, 160, 0.2);
    padding-bottom: 15px;
    margin-bottom: 20px;
    position: relative; }
    .timeline .event:last-of-type {
      padding-bottom: 0;
      margin-bottom: 0;
      border: none; }
    .timeline .event:before {
      left: -177.5px;
      color: #212121;
      content: attr(data-date);
      text-align: right;
      font-size: 16px;
      min-width: 120px; }
    .timeline .event:after {
      box-shadow: 0 0 0 8px #42A5F5;
      left: -30px;
      background: #212121;
      border-radius: 50%;
      height: 11px;
      width: 11px;
      content: "";
      top: 5px; }
    .timeline .event:before, .timeline .event:after {
      position: absolute;
      display: block;
      top: 0; }

/* *** END TIMELINE *** */
/* *** ALERT *** */
.mdl-alert {
  padding: 20px 30px 20px 10px;
  margin: 5px 10px 5px 10px;
  display: flex;
  display: -webkit-flex;
  position: relative; }
  .mdl-alert .x-icon {
    padding-right: 10px; }

/* *** END ALERT *** */
/* *** MDL_LIST *** */
.mdl-list {
  background-color: #fff; }
  .mdl-list a.mdl-list__item, .mdl-list label.mdl-list__item {
    text-decoration: none;
    cursor: pointer; }
    .mdl-list a.mdl-list__item:hover, .mdl-list a.mdl-list__item:focus, .mdl-list label.mdl-list__item:hover, .mdl-list label.mdl-list__item:focus {
      color: #495057;
      background-color: rgba(0, 0, 0, 0.06) !important;
      transition: 0.2s linear;
      -o-transition: 0.2s linear;
      -moz-transition: 0.2s linear;
      -webkit-transition: 0.2s linear; }

.mdl-list__item {
  font-family: inherit;
  letter-spacing: normal; }

.mdl-list-flush .mdl-list__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12); }

/* *** END MDL_LIST *** */
/* *** DIALOG *** */
.dialog {
  display: none;
  position: absolute;
  overflow: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.3); }
  .dialog .mdl-dialog-content {
    position: relative;
    overflow: auto;
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff; }

.mdl-dialog--title {
  font-size: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 15px; }

.mdl-dialog--actions {
  padding: 15px; }

.mdl-dialog--footer, .mdl-card--footer {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding: 10px; }

/* *** END DIALOG *** */
/* *** ANIMATION_EFFECT *** */
.fade-effect {
  animation: fade 0.7s ease;
  -o-animation: fade 0.7s ease;
  -moz-animation: fade 0.7s ease;
  -webkit-animation: fade 0.7s ease; }

.zoom-in-effect {
  animation: zoom_in 0.4s ease;
  -o-animation: zoom_in 0.4s ease;
  -moz-animation: zoom_in 0.4s ease;
  -webkit-animation: zoom_in 0.4s ease; }

.down-effect {
  animation: down 0.4s ease;
  -o-animation: down 0.4s ease;
  -moz-animation: down 0.4s ease;
  -webkit-animation: down 0.4s ease; }

.rotate-effect {
  animation: rotate_effect 3s linear infinite;
  -o-animation: rotate_effect 3s linear infinite;
  -moz-animation: rotate_effect 3s linear infinite;
  -webkit-animation: rotate_effect 3s linear infinite; }

@-webkit-keyframes fade {
  from {
    opacity: 0.3; }
  to {
    opacity: 1; } }
@-moz-keyframes fade {
  from {
    opacity: 0.3; }
  to {
    opacity: 1; } }
@-o-keyframes fade {
  from {
    opacity: 0.3; }
  to {
    opacity: 1; } }
@keyframes fade {
  from {
    opacity: 0.3; }
  to {
    opacity: 1; } }
@-webkit-keyframes zoom_in {
  from {
    opacity: 0.6;
    transform: scale(0.8, 0.8);
    -o-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -moz-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8); }
  to {
    opacity: 1;
    transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1); } }
@-moz-keyframes zoom_in {
  from {
    opacity: 0.6;
    transform: scale(0.8, 0.8);
    -o-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -moz-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8); }
  to {
    opacity: 1;
    transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1); } }
@-o-keyframes zoom_in {
  from {
    opacity: 0.6;
    transform: scale(0.8, 0.8);
    -o-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -moz-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8); }
  to {
    opacity: 1;
    transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1); } }
@keyframes zoom_in {
  from {
    opacity: 0.6;
    transform: scale(0.8, 0.8);
    -o-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -moz-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8); }
  to {
    opacity: 1;
    transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1); } }
@-webkit-keyframes down {
  from {
    margin-top: 0;
    opacity: 0; }
  to {
    opacity: 1; } }
@-moz-keyframes down {
  from {
    margin-top: 0;
    opacity: 0; }
  to {
    opacity: 1; } }
@-o-keyframes down {
  from {
    margin-top: 0;
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes down {
  from {
    margin-top: 0;
    opacity: 0; }
  to {
    opacity: 1; } }
@-webkit-keyframes show_sb_right {
  from {
    margin-right: -400px; }
  to {
    margin-right: 0;
    opacity: 1; } }
@-moz-keyframes show_sb_right {
  from {
    margin-right: -400px; }
  to {
    margin-right: 0;
    opacity: 1; } }
@-o-keyframes show_sb_right {
  from {
    margin-right: -400px; }
  to {
    margin-right: 0;
    opacity: 1; } }
@keyframes show_sb_right {
  from {
    margin-right: -400px; }
  to {
    margin-right: 0;
    opacity: 1; } }
@-webkit-keyframes hide_sb_right {
  from {
    margin-right: 0; }
  to {
    margin-right: -400px; } }
@-moz-keyframes hide_sb_right {
  from {
    margin-right: 0; }
  to {
    margin-right: -400px; } }
@-o-keyframes hide_sb_right {
  from {
    margin-right: 0; }
  to {
    margin-right: -400px; } }
@keyframes hide_sb_right {
  from {
    margin-right: 0; }
  to {
    margin-right: -400px; } }
@-webkit-keyframes rotate_effect {
  from {
    transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg); }
  to {
    transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg); } }
@-moz-keyframes rotate_effect {
  from {
    transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg); }
  to {
    transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg); } }
@-o-keyframes rotate_effect {
  from {
    transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg); }
  to {
    transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg); } }
@keyframes rotate_effect {
  from {
    transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg); }
  to {
    transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg); } }
/* *** END ANIMATION_EFFECT *** */
/* *** CARDS *** */
.mdl-card {
  overflow: initial;
  z-index: initial;
  min-height: 0;
  width: 100%; }
  .mdl-card .mdl-card__supporting-text {
    width: unset;
    color: unset; }
  .mdl-card .mdl-card__menu .x-icon {
    font-size: 18px; }

.x-card-refresh__spinner,
.x-card-refresh__proggress-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.05); }

.x-card-refresh__spinner {
  display: flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  justify-content: center;
  align-items: center; }

/* *** END CARDS *** */
/* *** MDL_TAB *** */
.mdl-tabs__left .mdl-tabs__tab-bar {
  -webkit-justify-content: inherit;
  justify-content: inherit;
  margin-bottom: 0.5rem !important; }

.mdl-tabs__tab-bar {
  margin-bottom: 0.5rem; }

.mdl-tabs__tab-icon-title .x-icon {
  vertical-align: middle; }

/* *** END MDL_TAB *** */
/* *** MDL_TEXT-FILE *** */
.mdl-textfield--file .mdl-textfield__input {
  box-sizing: border-box;
  width: calc(100% - 32px); }
.mdl-textfield--file .mdl-button--file {
  right: 0; }
  .mdl-textfield--file .mdl-button--file input {
    cursor: pointer;
    height: 100%;
    right: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 300px;
    z-index: 4; }

/* *** END MDL_TEXT *** */
/* *** FORM-STEPPER *** */
.wizard > .steps .current a {
    background: #28a46d;
}

.wizard.vertical > .content {
  min-height: 23em !important; }

.wizard > .steps .current {
  border-radius: inherit;
  -webkit-filter: drop-shadow(1px 6px 3px rgba(0, 0, 0, 0.11)); }

.wizard > .actions a, .wizard > .actions a:hover, .wizard > .actions a:active {
    background: #28a46d;
    padding-top: 0;
    padding-bottom: 0;
    border-radius: inherit;
}

/* *** END WIZARD *** */
/* *** DATATABLE *** */
div.dataTables_wrapper div.dataTables_paginate .pagination button {
  height: 30px;
  line-height: 0;
  font-size: 12px; }

.dataTables_info {
  font-size: 12px; }

.dataTables_filter input[type="search"]:focus {
  border-bottom: 2px solid blue;
  outline: none; }

.dataTables_filter input[type="search"] {
  border: 0px;
  border-bottom: 1px solid #bbb; }

/* *** END DATATABLE *** */
/* *** MESSAGE *** */
.msg {
  max-width: 75%; }
  .msg .mdl-media-body {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 0.5rem !important;
    width: auto; }
    .msg .mdl-media-body .msg-time {
      font-size: 12px;
      display: block;
      margin-top: 5px;
      color: rgba(0, 0, 0, 0.5); }

.msg-left .mdl-media-body {
  margin-left: 0.5rem !important; }
  .msg-left .mdl-media-body .msg-time {
    text-align: right; }

.msg-right {
  float: right; }
  .msg-right .mdl-media-body {
    margin-right: 0.5rem !important; }
    .msg-right .mdl-media-body .msg-time {
      text-align: left; }

/* *** END MESSAGE *** */
/* *** LOGIN_FORM *** */
.x-login-form {
  justify-content: center;
  margin-top: 100px;
  position: relative; }
  .x-login-form .x-login__title {
    width: 100%; }

.x-login-form__1 .x-login__body {
  filter: drop-shadow(10px 10px 0px rgba(0, 0, 0, 0.2));
  -webkit-filter: drop-shadow(10px 10px 0px rgba(0, 0, 0, 0.2)); }
.x-login-form__1 .x-login__title {
  color: #2196f3;
  padding: 0.5rem 1.5rem;
  border-left: 3px solid #2196f3;
  font-size: 25px; }

.x-login-form__2 .x-login__title {
  text-align: center;
  position: absolute;
  top: -20px; }
  .x-login-form__2 .x-login__title .x-icon {
    font-size: 40px;
    border-radius: 100%;
    padding: 10px; }

/* *** END LOGIN_FORM *** */
/* *** MEDIA_QUERY *** */
@media (max-width: 768px) {
  .timeline .timeline-header {
    font-size: 16px; }
  .timeline .event::before {
    left: 0.5px;
    top: -10px;
    min-width: 0;
    font-size: 13px; }
    .timeline .event::before:nth-child(1)::before, .timeline .event::before:nth-child(3)::before,
    .timeline .event::before :nth-child(5)::before {
      top: -10px; } }
@media (max-width: 576px) {
  .mdl-menu--custom .mdl-menu__container {
    top: 50px;
    right: 0 !important; } }
@media screen and (max-width: 768px) and (min-width: 240px) {
  .x-sidebar-right {
    top: 56px; }

  .mdl-layout--tab-bar .x-sidebar-right {
    top: 104px; } }

.contentHeader {
    font-size: 20px;
    font-weight: bold;
    position:absolute;
    left:24%;
}
/* *** END MEDIA_QUERY *** */

