/* =============================================================================
============================================================================= */
/* MAIN CSS */
/* MIXIN

NOTE: you can add or edit some class and value, do not delete just comment out them

*/
/* FONT   ////////////////////////////////////////////////////////////////////////////  */
/* RESPONSIVE  ////////////////////////////////////////////////////////////////////////////  */
/* COLOR ////////////////////////////////////////////////////////////////////////////  */
/* Name */
/* HEX */
/* Primary Color */
/* Dashboard Color */
/* BLACK */
/*

$grey6:                #fafafa;
$grey7:                #5f6568;
$grey8:                #fcfcfc;
$grey9:                #E5E5E5;
$grey10:               #eee;
$grey11:               #777;
$grey12:               #B4B8C1;
$grey13:               #fefefe;
$grey14:               #ddd;
$grey15:               #fcfcfc;
*/
/* GREEN */
/* RED */
/* ORANGE */
/* BLUE */
/* YELLOW */
/* CALENADER  ////////////////////////////////////////////////////////////////////////////  */
/* FONTS ////////////////////////////////////////////////////////////////////////////  */
/* RADIUS ////////////////////////////////////////////////////////////////////////////  */
/* use this code in class "@include radius;" <<<<<<<<<<<<<<<< */
/* */
/* use this code in class "@include curve;" <<<<<<<<<<<<<<<< */
/* use this code in class "@include circle;" <<<<<<<<<<<<<<<< */
/* BORDER ////////////////////////////////////////////////////////////////////////////  */
/* use this code in class "@include border;" <<<<<<<<<<<<<<<< */
/* use this code in class "@include border2;" <<<<<<<<<<<<<<<< */
/* use this code in class "@include border3;" <<<<<<<<<<<<<<<< */
/* use this code in class "@include box-shadow;" <<<<<<<<<<<<<<<< */
/* use this code in class "@include inset-box-shadow;" <<<<<<<<<<<<<<<< */
/* use this code in class "@include box-shadow2;" <<<<<<<<<<<<<<<< */
/* use this code in class "@include box-shadow3;" <<<<<<<<<<<<<<<< */
/* FADE IN ////////////////////////////////////////////////////////////////////////////  */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400i,600,600i");
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  /* Firefox */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  /* Safari and Chrome */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  /* Opera */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* GLOBAL

NOTE: - you can add or edit some class and value, do not delete just comment out them
- use mixin in you values

*/
/* line 9, ../sass/global/global.scss */
html, body, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var, b, u, center, dl, dt, dd, ol, ul, hr, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, button
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, select, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: 'Open Sans', sans-serif;
  /*   font-family: 'Lato', sans-serif;*/
  text-decoration: none;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  transition: all 0.5s ease;
  outline: none;
  list-style: none;
  vertical-align: middle;
  outline: none;
}

/* line 28, ../sass/global/global.scss */
div, a, strong {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  outline: none;
  list-style: none;
  font-family: 'Open Sans', sans-serif;
  /*  font-family: 'Lato', sans-serif;*/
  text-decoration: none;
  outline: none;
  list-style: none;
}

/* line 43, ../sass/global/global.scss */
html, body {
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  background-color: #eeeeee !important;
  animation: fadein 1s;
  -moz-animation: fadein 1s;
  /* Firefox */
  -webkit-animation: fadein 1s;
  /* Safari and Chrome */
  -o-animation: fadein 1s;
  /* Opera */
}

/* line 54, ../sass/global/global.scss */
#mainForm {
  background-color: #eeeeee;
}

/* line 58, ../sass/global/global.scss */
.navbar-fixed-top {
  background-color: #333333 !important;
}

/* line 62, ../sass/global/global.scss */
.view {
  height: 100%;
}

/* line 66, ../sass/global/global.scss */
.container {
  width: 1280px;
}

/* line 70, ../sass/global/global.scss */
.hidden {
  overflow: hidden;
}

/* PAGE WRAPPING --------------------------------------------------------  */
/* line 77, ../sass/global/global.scss */
.page-wrap {
  min-width: 1200px;
  min-height: 100%;
  /* equal to footer height */
  margin-bottom: -250px;
  animation: fadein 1s;
  -moz-animation: fadein 1s;
  /* Firefox */
  -webkit-animation: fadein 1s;
  /* Safari and Chrome */
  -o-animation: fadein 1s;
  /* Opera */
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  /* line 77, ../sass/global/global.scss */
  .page-wrap {
    min-height: 600px;
    min-width: 100%;
  }
}
@media screen and (width: 768px) {
  /* line 77, ../sass/global/global.scss */
  .page-wrap {
    min-width: 100%;
  }
}
@media screen and (width: 1024px) {
  /* line 77, ../sass/global/global.scss */
  .page-wrap {
    min-width: 100%;
  }
}

/* line 101, ../sass/global/global.scss */
.page-wrap:after {
  content: "";
  display: block;
}

/* line 105, ../sass/global/global.scss */
.footer, .page-wrap:after {
  min-height: 250px;
  padding-top: 30px;
}

/* ALIGN-MENT --------------------------------------------------------  */
/* line 112, ../sass/global/global.scss */
.align-right {
  text-align: right;
}

/* line 116, ../sass/global/global.scss */
.align-left {
  text-align: left;
}

/* line 120, ../sass/global/global.scss */
.align-center {
  text-align: center;
}

/* line 124, ../sass/global/global.scss */
.align-justify {
  text-align: justify;
}

/* line 128, ../sass/global/global.scss */
.pull-right {
  float: right;
}

/* line 132, ../sass/global/global.scss */
.pull-left {
  float: left;
}

/* HYPER LINK */
/* line 139, ../sass/global/global.scss */
a {
  color: #18879b;
}

/* line 143, ../sass/global/global.scss */
a:visited {
  color: #18879b;
}

/* line 147, ../sass/global/global.scss */
a:active {
  color: #18879b;
}

/* line 151, ../sass/global/global.scss */
a:hover {
  color: #126b7b;
}

/* line 156, ../sass/global/global.scss */
a:link, a:visited {
  color: #18879b;
}

/* Span */
/* line 161, ../sass/global/global.scss */
span {
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  line-height: 30px;
}

/* line 167, ../sass/global/global.scss */
.indent {
  text-indent: 20px;
}

/* line 171, ../sass/global/global.scss */
.left-margin {
  margin-left: 20px;
}

/* line 175, ../sass/global/global.scss */
.right-margin {
  margin-right: 20px;
}

/* line 179, ../sass/global/global.scss */
.left-padding {
  padding-left: 20px;
}

/* line 183, ../sass/global/global.scss */
.right-padding {
  padding-right: 20px;
}

/* line 187, ../sass/global/global.scss */
.relative {
  position: relative;
}

/* line 191, ../sass/global/global.scss */
.pointer {
  cursor: pointer;
}

/* line 195, ../sass/global/global.scss */
.border-bottom {
  border-bottom: 1px solid #eeeeee;
}

/* line 201, ../sass/global/global.scss */
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 207, ../sass/global/global.scss */
.clear-sm {
  width: 100%;
  margin-bottom: 25px;
}

/* line 212, ../sass/global/global.scss */
.parent {
  position: relative;
}

/* line 217, ../sass/global/global.scss */
.no-padding {
  margin: 0px !important;
  padding: 0px !important;
}

/* line 223, ../sass/global/global.scss */
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  font-weight: normal !important;
}

/* line 227, ../sass/global/global.scss */
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  font-weight: normal !important;
}

/*Calendar Fixed css*/
/* line 233, ../sass/global/global.scss */
.fc-widget-header, .fc-widget-content {
  max-height: 400px !important;
  overflow-y: auto !important;
}

/* line 237, ../sass/global/global.scss */
.fc-event {
  border: 0px !important;
}
/* line 240, ../sass/global/global.scss */
.fc-event span {
  font-size: 12px !important;
}

/* line 246, ../sass/global/global.scss */
.image-responsive {
  display: inline-block;
  height: auto;
  max-width: 100%;
}

/* UI components =========================================================   */
/* line 1, ../sass/ui-component/button.scss */
.btn {
  min-width: 40px;
  padding: 8px 15px;
  font-size: 14px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 0px;
  text-align: center;
  line-height: 20px;
  outline: none;
  font-weight: 500;
  cursor: pointer;
}
/* line 13, ../sass/ui-component/button.scss */
.btn i {
  font-size: 16px;
}

/* line 18, ../sass/ui-component/button.scss */
.btn-sm {
  padding: 5px 15px;
}

/* line 22, ../sass/ui-component/button.scss */
.btn-xs {
  min-width: 30px;
}

/* line 26, ../sass/ui-component/button.scss */
.btn-small {
  padding: 1px 25px !important;
}

/* line 30, ../sass/ui-component/button.scss */
.btn-success {
  background-color: #6c9b41;
  color: #ffffff;
}
/* line 34, ../sass/ui-component/button.scss */
.btn-success:hover {
  background-color: #567c34;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  -ms-transition: all 200ms ease-in;
  -o-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}

/* line 41, ../sass/ui-component/button.scss */
.btn-primary {
  background-color: #18879b;
  color: #ffffff;
}
/* line 45, ../sass/ui-component/button.scss */
.btn-primary:hover {
  background-color: #126b7b;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  -ms-transition: all 200ms ease-in;
  -o-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}

/* line 51, ../sass/ui-component/button.scss */
.btn-danger {
  background-color: #d9534f;
  color: #ffffff;
}
/* line 55, ../sass/ui-component/button.scss */
.btn-danger:hover {
  background-color: #b74541;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  -ms-transition: all 200ms ease-in;
  -o-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}

/* line 62, ../sass/ui-component/button.scss */
.btn-warning {
  background-color: #e77e23;
  color: #ffffff;
}
/* line 66, ../sass/ui-component/button.scss */
.btn-warning:hover {
  background-color: #ce7022;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  -ms-transition: all 200ms ease-in;
  -o-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}

/* line 72, ../sass/ui-component/button.scss */
.btn-default {
  background-color: #eeeeee;
  color: #454546;
}
/* line 76, ../sass/ui-component/button.scss */
.btn-default:hover {
  color: #454546;
  background-color: #dddddd;
  transition: all 0.3s ease;
}

/* line 83, ../sass/ui-component/button.scss */
.btn-padding {
  padding-left: 40px;
  padding-right: 40px;
}

/* line 88, ../sass/ui-component/button.scss */
.btn-long {
  width: 100%;
}

/* line 92, ../sass/ui-component/button.scss */
.btn-disabled {
  color: #888888;
  background-color: #f2f2f3;
  cursor: not-allowed !important;
}
/* line 97, ../sass/ui-component/button.scss */
.btn-disabled:hover {
  background-color: #f2f2f3;
}

/* line 102, ../sass/ui-component/button.scss */
.btn-title-part {
  margin-top: 10px !important;
  margin-right: 10px  !important;
}

/* line 108, ../sass/ui-component/button.scss */
.button-toggle {
  width: auto;
  height: 40px;
}
/* line 112, ../sass/ui-component/button.scss */
.button-toggle .btn-left {
  height: 35px;
  line-height: 35px;
  width: 40px;
  text-align: center;
  float: left;
  background-color: #dddddd;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
/* line 122, ../sass/ui-component/button.scss */
.button-toggle .btn-left:hover {
  background-color: #6c9b41;
  cursor: pointer;
  color: #ffffff;
}
/* line 129, ../sass/ui-component/button.scss */
.button-toggle .btn-right {
  height: 35px;
  line-height: 35px;
  width: 40px;
  text-align: center;
  float: left;
  background-color: #dddddd;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
/* line 139, ../sass/ui-component/button.scss */
.button-toggle .btn-right:hover {
  background-color: #6c9b41;
  cursor: pointer;
  color: #ffffff;
}
/* line 146, ../sass/ui-component/button.scss */
.button-toggle .btn-toggle-active {
  background-color: #6c9b41;
  cursor: pointer;
  color: #ffffff;
}

/* Normal */
/* line 3, ../sass/ui-component/input.scss */
input[type="text"], [type="password"], [type="number"], [type="date"], [type="email"], [type="search"], [type="time"] {
  border-bottom: 1px solid #747c83;
  height: 40px;
  width: 100%;
  color: #747c83;
  font-size: 14px;
  background-color: transparent;
  font-weight: normal;
  appearance: none;
  -webkit-appearance: none;
}

/* line 17, ../sass/ui-component/input.scss */
input:read-only {
  cursor: not-allowed;
  background: #ffffff;
  border-bottom: 1px solid #aaaaaa;
}

/* line 24, ../sass/ui-component/input.scss */
.upload {
  display: block;
  padding: 10px;
  background: #eeeeee;
  color: #454546;
  border: 1px solid #dddddd;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

/* Hover */
/* line 34, ../sass/ui-component/input.scss */
input[type="text"]:hover, [type="password"]:hover, [type="number"]:hover, [type="date"]:hover, [type="email"]:hover, [type="search"]:hover {
  border-bottom: 1px solid #454546;
  color: #454546;
}

/* line 41, ../sass/ui-component/input.scss */
input[type="text"]:disabled, [type="password"]:disabled, [type="number"]:disabled, [type="date"]:disabled, [type="email"]:disabled, [type="search"]:disabled {
  border-bottom: 1px solid #f2f2f3;
  color: #f2f2f3;
  background-color: #aaaaaa;
}

/* line 47, ../sass/ui-component/input.scss */
input:disabled {
  border-bottom: 1px solid #aaaaaa !important;
  color: #aaaaaa !important;
  cursor: not-allowed !important;
  background-color: transparent !important;
}

/* line 54, ../sass/ui-component/input.scss */
input:read-only {
  border-bottom: 1px solid #aaaaaa;
  color: #aaaaaa;
  cursor: not-allowed !important;
}

/* line 60, ../sass/ui-component/input.scss */
.error-border {
  border: 1px solid #d9534f !important;
}

/* input group 

HTML CODE 

<div class="input-group-custom"><!-- /input-group -->
<input type="text" class="form-control" placeholder="Search for...">
<span class="input-group-btn">
<button class="btn btn-default" type="button">Go!</button>
</span>
</div><!-- /input-group -->


*/
/* line 78, ../sass/ui-component/input.scss */
.input-group-custom {
  position: relative;
  display: table;
  border-collapse: separate;
}
/* line 83, ../sass/ui-component/input.scss */
.input-group-custom input {
  width: 100%;
}

/* line 94, ../sass/ui-component/input.scss */
.input-group-custom-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
  width: 1%;
  display: table-cell;
  vertical-align: middle;
}

/* line 103, ../sass/ui-component/input.scss */
.input-group-custom-btn:last-child > .btn {
  z-index: 2;
  margin-left: -1px;
  margin: 0px;
}

/* line 110, ../sass/ui-component/input.scss */
.input-group-btn > .btn {
  position: relative;
}

/* input group icon

HTML CODE 

<div class="input-group-icon"><!-- /input-group -->
<input type="text" class="form-control" placeholder="Search for...">
<span class="input-group-icon-btn">
<button class="btn btn-default" type="button">Go!</button>
</span>
</div><!-- /input-group -->


*/
/* line 131, ../sass/ui-component/input.scss */
.input-group-icon {
  position: relative;
  display: table;
  border-collapse: separate;
}
/* line 136, ../sass/ui-component/input.scss */
.input-group-icon input {
  width: 100%;
}
/* line 140, ../sass/ui-component/input.scss */
.input-group-icon i {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 20px;
}

/* line 148, ../sass/ui-component/input.scss */
.input-group-icon .form-control:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-left: 30px;
}

/* line 154, ../sass/ui-component/input.scss */
.input-group-btn-icon {
  position: relative;
  font-size: 0;
  white-space: nowrap;
  width: 1%;
  display: table-cell;
  vertical-align: middle;
}

/* line 163, ../sass/ui-component/input.scss */
.input-group-btn-icon:last-child > .btn {
  z-index: 2;
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 10px;
  margin: 0px;
}

/* line 172, ../sass/ui-component/input.scss */
.input-group-btn-icon > .btn {
  position: relative;
}

/* line 1, ../sass/ui-component/select.scss */
select {
  border: 0px;
  border-bottom: 1px solid #747c83;
  height: 36px;
  line-height: 20px;
  margin-top: 3px;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: #747c83;
  border-radius: 0px;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  background-image: url("../../../../../Images/icons/select-arrow.png");
  background-position: right 11px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1400px) and (min-width: 1280px) {
  /* line 1, ../sass/ui-component/select.scss */
  select {
    font-size: 12px;
  }
}

/* line 27, ../sass/ui-component/select.scss */
select:hover {
  color: #454546;
  border-bottom: 1px solid #454546;
}

/* line 1, ../sass/ui-component/table.scss */
.table-container {
  width: 100%;
  min-height: 50px;
  overflow-y: auto;
}
/* line 6, ../sass/ui-component/table.scss */
.table-container table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
  table-layout: fixed;
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  /* line 6, ../sass/ui-component/table.scss */
  .table-container table {
    min-width: 400px;
  }
}
@media screen and (width: 768px) {
  /* line 6, ../sass/ui-component/table.scss */
  .table-container table {
    min-width: 400px;
  }
}
@media screen and (width: 1024px) {
  /* line 6, ../sass/ui-component/table.scss */
  .table-container table {
    min-width: 400px;
  }
}
/* line 25, ../sass/ui-component/table.scss */
.table-container table thead {
  width: 100%;
  height: 40px;
  background-color: transparent;
  text-indent: 10px;
  color: #747c83;
  cursor: pointer;
  text-align: left;
}
/* line 35, ../sass/ui-component/table.scss */
.table-container table th {
  background-color: transparent;
  white-space: nowrap;
  font-size: 14px;
  font-weight: bold;
  text-indent: 10px;
}
/* line 44, ../sass/ui-component/table.scss */
.table-container table tr {
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  border: 1px solid #dddddd;
  font-weight: normal;
  color: #454546;
}
/* line 53, ../sass/ui-component/table.scss */
.table-container table tr:hover {
  background-color: #eeeeee;
}
/* line 59, ../sass/ui-component/table.scss */
.table-container table td {
  text-indent: 10px;
  font-size: 14px;
  color: #747c83;
  white-space: nowrap;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 73, ../sass/ui-component/table.scss */
.table-style-container {
  width: 100%;
  min-height: 50px;
  overflow-y: auto;
}
/* line 78, ../sass/ui-component/table.scss */
.table-style-container table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
  table-layout: fixed;
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  /* line 78, ../sass/ui-component/table.scss */
  .table-style-container table {
    min-width: 700px;
  }
}
@media screen and (width: 768px) {
  /* line 78, ../sass/ui-component/table.scss */
  .table-style-container table {
    min-width: 700px;
  }
}
@media screen and (width: 1024px) {
  /* line 78, ../sass/ui-component/table.scss */
  .table-style-container table {
    min-width: 700px;
  }
}
/* line 97, ../sass/ui-component/table.scss */
.table-style-container table thead {
  width: 100%;
  height: 40px;
  background-color: transparent;
  text-indent: 5px;
  color: #747c83;
  cursor: pointer;
  text-align: left;
}
/* line 107, ../sass/ui-component/table.scss */
.table-style-container table th {
  background-color: #ffffff;
  white-space: nowrap;
  font-size: 14px;
  padding-left: 3px;
  padding-right: 3px;
  text-indent: 0px;
  font-weight: bold;
  border-bottom: 1px solid #eeeeee;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 123, ../sass/ui-component/table.scss */
.table-style-container table tr {
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  font-weight: normal;
  color: #454546;
}
/* line 135, ../sass/ui-component/table.scss */
.table-style-container table tr:first-child {
  border-top: 1px solid #ffffff !important;
}
/* line 140, ../sass/ui-component/table.scss */
.table-style-container table tr:last-child {
  border-bottom: 1px solid #ffffff !important;
}
/* line 144, ../sass/ui-component/table.scss */
.table-style-container table tr:hover {
  background-color: #f2f2f3;
}
/* line 150, ../sass/ui-component/table.scss */
.table-style-container table td {
  padding-left: 3px;
  padding-right: 3px;
  font-size: 14px;
  color: #454546;
  white-space: nowrap;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 26px;
}
/* line 163, ../sass/ui-component/table.scss */
.table-style-container table td .fa-download {
  margin-left: 5px;
}
/* line 166, ../sass/ui-component/table.scss */
.table-style-container table td .fa-download:hover {
  color: #126b7b;
}
/* line 171, ../sass/ui-component/table.scss */
.table-style-container table td .fa-print {
  margin-left: 5px;
}
/* line 174, ../sass/ui-component/table.scss */
.table-style-container table td .fa-print:hover {
  color: #126b7b;
}
/* line 179, ../sass/ui-component/table.scss */
.table-style-container table td .fa-trash {
  margin-left: 5px;
}
/* line 182, ../sass/ui-component/table.scss */
.table-style-container table td .fa-trash:hover {
  color: #d9534f;
}

/* line 194, ../sass/ui-component/table.scss */
.table-border-container {
  width: 100%;
  min-height: 50px;
  overflow-y: auto;
}
/* line 201, ../sass/ui-component/table.scss */
.table-border-container table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
  table-layout: fixed;
  min-width: 100%;
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  /* line 201, ../sass/ui-component/table.scss */
  .table-border-container table {
    min-width: 700px;
  }
}
@media screen and (width: 768px) {
  /* line 201, ../sass/ui-component/table.scss */
  .table-border-container table {
    min-width: 700px;
  }
}
@media screen and (width: 1024px) {
  /* line 201, ../sass/ui-component/table.scss */
  .table-border-container table {
    min-width: 700px;
  }
}
/* line 221, ../sass/ui-component/table.scss */
.table-border-container table thead {
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  text-indent: 10px;
  color: #747c83;
  cursor: pointer;
  text-align: left;
}
/* line 231, ../sass/ui-component/table.scss */
.table-border-container table th {
  background-color: #ffffff;
  white-space: nowrap;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #ffffff;
}
/* line 239, ../sass/ui-component/table.scss */
.table-border-container table tr {
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  border: 1px solid #ffffff;
  font-weight: normal;
  color: #454546;
}
/* line 250, ../sass/ui-component/table.scss */
.table-border-container table tr:hover {
  background-color: #ffffff;
}
/* line 256, ../sass/ui-component/table.scss */
.table-border-container table td {
  padding-left: 5px;
  padding-right: 5px;
  border: 1px solid #dddddd;
  font-size: 14px;
  color: #454546;
  white-space: nowrap;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 26px;
}

/* line 275, ../sass/ui-component/table.scss */
.table-style-container-noline {
  width: 100%;
  min-height: 50px;
  overflow-y: auto;
}
/* line 280, ../sass/ui-component/table.scss */
.table-style-container-noline table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
  table-layout: fixed;
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  /* line 280, ../sass/ui-component/table.scss */
  .table-style-container-noline table {
    min-width: 700px;
  }
}
@media screen and (width: 768px) {
  /* line 280, ../sass/ui-component/table.scss */
  .table-style-container-noline table {
    min-width: 700px;
  }
}
@media screen and (width: 1024px) {
  /* line 280, ../sass/ui-component/table.scss */
  .table-style-container-noline table {
    min-width: 700px;
  }
}
/* line 299, ../sass/ui-component/table.scss */
.table-style-container-noline table thead {
  width: 100%;
  height: 40px;
  background-color: transparent;
  text-indent: 5px;
  color: #747c83;
  cursor: pointer;
  text-align: left;
}
/* line 309, ../sass/ui-component/table.scss */
.table-style-container-noline table th {
  background-color: #ffffff;
  white-space: nowrap;
  font-size: 14px;
  padding-left: 3px;
  padding-right: 3px;
  text-indent: 0px;
  font-weight: bold;
  border-bottom: 1px solid #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 325, ../sass/ui-component/table.scss */
.table-style-container-noline table tr {
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  font-weight: normal;
  color: #454546;
}
/* line 335, ../sass/ui-component/table.scss */
.table-style-container-noline table tr:first-child {
  display: none;
  border-top: 1px solid #ffffff !important;
}
/* line 341, ../sass/ui-component/table.scss */
.table-style-container-noline table tr:last-child {
  border-bottom: 1px solid #ffffff !important;
}
/* line 345, ../sass/ui-component/table.scss */
.table-style-container-noline table tr:hover {
  background-color: #ffffff;
}
/* line 351, ../sass/ui-component/table.scss */
.table-style-container-noline table td {
  padding-left: 3px;
  padding-right: 3px;
  font-size: 14px;
  color: #454546;
  white-space: nowrap;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 26px;
}
/* line 363, ../sass/ui-component/table.scss */
.table-style-container-noline table td:nth-child(1) {
  width: 80px;
}
/* line 366, ../sass/ui-component/table.scss */
.table-style-container-noline table td:nth-child(2) {
  width: 1px;
}
/* line 369, ../sass/ui-component/table.scss */
.table-style-container-noline table td:nth-child(3) {
  width: 70px;
}
/* line 373, ../sass/ui-component/table.scss */
.table-style-container-noline table td .fa-download {
  margin-left: 5px;
}
/* line 376, ../sass/ui-component/table.scss */
.table-style-container-noline table td .fa-download:hover {
  color: #126b7b;
}
/* line 381, ../sass/ui-component/table.scss */
.table-style-container-noline table td .fa-print {
  margin-left: 5px;
}
/* line 384, ../sass/ui-component/table.scss */
.table-style-container-noline table td .fa-print:hover {
  color: #126b7b;
}
/* line 389, ../sass/ui-component/table.scss */
.table-style-container-noline table td .fa-trash {
  margin-left: 5px;
}
/* line 392, ../sass/ui-component/table.scss */
.table-style-container-noline table td .fa-trash:hover {
  color: #d9534f;
}

/* line 1, ../sass/ui-component/textarea.scss */
textarea {
  border-bottom: 1px solid #747c83;
  min-height: 60px;
  width: 100%;
  color: #747c83;
  font-size: 14px;
  background-color: transparent;
  font-weight: normal;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
}

/* Hover */
/* line 16, ../sass/ui-component/textarea.scss */
textarea:hover {
  border-bottom: 1px solid #454546;
  color: #454546;
}

/* TINYMCE */
/* line 23, ../sass/ui-component/textarea.scss */
.mce-menubar {
  display: none !important;
}

/* line 28, ../sass/ui-component/textarea.scss */
#mceu_22 {
  display: none !important;
}

/* line 33, ../sass/ui-component/textarea.scss */
.mce-btn {
  background-color: #ffffff !important;
}

/* line 37, ../sass/ui-component/textarea.scss */
.mce-panel {
  background-color: #ffffff !important;
}

/* line 1, ../sass/ui-component/typography.scss */
h6 {
  font-size: 32px;
}

/* line 5, ../sass/ui-component/typography.scss */
h5 {
  font-size: 28px;
}

/* line 9, ../sass/ui-component/typography.scss */
h4 {
  font-size: 24px;
}

/* line 13, ../sass/ui-component/typography.scss */
h3 {
  font-size: 20px;
}

/* line 17, ../sass/ui-component/typography.scss */
h2 {
  font-size: 16px;
}

/* line 21, ../sass/ui-component/typography.scss */
h1 {
  font-size: 14px;
}

/* line 1, ../sass/ui-component/datepicker.scss */
.ui-widget-content a {
  color: #37393b;
  text-decoration: none;
  font-size: 12px;
}

/* line 7, ../sass/ui-component/datepicker.scss */
.ui-datepicker {
  background-color: #fff;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  border: 1px solid #ddd;
  display: none;
  z-index: 999 !important;
  width: 320px;
  /*  position: absolute !important;*/
  margin-top: 1px;
  font-family: 'Open Sans', sans-serif;
}

/* line 20, ../sass/ui-component/datepicker.scss */
.ui-datepicker .ui-state-highlight a {
  color: #ffffff !important;
}

/* line 24, ../sass/ui-component/datepicker.scss */
.ui-datepicker .ui-state-highlight,
.ui-datepicker .ui-widget-content .ui-state-highlight,
.ui-datepicker .ui-widget-header .ui-state-highlight {
  color: #ffffff;
}

/* line 30, ../sass/ui-component/datepicker.scss */
.ui-datepicker table thead {
  text-align: center;
  font-size: 12px;
  margin-top: 3px;
}

/* line 36, ../sass/ui-component/datepicker.scss */
.ui-datepicker table thead th {
  font-weight: 400;
  text-transform: uppercase;
  color: #bbbbbb;
  text-align: center;
}

/* line 43, ../sass/ui-component/datepicker.scss */
.ui-datepicker table tbody tr {
  margin-bottom: 10px;
  text-align: center;
}

/* line 48, ../sass/ui-component/datepicker.scss */
.ui-datepicker table tbody tr td {
  text-align: center;
  width: 30px;
  height: 25px;
}

/* line 54, ../sass/ui-component/datepicker.scss */
.ui-datepicker-calendar {
  width: 100%;
  font-size: 10px;
  padding-left: 2px;
  padding-right: 2px;
  padding-top: 2px;
  padding-bottom: 20px;
}

/* line 63, ../sass/ui-component/datepicker.scss */
.ui-state-highlight {
  display: inline-block;
  background-color: #e67f23;
  color: #fff !important;
  border-radius: 50%;
  padding: 6px 7px;
}

/* line 71, ../sass/ui-component/datepicker.scss */
.ui-state-highlight:hover {
  background-color: #cd7022;
  color: #ffffff !important;
}

/* line 76, ../sass/ui-component/datepicker.scss */
.ui-state-active {
  display: inline-block;
  background-color: #18879b;
  color: #ffffff !important;
  border-radius: 50%;
  padding: 7px 7px;
  height: 15px;
  width: 15px;
}

/* line 86, ../sass/ui-component/datepicker.scss */
.ui-state-active:hover {
  background-color: #126b7b;
}

/* line 90, ../sass/ui-component/datepicker.scss */
.ui-datepicker-month {
  width: 93px;
  float: left;
  margin-left: 19px;
  background-color: #ffffff;
  color: #333;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 12px;
}

/* line 102, ../sass/ui-component/datepicker.scss */
.ui-datepicker-title {
  width: 80%;
  background-color: white;
  height: 35px;
  margin-left: 10%;
  margin-right: 10%;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}

/* line 113, ../sass/ui-component/datepicker.scss */
.ui-datepicker-year {
  width: 45%;
  float: right;
  margin-right: 20px;
  background-color: #ffffff;
  color: #333;
  display: inline-block;
  border-bottom: 1px solid #ccc;
  border-radius: 0px;
  padding: 2px 20px;
  font-size: 12px;
}

/* line 126, ../sass/ui-component/datepicker.scss */
.ui-datepicker-next {
  width: 30px;
  background-color: white;
  height: 30px;
  position: absolute;
  top: 0px;
  right: 10px;
  border-radius: 50%;
  cursor: pointer;
  background-image: url("../icons/calendar-arrow-right.png");
  background-repeat: no-repeat;
  background-position: center;
}

/* line 140, ../sass/ui-component/datepicker.scss */
.ui-datepicker-next:hover {
  background-color: #eee;
}

/* line 144, ../sass/ui-component/datepicker.scss */
.ui-datepicker-next span {
  opacity: 0;
}

/* line 148, ../sass/ui-component/datepicker.scss */
.ui-datepicker-prev {
  width: 30px;
  background-color: white;
  height: 30px;
  position: absolute;
  top: 0px;
  left: 10px;
  border-radius: 50%;
  cursor: pointer;
  background-image: url("../icons/calendar-arrow-left.png");
  background-repeat: no-repeat;
  background-position: center;
}

/* line 162, ../sass/ui-component/datepicker.scss */
.ui-datepicker-prev:hover {
  background-color: #eee;
}

/* line 166, ../sass/ui-component/datepicker.scss */
.ui-datepicker-prev span {
  opacity: 0;
}

/* line 170, ../sass/ui-component/datepicker.scss */
.ui-datepicker-header {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #f3f3f3;
}

/* line 176, ../sass/ui-component/datepicker.scss */
select {
  border: 0px !important;
  border-radius: 0px !important;
  border-bottom: 1px solid #222 !important;
  height: 36px;
  line-height: 20px;
  margin-top: 3px;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  border-radius: 0px;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  background-image: url("../../../../../Images/icons/select-arrow.png");
  background-position: right 11px;
  background-repeat: no-repeat;
}

/* line 199, ../sass/ui-component/datepicker.scss */
select:hover {
  color: #222;
  border-bottom: 1px solid #333;
}

/* line 1, ../sass/ui-component/modal.scss */
.modal-v2 {
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 9999;
  left: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.4);
  overflow-y: auto;
}
/* line 11, ../sass/ui-component/modal.scss */
.modal-v2::-webkit-scrollbar {
  display: none;
}
/* line 15, ../sass/ui-component/modal.scss */
.modal-v2 .modal-container {
  position: absolute;
  top: 150px;
  left: 0px;
  right: 0px;
  margin-right: auto;
  margin-left: auto;
  min-height: 300px;
  width: 600px;
  background-color: #ffffff;
  padding: 0px;
}
/* line 27, ../sass/ui-component/modal.scss */
.modal-v2 .modal-container .modal-content-v2 {
  float: left;
  width: 100%;
}
/* line 34, ../sass/ui-component/modal.scss */
.modal-v2 .modal-container-md {
  position: absolute;
  top: 50px;
  left: 0px;
  right: 0px;
  overflow-y: auto;
  margin-right: auto;
  margin-left: auto;
  min-height: 200px;
  width: 900px;
  background-color: #ffffff;
  padding: 0px;
  margin-bottom: 30px;
}
/* line 48, ../sass/ui-component/modal.scss */
.modal-v2 .modal-container-md .modal-content-v2 {
  float: left;
  width: 100%;
}
/* line 54, ../sass/ui-component/modal.scss */
.modal-v2 .modal-header {
  width: 100%;
  float: left;
  border-bottom: 1px solid #f2f2f3;
  padding: 7px 15px;
}
/* line 60, ../sass/ui-component/modal.scss */
.modal-v2 .modal-header .modal-title {
  width: 80%;
  text-align: left;
  float: left;
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
}
/* line 69, ../sass/ui-component/modal.scss */
.modal-v2 .modal-header .modal-close {
  width: 20%;
  float: left;
  text-align: right;
  font-size: 20px;
  color: #d9534f;
  line-height: 30px;
  cursor: pointer;
}
/* line 80, ../sass/ui-component/modal.scss */
.modal-v2 .modal-control {
  margin-top: 30px;
  border-top: 1px solid #f2f2f3;
  padding: 10px 10px;
  height: auto;
  text-align: right;
  float: left;
  width: 100%;
}
/* line 90, ../sass/ui-component/modal.scss */
.modal-v2 .modal-lg {
  width: 80%;
}
/* line 94, ../sass/ui-component/modal.scss */
.modal-v2 .modal-md {
  width: 65%;
}
/* line 98, ../sass/ui-component/modal.scss */
.modal-v2 .modal-sm {
  width: 45%;
}

/* $activeColor: #c0392b; //red */
/* .squaredFour */
/* line 8, ../sass/ui-component/checkbox.scss */
.squaredFour {
  width: 20px;
  position: relative;
  margin-left: 4px;
  margin-top: 5px;
}
/* line 14, ../sass/ui-component/checkbox.scss */
.squaredFour label {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  background: #fcfff4;
  background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  border-radius: 4px;
  box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
}
/* line 26, ../sass/ui-component/checkbox.scss */
.squaredFour label:after {
  content: '';
  width: 11px;
  height: 6px;
  position: absolute;
  top: 6px;
  left: 5px;
  border: 3px solid #333;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  transform: rotate(-45deg);
}
/* line 40, ../sass/ui-component/checkbox.scss */
.squaredFour label:hover::after {
  opacity: 0.5;
}
/* line 44, ../sass/ui-component/checkbox.scss */
.squaredFour input[type=checkbox] {
  visibility: hidden;
}
/* line 46, ../sass/ui-component/checkbox.scss */
.squaredFour input[type=checkbox]:checked + label:after {
  opacity: 1;
}

/* end .squaredFour */
/* line 1, ../sass/ui-component/label.scss */
label {
  font-size: 14px;
  color: #454546;
  line-height: 36px;
  font-weight: bold;
}

/* line 10, ../sass/ui-component/label.scss */
p {
  font-size: 14px;
  color: #454546;
}

/* line 2, ../sass/ui-component/tab.scss */
.tab-container {
  overflow-x: auto;
}
/* line 5, ../sass/ui-component/tab.scss */
.tab-container .tab {
  width: 100%;
  float: left;
  border-bottom: 2px solid #eeeeee;
}
/* line 11, ../sass/ui-component/tab.scss */
.tab-container .tab ul {
  font-size: 15px;
  color: #747c83;
  list-style: none;
  min-width: 500px;
  height: 48px;
}
/* line 18, ../sass/ui-component/tab.scss */
.tab-container .tab ul li {
  padding: 5px 10px;
  border-bottom: 2px solid #eeeeee;
  float: left;
  line-height: 35px;
  color: #454546;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: -2px;
  font-weight: 600;
  height: 50px;
}
/* line 30, ../sass/ui-component/tab.scss */
.tab-container .tab ul li input {
  background: transparent;
  font-weight: 600;
}
/* line 35, ../sass/ui-component/tab.scss */
.tab-container .tab ul li a {
  color: #454546;
  line-height: 37px;
}
/* line 40, ../sass/ui-component/tab.scss */
.tab-container .tab ul li a:link {
  color: #454546;
}
/* line 44, ../sass/ui-component/tab.scss */
.tab-container .tab ul li a:visited {
  color: #454546;
}
/* line 48, ../sass/ui-component/tab.scss */
.tab-container .tab ul li a:active {
  color: #454546;
}
/* line 57, ../sass/ui-component/tab.scss */
.tab-container .tab ul .active-tab {
  border-bottom: 2px solid #18879b;
  color: #18879b !important;
  font-weight: 600;
}
/* line 62, ../sass/ui-component/tab.scss */
.tab-container .tab ul .active-tab input {
  background: transparent;
  color: #18879b !important;
  font-weight: 600;
}
/* line 69, ../sass/ui-component/tab.scss */
.tab-container .tab ul .active {
  border-bottom: 2px solid #18879b;
  color: #18879b !important;
  font-weight: 600;
}
/* line 74, ../sass/ui-component/tab.scss */
.tab-container .tab ul .active input {
  background: transparent;
  color: #18879b !important;
  font-weight: 600;
}
/* line 81, ../sass/ui-component/tab.scss */
.tab-container .tab ul .active {
  border-bottom: 2px solid #18879b;
  color: #18879b !important;
  font-weight: 600;
}
/* line 86, ../sass/ui-component/tab.scss */
.tab-container .tab ul .active a {
  background: transparent;
  color: #18879b !important;
  font-weight: 600;
}

/* line 97, ../sass/ui-component/tab.scss */
.tab-container-no {
  overflow-x: auto;
}
/* line 100, ../sass/ui-component/tab.scss */
.tab-container-no .tab {
  width: 100%;
  float: left;
  border-bottom: 2px solid #eeeeee;
}
/* line 106, ../sass/ui-component/tab.scss */
.tab-container-no .tab ul {
  font-size: 15px;
  color: #747c83;
  list-style: none;
  min-width: 500px;
  height: 48px;
}
/* line 113, ../sass/ui-component/tab.scss */
.tab-container-no .tab ul li {
  padding: 5px 10px;
  border-bottom: 2px solid #eeeeee;
  float: left;
  line-height: 35px;
  color: #454546;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: -2px;
  font-weight: 600;
  height: 50px;
}
/* line 125, ../sass/ui-component/tab.scss */
.tab-container-no .tab ul li input {
  background: transparent;
  font-weight: 600;
}
/* line 130, ../sass/ui-component/tab.scss */
.tab-container-no .tab ul li a {
  color: #454546;
  line-height: 37px;
}
/* line 135, ../sass/ui-component/tab.scss */
.tab-container-no .tab ul li a:link {
  color: #454546;
}
/* line 139, ../sass/ui-component/tab.scss */
.tab-container-no .tab ul li a:visited {
  color: #454546;
}
/* line 143, ../sass/ui-component/tab.scss */
.tab-container-no .tab ul li a:active {
  color: #454546;
}
/* line 152, ../sass/ui-component/tab.scss */
.tab-container-no .tab ul .active-tab {
  border-bottom: 2px solid #18879b;
  color: #18879b !important;
  font-weight: 600;
}
/* line 157, ../sass/ui-component/tab.scss */
.tab-container-no .tab ul .active-tab input {
  background: transparent;
  color: #18879b !important;
  font-weight: 600;
}
/* line 164, ../sass/ui-component/tab.scss */
.tab-container-no .tab ul .active {
  border-bottom: 2px solid #18879b;
  color: #18879b !important;
  font-weight: 600;
}
/* line 169, ../sass/ui-component/tab.scss */
.tab-container-no .tab ul .active input {
  background: transparent;
  color: #18879b !important;
  font-weight: 600;
}
/* line 176, ../sass/ui-component/tab.scss */
.tab-container-no .tab ul .active {
  border-bottom: 2px solid #18879b;
  color: #18879b !important;
  font-weight: 600;
}
/* line 181, ../sass/ui-component/tab.scss */
.tab-container-no .tab ul .active a {
  background: transparent;
  color: #18879b !important;
  font-weight: 600;
}

/* line 196, ../sass/ui-component/tab.scss */
.active-tab {
  display: inherit;
}

/* line 200, ../sass/ui-component/tab.scss */
.tab-container::-webkit-scrollbar {
  display: none;
}

/*
    HTML CODE:
    NESTED: 
      
    <div class="loading">
        <div class="loader"></div>
    </div>
    
    FULLSCREEN:

    <div class="loading-full">
        <div class="loader"></div>
    </div>

*/
/* line 17, ../sass/ui-component/loading.scss */
.loading {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10000;
  left: 0px;
  right: 0px;
  background-color: #ffffff;
}

/* line 27, ../sass/ui-component/loading.scss */
.loading-full {
  position: fixed;
  top: 70px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 10000;
  background-color: #ffffff;
}

/* line 38, ../sass/ui-component/loading.scss */
.loader {
  position: absolute !important;
  left: 0px;
  right: 0px;
  top: 50%;
  margin-top: -5em;
  margin-left: auto;
  margin-right: auto;
}

/* line 48, ../sass/ui-component/loading.scss */
.loader, .loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

/* line 53, ../sass/ui-component/loading.scss */
.loader {
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.3em solid rgba(0, 0, 0, 0.1);
  border-right: 0.3em solid rgba(0, 0, 0, 0.1);
  border-bottom: 0.3em solid rgba(0, 0, 0, 0.1);
  border-left: 0.3em solid #6c9b41;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* line 1, ../sass/ui-component/badge.scss */
.badge-title {
  padding: 3px 5px;
  font-size: 12px;
  border-radius: 5px;
}

/* line 7, ../sass/ui-component/badge.scss */
.badge-orange {
  background-color: #e77e23;
  color: #ffffff;
}

/* line 12, ../sass/ui-component/badge.scss */
.badge-red {
  background-color: #d9534f;
  color: #ffffff;
}

/* line 17, ../sass/ui-component/badge.scss */
.badge-blue {
  background-color: #18879b;
  color: #ffffff;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
/* line 11, ../sass/ui-component/animate.scss */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 18, ../sass/ui-component/animate.scss */
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* line 23, ../sass/ui-component/animate.scss */
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

/* line 28, ../sass/ui-component/animate.scss */
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
/* line 92, ../sass/ui-component/animate.scss */
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
/* line 119, ../sass/ui-component/animate.scss */
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 160, ../sass/ui-component/animate.scss */
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 239, ../sass/ui-component/animate.scss */
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
/* line 278, ../sass/ui-component/animate.scss */
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* line 347, ../sass/ui-component/animate.scss */
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
/* line 408, ../sass/ui-component/animate.scss */
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 469, ../sass/ui-component/animate.scss */
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 550, ../sass/ui-component/animate.scss */
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
/* line 639, ../sass/ui-component/animate.scss */
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 726, ../sass/ui-component/animate.scss */
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 799, ../sass/ui-component/animate.scss */
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 872, ../sass/ui-component/animate.scss */
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 945, ../sass/ui-component/animate.scss */
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 1018, ../sass/ui-component/animate.scss */
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
/* line 1061, ../sass/ui-component/animate.scss */
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
/* line 1104, ../sass/ui-component/animate.scss */
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
/* line 1137, ../sass/ui-component/animate.scss */
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
/* line 1170, ../sass/ui-component/animate.scss */
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
/* line 1213, ../sass/ui-component/animate.scss */
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* line 1238, ../sass/ui-component/animate.scss */
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1271, ../sass/ui-component/animate.scss */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1304, ../sass/ui-component/animate.scss */
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1337, ../sass/ui-component/animate.scss */
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1370, ../sass/ui-component/animate.scss */
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1403, ../sass/ui-component/animate.scss */
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1436, ../sass/ui-component/animate.scss */
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1469, ../sass/ui-component/animate.scss */
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 1502, ../sass/ui-component/animate.scss */
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* line 1527, ../sass/ui-component/animate.scss */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
/* line 1556, ../sass/ui-component/animate.scss */
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
/* line 1585, ../sass/ui-component/animate.scss */
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
/* line 1614, ../sass/ui-component/animate.scss */
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
/* line 1643, ../sass/ui-component/animate.scss */
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
/* line 1672, ../sass/ui-component/animate.scss */
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
/* line 1701, ../sass/ui-component/animate.scss */
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
/* line 1730, ../sass/ui-component/animate.scss */
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
/* line 1759, ../sass/ui-component/animate.scss */
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
/* line 1838, ../sass/ui-component/animate.scss */
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
/* line 1911, ../sass/ui-component/animate.scss */
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
/* line 1984, ../sass/ui-component/animate.scss */
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
/* line 2029, ../sass/ui-component/animate.scss */
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
/* line 2074, ../sass/ui-component/animate.scss */
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2133, ../sass/ui-component/animate.scss */
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
/* line 2164, ../sass/ui-component/animate.scss */
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2207, ../sass/ui-component/animate.scss */
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2248, ../sass/ui-component/animate.scss */
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2289, ../sass/ui-component/animate.scss */
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2330, ../sass/ui-component/animate.scss */
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 2371, ../sass/ui-component/animate.scss */
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
/* line 2408, ../sass/ui-component/animate.scss */
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
/* line 2445, ../sass/ui-component/animate.scss */
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
/* line 2482, ../sass/ui-component/animate.scss */
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
/* line 2519, ../sass/ui-component/animate.scss */
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
/* line 2556, ../sass/ui-component/animate.scss */
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
/* line 2629, ../sass/ui-component/animate.scss */
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 2664, ../sass/ui-component/animate.scss */
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
/* line 2695, ../sass/ui-component/animate.scss */
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
/* line 2724, ../sass/ui-component/animate.scss */
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2765, ../sass/ui-component/animate.scss */
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2806, ../sass/ui-component/animate.scss */
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2847, ../sass/ui-component/animate.scss */
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2888, ../sass/ui-component/animate.scss */
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
/* line 2925, ../sass/ui-component/animate.scss */
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 2970, ../sass/ui-component/animate.scss */
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
/* line 3007, ../sass/ui-component/animate.scss */
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
/* line 3044, ../sass/ui-component/animate.scss */
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 3089, ../sass/ui-component/animate.scss */
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 3120, ../sass/ui-component/animate.scss */
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 3151, ../sass/ui-component/animate.scss */
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 3182, ../sass/ui-component/animate.scss */
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* line 3213, ../sass/ui-component/animate.scss */
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
/* line 3244, ../sass/ui-component/animate.scss */
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
/* line 3275, ../sass/ui-component/animate.scss */
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
/* line 3306, ../sass/ui-component/animate.scss */
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
/* line 3337, ../sass/ui-component/animate.scss */
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* line 1, ../sass/page/accesslevel.scss */
.access-level {
  width: 100%;
  height: 100%;
  position: relative;
}
/* line 7, ../sass/page/accesslevel.scss */
.access-level .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
/* line 17, ../sass/page/accesslevel.scss */
.access-level .content .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
/* line 30, ../sass/page/accesslevel.scss */
.access-level .content .item .item-user {
  width: 100%;
  height: auto;
}
/* line 36, ../sass/page/accesslevel.scss */
.access-level .content .row {
  width: 100%;
  margin: 0px !important;
}

/**/
/* line 2, ../sass/page/dashboard.scss */
.dashboard {
  width: 100%;
  height: 100%;
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}
/* line 9, ../sass/page/dashboard.scss */
.dashboard .container-fluid {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  /* line 9, ../sass/page/dashboard.scss */
  .dashboard .container-fluid {
    padding: 0px !important;
  }
}
/* line 20, ../sass/page/dashboard.scss */
.dashboard .fa-caret-up {
  display: none;
}
/* line 24, ../sass/page/dashboard.scss */
.dashboard .widget {
  min-height: 300px;
  position: relative;
}
/* line 28, ../sass/page/dashboard.scss */
.dashboard .widget .requests-wrapper {
  padding-bottom: 15px;
}
/* line 32, ../sass/page/dashboard.scss */
.dashboard .widget .widget-expand {
  height: 500px;
  position: absolute;
  left: 15px;
  right: 15px;
  top: 0px;
  z-index: 99;
  width: auto !important;
  box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.5) !important;
}
/* line 43, ../sass/page/dashboard.scss */
.dashboard .widget .widget-expand .widget-content {
  height: 85% !important;
  overflow-y: auto !important;
  overflow-x: none !important;
}
/* line 50, ../sass/page/dashboard.scss */
.dashboard .widget .investment {
  background-image: url("/Content/Images/investment-dashboard.jpg") !important;
  background-position: left bottom !important;
  background-repeat: no-repeat !important;
}
/* line 56, ../sass/page/dashboard.scss */
.dashboard .widget .widget-item {
  width: 100%;
  margin: 15px 0%;
  background: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  min-height: 285px;
  float: left;
}
/* line 64, ../sass/page/dashboard.scss */
.dashboard .widget .widget-item .expand-button {
  display: inline-block;
  font-size: 24px;
  text-align: center;
  color: #18879b;
  cursor: pointer;
  width: 100%;
  line-height: 20px;
  height: 20px;
}
/* line 77, ../sass/page/dashboard.scss */
.dashboard .widget .widget-item .widget-title {
  width: 100%;
  border-top: 3px solid #aaaaaa;
  color: #aaaaaa;
  font-size: 20px;
  text-indent: 10px;
  height: 45px;
  line-height: 45px;
}
/* line 87, ../sass/page/dashboard.scss */
.dashboard .widget .widget-item .widget-1 {
  border-top: 3px solid #49bac7 !important;
  color: #49bac7;
}
/* line 92, ../sass/page/dashboard.scss */
.dashboard .widget .widget-item .widget-2 {
  border-top: 3px solid #c391df !important;
  color: #c391df;
}
/* line 97, ../sass/page/dashboard.scss */
.dashboard .widget .widget-item .widget-3 {
  border-top: 3px solid #18879b !important;
  color: #18879b;
}
/* line 102, ../sass/page/dashboard.scss */
.dashboard .widget .widget-item .widget-4 {
  border-top: 3px solid #ec7c32 !important;
  color: #ec7c32;
}
/* line 107, ../sass/page/dashboard.scss */
.dashboard .widget .widget-item .widget-5 {
  border-top: 3px solid #549ea7 !important;
  color: #549ea7;
}
/* line 112, ../sass/page/dashboard.scss */
.dashboard .widget .widget-item .widget-6 {
  border-top: 3px solid #aac83d !important;
  color: #aac83d;
}
/* line 117, ../sass/page/dashboard.scss */
.dashboard .widget .widget-item .widget-7 {
  border-top: 3px solid #49c7b1 !important;
  color: #49c7b1;
}
/* line 122, ../sass/page/dashboard.scss */
.dashboard .widget .widget-item .widget-8 {
  border-top: 3px solid #e98f8f !important;
  color: #e98f8f;
}
/* line 127, ../sass/page/dashboard.scss */
.dashboard .widget .widget-item .widget-content {
  position: relative;
  height: 220px;
  padding: 5px 10px;
  overflow-y: hidden;
  overflow-x: hidden;
  background-color: #ffffff;
  width: 100%;
}
/* line 136, ../sass/page/dashboard.scss */
.dashboard .widget .widget-item .widget-content .btn-padding {
  padding-left: 30px;
  padding-right: 30px;
}
/* line 141, ../sass/page/dashboard.scss */
.dashboard .widget .widget-item .widget-content .investment-content {
  margin-top: 30px;
}
/* line 144, ../sass/page/dashboard.scss */
.dashboard .widget .widget-item .widget-content .investment-content h4 {
  font-size: 26px !important;
  line-height: 35px;
  margin-bottom: 15px;
  font-weight: 500;
}
/* line 156, ../sass/page/dashboard.scss */
.dashboard .extend .widget-content {
  min-height: 580px !important;
}

/* TOGGLE */
/* line 164, ../sass/page/dashboard.scss */
.widget-wrapper {
  /* holder ng widget na nagta-toggle (animate height)*/
  position: relative;
  width: 100%;
}

/* line 169, ../sass/page/dashboard.scss */
.widget-wrapper .toggled-content {
  /* style ng naka full height na widget */
  /*height: auto;*/
  z-index: 2;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  position: absolute !important;
  padding-bottom: 20px;
  width: 100%;
}

/* line 178, ../sass/page/dashboard.scss */
.widget-foot {
  /*top: 295px;*/
  bottom: 0;
  position: absolute;
  width: 100%;
  left: 0px;
  right: 0px;
  text-align: center;
  min-height: 20px !important;
  background-color: #ffffff;
}

/* line 190, ../sass/page/dashboard.scss */
.request-wrapper-toggled {
  max-height: none;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}

/* line 196, ../sass/page/dashboard.scss */
.requests-caret {
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0px;
  background-color: #fff;
  width: 100%;
}

/* line 205, ../sass/page/dashboard.scss */
.toggle.btn {
  width: 60px !important;
}

/* line 1, ../sass/page/dashboard-employee.scss */
.dashboard-employee {
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 40px;
  margin-bottom: 30px;
}
/* line 8, ../sass/page/dashboard-employee.scss */
.dashboard-employee .container-fluid {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  /* line 8, ../sass/page/dashboard-employee.scss */
  .dashboard-employee .container-fluid {
    padding: 0px !important;
  }
}
/* line 18, ../sass/page/dashboard-employee.scss */
.dashboard-employee .fa-caret-up {
  display: none;
}
/* line 22, ../sass/page/dashboard-employee.scss */
.dashboard-employee .widget {
  min-height: 300px;
  position: relative;
}
/* line 26, ../sass/page/dashboard-employee.scss */
.dashboard-employee .widget .widget-expand {
  height: 500px;
  position: absolute;
  left: 15px;
  right: 15px;
  top: 0px;
  z-index: 99;
  width: auto !important;
  box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.5) !important;
}
/* line 37, ../sass/page/dashboard-employee.scss */
.dashboard-employee .widget .widget-expand .widget-content {
  height: 85% !important;
  overflow-y: auto !important;
  overflow-x: none !important;
}
/* line 44, ../sass/page/dashboard-employee.scss */
.dashboard-employee .widget .investment {
  background-image: url("/Content/Images/investment-dashboard.jpg") !important;
  background-position: left bottom !important;
  background-repeat: no-repeat !important;
}
/* line 50, ../sass/page/dashboard-employee.scss */
.dashboard-employee .widget .widget-item {
  width: 100%;
  margin: 15px 0%;
  background: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  min-height: 300px;
}
/* line 60, ../sass/page/dashboard-employee.scss */
.dashboard-employee .widget .widget-item .expand-button {
  display: inline-block;
  font-size: 24px;
  text-align: center;
  color: #18879b;
  cursor: pointer;
  width: 100%;
  line-height: 20px;
  height: 20px;
}
/* line 71, ../sass/page/dashboard-employee.scss */
.dashboard-employee .widget .widget-item .widget-title {
  width: 100%;
  border-top: 3px solid #aaaaaa;
  color: #aaaaaa;
  font-size: 20px;
  text-indent: 20px;
  height: 50px;
  line-height: 50px;
}
/* line 81, ../sass/page/dashboard-employee.scss */
.dashboard-employee .widget .widget-item .widget-1 {
  border-top: 3px solid #49bac7 !important;
  color: #49bac7;
}
/* line 86, ../sass/page/dashboard-employee.scss */
.dashboard-employee .widget .widget-item .widget-2 {
  border-top: 3px solid #c391df !important;
  color: #c391df;
}
/* line 91, ../sass/page/dashboard-employee.scss */
.dashboard-employee .widget .widget-item .widget-3 {
  border-top: 3px solid #18879b !important;
  color: #18879b;
}
/* line 96, ../sass/page/dashboard-employee.scss */
.dashboard-employee .widget .widget-item .widget-4 {
  border-top: 3px solid #ec7c32 !important;
  color: #ec7c32;
}
/* line 101, ../sass/page/dashboard-employee.scss */
.dashboard-employee .widget .widget-item .widget-5 {
  border-top: 3px solid #549ea7 !important;
  color: #549ea7;
}
/* line 106, ../sass/page/dashboard-employee.scss */
.dashboard-employee .widget .widget-item .widget-6 {
  border-top: 3px solid #aac83d !important;
  color: #aac83d;
}
/* line 111, ../sass/page/dashboard-employee.scss */
.dashboard-employee .widget .widget-item .widget-7 {
  border-top: 3px solid #49c7b1 !important;
  color: #49c7b1;
}
/* line 116, ../sass/page/dashboard-employee.scss */
.dashboard-employee .widget .widget-item .widget-8 {
  border-top: 3px solid #e98f8f !important;
  color: #e98f8f;
}
/* line 121, ../sass/page/dashboard-employee.scss */
.dashboard-employee .widget .widget-item .widget-content {
  position: relative;
  height: 220px;
  padding: 5px 20px;
  overflow-y: hidden;
  overflow-x: hidden;
  background-color: #ffffff;
}
/* line 129, ../sass/page/dashboard-employee.scss */
.dashboard-employee .widget .widget-item .widget-content .btn-padding {
  padding-left: 10px;
  padding-right: 10px;
}
/* line 134, ../sass/page/dashboard-employee.scss */
.dashboard-employee .widget .widget-item .widget-content .investment-content {
  margin-top: 30px;
}
/* line 137, ../sass/page/dashboard-employee.scss */
.dashboard-employee .widget .widget-item .widget-content .investment-content h4 {
  font-size: 26px !important;
  line-height: 35px;
  margin-bottom: 15px;
  font-weight: 500;
}
/* line 149, ../sass/page/dashboard-employee.scss */
.dashboard-employee .extend .widget-content {
  min-height: 580px !important;
}

/* TOGGLE */
/* line 157, ../sass/page/dashboard-employee.scss */
.widget-wrapper {
  /* holder ng widget na nagta-toggle (animate height)*/
  position: relative;
  width: 100%;
}

/* line 162, ../sass/page/dashboard-employee.scss */
.widget-wrapper .toggled-content {
  /* style ng naka full height na widget */
  /*height: auto;*/
  z-index: 2;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  position: absolute !important;
  padding-bottom: 20px;
  width: 100%;
}

/* line 171, ../sass/page/dashboard-employee.scss */
.widget-foot {
  /*top: 295px;*/
  bottom: 0;
  position: absolute;
  width: 100%;
  left: 0px;
  right: 0px;
  text-align: center;
  min-height: 27px;
  background-color: #ffffff;
}

/* line 183, ../sass/page/dashboard-employee.scss */
.request-wrapper-toggled {
  max-height: none;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}

/* line 189, ../sass/page/dashboard-employee.scss */
.requests-caret {
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0px;
  background-color: #fff;
  width: 100%;
}

/* line 1, ../sass/page/login.scss */
.login {
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  background-color: #eeeeee;
}
/* line 9, ../sass/page/login.scss */
.login .login-container {
  width: 370px;
  padding: 30px 40px;
  height: auto;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  z-index: 9999;
  margin-top: -280px;
  top: 50%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  /* background-image: url('../../../../images/sproutBorderLine.jpg');
  background-position: left top;
  background-repeat: repeat-x; */
  /**/
}
@media screen and (max-width: 1400px) and (min-width: 1280px) {
  /* line 9, ../sass/page/login.scss */
  .login .login-container {
    margin-top: -240px;
    padding: 20px 30px;
    width: 370px;
  }
}
/* line 34, ../sass/page/login.scss */
.login .login-container .logo {
  max-width: 100%;
}
/* line 39, ../sass/page/login.scss */
.login .login-container .fw-600 {
  font-weight: 500;
}
/* line 43, ../sass/page/login.scss */
.login .login-container .leave-1 {
  position: absolute;
  right: -100px;
  bottom: -40px;
  z-index: 1;
}
/* line 50, ../sass/page/login.scss */
.login .login-container .leave-2 {
  position: absolute;
  left: -62px;
  top: -45px;
  z-index: 1;
}
/* line 57, ../sass/page/login.scss */
.login .login-container .error {
  color: #d9534f;
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  /* line 9, ../sass/page/login.scss */
  .login .login-container {
    width: 96%;
    padding: 20px 20px;
  }
}
/* line 66, ../sass/page/login.scss */
.login .login-container .Copyright-bottom {
  text-align: center;
  margin-bottom: -50px;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 600;
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  /* line 66, ../sass/page/login.scss */
  .login .login-container .Copyright-bottom {
    margin-bottom: -50px;
    font-size: 12px;
  }
}

/* line 1, ../sass/page/forgotpassword.scss */
.forgotpassword {
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  background-color: #eeeeee;
}
/* line 9, ../sass/page/forgotpassword.scss */
.forgotpassword .forgotpassword-container {
  width: 370px;
  padding: 30px 40px;
  height: auto;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  z-index: 9999;
  margin-top: -280px;
  top: 50%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  /* background-image: url('../../../../images/sproutBorderLine.jpg');
   background-position: left top;
   background-repeat: repeat-x; */
}
@media screen and (max-width: 1400px) and (min-width: 1280px) {
  /* line 9, ../sass/page/forgotpassword.scss */
  .forgotpassword .forgotpassword-container {
    margin-top: -240px;
    padding: 20px 30px;
    width: 370px;
  }
}
/* line 34, ../sass/page/forgotpassword.scss */
.forgotpassword .forgotpassword-container .logo {
  max-width: 100%;
}
/* line 40, ../sass/page/forgotpassword.scss */
.forgotpassword .forgotpassword-container .fw-600 {
  font-weight: 500;
}
/* line 44, ../sass/page/forgotpassword.scss */
.forgotpassword .forgotpassword-container .leave-1 {
  position: absolute;
  right: -100px;
  bottom: -40px;
  z-index: 1;
}
/* line 51, ../sass/page/forgotpassword.scss */
.forgotpassword .forgotpassword-container .leave-2 {
  position: absolute;
  left: -62px;
  top: -45px;
  z-index: 1;
}
/* line 58, ../sass/page/forgotpassword.scss */
.forgotpassword .forgotpassword-container .error {
  color: #d9534f;
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  /* line 9, ../sass/page/forgotpassword.scss */
  .forgotpassword .forgotpassword-container {
    width: 96%;
    padding: 20px 20px;
  }
}
/* line 67, ../sass/page/forgotpassword.scss */
.forgotpassword .forgotpassword-container .Copyright-bottom {
  text-align: center;
  margin-bottom: -50px;
  margin-top: 40px;
  font-size: 11px;
  font-weight: 600;
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  /* line 67, ../sass/page/forgotpassword.scss */
  .forgotpassword .forgotpassword-container .Copyright-bottom {
    margin-bottom: -50px;
    font-size: 12px;
  }
}

/* line 1, ../sass/page/manage-team.scss */
.manage-team {
  width: 100%;
  height: 100%;
  position: relative;
}
/* line 6, ../sass/page/manage-team.scss */
.manage-team .table-title {
  color: #6c9b41;
  font-weight: 500;
}
/* line 11, ../sass/page/manage-team.scss */
.manage-team .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
/* line 21, ../sass/page/manage-team.scss */
.manage-team .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
/* line 31, ../sass/page/manage-team.scss */
.manage-team .content .control {
  text-align: right;
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  /* line 31, ../sass/page/manage-team.scss */
  .manage-team .content .control {
    text-align: center;
  }
  /* line 37, ../sass/page/manage-team.scss */
  .manage-team .content .control .btn {
    margin-left: 0px !important;
    margin-top: 10px;
  }
}
/* line 43, ../sass/page/manage-team.scss */
.manage-team .content .control .btn {
  margin-left: 10px;
}
/* line 48, ../sass/page/manage-team.scss */
.manage-team .content a {
  color: #ffffff !important;
}
/* line 52, ../sass/page/manage-team.scss */
.manage-team .content .row {
  width: 100%;
  margin: 0px !important;
}

/* line 1, ../sass/page/employee-search.scss */
.employee-search {
  width: 100%;
  height: 100%;
  position: relative;
}
/* line 6, ../sass/page/employee-search.scss */
.employee-search .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
/* line 16, ../sass/page/employee-search.scss */
.employee-search .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
/* line 26, ../sass/page/employee-search.scss */
.employee-search .content .row {
  width: 100%;
  margin: 0px !important;
}
/* line 33, ../sass/page/employee-search.scss */
.employee-search fieldset p {
  margin: 0px !important;
}
/* line 38, ../sass/page/employee-search.scss */
.employee-search .radio-margin {
  margin-top: 0px;
  margin-right: 10px;
}
/* line 40, ../sass/page/employee-search.scss */
.employee-search .radio-margin label {
  margin-left: 10px;
}
/* line 46, ../sass/page/employee-search.scss */
.employee-search .employee-profile {
  height: 140px;
}
/* line 49, ../sass/page/employee-search.scss */
.employee-search .employee-profile a {
  color: #6c9b41;
}
/* line 52, ../sass/page/employee-search.scss */
.employee-search .employee-profile a:visited {
  color: #6c9b41;
}
/* line 56, ../sass/page/employee-search.scss */
.employee-search .employee-profile a:active {
  color: #6c9b41;
}
/* line 60, ../sass/page/employee-search.scss */
.employee-search .employee-profile a:hover {
  color: #567c34;
}
/* line 65, ../sass/page/employee-search.scss */
.employee-search .employee-profile .item-user {
  width: 100%;
  padding: 2%;
  border: 2px solid #eeeeee;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  height: 120px;
}
/* line 72, ../sass/page/employee-search.scss */
.employee-search .employee-profile .item-user:hover {
  border: 2px solid #6c9b41;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  -ms-transition: all 200ms ease-in;
  -o-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}
/* line 77, ../sass/page/employee-search.scss */
.employee-search .employee-profile .item-user h4 {
  font-weight: 500;
  margin-bottom: 4px !important;
  font-size: 18px;
  padding-bottom: 5px;
}
/* line 84, ../sass/page/employee-search.scss */
.employee-search .employee-profile .item-user p {
  margin-bottom: 4px !important;
}
/* line 88, ../sass/page/employee-search.scss */
.employee-search .employee-profile .item-user .img-holder {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid #eeeeee;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  display: inline-block;
}

/* line 1, ../sass/page/calendar.scss */
.calendar {
  width: 100%;
  height: 100%;
  position: relative;
}
/* line 6, ../sass/page/calendar.scss */
.calendar .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
/* line 16, ../sass/page/calendar.scss */
.calendar .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
/* line 27, ../sass/page/calendar.scss */
.calendar .content .calendarLegend ul {
  width: 100%;
}
/* line 30, ../sass/page/calendar.scss */
.calendar .content .calendarLegend ul li {
  width: 100%;
}
/* line 39, ../sass/page/calendar.scss */
.calendar .content .calendarLegendno-padding ul li {
  margin-bottom: 10px;
}
/* line 42, ../sass/page/calendar.scss */
.calendar .content .calendarLegendno-padding ul li .leave {
  background-color: #e77e23;
}
/* line 46, ../sass/page/calendar.scss */
.calendar .content .calendarLegendno-padding ul li .birthday {
  background-color: #18879b;
}
/* line 50, ../sass/page/calendar.scss */
.calendar .content .calendarLegendno-padding ul li .annual {
  background-color: #6c9b41;
}
/* line 54, ../sass/page/calendar.scss */
.calendar .content .calendarLegendno-padding ul li .loan {
  background-color: #b74541;
}
/* line 58, ../sass/page/calendar.scss */
.calendar .content .calendarLegendno-padding ul li .task {
  background-color: #4d4131;
}
/* line 62, ../sass/page/calendar.scss */
.calendar .content .calendarLegendno-padding ul li .days180 {
  background-color: #747c83;
}
/* line 66, ../sass/page/calendar.scss */
.calendar .content .calendarLegendno-padding ul li .days90 {
  background-color: #aaa;
}
/* line 71, ../sass/page/calendar.scss */
.calendar .content .calendarLegendno-padding ul li span {
  display: inline-block;
  width: 20px;
  height: 20px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
/* line 83, ../sass/page/calendar.scss */
.calendar .content .item .item-user {
  width: 100%;
  height: auto;
}
/* line 89, ../sass/page/calendar.scss */
.calendar .content .row {
  width: 100%;
  margin: 0px !important;
}

/* line 96, ../sass/page/calendar.scss */
.calendarLeave, .calendarBday, .calendarAnnual, .calendarBalance, .calendarTask, .calendarSix, .calendarRegular {
  padding: 0px !important;
}

/* line 101, ../sass/page/calendar.scss */
.fc-day-grid-event .fc-content {
  text-overflow: ellipsis;
}

/* line 1, ../sass/page/attendance.scss */
.attendance {
  width: 100%;
  height: 100%;
  position: relative;
}
/* line 6, ../sass/page/attendance.scss */
.attendance .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
/* line 16, ../sass/page/attendance.scss */
.attendance .content .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

/* line 1, ../sass/page/employee-profile.scss */
.employee-profile-v2 {
  width: 1200px;
  height: auto;
  margin: 0px auto;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 40px;
  bottom: 20px;
}
/* line 11, ../sass/page/employee-profile.scss */
.employee-profile-v2 .clear-sm {
  margin-bottom: 35px !important;
}
/* line 15, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-image {
  width: 120px;
  height: 120px;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
  border: 1px solid #f2f2f3;
  border-radius: 50%;
  margin-bottom: 20px;
  margin-top: 20px;
}
/* line 27, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-name {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 22px;
  color: #454546;
  font-weight: 600;
}
/* line 36, ../sass/page/employee-profile.scss */
.employee-profile-v2 label {
  color: #747c83;
  font-weight: 500;
}
/* line 41, ../sass/page/employee-profile.scss */
.employee-profile-v2 p {
  font-weight: 600;
  color: #454546;
}
/* line 46, ../sass/page/employee-profile.scss */
.employee-profile-v2 .section-header {
  font-size: 16px;
  color: #6c9b41;
  font-weight: 600;
}
/* line 53, ../sass/page/employee-profile.scss */
.employee-profile-v2 .table-style-container input[type="time"] {
  border-bottom: 0px !important;
}
/* line 58, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  min-height: 400px;
}
/* line 65, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .left-panel {
  width: 15%;
  height: auto;
  position: fixed;
  top: 110px;
  left: 13%;
}
@media screen and (max-width: 1280px) {
  /* line 65, ../sass/page/employee-profile.scss */
  .employee-profile-v2 .employee-profile-container .left-panel {
    left: 30px;
    width: 18%;
  }
}
/* line 77, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .left-panel .employee-image {
  width: 120px;
  height: 120px;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
  border: 1px solid #f2f2f3;
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
}
/* line 89, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .left-panel .employee-image .change-pic {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #ffffff;
  background: #18879b;
  border-radius: 50%;
  position: absolute;
  right: -10px;
  bottom: 5px;
  font-size: 14px;
  cursor: pointer;
}
/* line 105, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .left-panel .employee-name {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 22px;
  color: #454546;
  font-weight: 600;
}
/* line 114, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .left-panel .pop-up-container {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}
/* line 122, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .left-panel .employee-menu {
  width: 100%;
  height: auto;
  margin-top: 20px;
}
/* line 128, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .left-panel .employee-menu ul {
  width: 100%;
}
/* line 131, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .left-panel .employee-menu ul li {
  display: inline-block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-weight: 600;
  font-size: 16px;
  color: #aaaaaa;
  border-bottom: 1px solid #dddddd;
  cursor: pointer;
}
/* line 143, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .left-panel .employee-menu ul .active-item {
  color: #333333;
}
/* line 150, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel {
  width: 75%;
  margin-left: 20%;
  height: auto;
  float: left;
}
/* line 156, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel::-webkit-scrollbar {
  display: none !important;
}
/* line 160, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content {
  width: 98%;
  margin: 1%;
  min-height: 400px;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  padding-bottom: 10px;
  padding-top: 5px;
}
/* line 170, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents {
  width: 98%;
  margin: 1%;
  border: 1px solid #ffffff;
}
/* line 175, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .table-style-container, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .table-style-container, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .table-style-container, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .table-style-container, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .table-style-container, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .table-style-container {
  background-color: transparent !important;
}
/* line 178, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .table-style-container table, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .table-style-container table, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .table-style-container table, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .table-style-container table, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .table-style-container table, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .table-style-container table {
  background-color: transparent !important;
}
/* line 182, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .table-style-container table tr:first-child, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .table-style-container table tr:first-child, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .table-style-container table tr:first-child, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .table-style-container table tr:first-child, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .table-style-container table tr:first-child, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .table-style-container table tr:first-child {
  border-top: 0px !important;
}
/* line 186, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .table-style-container table tr:last-child, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .table-style-container table tr:last-child, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .table-style-container table tr:last-child, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .table-style-container table tr:last-child, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .table-style-container table tr:last-child, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .table-style-container table tr:last-child {
  border-top: 0px !important;
}
/* line 190, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .table-style-container table tr .fa-search-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .table-style-container table tr .fa-search-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .table-style-container table tr .fa-search-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .table-style-container table tr .fa-search-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .table-style-container table tr .fa-search-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .table-style-container table tr .fa-search-plus {
  color: #aaaaaa;
}
/* line 194, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .table-style-container table tr .fa-download, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .table-style-container table tr .fa-download, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .table-style-container table tr .fa-download, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .table-style-container table tr .fa-download, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .table-style-container table tr .fa-download, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .table-style-container table tr .fa-download {
  color: #aaaaaa;
}
/* line 198, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .table-style-container table tr .fa-print, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .table-style-container table tr .fa-print, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .table-style-container table tr .fa-print, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .table-style-container table tr .fa-print, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .table-style-container table tr .fa-print, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .table-style-container table tr .fa-print {
  color: #aaaaaa;
}
/* line 202, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .table-style-container table tr .fa-trash, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .table-style-container table tr .fa-trash, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .table-style-container table tr .fa-trash, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .table-style-container table tr .fa-trash, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .table-style-container table tr .fa-trash, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .table-style-container table tr .fa-trash {
  color: #aaaaaa;
}
/* line 207, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .table-style-container table tr:hover .fa-search-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .table-style-container table tr:hover .fa-search-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .table-style-container table tr:hover .fa-search-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .table-style-container table tr:hover .fa-search-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .table-style-container table tr:hover .fa-search-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .table-style-container table tr:hover .fa-search-plus {
  color: #18879b;
}
/* line 211, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .table-style-container table tr:hover .fa-trash, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .table-style-container table tr:hover .fa-trash, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .table-style-container table tr:hover .fa-trash, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .table-style-container table tr:hover .fa-trash, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .table-style-container table tr:hover .fa-trash, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .table-style-container table tr:hover .fa-trash {
  color: #d9534f;
}
/* line 216, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .table-style-container table tr:hover .fa-download, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .table-style-container table tr:hover .fa-download, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .table-style-container table tr:hover .fa-download, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .table-style-container table tr:hover .fa-download, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .table-style-container table tr:hover .fa-download, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .table-style-container table tr:hover .fa-download {
  color: #18879b;
}
/* line 220, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .table-style-container table tr:hover .fa-print, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .table-style-container table tr:hover .fa-print, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .table-style-container table tr:hover .fa-print, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .table-style-container table tr:hover .fa-print, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .table-style-container table tr:hover .fa-print, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .table-style-container table tr:hover .fa-print {
  color: #18879b;
}
/* line 226, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .table-style-container table td, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .table-style-container table td, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .table-style-container table td, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .table-style-container table td, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .table-style-container table td, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .table-style-container table td {
  background-color: transparent !important;
}
/* line 230, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .table-style-container table th, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .table-style-container table th, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .table-style-container table th, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .table-style-container table th, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .table-style-container table th, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .table-style-container table th {
  background-color: transparent !important;
}
/* line 236, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section:hover, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information:hover, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits:hover, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance:hover, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development:hover, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents:hover {
  background-color: #fbfbfb;
  border: 1px solid #eeeeee !important;
}
/* line 240, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section:hover .fa-pencil, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section:hover .fa-history, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section:hover .fa-clock-o, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section:hover .fa-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information:hover .fa-pencil, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information:hover .fa-history, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information:hover .fa-clock-o, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information:hover .fa-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits:hover .fa-pencil, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits:hover .fa-history, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits:hover .fa-clock-o, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits:hover .fa-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance:hover .fa-pencil, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance:hover .fa-history, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance:hover .fa-clock-o, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance:hover .fa-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development:hover .fa-pencil, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development:hover .fa-history, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development:hover .fa-clock-o, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development:hover .fa-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents:hover .fa-pencil, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents:hover .fa-history, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents:hover .fa-clock-o, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents:hover .fa-plus {
  display: inline-block !important;
}
/* line 244, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section:hover .control-panel, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information:hover .control-panel, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits:hover .control-panel, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance:hover .control-panel, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development:hover .control-panel, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents:hover .control-panel {
  width: 100%;
}
/* line 261, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .section-history-list-view, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .section-history-list-view, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .section-history-list-view, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .section-history-list-view, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .section-history-list-view, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .section-history-list-view {
  border: 1px solid #ffffff;
  padding: 20px;
  width: 96%;
  margin: 0px 2%;
  background: #ffffff;
}
/* line 268, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .section-history-list-view .date, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .section-history-list-view .date, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .section-history-list-view .date, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .section-history-list-view .date, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .section-history-list-view .date, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .section-history-list-view .date {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 5px !important;
  margin-bottom: 10px !important;
}
/* line 274, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .section-history-list-view .date h2, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .section-history-list-view .date h2, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .section-history-list-view .date h2, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .section-history-list-view .date h2, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .section-history-list-view .date h2, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .section-history-list-view .date h2 {
  color: #6c9b41;
  font-weight: bold;
  margin-bottom: 5px;
}
/* line 284, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .section-history-list-view .list-item ul li, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .section-history-list-view .list-item ul li, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .section-history-list-view .list-item ul li, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .section-history-list-view .list-item ul li, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .section-history-list-view .list-item ul li, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .section-history-list-view .list-item ul li {
  padding-bottom: 5px;
}
/* line 291, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .section-history-individual-view, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .section-history-individual-view, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .section-history-individual-view, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .section-history-individual-view, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .section-history-individual-view, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .section-history-individual-view {
  border: 1px solid #eeeeee;
  padding: 20px;
  width: 96%;
  margin: 0px 2%;
  background: #ffffff;
}
/* line 298, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .section-history-individual-view .control-individual, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .section-history-individual-view .control-individual, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .section-history-individual-view .control-individual, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .section-history-individual-view .control-individual, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .section-history-individual-view .control-individual, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .section-history-individual-view .control-individual {
  width: 96%;
  margin: 0px 2%;
  margin-bottom: 40px;
  border-bottom: 1px solid #eeeeee;
}
/* line 306, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .section-history-individual-view .control-individual select, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .section-history-individual-view .control-individual select, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .section-history-individual-view .control-individual select, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .section-history-individual-view .control-individual select, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .section-history-individual-view .control-individual select, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .section-history-individual-view .control-individual select {
  margin-left: 10px;
  margin-right: 10px;
  border-bottom: 0px !important;
  font-weight: 600;
  color: #6c9b41;
  font-size: 16px;
}
/* line 314, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .section-history-individual-view .control-individual select:hover, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .section-history-individual-view .control-individual select:hover, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .section-history-individual-view .control-individual select:hover, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .section-history-individual-view .control-individual select:hover, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .section-history-individual-view .control-individual select:hover, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .section-history-individual-view .control-individual select:hover {
  border-bottom: 0px !important;
}
/* line 319, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .section-history-individual-view .control-individual i, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .section-history-individual-view .control-individual i, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .section-history-individual-view .control-individual i, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .section-history-individual-view .control-individual i, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .section-history-individual-view .control-individual i, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .section-history-individual-view .control-individual i {
  font-size: 18px;
  padding: 5px 10px;
  border: 1px solid #eeeeee;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
/* line 328, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .title-head, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .title-head, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .title-head, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .title-head, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .title-head, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .title-head {
  width: 96%;
  margin-left: 2%;
  margin-right: 2%;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 5px;
  padding-top: 15px;
  margin-bottom: 20px;
  min-height: 50px;
  float: left;
}
/* line 339, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .title-head h3, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .title-head h3, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .title-head h3, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .title-head h3, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .title-head h3, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .title-head h3 {
  color: #6c9b41;
  font-weight: 400;
}
/* line 345, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .title-head .control .fa-pencil, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section .title-head .control .fa-history, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section .title-head .control .fa-clock-o, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section .title-head .control .fa-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .title-head .control .fa-pencil, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .title-head .control .fa-history, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .title-head .control .fa-clock-o, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .title-head .control .fa-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .title-head .control .fa-pencil, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .title-head .control .fa-history, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .title-head .control .fa-clock-o, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .title-head .control .fa-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .title-head .control .fa-pencil, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .title-head .control .fa-history, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .title-head .control .fa-clock-o, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .title-head .control .fa-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .title-head .control .fa-pencil, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .title-head .control .fa-history, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .title-head .control .fa-clock-o, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .title-head .control .fa-plus, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .title-head .control .fa-pencil, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .title-head .control .fa-history, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .title-head .control .fa-clock-o, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .title-head .control .fa-plus {
  display: none;
  margin-left: 10px;
  font-size: 15px;
  cursor: pointer;
}
/* line 352, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .section .title-head .control .hide-icon, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-work-information .title-head .control .hide-icon, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-compensation-and-benefits .title-head .control .hide-icon, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-performance .title-head .control .hide-icon, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-career-development .title-head .control .hide-icon, .employee-profile-v2 .employee-profile-container .right-panel .box-content .section-documents .title-head .control .hide-icon {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}
/* line 361, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .active-section {
  background-color: #fbfbfb;
  border: 1px solid #eeeeee !important;
}
/* line 365, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .active-section label {
  font-weight: 600;
}
/* line 369, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .active-section i {
  display: inline-block;
}
/* line 375, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .add-salary label {
  font-weight: 600;
}
/* line 380, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .box-item {
  width: 100%;
  display: inline-block;
  min-height: 300px;
}
/* line 386, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-content .box-item-2 {
  width: 100%;
  display: inline-block;
  min-height: 300px;
}
/* line 393, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .right-panel .box-top {
  width: 98%;
  margin: 1%;
  min-height: 170px;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}
/* line 403, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .nav-panel {
  width: 5%;
  right: 0px;
  top: 2%;
  text-align: center;
  position: fixed;
  top: 100px;
  right: 15%;
}
@media screen and (max-width: 1280px) {
  /* line 403, ../sass/page/employee-profile.scss */
  .employee-profile-v2 .employee-profile-container .nav-panel {
    right: 30px;
  }
}
/* line 416, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .nav-panel .pop-nav {
  min-width: 230px;
  height: auto;
  padding: 10px;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 35px;
  top: 145px;
}
@media screen and (max-width: 1280px) {
  /* line 416, ../sass/page/employee-profile.scss */
  .employee-profile-v2 .employee-profile-container .nav-panel .pop-nav {
    right: 20px;
  }
}
/* line 430, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .nav-panel .pop-nav ul {
  position: relative !important;
  top: 0px;
}
/* line 434, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .nav-panel .pop-nav ul li {
  color: #aaaaaa;
  font-size: 14px;
  text-align: left;
}
/* line 439, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .nav-panel .pop-nav ul li:Hover {
  color: #126b7b;
}
/* line 446, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .nav-panel ul {
  position: absolute;
  top: 30px;
  left: 0px;
  right: 0px;
  color: #aaaaaa;
}
/* line 453, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .nav-panel ul a {
  color: #aaaaaa;
}
/* line 457, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .nav-panel ul:Hover {
  color: #454546;
}
/* line 460, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .nav-panel ul:Hover a {
  color: #454546;
}
/* line 465, ../sass/page/employee-profile.scss */
.employee-profile-v2 .employee-profile-container .nav-panel ul li {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 20px;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

/* line 479, ../sass/page/employee-profile.scss */
.active-button a {
  color: #18879b !important;
}

/* line 484, ../sass/page/employee-profile.scss */
.hide-item {
  display: none;
}

/* line 488, ../sass/page/employee-profile.scss */
.case {
  min-height: 100px;
}

/* line 1, ../sass/page/my-leaves.scss */
.my-leaves {
  width: 100%;
  height: 100%;
  position: relative;
}
/* line 6, ../sass/page/my-leaves.scss */
.my-leaves .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
/* line 16, ../sass/page/my-leaves.scss */
.my-leaves .title .add {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 14px;
}
/* line 24, ../sass/page/my-leaves.scss */
.my-leaves .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
/* line 34, ../sass/page/my-leaves.scss */
.my-leaves .content fieldset {
  float: left;
  width: 100%;
}
/* line 39, ../sass/page/my-leaves.scss */
.my-leaves .content .column-200px {
  width: 200px;
}
/* line 45, ../sass/page/my-leaves.scss */
.my-leaves .content .item .item-user {
  width: 100%;
  height: auto;
}
/* line 51, ../sass/page/my-leaves.scss */
.my-leaves .content .row {
  width: 100%;
  float: left;
}
/* line 60, ../sass/page/my-leaves.scss */
.my-leaves .content .table-leave table tr th:nth-child(9) {
  width: 90px;
  text-align: center;
}
/* line 65, ../sass/page/my-leaves.scss */
.my-leaves .content .table-leave table tr th:nth-child(10) {
  width: 90px;
  text-align: center;
}
/* line 70, ../sass/page/my-leaves.scss */
.my-leaves .content .table-leave table tr th .btn {
  padding: 5px  15px;
}
/* line 78, ../sass/page/my-leaves.scss */
.my-leaves .content .table-leave table tr td:nth-child(9) {
  width: 90px;
  text-align: center;
}
/* line 82, ../sass/page/my-leaves.scss */
.my-leaves .content .table-leave table tr td:nth-child(9) a {
  color: white !important;
}

/* line 90, ../sass/page/my-leaves.scss */
.nav-tabs > li > input {
  font-weight: normal !important;
}

/* line 94, ../sass/page/my-leaves.scss */
.nav-tabs > li > input {
  border: 0px !important;
}

/* line 98, ../sass/page/my-leaves.scss */
.nav-tabs > li > input {
  background: transparent !important;
  font-weight: 600;
  font-size: 14px;
}

/* line 106, ../sass/page/my-leaves.scss */
.nav-tabs > li > a:hover {
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 114, ../sass/page/my-leaves.scss */
.nav-tabs > li.active > input, .nav-tabs > li.active > input:hover, .nav-tabs > li.active > input:focus {
  background: transparent !important;
  border: 0px;
  color: #18879b !important;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 124, ../sass/page/my-leaves.scss */
.nav-tabs > li.active > input, .nav-tabs > li.active > input:hover, .nav-tabs > li.active > input:hover {
  background: transparent !important;
  border: 0px;
  color: #18879b !important;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 133, ../sass/page/my-leaves.scss */
.nav-tabs {
  border-bottom: 2px solid #eeeeee !important;
}

/* line 137, ../sass/page/my-leaves.scss */
.leave-count {
  color: #6c9b41;
}

/* line 142, ../sass/page/my-leaves.scss */
.sub-title span {
  font-size: 20px;
  color: #6c9b41;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  display: block;
}
/* line 150, ../sass/page/my-leaves.scss */
.sub-title a {
  text-decoration: none;
}
/* line 153, ../sass/page/my-leaves.scss */
.sub-title a h2 {
  text-decoration: none !important;
  font-weight: 600;
}

/*

input::-webkit-calendar-picker-indicator{
    display: none;
}
input[type="date"]::-webkit-input-placeholder{ 
    visibility: hidden !important;
}*/
/* line 1, ../sass/page/coa.scss */
.coa {
  width: 100%;
  height: 100%;
  position: relative;
}
/* line 6, ../sass/page/coa.scss */
.coa .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
/* line 16, ../sass/page/coa.scss */
.coa .title .add {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 14px;
}
/* line 24, ../sass/page/coa.scss */
.coa .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
/* line 34, ../sass/page/coa.scss */
.coa .content fieldset {
  float: left;
  width: 100%;
}
/* line 39, ../sass/page/coa.scss */
.coa .content .column-200px {
  width: 200px;
}
/* line 45, ../sass/page/coa.scss */
.coa .content .item .item-user {
  width: 100%;
  height: auto;
}
/* line 51, ../sass/page/coa.scss */
.coa .content .row {
  width: 100%;
  float: left;
}
/* line 60, ../sass/page/coa.scss */
.coa .content .table-leave table tr th:nth-child(9) {
  width: 90px;
  text-align: center;
}
/* line 65, ../sass/page/coa.scss */
.coa .content .table-leave table tr th:nth-child(10) {
  width: 90px;
  text-align: center;
}
/* line 70, ../sass/page/coa.scss */
.coa .content .table-leave table tr th .btn {
  padding: 5px  15px;
}
/* line 78, ../sass/page/coa.scss */
.coa .content .table-leave table tr td:nth-child(9) {
  width: 90px;
  text-align: center;
}
/* line 82, ../sass/page/coa.scss */
.coa .content .table-leave table tr td:nth-child(9) a {
  color: white !important;
}

/* line 90, ../sass/page/coa.scss */
.nav-tabs > li > input {
  border: 0px !important;
}

/* line 94, ../sass/page/coa.scss */
.nav-tabs > li > input {
  background: transparent !important;
  font-weight: 600;
  font-size: 14px;
}

/* line 100, ../sass/page/coa.scss */
.nav-tabs > li > a {
  border: 0px !important;
}
/* line 103, ../sass/page/coa.scss */
.nav-tabs > li > a:hover {
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 111, ../sass/page/coa.scss */
.nav-tabs > li.active > input, .nav-tabs > li.active > input:hover, .nav-tabs > li.active > input:focus {
  background: transparent !important;
  border: 0px;
  color: #18879b !important;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 120, ../sass/page/coa.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  background: transparent !important;
  border: 0px;
  color: #18879b !important;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 130, ../sass/page/coa.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:hover {
  background: transparent !important;
  border: 0px;
  color: #18879b !important;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 141, ../sass/page/coa.scss */
.nav-tabs {
  border-bottom: 2px solid #eeeeee !important;
}

/* line 145, ../sass/page/coa.scss */
.leave-count {
  color: #6c9b41;
}

/* line 152, ../sass/page/coa.scss */
.sub-title span {
  font-size: 20px;
  color: #6c9b41;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  display: block;
}
/* line 160, ../sass/page/coa.scss */
.sub-title a {
  text-decoration: none;
}
/* line 163, ../sass/page/coa.scss */
.sub-title a h2 {
  text-decoration: none !important;
  font-weight: 600;
}

/* line 1, ../sass/page/overtime.scss */
.overtime {
  width: 100%;
  height: 100%;
  position: relative;
}
/* line 6, ../sass/page/overtime.scss */
.overtime .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
/* line 16, ../sass/page/overtime.scss */
.overtime .title .add {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 14px;
}
/* line 24, ../sass/page/overtime.scss */
.overtime .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
/* line 34, ../sass/page/overtime.scss */
.overtime .content fieldset {
  float: left;
  width: 100%;
}
/* line 39, ../sass/page/overtime.scss */
.overtime .content .column-200px {
  width: 200px;
}
/* line 45, ../sass/page/overtime.scss */
.overtime .content .item .item-user {
  width: 100%;
  height: auto;
}
/* line 51, ../sass/page/overtime.scss */
.overtime .content .row {
  width: 100%;
  float: left;
}
/* line 60, ../sass/page/overtime.scss */
.overtime .content .table-leave table tr th:nth-child(9) {
  width: 90px;
  text-align: center;
}
/* line 65, ../sass/page/overtime.scss */
.overtime .content .table-leave table tr th:nth-child(10) {
  width: 90px;
  text-align: center;
}
/* line 70, ../sass/page/overtime.scss */
.overtime .content .table-leave table tr th .btn {
  padding: 5px  15px;
}
/* line 78, ../sass/page/overtime.scss */
.overtime .content .table-leave table tr td:nth-child(9) {
  width: 90px;
  text-align: center;
}
/* line 82, ../sass/page/overtime.scss */
.overtime .content .table-leave table tr td:nth-child(9) a {
  color: white !important;
}

/* line 90, ../sass/page/overtime.scss */
.nav-tabs > li > input {
  border: 0px !important;
}

/* line 94, ../sass/page/overtime.scss */
.nav-tabs > li > input {
  background: transparent !important;
  font-weight: 600;
  font-size: 14px;
}

/* line 100, ../sass/page/overtime.scss */
.nav-tabs > li > a {
  border: 0px !important;
}
/* line 103, ../sass/page/overtime.scss */
.nav-tabs > li > a:hover {
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 111, ../sass/page/overtime.scss */
.nav-tabs > li.active > input, .nav-tabs > li.active > input:hover, .nav-tabs > li.active > input:focus {
  background: transparent !important;
  border: 0px;
  color: #18879b !important;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 120, ../sass/page/overtime.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  background: transparent !important;
  border: 0px;
  color: #18879b !important;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 130, ../sass/page/overtime.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:hover {
  background: transparent !important;
  border: 0px;
  color: #18879b !important;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 138, ../sass/page/overtime.scss */
.nav-tabs {
  border-bottom: 2px solid #eeeeee !important;
}

/* line 142, ../sass/page/overtime.scss */
.highlight {
  color: #6c9b41;
}

/* line 147, ../sass/page/overtime.scss */
.sub-title span {
  font-size: 20px;
  color: #6c9b41;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  display: block;
}
/* line 155, ../sass/page/overtime.scss */
.sub-title a {
  text-decoration: none;
}
/* line 158, ../sass/page/overtime.scss */
.sub-title a h2 {
  text-decoration: none !important;
  font-weight: 600;
}

/* line 1, ../sass/page/schedule-adjustment.scss */
.schedule-adjustment {
  width: 100%;
  height: 100%;
  position: relative;
}
/* line 6, ../sass/page/schedule-adjustment.scss */
.schedule-adjustment .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
/* line 16, ../sass/page/schedule-adjustment.scss */
.schedule-adjustment .title .add {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 14px;
}
/* line 24, ../sass/page/schedule-adjustment.scss */
.schedule-adjustment .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
/* line 34, ../sass/page/schedule-adjustment.scss */
.schedule-adjustment .content fieldset {
  float: left;
  width: 100%;
}
/* line 39, ../sass/page/schedule-adjustment.scss */
.schedule-adjustment .content .column-200px {
  width: 200px;
}
/* line 45, ../sass/page/schedule-adjustment.scss */
.schedule-adjustment .content .item .item-user {
  width: 100%;
  height: auto;
}
/* line 51, ../sass/page/schedule-adjustment.scss */
.schedule-adjustment .content .row {
  width: 100%;
  float: left;
}
/* line 60, ../sass/page/schedule-adjustment.scss */
.schedule-adjustment .content .table-leave table tr th:nth-child(9) {
  width: 90px;
  text-align: center;
}
/* line 65, ../sass/page/schedule-adjustment.scss */
.schedule-adjustment .content .table-leave table tr th:nth-child(10) {
  width: 90px;
  text-align: center;
}
/* line 70, ../sass/page/schedule-adjustment.scss */
.schedule-adjustment .content .table-leave table tr th .btn {
  padding: 5px  15px;
}
/* line 78, ../sass/page/schedule-adjustment.scss */
.schedule-adjustment .content .table-leave table tr td:nth-child(9) {
  width: 90px;
  text-align: center;
}
/* line 82, ../sass/page/schedule-adjustment.scss */
.schedule-adjustment .content .table-leave table tr td:nth-child(9) a {
  color: white !important;
}

/* line 90, ../sass/page/schedule-adjustment.scss */
.nav-tabs > li > input {
  border: 0px !important;
}

/* line 94, ../sass/page/schedule-adjustment.scss */
.nav-tabs > li > input {
  background: transparent !important;
  font-weight: 600;
  font-size: 14px;
}

/* line 100, ../sass/page/schedule-adjustment.scss */
.nav-tabs > li > a {
  border: 0px !important;
}
/* line 103, ../sass/page/schedule-adjustment.scss */
.nav-tabs > li > a:hover {
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 111, ../sass/page/schedule-adjustment.scss */
.nav-tabs > li.active > input, .nav-tabs > li.active > input:hover, .nav-tabs > li.active > input:focus {
  background: transparent !important;
  border: 0px;
  color: #18879b !important;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 120, ../sass/page/schedule-adjustment.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  background: transparent !important;
  border: 0px;
  color: #18879b !important;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 130, ../sass/page/schedule-adjustment.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:hover {
  background: transparent !important;
  border: 0px;
  color: #18879b !important;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 141, ../sass/page/schedule-adjustment.scss */
.nav-tabs {
  border-bottom: 2px solid #eeeeee !important;
}

/* line 145, ../sass/page/schedule-adjustment.scss */
.leave-count {
  color: #6c9b41;
}

/* line 152, ../sass/page/schedule-adjustment.scss */
.sub-title span {
  font-size: 20px;
  color: #6c9b41;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  display: block;
}
/* line 160, ../sass/page/schedule-adjustment.scss */
.sub-title a {
  text-decoration: none;
}
/* line 163, ../sass/page/schedule-adjustment.scss */
.sub-title a h2 {
  text-decoration: none !important;
  font-weight: 600;
}

/* line 1, ../sass/page/undertime.scss */
.undertime {
  width: 100%;
  height: 100%;
  position: relative;
}
/* line 6, ../sass/page/undertime.scss */
.undertime .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
/* line 16, ../sass/page/undertime.scss */
.undertime .title .add {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 14px;
}
/* line 24, ../sass/page/undertime.scss */
.undertime .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
/* line 34, ../sass/page/undertime.scss */
.undertime .content fieldset {
  float: left;
  width: 100%;
}
/* line 39, ../sass/page/undertime.scss */
.undertime .content .column-200px {
  width: 200px;
}
/* line 45, ../sass/page/undertime.scss */
.undertime .content .item .item-user {
  width: 100%;
  height: auto;
}
/* line 51, ../sass/page/undertime.scss */
.undertime .content .row {
  width: 100%;
  float: left;
}
/* line 60, ../sass/page/undertime.scss */
.undertime .content .table-leave table tr th:nth-child(9) {
  width: 90px;
  text-align: center;
}
/* line 65, ../sass/page/undertime.scss */
.undertime .content .table-leave table tr th:nth-child(10) {
  width: 90px;
  text-align: center;
}
/* line 70, ../sass/page/undertime.scss */
.undertime .content .table-leave table tr th .btn {
  padding: 5px  15px;
}
/* line 78, ../sass/page/undertime.scss */
.undertime .content .table-leave table tr td:nth-child(9) {
  width: 90px;
  text-align: center;
}
/* line 82, ../sass/page/undertime.scss */
.undertime .content .table-leave table tr td:nth-child(9) a {
  color: white !important;
}

/* line 90, ../sass/page/undertime.scss */
.nav-tabs > li > input {
  border: 0px !important;
}

/* line 94, ../sass/page/undertime.scss */
.nav-tabs > li > input {
  background: transparent !important;
  font-weight: 600;
  font-size: 14px;
}

/* line 100, ../sass/page/undertime.scss */
.nav-tabs > li > a {
  border: 0px !important;
}
/* line 103, ../sass/page/undertime.scss */
.nav-tabs > li > a:hover {
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 111, ../sass/page/undertime.scss */
.nav-tabs > li.active > input, .nav-tabs > li.active > input:hover, .nav-tabs > li.active > input:focus {
  background: transparent !important;
  border: 0px;
  color: #18879b !important;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 120, ../sass/page/undertime.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  background: transparent !important;
  border: 0px;
  color: #18879b !important;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 130, ../sass/page/undertime.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:hover {
  background: transparent !important;
  border: 0px;
  color: #18879b !important;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 138, ../sass/page/undertime.scss */
.nav-tabs {
  border-bottom: 2px solid #eeeeee !important;
}

/* line 142, ../sass/page/undertime.scss */
.highlight {
  color: #6c9b41;
}

/* line 147, ../sass/page/undertime.scss */
.sub-title span {
  font-size: 20px;
  color: #6c9b41;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  display: block;
}
/* line 155, ../sass/page/undertime.scss */
.sub-title a {
  text-decoration: none;
}
/* line 158, ../sass/page/undertime.scss */
.sub-title a h2 {
  text-decoration: none !important;
  font-weight: 600;
}

/* line 1, ../sass/page/offical-business.scss */
.official-business {
  width: 100%;
  height: 100%;
  position: relative;
}
/* line 6, ../sass/page/offical-business.scss */
.official-business .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
/* line 16, ../sass/page/offical-business.scss */
.official-business .title .add {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 14px;
}
/* line 24, ../sass/page/offical-business.scss */
.official-business .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
/* line 35, ../sass/page/offical-business.scss */
.official-business .content fieldset {
  float: left;
  width: 100%;
}
/* line 40, ../sass/page/offical-business.scss */
.official-business .content .column-200px {
  width: 200px;
}
/* line 46, ../sass/page/offical-business.scss */
.official-business .content .item .item-user {
  width: 100%;
  height: auto;
}
/* line 52, ../sass/page/offical-business.scss */
.official-business .content .row {
  width: 100%;
  float: left;
}
/* line 61, ../sass/page/offical-business.scss */
.official-business .content .table-leave table tr th:nth-child(9) {
  width: 90px;
  text-align: center;
}
/* line 66, ../sass/page/offical-business.scss */
.official-business .content .table-leave table tr th:nth-child(10) {
  width: 90px;
  text-align: center;
}
/* line 71, ../sass/page/offical-business.scss */
.official-business .content .table-leave table tr th .btn {
  padding: 5px  15px;
}
/* line 79, ../sass/page/offical-business.scss */
.official-business .content .table-leave table tr td:nth-child(9) {
  width: 90px;
  text-align: center;
}
/* line 83, ../sass/page/offical-business.scss */
.official-business .content .table-leave table tr td:nth-child(9) a {
  color: white !important;
}

/* line 91, ../sass/page/offical-business.scss */
.nav-tabs > li > input {
  border: 0px !important;
}

/* line 95, ../sass/page/offical-business.scss */
.nav-tabs > li > input {
  background: transparent !important;
  font-weight: 600;
  font-size: 14px;
}

/* line 101, ../sass/page/offical-business.scss */
.nav-tabs > li > a {
  border: 0px !important;
}
/* line 104, ../sass/page/offical-business.scss */
.nav-tabs > li > a:hover {
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 112, ../sass/page/offical-business.scss */
.nav-tabs > li.active > input, .nav-tabs > li.active > input:hover, .nav-tabs > li.active > input:focus {
  background: transparent !important;
  border: 0px;
  color: #18879b !important;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 121, ../sass/page/offical-business.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  background: transparent !important;
  border: 0px;
  color: #18879b !important;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 131, ../sass/page/offical-business.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:hover {
  background: transparent !important;
  border: 0px;
  color: #18879b !important;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

/* line 139, ../sass/page/offical-business.scss */
.nav-tabs {
  border-bottom: 2px solid #eeeeee !important;
}

/* line 143, ../sass/page/offical-business.scss */
.highlight {
  color: #6c9b41;
}

/* line 148, ../sass/page/offical-business.scss */
.sub-title span {
  font-size: 20px;
  color: #6c9b41;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  display: block;
}
/* line 156, ../sass/page/offical-business.scss */
.sub-title a {
  text-decoration: none;
}
/* line 159, ../sass/page/offical-business.scss */
.sub-title a h2 {
  text-decoration: none !important;
  font-weight: 600;
}

/* line 1, ../sass/page/error.scss */
.error-page {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  background: #ffffff;
  /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, #ffffff 39%, #d8d7d7 100%);
  /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, #ffffff 39%, #d8d7d7 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, #ffffff 39%, #d8d7d7 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d8d7d7',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  border-top: 5px solid #18879b;
}
/* line 17, ../sass/page/error.scss */
.error-page .img-container {
  width: 100%;
  height: auto;
  margin-top: 120px;
  text-align: center;
  display: inline-block;
}
/* line 25, ../sass/page/error.scss */
.error-page .content {
  width: 100%;
  height: auto;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  color: #18879b;
  margin-top: 20px;
}
/* line 34, ../sass/page/error.scss */
.error-page .btn-control {
  width: 100%;
  margin-top: 30px;
}

/* line 1, ../sass/page/change-password.scss */
.change-password {
  width: 100%;
  height: 100%;
  position: relative;
}
/* line 6, ../sass/page/change-password.scss */
.change-password .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
/* line 16, ../sass/page/change-password.scss */
.change-password .content span {
  line-height: 20px !important;
}
/* line 20, ../sass/page/change-password.scss */
.change-password .content .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

/* line 32, ../sass/page/change-password.scss */
.error-color {
  color: #d9534f;
}

/* line 1, ../sass/page/biolog.scss */
.biolog {
  width: 100%;
  height: 100%;
  position: relative;
}
/* line 6, ../sass/page/biolog.scss */
.biolog .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
/* line 16, ../sass/page/biolog.scss */
.biolog .content .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

/* line 1, ../sass/page/expiry.scss */
.expiry {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #eeeeee;
}
/* line 11, ../sass/page/expiry.scss */
.expiry .container {
  width: 730px;
  position: absolute;
  left: 0px;
  right: 0px;
  margin-right: auto;
  margin-left: auto;
  top: 100px;
  border: 0px;
}
/* line 22, ../sass/page/expiry.scss */
.expiry .container:hover .title {
  display: none;
}
/* line 26, ../sass/page/expiry.scss */
.expiry .container:hover .title-blue {
  display: inline-block !important;
}
/* line 30, ../sass/page/expiry.scss */
.expiry .container:hover .error-image-1 {
  background-image: url("../../../../Images/error-page/disconnection-img-2.png");
}
/* line 36, ../sass/page/expiry.scss */
.expiry .container:hover .footer .link {
  display: inline-block;
}
/* line 40, ../sass/page/expiry.scss */
.expiry .container:hover .footer .nolink {
  display: none;
}
/* line 45, ../sass/page/expiry.scss */
.expiry .container:hover .footer .logo img {
  width: 200px;
}
/* line 50, ../sass/page/expiry.scss */
.expiry .container:hover .footer .logo .logo-colored {
  display: inline-block;
}
/* line 56, ../sass/page/expiry.scss */
.expiry .container:hover .footer .logo .logo-grey {
  display: none;
}
/* line 65, ../sass/page/expiry.scss */
.expiry .container .animate-icon {
  width: 100%;
  height: 220px;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
/* line 72, ../sass/page/expiry.scss */
.expiry .container .animate-icon .title {
  position: absolute;
  left: 60px;
  bottom: 15px;
  background: #eeeeee;
  padding: 10px;
  font-weight: 800;
  color: #454546;
}
/* line 81, ../sass/page/expiry.scss */
.expiry .container .animate-icon .title span {
  font-size: 35px;
}
/* line 87, ../sass/page/expiry.scss */
.expiry .container .animate-icon .title-blue {
  position: absolute;
  left: 60px;
  bottom: 12px;
  background: #eeeeee;
  padding: 10px;
  font-size: 35px;
  font-weight: 800;
  color: #18879b;
  display: none;
}
/* line 98, ../sass/page/expiry.scss */
.expiry .container .animate-icon .title-blue span {
  font-size: 35px;
}
/* line 104, ../sass/page/expiry.scss */
.expiry .container .error-image-1 {
  background-image: url("../../../../Images/error-page/disconnection-img-1.png");
}
/* line 108, ../sass/page/expiry.scss */
.expiry .container .error-image-2 {
  background-image: url("../../../../Images/error-page/disconnection-img-2.png");
}
/* line 112, ../sass/page/expiry.scss */
.expiry .container .content {
  line-height: 35px;
  font-size: 15px;
  margin-top: 5px;
  color: #454546;
  padding-left: 25px;
}
/* line 120, ../sass/page/expiry.scss */
.expiry .container .col-md-6 {
  width: 50%;
  float: left;
}
/* line 125, ../sass/page/expiry.scss */
.expiry .container .footer {
  display: block;
  padding-left: 25px;
  margin-top: 100px;
}
/* line 131, ../sass/page/expiry.scss */
.expiry .container .footer .logo img {
  width: 200px;
  margin-right: 60px;
}
/* line 137, ../sass/page/expiry.scss */
.expiry .container .footer .logo .logo-colored {
  display: none;
}
/* line 143, ../sass/page/expiry.scss */
.expiry .container .footer .logo .logo-grey {
  display: inline-block;
}
/* line 149, ../sass/page/expiry.scss */
.expiry .container .footer .link {
  display: none;
}
/* line 152, ../sass/page/expiry.scss */
.expiry .container .footer .link li {
  width: 100%;
  padding: 5px 0px;
  display: inline-block;
}
/* line 157, ../sass/page/expiry.scss */
.expiry .container .footer .link li a {
  text-decoration: underline;
}
/* line 164, ../sass/page/expiry.scss */
.expiry .container .footer .nolink {
  display: inline-block;
}
/* line 167, ../sass/page/expiry.scss */
.expiry .container .footer .nolink li {
  width: 100%;
  padding: 5px 0px;
  display: inline-block;
  color: #454546;
}

/* line 179, ../sass/page/expiry.scss */
.underconstruction {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #eeeeee;
}
/* line 189, ../sass/page/expiry.scss */
.underconstruction .container {
  width: 740px;
  position: absolute;
  left: 0px;
  right: 0px;
  margin-right: auto;
  margin-left: auto;
  top: 100px;
  border: 0px;
}
/* line 200, ../sass/page/expiry.scss */
.underconstruction .container:hover .title {
  display: none;
}
/* line 204, ../sass/page/expiry.scss */
.underconstruction .container:hover .title-blue {
  display: inline-block !important;
}
/* line 208, ../sass/page/expiry.scss */
.underconstruction .container:hover .error-image-1 {
  background-image: url("../../../../Images/error-page/underconstruction-img-1.png");
}
/* line 214, ../sass/page/expiry.scss */
.underconstruction .container:hover .footer .link {
  display: inline-block;
}
/* line 218, ../sass/page/expiry.scss */
.underconstruction .container:hover .footer .nolink {
  display: none;
}
/* line 223, ../sass/page/expiry.scss */
.underconstruction .container:hover .footer .logo img {
  width: 200px;
}
/* line 228, ../sass/page/expiry.scss */
.underconstruction .container:hover .footer .logo .logo-colored {
  display: inline-block;
}
/* line 234, ../sass/page/expiry.scss */
.underconstruction .container:hover .footer .logo .logo-grey {
  display: none;
}
/* line 243, ../sass/page/expiry.scss */
.underconstruction .container .animate-icon {
  width: 100%;
  height: 220px;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
/* line 250, ../sass/page/expiry.scss */
.underconstruction .container .animate-icon .title {
  position: absolute;
  left: 60px;
  bottom: 15px;
  background: #eeeeee;
  padding: 10px 5px;
  font-weight: 800;
  color: #454546;
}
/* line 259, ../sass/page/expiry.scss */
.underconstruction .container .animate-icon .title span {
  font-size: 35px;
}
/* line 265, ../sass/page/expiry.scss */
.underconstruction .container .animate-icon .title-blue {
  position: absolute;
  left: 60px;
  bottom: 12px;
  background: #eeeeee;
  padding: 10px 5px;
  font-size: 35px;
  font-weight: 800;
  color: #18879b;
  display: none;
}
/* line 276, ../sass/page/expiry.scss */
.underconstruction .container .animate-icon .title-blue span {
  font-size: 35px;
}
/* line 282, ../sass/page/expiry.scss */
.underconstruction .container .error-image-1 {
  background-image: url("../../../../Images/error-page/disconnection-img-1.png");
}
/* line 286, ../sass/page/expiry.scss */
.underconstruction .container .error-image-2 {
  background-image: url("../../../../Images/error-page/underconstruction-img-1.png");
}
/* line 290, ../sass/page/expiry.scss */
.underconstruction .container .content {
  line-height: 35px;
  font-size: 15px;
  margin-top: 5px;
  color: #454546;
  padding-left: 25px;
}
/* line 298, ../sass/page/expiry.scss */
.underconstruction .container .col-md-6 {
  width: 50%;
  float: left;
}
/* line 303, ../sass/page/expiry.scss */
.underconstruction .container .footer {
  display: block;
  padding-left: 25px;
  margin-top: 100px;
}
/* line 309, ../sass/page/expiry.scss */
.underconstruction .container .footer .logo img {
  width: 200px;
  margin-right: 60px;
}
/* line 315, ../sass/page/expiry.scss */
.underconstruction .container .footer .logo .logo-colored {
  display: none;
}
/* line 321, ../sass/page/expiry.scss */
.underconstruction .container .footer .logo .logo-grey {
  display: inline-block;
}
/* line 327, ../sass/page/expiry.scss */
.underconstruction .container .footer .link {
  display: none;
}
/* line 330, ../sass/page/expiry.scss */
.underconstruction .container .footer .link li {
  width: 100%;
  padding: 5px 0px;
  display: inline-block;
}
/* line 335, ../sass/page/expiry.scss */
.underconstruction .container .footer .link li a {
  text-decoration: underline;
}
/* line 342, ../sass/page/expiry.scss */
.underconstruction .container .footer .nolink {
  display: inline-block;
}
/* line 345, ../sass/page/expiry.scss */
.underconstruction .container .footer .nolink li {
  width: 100%;
  padding: 5px 0px;
  display: inline-block;
  color: #454546;
}

/* line 356, ../sass/page/expiry.scss */
.error404 {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 70px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #eeeeee;
}
/* line 366, ../sass/page/expiry.scss */
.error404 .container {
  width: 950px;
  position: absolute;
  left: 0px;
  right: 0px;
  margin-right: auto;
  margin-left: auto;
  top: 100px;
  border: 0px;
}
/* line 379, ../sass/page/expiry.scss */
.error404 .container:hover .content .link {
  display: inline-block;
}
/* line 383, ../sass/page/expiry.scss */
.error404 .container:hover .content .nolink {
  display: none;
}
/* line 391, ../sass/page/expiry.scss */
.error404 .container .sprout-img {
  width: 330px;
  height: auto;
  float: left;
  text-align: left;
}
/* line 398, ../sass/page/expiry.scss */
.error404 .container .content {
  width: 600px;
  height: auto;
  float: left;
}
/* line 403, ../sass/page/expiry.scss */
.error404 .container .content .title {
  width: 100%;
  float: left;
  font-size: 45px;
  color: #454546;
  font-weight: 800;
  margin-top: 30px;
  margin-bottom: 10px;
}
/* line 413, ../sass/page/expiry.scss */
.error404 .container .content span {
  font-size: 15px;
}
/* line 416, ../sass/page/expiry.scss */
.error404 .container .content span .self {
  width: auto;
  padding: 5px;
  background-color: #18879b;
  display: inline-block;
  font-weight: 800;
  color: #ffffff;
}
/* line 424, ../sass/page/expiry.scss */
.error404 .container .content span .self:hover {
  background-color: #126b7b;
  cursor: pointer;
}
/* line 431, ../sass/page/expiry.scss */
.error404 .container .content .link {
  display: none;
}
/* line 434, ../sass/page/expiry.scss */
.error404 .container .content .link li {
  width: 100%;
  padding: 5px 0px;
  display: inline-block;
}
/* line 439, ../sass/page/expiry.scss */
.error404 .container .content .link li a {
  text-decoration: underline;
}
/* line 446, ../sass/page/expiry.scss */
.error404 .container .content .nolink {
  display: inline-block;
}
/* line 449, ../sass/page/expiry.scss */
.error404 .container .content .nolink li {
  width: 100%;
  padding: 5px 0px;
  display: inline-block;
  color: #454546;
}

/* line 1, ../sass/page/audit-trail.scss */
.audit-trail {
  width: 100%;
  height: 100%;
  position: relative;
}
/* line 6, ../sass/page/audit-trail.scss */
.audit-trail .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
/* line 16, ../sass/page/audit-trail.scss */
.audit-trail .content .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
/* line 26, ../sass/page/audit-trail.scss */
.audit-trail .content .row {
  width: 100%;
  margin: 0px !important;
}
/* line 35, ../sass/page/audit-trail.scss */
.audit-trail .content .table-style-container .Pagination table {
  table-layout: none;
  width: 200px;
}
/* line 39, ../sass/page/audit-trail.scss */
.audit-trail .content .table-style-container .Pagination table:hover {
  background-color: #ffffff;
}
/* line 43, ../sass/page/audit-trail.scss */
.audit-trail .content .table-style-container .Pagination table td {
  width: auto !important;
}
/* line 46, ../sass/page/audit-trail.scss */
.audit-trail .content .table-style-container .Pagination table td:hover {
  background-color: #ffffff;
}

/* line 1, ../sass/page/maintinance.scss */
.Workplace {
  width: 100%;
  height: 100%;
  position: relative;
}
/* line 6, ../sass/page/maintinance.scss */
.Workplace .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
/* line 16, ../sass/page/maintinance.scss */
.Workplace .content .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
/* line 26, ../sass/page/maintinance.scss */
.Workplace .content .row {
  width: 100%;
  margin: 0px !important;
}
/* line 35, ../sass/page/maintinance.scss */
.Workplace .content .table-style-container .Pagination table {
  table-layout: none;
  width: 200px;
}
/* line 39, ../sass/page/maintinance.scss */
.Workplace .content .table-style-container .Pagination table:hover {
  background-color: #ffffff;
}
/* line 43, ../sass/page/maintinance.scss */
.Workplace .content .table-style-container .Pagination table td {
  width: auto !important;
}
/* line 46, ../sass/page/maintinance.scss */
.Workplace .content .table-style-container .Pagination table td:hover {
  background-color: #ffffff;
}

/* line 57, ../sass/page/maintinance.scss */
.Assets {
  width: 100%;
  height: 100%;
  position: relative;
}
/* line 62, ../sass/page/maintinance.scss */
.Assets .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
/* line 72, ../sass/page/maintinance.scss */
.Assets .content .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
/* line 82, ../sass/page/maintinance.scss */
.Assets .content .row {
  width: 100%;
  margin: 0px !important;
}
/* line 91, ../sass/page/maintinance.scss */
.Assets .content .table-style-container .Pagination table {
  table-layout: none;
  width: 200px;
}
/* line 95, ../sass/page/maintinance.scss */
.Assets .content .table-style-container .Pagination table:hover {
  background-color: #ffffff;
}
/* line 99, ../sass/page/maintinance.scss */
.Assets .content .table-style-container .Pagination table td {
  width: auto !important;
}
/* line 102, ../sass/page/maintinance.scss */
.Assets .content .table-style-container .Pagination table td:hover {
  background-color: #ffffff;
}

/*
@import "page/change-password";*/
