/**
 * Run via Command Line
 * @requirement : Sass (npm install -g sass)
 * @run : run the command to the folder of this sass file
 * @command : sass --watch --embed-source-map  main.scss:../stylesheets/main.css
 */
/* 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

*/
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;
}

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;
}

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 */
}

#mainForm {
  background-color: #eeeeee;
}

.navbar-fixed-top {
  background-color: #333333 !important;
}

.view {
  height: 100%;
}

.container {
  width: 1280px;
}

.hidden {
  overflow: hidden;
}

/* PAGE WRAPPING --------------------------------------------------------  */
.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) {
  .page-wrap {
    min-height: 600px;
    min-width: 100%;
  }
}
@media screen and (width: 768px) {
  .page-wrap {
    min-width: 100%;
  }
}
@media screen and (width: 1024px) {
  .page-wrap {
    min-width: 100%;
  }
}

.page-wrap:after {
  content: "";
  display: block;
}

.footer, .page-wrap:after {
  min-height: 250px;
  padding-top: 30px;
}

/* ALIGN-MENT --------------------------------------------------------  */
.align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-justify {
  text-align: justify;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

/* HYPER LINK */
a {
  color: #18879b;
}

a:visited {
  color: #18879b;
}

a:active {
  color: #18879b;
}

a:hover {
  color: #126b7b;
}

a:link, a:visited {
  color: #18879b;
}

/* Span */
span {
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  line-height: 30px;
}

.indent {
  text-indent: 20px;
}

.left-margin {
  margin-left: 20px;
}

.right-margin {
  margin-right: 20px;
}

.left-padding {
  padding-left: 20px;
}

.right-padding {
  padding-right: 20px;
}

.relative {
  position: relative;
}

.pointer {
  cursor: pointer;
}

.border-bottom {
  border-bottom: 1px solid #eeeeee;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clear-sm {
  width: 100%;
  margin-bottom: 25px;
}

.parent {
  position: relative;
}

.no-padding {
  margin: 0px !important;
  padding: 0px !important;
}

.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  font-weight: normal !important;
}

.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*/
.fc-widget-header, .fc-widget-content {
  max-height: 400px !important;
  overflow-y: auto !important;
}

.fc-event {
  border: 0px !important;
}
.fc-event span {
  font-size: 12px !important;
}

.image-responsive {
  display: inline-block;
  height: auto;
  max-width: 100%;
}

@media screen and (max-width: 736px) and (min-width: 314px) {
  #updatesContainer {
    height: 50px;
    margin-left: 10px;
  }
}

@media screen and (max-width: 736px) and (min-width: 314px) {
  .collapsed {
    margin-top: 20px;
  }
}

@media screen and (max-width: 736px) and (min-width: 314px) {
  .navbar-toggle {
    margin-top: 20px;
  }
}

.dropdown-menu {
  z-index: 9000 !important;
}

.clock-pop-up {
  z-index: 800 !important;
}

/* UI components =========================================================   */
.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;
}
.btn i {
  font-size: 16px;
}

.btn-sm {
  padding: 5px 15px;
}

.btn-xs {
  min-width: 30px;
}

.btn-small {
  padding: 1px 25px !important;
}

.btn-success {
  background-color: #6c9b41;
  color: #ffffff;
}
.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;
}

.btn-primary {
  background-color: #18879b;
  color: #ffffff;
}
.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;
}

.btn-danger {
  background-color: #d9534f;
  color: #ffffff;
}
.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;
}

.btn-warning {
  background-color: #e77e23;
  color: #ffffff;
}
.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;
}

.btn-default {
  background-color: #eeeeee;
  color: #454546;
}
.btn-default:hover {
  color: #454546;
  background-color: #dddddd;
  transition: all 0.3s ease;
}

.btn-padding {
  padding-left: 40px;
  padding-right: 40px;
}

.btn-long {
  width: 100%;
}

.btn-disabled {
  color: #888888;
  background-color: #f2f2f3;
  cursor: not-allowed !important;
}
.btn-disabled:hover {
  background-color: #f2f2f3;
}

.btn-title-part {
  margin-top: 10px !important;
  margin-right: 10px !important;
}

.button-toggle {
  width: auto;
  height: 40px;
}
.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;
}
.button-toggle .btn-left:hover {
  background-color: #6c9b41;
  cursor: pointer;
  color: #ffffff;
}
.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;
}
.button-toggle .btn-right:hover {
  background-color: #6c9b41;
  cursor: pointer;
  color: #ffffff;
}
.button-toggle .btn-toggle-active {
  background-color: #6c9b41;
  cursor: pointer;
  color: #ffffff;
}

/* Normal */
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;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

input:read-only {
  cursor: not-allowed;
  background: #ffffff;
  border-bottom: 1px solid #aaaaaa;
}

.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 */
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;
}

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;
}

input:disabled {
  border-bottom: 1px solid #aaaaaa !important;
  color: #aaaaaa !important;
  cursor: not-allowed !important;
  background-color: transparent !important;
}

input:read-only {
  border-bottom: 1px solid #aaaaaa;
  color: #aaaaaa;
  cursor: not-allowed !important;
}

.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 -->


*/
.input-group-custom {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group-custom input {
  width: 100%;
}

.input-group-custom-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
  width: 1%;
  display: table-cell;
  vertical-align: middle;
}

.input-group-custom-btn:last-child > .btn {
  z-index: 2;
  margin-left: -1px;
  margin: 0px;
}

.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 -->


*/
.input-group-icon {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group-icon input {
  width: 100%;
}
.input-group-icon i {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 20px;
}

.input-group-icon .form-control:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-left: 30px;
}

.input-group-btn-icon {
  position: relative;
  font-size: 0;
  white-space: nowrap;
  width: 1%;
  display: table-cell;
  vertical-align: middle;
}

.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;
}

.input-group-btn-icon > .btn {
  position: relative;
}

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) {
  select {
    font-size: 12px;
  }
}

select:hover {
  color: #454546;
  border-bottom: 1px solid #454546;
}

.table-container {
  width: 100%;
  min-height: 50px;
  overflow-y: auto;
}
.table-container table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
  table-layout: fixed;
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  .table-container table {
    min-width: 400px;
  }
}
@media screen and (width: 768px) {
  .table-container table {
    min-width: 400px;
  }
}
@media screen and (width: 1024px) {
  .table-container table {
    min-width: 400px;
  }
}
.table-container table thead {
  width: 100%;
  height: 40px;
  background-color: transparent;
  text-indent: 10px;
  color: #747c83;
  text-align: left;
}
.table-container table th {
  background-color: transparent;
  white-space: nowrap;
  font-size: 14px;
  font-weight: bold;
  text-indent: 10px;
}
.table-container table tr {
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  border: 1px solid #dddddd;
  font-weight: normal;
  color: #454546;
}
.table-container table tr:hover {
  background-color: #eeeeee;
}
.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;
}

.table-style-container {
  width: 100%;
  min-height: 50px;
  overflow-y: auto;
}
.table-style-container table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
  table-layout: fixed;
}
.table-style-container table thead {
  width: 100%;
  height: 40px;
  background-color: transparent;
  text-indent: 5px;
  color: #747c83;
  text-align: left;
}
.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;
}
.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;
}
.table-style-container table tr:first-child {
  border-top: 1px solid #ffffff !important;
}
.table-style-container table tr:last-child {
  border-bottom: 1px solid #ffffff !important;
}
.table-style-container table tr:hover {
  background-color: #f2f2f3;
}
.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;
}
.table-style-container table td .fa-download {
  margin-left: 5px;
}
.table-style-container table td .fa-download:hover {
  color: #126b7b;
}
.table-style-container table td .fa-print {
  margin-left: 5px;
}
.table-style-container table td .fa-print:hover {
  color: #126b7b;
}
.table-style-container table td .fa-trash {
  margin-left: 5px;
}
.table-style-container table td .fa-trash:hover {
  color: #d9534f;
}

.table-border-container {
  width: 100%;
  min-height: 50px;
  overflow-y: auto;
}
.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) {
  .table-border-container table {
    min-width: 700px;
  }
}
@media screen and (width: 768px) {
  .table-border-container table {
    min-width: 700px;
  }
}
@media screen and (width: 1024px) {
  .table-border-container table {
    min-width: 700px;
  }
}
.table-border-container table thead {
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  text-indent: 10px;
  color: #747c83;
  text-align: left;
}
.table-border-container table th {
  background-color: #ffffff;
  white-space: nowrap;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #ffffff;
}
.table-border-container table tr {
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  border: 1px solid #ffffff;
  font-weight: normal;
  color: #454546;
}
.table-border-container table tr:hover {
  background-color: #ffffff;
}
.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;
}

.table-style-container-noline {
  width: 100%;
  min-height: 50px;
  overflow-y: auto;
}
.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) {
  .table-style-container-noline table {
    min-width: 700px;
  }
}
@media screen and (width: 768px) {
  .table-style-container-noline table {
    min-width: 700px;
  }
}
@media screen and (width: 1024px) {
  .table-style-container-noline table {
    min-width: 700px;
  }
}
.table-style-container-noline table thead {
  width: 100%;
  height: 40px;
  background-color: transparent;
  text-indent: 5px;
  color: #747c83;
  text-align: left;
}
.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;
}
.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;
}
.table-style-container-noline table tr:first-child {
  display: none;
  border-top: 1px solid #ffffff !important;
}
.table-style-container-noline table tr:last-child {
  border-bottom: 1px solid #ffffff !important;
}
.table-style-container-noline table tr:hover {
  background-color: #ffffff;
}
.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;
}
.table-style-container-noline table td:nth-child(1) {
  width: 80px;
}
.table-style-container-noline table td:nth-child(2) {
  width: 1px;
}
.table-style-container-noline table td:nth-child(3) {
  width: 70px;
}
.table-style-container-noline table td .fa-download {
  margin-left: 5px;
}
.table-style-container-noline table td .fa-download:hover {
  color: #126b7b;
}
.table-style-container-noline table td .fa-print {
  margin-left: 5px;
}
.table-style-container-noline table td .fa-print:hover {
  color: #126b7b;
}
.table-style-container-noline table td .fa-trash {
  margin-left: 5px;
}
.table-style-container-noline table td .fa-trash:hover {
  color: #d9534f;
}

.table-no-border-top tr th {
  border-top: 0px !important;
  border-bottom: 0px !important;
}

@media screen and (max-width: 736px) and (min-width: 314px) {
  .title {
    font-size: 18px !important;
  }
}

.table thead > tr > th {
  border-bottom: 1px solid #ddd !important;
}

.table-no-border {
  border: 0px !important;
}
.table-no-border td {
  border: 0px !important;
}

.table {
  font-size: 14px;
}

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 */
textarea:hover {
  border-bottom: 1px solid #454546;
  color: #454546;
}

/* TINYMCE */
.mce-menu {
  position: fixed !important;
}

.mce-menubar {
  display: none !important;
}

#mceu_22 {
  display: none !important;
}

.mce-btn {
  background-color: #ffffff !important;
}

.mce-panel {
  background-color: #ffffff !important;
}

h6 {
  font-size: 32px;
}

h5 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h2 {
  font-size: 16px;
}

h1 {
  font-size: 14px;
}

.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;
}
.modal-v2::-webkit-scrollbar {
  display: none;
}
.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;
}
.modal-v2 .modal-container .modal-content-v2 {
  float: left;
  width: 100%;
}
.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;
}
.modal-v2 .modal-container-md .modal-content-v2 {
  float: left;
  width: 100%;
}
.modal-v2 .modal-header {
  width: 100%;
  float: left;
  border-bottom: 1px solid #f2f2f3;
  padding: 7px 15px;
}
.modal-v2 .modal-header .modal-title {
  width: 80%;
  text-align: left;
  float: left;
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
}
.modal-v2 .modal-header .modal-close {
  width: 20%;
  float: left;
  text-align: right;
  font-size: 20px;
  color: #d9534f;
  line-height: 30px;
  cursor: pointer;
}
.modal-v2 .modal-control {
  margin-top: 30px;
  border-top: 1px solid #f2f2f3;
  padding: 10px 10px;
  height: auto;
  text-align: right;
  float: left;
  width: 100%;
}
.modal-v2 .modal-lg {
  width: 80%;
}
.modal-v2 .modal-md {
  width: 65%;
}
.modal-v2 .modal-sm {
  width: 45%;
}

/* $activeColor: #c0392b; //red */
/* .squaredFour */
.squaredFour {
  width: 20px;
  position: relative;
  margin-left: 4px;
  margin-top: 5px;
}
.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);
}
.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);
}
.squaredFour label:hover::after {
  opacity: 0.5;
}
.squaredFour input[type=checkbox] {
  visibility: hidden;
}
.squaredFour input[type=checkbox]:checked + label:after {
  opacity: 1;
}

/* end .squaredFour */
label {
  font-size: 14px;
  color: #454546;
  line-height: 36px;
  font-weight: bold;
}

p {
  font-size: 14px;
  color: #454546;
}

.tab-container {
  overflow-x: auto;
}
.tab-container .tab {
  width: 100%;
  float: left;
  border-bottom: 2px solid #eeeeee;
}
.tab-container .tab ul {
  font-size: 15px;
  color: #747c83;
  list-style: none;
}
.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;
}
.tab-container .tab ul li input {
  background: transparent;
  font-weight: 600;
}
.tab-container .tab ul li a {
  color: #454546;
  line-height: 37px;
}
.tab-container .tab ul li a:link {
  color: #454546;
}
.tab-container .tab ul li a:visited {
  color: #454546;
}
.tab-container .tab ul li a:active {
  color: #454546;
}
.tab-container .tab ul .active-tab {
  border-bottom: 2px solid #18879b;
  color: #18879b !important;
  font-weight: 600;
}
.tab-container .tab ul .active-tab input {
  background: transparent;
  color: #18879b !important;
  font-weight: 600;
}
.tab-container .tab ul .active {
  border-bottom: 2px solid #18879b;
  color: #18879b !important;
  font-weight: 600;
}
.tab-container .tab ul .active input {
  background: transparent;
  color: #18879b !important;
  font-weight: 600;
}
.tab-container .tab ul .active {
  border-bottom: 2px solid #18879b;
  color: #18879b !important;
  font-weight: 600;
}
.tab-container .tab ul .active a {
  background: transparent;
  color: #18879b !important;
  font-weight: 600;
}

.tab-container-no {
  overflow-x: auto;
}
.tab-container-no .tab {
  width: 100%;
  float: left;
  border-bottom: 2px solid #eeeeee;
}
.tab-container-no .tab ul {
  font-size: 15px;
  color: #747c83;
  list-style: none;
  min-width: 500px;
  height: 48px;
}
.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;
}
.tab-container-no .tab ul li input {
  background: transparent;
  font-weight: 600;
}
.tab-container-no .tab ul li a {
  color: #454546;
  line-height: 37px;
}
.tab-container-no .tab ul li a:link {
  color: #454546;
}
.tab-container-no .tab ul li a:visited {
  color: #454546;
}
.tab-container-no .tab ul li a:active {
  color: #454546;
}
.tab-container-no .tab ul .active-tab {
  border-bottom: 2px solid #18879b;
  color: #18879b !important;
  font-weight: 600;
}
.tab-container-no .tab ul .active-tab input {
  background: transparent;
  color: #18879b !important;
  font-weight: 600;
}
.tab-container-no .tab ul .active {
  border-bottom: 2px solid #18879b;
  color: #18879b !important;
  font-weight: 600;
}
.tab-container-no .tab ul .active input {
  background: transparent;
  color: #18879b !important;
  font-weight: 600;
}
.tab-container-no .tab ul .active {
  border-bottom: 2px solid #18879b;
  color: #18879b !important;
  font-weight: 600;
}
.tab-container-no .tab ul .active a {
  background: transparent;
  color: #18879b !important;
  font-weight: 600;
}

.active-tab {
  display: inherit;
}

.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>

*/
.loading {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 40;
  left: 0px;
  right: 0px;
  background-color: #ffffff;
}

.loading-full {
  position: fixed;
  top: 70px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 50;
  background-color: #ffffff;
}

.loader {
  position: absolute !important;
  left: 0px;
  right: 0px;
  top: 50%;
  margin-top: -5em;
  margin-left: auto;
  margin-right: auto;
}

.loader, .loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.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);
  }
}
.badge-title {
  padding: 3px 5px;
  font-size: 12px;
  border-radius: 5px;
}

.badge-orange {
  background-color: #e77e23;
  color: #ffffff;
}

.badge-red {
  background-color: #d9534f;
  color: #ffffff;
}

.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
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.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);
  }
}
.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;
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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;
  }
}
.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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.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);
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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;
  }
}
.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);
  }
}
.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);
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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;
  }
}
.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);
  }
}
.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;
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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;
  }
}
.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);
  }
}
.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;
  }
}
.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;
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.access-level {
  width: 100%;
  height: 100%;
  position: relative;
}
.access-level .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.access-level .content .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.access-level .content .item .item-user {
  width: 100%;
  height: auto;
}
.access-level .content .row {
  width: 100%;
  margin: 0px !important;
}

/**/
.dashboard {
  width: 100%;
  height: 100%;
  position: relative;
  margin-top: 10px;
  margin-bottom: 30px;
}
.dashboard .container-fluid {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  .dashboard .container-fluid {
    padding: 0px !important;
  }
}
.dashboard .fa-caret-up {
  display: none;
}
.dashboard .widget {
  min-height: 300px;
  position: relative;
}
.dashboard .widget .requests-wrapper {
  padding-bottom: 15px;
}
.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;
}
.dashboard .widget .widget-expand .widget-content {
  height: 85% !important;
  overflow-y: auto !important;
  overflow-x: none !important;
}
.dashboard .widget .investment {
  background-image: url("/Content/Images/investment-dashboard.jpg") !important;
  background-position: left bottom !important;
  background-repeat: no-repeat !important;
}
.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: 305px;
  float: left;
}
.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;
}
.dashboard .widget .widget-item .widget-title {
  width: 100%;
  color: #aaaaaa;
  font-size: 20px;
  text-indent: 15px;
  height: 55px;
  line-height: 55px;
  margin-bottom: 10px;
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  .dashboard .widget .widget-item .widget-title {
    font-size: 16px;
  }
}
.dashboard .widget .widget-item .widget-1 {
  background-color: #49bac7;
  color: #ffffff;
  background-image: url("/../../Images/Dashboard/bg-icon-1.png") !important;
  background-position: 10px -12px !important;
  background-repeat: no-repeat !important;
}
.dashboard .widget .widget-item .widget-2 {
  background-color: #c391df;
  color: #ffffff;
  background-image: url("/../../Images/Dashboard/bg-icon-2.png") !important;
  background-position: 10px -12px !important;
  background-repeat: no-repeat !important;
}
.dashboard .widget .widget-item .widget-3 {
  background-color: #18879b;
  color: #ffffff;
  background-image: url("/../../Images/Dashboard/bg-icon-6.png") !important;
  background-position: 10px -12px !important;
  background-repeat: no-repeat !important;
}
.dashboard .widget .widget-item .widget-4 {
  background-color: #ec7c32;
  color: #ffffff;
  background-image: url("/../../Images/Dashboard/bg-icon-4.png") !important;
  background-position: 10px -7px !important;
  background-repeat: no-repeat !important;
}
.dashboard .widget .widget-item .widget-5 {
  background-color: #549ea7;
  color: #ffffff;
  background-image: url("/../../Images/Dashboard/bg-icon-5.png") !important;
  background-position: 10px -6px !important;
  background-repeat: no-repeat !important;
}
.dashboard .widget .widget-item .widget-6 {
  background-color: #aac83d;
  color: #ffffff;
  background-image: url("/../../Images/Dashboard/bg-icon-7.png") !important;
  background-position: 10px -12px !important;
  background-repeat: no-repeat !important;
}
.dashboard .widget .widget-item .widget-7 {
  background-color: #49c7b1;
  color: #ffffff;
  background-image: url("/../../Images/Dashboard/bg-icon-3.png") !important;
  background-position: 10px -12px !important;
  background-repeat: no-repeat !important;
}
.dashboard .widget .widget-item .widget-8 {
  background-color: #e98f8f;
  color: #ffffff;
  background-image: url("/../../Images/Dashboard/bg-icon-8.png") !important;
  background-position: 10px -12px !important;
  background-repeat: no-repeat !important;
}
.dashboard .widget .widget-item .widget-9 {
  background-color: #2980b9;
  color: #ffffff;
  background-image: url("/../../Images/Dashboard/bg-icon-9.png") !important;
  background-position: 10px -12px !important;
  background-repeat: no-repeat !important;
}
.dashboard .widget .widget-item .widget-content {
  position: relative;
  height: 240px;
  padding: 5px 10px;
  overflow-y: hidden;
  overflow-x: hidden;
  background-color: #ffffff;
  width: 100%;
  margin-bottom: 5px;
}
.dashboard .widget .widget-item .widget-content .btn-padding {
  padding-left: 30px;
  padding-right: 30px;
}
.dashboard .widget .widget-item .widget-content .investment-content {
  margin-top: 30px;
}
.dashboard .widget .widget-item .widget-content .investment-content h4 {
  font-size: 26px !important;
  line-height: 35px;
  margin-bottom: 15px;
  font-weight: 500;
}
.dashboard .extend .widget-content {
  min-height: 580px !important;
}

/* TOGGLE */
.widget-wrapper {
  /* holder ng widget na nagta-toggle (animate height)*/
  position: relative;
  width: 100%;
}

.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%;
}

.widget-foot {
  /*top: 295px;*/
  bottom: 0;
  position: absolute;
  width: 100%;
  left: 0px;
  right: 0px;
  text-align: center;
  line-height: 35px;
  min-height: 35px !important;
  background-color: #ffffff;
}

.request-wrapper-toggled {
  max-height: none;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}

.requests-caret {
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0px;
  background-color: #fff;
  width: 100%;
}

.toggle.btn {
  width: 60px !important;
}

.toggle.ios .toggle-handle {
  border-radius: 20px;
  margin-left: -15px;
}

.toggle-off.btn {
  text-indent: -5px;
}

.toggle-on.btn {
  text-indent: 0px;
}

.dropdown-right {
  height: 20px;
}
.dropdown-right .caret {
  margin-top: 8px;
}

.dashboard-employee {
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 40px;
  margin-bottom: 30px;
}
.dashboard-employee .container-fluid {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  .dashboard-employee .container-fluid {
    padding: 0px !important;
  }
}
.dashboard-employee .fa-caret-up {
  display: none;
}
.dashboard-employee .widget {
  min-height: 300px;
  position: relative;
}
.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;
}
.dashboard-employee .widget .widget-expand .widget-content {
  height: 85% !important;
  overflow-y: auto !important;
  overflow-x: none !important;
}
.dashboard-employee .widget .investment {
  background-image: url("/Content/Images/investment-dashboard.jpg") !important;
  background-position: left bottom !important;
  background-repeat: no-repeat !important;
}
.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;
}
.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;
}
.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;
}
.dashboard-employee .widget .widget-item .widget-1 {
  border-top: 3px solid #49bac7 !important;
  color: #49bac7;
}
.dashboard-employee .widget .widget-item .widget-2 {
  border-top: 3px solid #c391df !important;
  color: #c391df;
}
.dashboard-employee .widget .widget-item .widget-3 {
  border-top: 3px solid #18879b !important;
  color: #18879b;
}
.dashboard-employee .widget .widget-item .widget-4 {
  border-top: 3px solid #ec7c32 !important;
  color: #ec7c32;
}
.dashboard-employee .widget .widget-item .widget-5 {
  border-top: 3px solid #549ea7 !important;
  color: #549ea7;
}
.dashboard-employee .widget .widget-item .widget-6 {
  border-top: 3px solid #aac83d !important;
  color: #aac83d;
}
.dashboard-employee .widget .widget-item .widget-7 {
  border-top: 3px solid #49c7b1 !important;
  color: #49c7b1;
}
.dashboard-employee .widget .widget-item .widget-8 {
  border-top: 3px solid #e98f8f !important;
  color: #e98f8f;
}
.dashboard-employee .widget .widget-item .widget-content {
  position: relative;
  height: 225px;
  padding: 5px 20px;
  overflow-y: hidden;
  overflow-x: hidden;
  background-color: #ffffff;
}
.dashboard-employee .widget .widget-item .widget-content .btn-padding {
  padding-left: 10px;
  padding-right: 10px;
}
.dashboard-employee .widget .widget-item .widget-content .investment-content {
  margin-top: 30px;
}
.dashboard-employee .widget .widget-item .widget-content .investment-content h4 {
  font-size: 26px !important;
  line-height: 35px;
  margin-bottom: 15px;
  font-weight: 500;
}
.dashboard-employee .extend .widget-content {
  min-height: 580px !important;
}

/* TOGGLE */
.widget-wrapper {
  /* holder ng widget na nagta-toggle (animate height)*/
  position: relative;
  width: 100%;
}

.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%;
}

.widget-foot {
  /*top: 295px;*/
  bottom: 0;
  position: absolute;
  width: 100%;
  left: 0px;
  right: 0px;
  text-align: center;
  min-height: 27px;
  background-color: #ffffff;
}

.request-wrapper-toggled {
  max-height: none;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}

.requests-caret {
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0px;
  background-color: #fff;
  width: 100%;
}

.login {
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  background-color: #eeeeee;
}
.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) {
  .login .login-container {
    margin-top: -240px;
    padding: 20px 30px;
    width: 370px;
  }
}
.login .login-container .logo {
  max-width: 100%;
}
.login .login-container .fw-600 {
  font-weight: 500;
}
.login .login-container .leave-1 {
  position: absolute;
  right: -100px;
  bottom: -40px;
  z-index: 1;
}
.login .login-container .leave-2 {
  position: absolute;
  left: -62px;
  top: -45px;
  z-index: 1;
}
.login .login-container .error {
  color: #d9534f;
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  .login .login-container {
    width: 86%;
    padding: 20px 20px;
  }
}
.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) {
  .login .login-container .Copyright-bottom {
    margin-bottom: -50px;
    font-size: 12px;
  }
}
.login input[type=submit] {
  background-color: #6c9b41 !important;
  color: #ffffff !important;
}
.login input[type=submit]: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;
}

.forgotpassword {
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  background-color: #eeeeee;
}
.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) {
  .forgotpassword .forgotpassword-container {
    margin-top: -240px;
    padding: 20px 30px;
    width: 370px;
  }
}
.forgotpassword .forgotpassword-container .logo {
  max-width: 100%;
}
.forgotpassword .forgotpassword-container .fw-600 {
  font-weight: 500;
}
.forgotpassword .forgotpassword-container .leave-1 {
  position: absolute;
  right: -100px;
  bottom: -40px;
  z-index: 1;
}
.forgotpassword .forgotpassword-container .leave-2 {
  position: absolute;
  left: -62px;
  top: -45px;
  z-index: 1;
}
.forgotpassword .forgotpassword-container .error {
  color: #d9534f;
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  .forgotpassword .forgotpassword-container {
    width: 96%;
    padding: 20px 20px;
  }
}
.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) {
  .forgotpassword .forgotpassword-container .Copyright-bottom {
    margin-bottom: -50px;
    font-size: 12px;
  }
}
.forgotpassword input[type=submit] {
  background-color: #6c9b41 !important;
  color: #ffffff !important;
}
.forgotpassword input[type=submit]: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;
}

.manage-team {
  width: 100%;
  height: 100%;
  position: relative;
}
.manage-team .table-title {
  color: #6c9b41;
  font-weight: 500;
}
.manage-team .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.manage-team .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.manage-team .content .control {
  text-align: right;
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  .manage-team .content .control {
    text-align: center;
  }
  .manage-team .content .control .btn {
    margin-left: 0px !important;
    margin-top: 10px;
  }
}
.manage-team .content .control .btn {
  margin-left: 10px;
}
.manage-team .content a {
  color: #ffffff !important;
}
.manage-team .content .row {
  width: 100%;
  margin: 0px !important;
}

/* Style of new Manage Team */
@font-face {
  font-family: "Rubik";
  /*Defualt*/
  src: url("../../../../../fonts/Rubik/Rubik-Regular.otf");
}
@font-face {
  font-family: "Rubik-Medium";
  src: url("../../../../../fonts/Rubik/Rubik-Medium.otf");
}
.manage-team-new .content .filter-container .search, .manage-team-new .content .filter-container .filter {
  position: relative;
  width: 280px;
}

.manage-team-new {
  width: 100%;
  height: 100%;
  position: relative;
  /* Pagination */
  /* Modal Overrides*/
}
.manage-team-new .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
  /* Switch */
  /* Select2 Override */
}
.manage-team-new .content .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
}
.manage-team-new .content .header-container .title {
  font-family: "Rubik-Medium";
  font-size: 24px;
  line-height: 36px;
  color: #00291b;
}
.manage-team-new .content .header-container .btn-primary {
  font-family: "Rubik-Medium";
  background-color: white;
  border: 1px solid #17ad49;
  color: #17ad49;
  padding: 4px 8px;
  margin-left: 16px;
}
.manage-team-new .content .header-container .btn-primary:hover {
  background-color: #E6FFEE;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
}
.manage-team-new .content .header-container .btn-primary:focus, .manage-team-new .content .header-container .btn-primary:active {
  background-color: #A8F5C2;
  box-shadow: unset;
  outline: unset;
}
.manage-team-new .content .header-container .btn-primary img {
  margin-right: 8px;
}
.manage-team-new .content .header-container .btn-success {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.manage-team-new .content .header-container .btn-sched {
  padding: 8px 0;
  margin-left: 16px;
}
.manage-team-new .content .header-container .btn-sched .btn-primary {
  margin-left: 0;
  color: #ffffff;
  background-color: #17ad49;
}
.manage-team-new .content .header-container .btn-sched .btn-primary:hover {
  background-color: #33DA6B;
}
.manage-team-new .content .header-container .btn-sched .btn-primary:focus, .manage-team-new .content .header-container .btn-sched .btn-primary:active {
  background-color: #009030;
}
.manage-team-new .content .header-container .btn-sched .btn-primary:disabled {
  background-color: #c3cdc9;
  border-color: transparent;
  opacity: 1;
}
.manage-team-new .content .header-container .btn-sched + .tooltip > .tooltip-inner {
  max-width: 160px;
}
.manage-team-new .content .filter-container {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  margin-bottom: 24px;
}
.manage-team-new .content .filter-container .filter .filter-title {
  font-family: "Rubik";
  font-size: 12px;
  color: #5a756b;
  padding-left: 16px;
  padding-top: 4px;
  margin-right: 40px;
  position: absolute;
  top: 2px;
  left: 2px;
  right: 1px;
  border-radius: 4px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, white 25%, white 100%);
  z-index: 1;
  pointer-events: none;
}
.manage-team-new .content .filter-container .filter .filter-title + input[type=text] {
  border-radius: 4px;
}
.manage-team-new .content .filter-container .filter .filter-title + input[type=text]:hover, .manage-team-new .content .filter-container .filter .filter-title + input[type=text]:focus {
  border: 1px solid #17ad49;
}
.manage-team-new .content .filter-container .search input {
  min-height: 48px;
  width: 280px;
  border-color: #cccccc;
  border-radius: 24px;
  padding-left: 16px;
  padding-right: 16px;
}
.manage-team-new .content .filter-container .search img {
  position: absolute;
  right: 16px;
  top: 12px;
  cursor: pointer;
}
.manage-team-new .content .table-container table tr {
  line-height: 48px;
}
.manage-team-new .content .table-container table th,
.manage-team-new .content .table-container table td {
  font-family: "Rubik";
}
.manage-team-new .content .table-container table tr:not(.row-sched):hover {
  background-color: #e6ffee;
  cursor: pointer;
}
.manage-team-new .content .table-container table tr:not(.row-sched):hover .row-actions span:first-child {
  display: inline;
}
.manage-team-new .content .table-container table tr.no-hoverable:hover {
  background-color: unset;
  cursor: unset;
}
.manage-team-new .content .table-container table .row {
  width: 100%;
  margin: 0px;
}
.manage-team-new .content .table-container table .custom-checkbox input[type=checkbox] + label {
  display: inline-flex;
  width: 16px;
  height: 16px;
  position: relative;
  cursor: pointer;
}
.manage-team-new .content .table-container table .custom-checkbox input[type=checkbox] {
  display: none;
}
.manage-team-new .content .table-container table .custom-checkbox input[type=checkbox] + label:before {
  content: "";
  border: 0.1em solid #2d4f43;
  border-radius: 2px;
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: bottom;
  transition: 0.2s;
  z-index: 1;
}
.manage-team-new .content .table-container table .custom-checkbox input[type=checkbox] + label:after {
  content: url("/Images/2021/manage-team/check.png");
  position: absolute;
  right: 3px;
  top: -10px;
  bottom: 0;
  z-index: 11;
  pointer-events: none;
}
.manage-team-new .content .table-container table .custom-checkbox input[type=checkbox]:checked + label:before {
  background-color: #17ad49;
  border-color: #17ad49;
  color: #ffffff;
}
.manage-team-new .content .table-container table .row-actions {
  margin-right: 20px;
}
.manage-team-new .content .table-container table .row-actions span {
  width: 16px;
  margin-right: 16px;
  padding: 8px;
  border-radius: 16px;
  transition: unset;
}
.manage-team-new .content .table-container table .row-actions span:first-child {
  display: none;
}
.manage-team-new .content .table-container table .row-actions span:hover {
  background-color: white;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
}
.manage-team-new .content .table-container table .row-actions .schedule-toggler {
  transform: rotate(180deg);
}
.manage-team-new .content .table-container table .row-actions .schedule-toggler.open {
  transform: unset;
}
.manage-team-new .content .table-container table .row-sched {
  background-color: #f0f2f2;
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.1), 0px -1px 0px #eeeeee;
  display: none;
}
.manage-team-new .content .table-container table .row-sched tr {
  border: unset;
}
.manage-team-new .content .table-container table .row-sched tr:hover {
  background-color: #f0f2f2;
  box-shadow: inset -2px 2px 4px rgba(0, 0, 0, 0.1);
}
.manage-team-new .content .table-container table .day-sched {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  padding-bottom: 8px;
}
.manage-team-new .content .table-container table .day-sched span {
  font-family: "Rubik";
  text-transform: capitalize;
}
.manage-team-new .content .table-container table .day-sched span:first-child {
  color: #698179;
  font-size: 12px;
  line-height: 16px;
}
.manage-team-new .content .table-container table .day-sched span:last-child {
  color: #4b685e;
  line-height: 16px;
}
.manage-team-new .content .switch-container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.manage-team-new .content .switch-container p {
  font-family: "Rubik";
  text-indent: 0;
}
.manage-team-new .content .switch-container .switch {
  display: inline-flex;
  margin: 0 10px;
}
.manage-team-new .content .switch-container .switch input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}
.manage-team-new .content .switch-container .switch input[type=checkbox]:checked + label {
  background: #17ad49;
}
.manage-team-new .content .switch-container .switch input[type=checkbox]:checked + label::after {
  left: calc(100% - 5px);
  transform: translateX(-100%);
}
.manage-team-new .content .switch-container .switch label {
  cursor: pointer;
  width: 48px;
  height: 24px;
  background: grey;
  display: block;
  border-radius: 24px;
  position: relative;
}
.manage-team-new .content .switch-container .switch label::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: 16px;
  transition: 0.3s;
}
.manage-team-new .content .select2-wrapper {
  width: 280px;
  position: relative;
}
.manage-team-new .content .select2-wrapper select {
  min-height: 50px;
  margin-top: 0;
}
.manage-team-new .content .select2-wrapper .select2-container .select2-selection--single {
  font-family: "Rubik";
  height: unset;
  padding: 21px 12px 3px 8px;
  border-color: #cccccc;
  min-height: 48px;
}
.manage-team-new .content .select2-wrapper .select2-container .select2-selection--single .select2-selection__arrow {
  top: 12px;
  right: 12px;
}
.manage-team-new .content .select2-wrapper .clear-select {
  display: none;
}
.manage-team-new .content .select2-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-family: "Rubik";
  color: #2d4f43;
  line-height: 22px;
}
.manage-team-new .content .select2-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.manage-team-new .content .select2-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: unset;
  width: unset;
  top: 12px;
  transition: unset;
  right: 16px;
}
.manage-team-new .content .select2-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow::before {
  content: url("/Images/2021/manage-team/arrow-large.png");
}
.manage-team-new .content .select2-wrapper .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  transform: rotate(180deg);
}
.manage-team-new .content .select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #ffffff;
  cursor: not-allowed !important;
  pointer-events: none;
}
.manage-team-new .content .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__arrow {
  display: none;
}
.manage-team-new .pagination-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
  padding: 16px 20px;
  margin-top: auto;
  box-shadow: inset 0px 1px 0px #c3cdc9;
}
.manage-team-new .pagination-container .page-item {
  width: 60px;
  margin-left: 8px;
  margin-top: 0;
  border-radius: 4px;
}
.manage-team-new .pagination-container .page-item:hover {
  border-bottom: 1px solid #cccccc;
}
.manage-team-new .pagination-container .page-number {
  width: 11%;
}
.manage-team-new .pagination-container .page-number input {
  text-align: center;
  height: 34px;
  border-bottom-color: #cccccc;
}
.manage-team-new .pagination-container .page-number input:focus {
  border-bottom-color: #66afe9;
}
.manage-team-new .pagination-container .previous,
.manage-team-new .pagination-container .next {
  margin: 8px;
}
.manage-team-new .pagination-container .arrow-style {
  height: 14px;
}
.manage-team-new .pagination-container .pagination-text {
  margin: 0 8px;
}
.manage-team-new .modal .modal-dialog {
  width: 450px !important;
  transition: none;
  transform: translate(0, 50%);
}
.manage-team-new .modal .modal-content {
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2), inset 0px 8px 0px #17ad49;
  border-radius: 4px;
  padding: 5px 0;
}
.manage-team-new .modal .modal-header,
.manage-team-new .modal .modal-body,
.manage-team-new .modal .modal-footer {
  padding: 15px 24px;
}
.manage-team-new .modal .modal-footer {
  margin-top: 0;
}
.manage-team-new .modal h1,
.manage-team-new .modal p {
  font-size: 16px;
  line-height: 24px;
  color: #00291b;
}
.manage-team-new .modal h1,
.manage-team-new .modal p strong {
  font-family: "Rubik-Medium";
  margin-bottom: 8px;
}
.manage-team-new .modal p {
  font-family: "Rubik";
}
.manage-team-new .modal .date-container {
  position: relative;
  width: 100%;
}
.manage-team-new .modal .date-container + .date-container {
  margin-top: 15px;
}
.manage-team-new .modal .modal-input-title {
  position: absolute;
  top: 2px;
  left: 2px;
  right: 1px;
  padding-left: 16px;
  padding-top: 5px;
  margin-right: 40px;
  padding-bottom: 8px;
  border-radius: 4px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, white 25%, white 100%);
  font-size: 12px;
  color: #5a756b;
  font-family: "Rubik";
  z-index: 1;
  pointer-events: none;
}
.manage-team-new .modal .modal-input-title + input[type=text],
.manage-team-new .modal .modal-input-title + input[type=number],
.manage-team-new .modal .modal-input-title + textarea {
  border-radius: 4px;
}
.manage-team-new .modal .modal-input-title + input[type=text]:hover,
.manage-team-new .modal .modal-input-title + input[type=text]:focus,
.manage-team-new .modal .modal-input-title + textarea:hover,
.manage-team-new .modal .modal-input-title + textarea:focus {
  border: 1px solid #17ad49;
}
.manage-team-new .modal .input-group.date input {
  border-right: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 20px;
  padding-left: 16px;
  height: 54px;
  box-shadow: unset;
  color: #2d4f43;
  text-align: left;
  border-bottom-color: #cccccc;
}
.manage-team-new .modal .input-group.date .input-group-addon {
  background-color: #ffff;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  cursor: pointer;
}
.manage-team-new .modal .input-group.date input:focus,
.manage-team-new .modal .input-group.date input:hover {
  border-color: #cccccc;
  color: #747c83;
  cursor: pointer;
}
.manage-team-new .modal .input-group.date input:focus {
  box-shadow: unset;
}
.manage-team-new .modal .input-group.date img {
  cursor: pointer;
}
.manage-team-new .modal .btn {
  font-family: "Rubik";
  border: 0;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 4px;
}
.manage-team-new .modal .btn-default {
  color: #17ad49;
  background-color: #ffffff;
}
.manage-team-new .modal .btn-success {
  background-color: #17ad49;
}
.manage-team-new .modal.in .modal-dialog {
  transform: translate(0, 50%);
}

.employee-search {
  width: 100%;
  height: 100%;
  position: relative;
}
.employee-search .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.employee-search .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.employee-search .content .row {
  width: 100%;
  margin: 0px !important;
}
.employee-search fieldset p {
  margin: 0px !important;
}
.employee-search .radio-margin {
  margin-top: 0px;
  margin-right: 10px;
}
.employee-search .radio-margin label {
  margin-left: 10px;
}
.employee-search .employee-profile {
  height: 140px;
}
.employee-search .employee-profile a {
  color: #6c9b41;
}
.employee-search .employee-profile a:visited {
  color: #6c9b41;
}
.employee-search .employee-profile a:active {
  color: #6c9b41;
}
.employee-search .employee-profile a:hover {
  color: #567c34;
}
.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;
}
@media screen and (max-width: 736px) and (min-width: 314px) {
  .employee-search .employee-profile .item-user {
    height: auto !important;
    margin-bottom: 20px;
    float: left;
    text-align: center;
  }
}
.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;
}
.employee-search .employee-profile .item-user h4 {
  font-weight: 500;
  margin-bottom: 4px !important;
  font-size: 18px;
  padding-bottom: 5px;
}
.employee-search .employee-profile .item-user p {
  margin-bottom: 4px !important;
}
.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;
}

.calendar {
  width: 100%;
  height: 100%;
  position: relative;
}
.calendar .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.calendar .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.calendar .content .calendarLegend ul {
  width: 100%;
}
.calendar .content .calendarLegend ul li {
  width: 100%;
}
.calendar .content .calendarLegendno-padding ul li {
  margin-bottom: 10px;
}
.calendar .content .calendarLegendno-padding ul li .leave {
  background-color: #3498db;
}
.calendar .content .calendarLegendno-padding ul li .birthday {
  background-color: #18879b;
}
.calendar .content .calendarLegendno-padding ul li .annual {
  background-color: #573755;
}
.calendar .content .calendarLegendno-padding ul li .loan {
  background-color: #b74541;
}
.calendar .content .calendarLegendno-padding ul li .task {
  background-color: #4d4131;
}
.calendar .content .calendarLegendno-padding ul li .days180 {
  background-color: #f1c40f;
}
.calendar .content .calendarLegendno-padding ul li .days90 {
  background-color: #59b3a4;
}
.calendar .content .calendarLegendno-padding ul li .ob {
  background-color: #ffb6c1;
}
.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;
}
.calendar .content .item .item-user {
  width: 100%;
  height: auto;
}
.calendar .content .row {
  width: 100%;
  margin: 0px !important;
}

.calendarLeave, .calendarBday, .calendarAnnual, .calendarBalance, .calendarTask, .calendarSix, .calendarRegular {
  padding: 0px !important;
}

.fc-day-grid-event .fc-content {
  text-overflow: ellipsis;
}

.attendance {
  width: 100%;
  height: 100%;
  position: relative;
}
.attendance .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.attendance .content .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.employee-profile-v2 {
  width: 1200px;
  height: auto;
  margin: 0px auto;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 40px;
  bottom: 20px;
}
.employee-profile-v2 .clear-sm {
  margin-bottom: 35px !important;
}
.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;
}
.employee-profile-v2 .employee-name {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 22px;
  color: #454546;
  font-weight: 600;
}
.employee-profile-v2 label {
  color: #747c83;
  font-weight: 500;
}
.employee-profile-v2 p {
  font-weight: 600;
  color: #454546;
}
.employee-profile-v2 .section-header {
  font-size: 16px;
  color: #6c9b41;
  font-weight: 600;
}
.employee-profile-v2 .table-style-container input[type=time] {
  border-bottom: 0px !important;
}
.employee-profile-v2 .employee-profile-container {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  min-height: 400px;
}
.employee-profile-v2 .employee-profile-container .left-panel {
  width: 15%;
  height: auto;
  position: fixed;
  top: 110px;
  left: 13%;
}
@media screen and (max-width: 1280px) {
  .employee-profile-v2 .employee-profile-container .left-panel {
    left: 30px;
    width: 18%;
  }
}
.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;
}
.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;
}
.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;
}
.employee-profile-v2 .employee-profile-container .left-panel .pop-up-container {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}
.employee-profile-v2 .employee-profile-container .left-panel .employee-menu {
  width: 100%;
  height: auto;
  margin-top: 20px;
}
.employee-profile-v2 .employee-profile-container .left-panel .employee-menu ul {
  width: 100%;
}
.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;
}
.employee-profile-v2 .employee-profile-container .left-panel .employee-menu ul .active-item {
  color: #333333;
}
.employee-profile-v2 .employee-profile-container .right-panel {
  width: 75%;
  margin-left: 20%;
  height: auto;
  float: left;
}
.employee-profile-v2 .employee-profile-container .right-panel::-webkit-scrollbar {
  display: none !important;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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%;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.employee-profile-v2 .employee-profile-container .right-panel .box-content .active-section {
  background-color: #fbfbfb;
  border: 1px solid #eeeeee !important;
}
.employee-profile-v2 .employee-profile-container .right-panel .box-content .active-section label {
  font-weight: 600;
}
.employee-profile-v2 .employee-profile-container .right-panel .box-content .active-section i {
  display: inline-block;
}
.employee-profile-v2 .employee-profile-container .right-panel .box-content .add-salary label {
  font-weight: 600;
}
.employee-profile-v2 .employee-profile-container .right-panel .box-content .box-item {
  width: 100%;
  display: inline-block;
  min-height: 300px;
}
.employee-profile-v2 .employee-profile-container .right-panel .box-content .box-item-2 {
  width: 100%;
  display: inline-block;
  min-height: 300px;
}
.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;
}
.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) {
  .employee-profile-v2 .employee-profile-container .nav-panel {
    right: 30px;
  }
}
.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) {
  .employee-profile-v2 .employee-profile-container .nav-panel .pop-nav {
    right: 20px;
  }
}
.employee-profile-v2 .employee-profile-container .nav-panel .pop-nav ul {
  position: relative !important;
  top: 0px;
}
.employee-profile-v2 .employee-profile-container .nav-panel .pop-nav ul li {
  color: #aaaaaa;
  font-size: 14px;
  text-align: left;
}
.employee-profile-v2 .employee-profile-container .nav-panel .pop-nav ul li:Hover {
  color: #126b7b;
}
.employee-profile-v2 .employee-profile-container .nav-panel ul {
  position: absolute;
  top: 30px;
  left: 0px;
  right: 0px;
  color: #aaaaaa;
}
.employee-profile-v2 .employee-profile-container .nav-panel ul a {
  color: #aaaaaa;
}
.employee-profile-v2 .employee-profile-container .nav-panel ul:Hover {
  color: #454546;
}
.employee-profile-v2 .employee-profile-container .nav-panel ul:Hover a {
  color: #454546;
}
.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;
}

.active-button a {
  color: #18879b !important;
}

.hide-item {
  display: none;
}

.case {
  min-height: 100px;
}

.my-leaves {
  width: 100%;
  height: 100%;
  position: relative;
}
.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;
}
.my-leaves .title .add {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 14px;
}
.my-leaves .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.my-leaves .content fieldset {
  float: left;
  width: 100%;
}
.my-leaves .content .column-200px {
  width: 200px;
}
.my-leaves .content .item .item-user {
  width: 100%;
  height: auto;
}
.my-leaves .content .row {
  width: 100%;
  float: left;
}
.my-leaves .content .table-leave table tr th:nth-child(9) {
  width: 90px;
  text-align: center;
}
.my-leaves .content .table-leave table tr th:nth-child(10) {
  width: 90px;
  text-align: center;
}
.my-leaves .content .table-leave table tr th .btn {
  padding: 5px 15px;
}
.my-leaves .content .table-leave table tr td:nth-child(9) {
  width: 90px;
  text-align: center;
}
.my-leaves .content .table-leave table tr td:nth-child(9) a {
  color: white !important;
}

.nav-tabs > li > input {
  font-weight: normal !important;
}

.nav-tabs > li > input {
  border: 0px !important;
}

.nav-tabs > li > input {
  background: transparent !important;
  font-weight: 600;
  font-size: 14px;
}

.nav-tabs > li > a:hover {
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

.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;
}

.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;
}

.nav-tabs {
  border-bottom: 2px solid #eeeeee !important;
}

.leave-count {
  color: #6c9b41;
}

.sub-title span {
  font-size: 20px;
  color: #6c9b41;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  display: block;
}
.sub-title a {
  text-decoration: none;
}
.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;
}*/
.coa {
  width: 100%;
  height: 100%;
  position: relative;
}
.coa .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.coa .title .add {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 14px;
}
.coa .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.coa .content fieldset {
  float: left;
  width: 100%;
}
.coa .content .column-200px {
  width: 200px;
}
.coa .content .item .item-user {
  width: 100%;
  height: auto;
}
.coa .content .row {
  width: 100%;
  float: left;
}
.coa .content .table-leave table tr th:nth-child(9) {
  width: 90px;
  text-align: center;
}
.coa .content .table-leave table tr th:nth-child(10) {
  width: 90px;
  text-align: center;
}
.coa .content .table-leave table tr th .btn {
  padding: 5px 15px;
}
.coa .content .table-leave table tr td:nth-child(9) {
  width: 90px;
  text-align: center;
}
.coa .content .table-leave table tr td:nth-child(9) a {
  color: white !important;
}

.nav-tabs > li > input {
  border: 0px !important;
}

.nav-tabs > li > input {
  background: transparent !important;
  font-weight: 600;
  font-size: 14px;
}

.nav-tabs > li > a {
  border: 0px !important;
}
.nav-tabs > li > a:hover {
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

.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;
}

.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;
}

.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;
}

.nav-tabs {
  border-bottom: 2px solid #eeeeee !important;
}

.leave-count {
  color: #6c9b41;
}

.sub-title span {
  font-size: 20px;
  color: #6c9b41;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  display: block;
}
.sub-title a {
  text-decoration: none;
}
.sub-title a h2 {
  text-decoration: none !important;
  font-weight: 600;
}

.overtime {
  width: 100%;
  height: 100%;
  position: relative;
}
.overtime .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.overtime .title .add {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 14px;
}
.overtime .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.overtime .content fieldset {
  float: left;
  width: 100%;
}
.overtime .content .column-200px {
  width: 200px;
}
.overtime .content .item .item-user {
  width: 100%;
  height: auto;
}
.overtime .content .row {
  width: 100%;
  float: left;
}
.overtime .content .table-leave table tr th:nth-child(9) {
  width: 90px;
  text-align: center;
}
.overtime .content .table-leave table tr th:nth-child(10) {
  width: 90px;
  text-align: center;
}
.overtime .content .table-leave table tr th .btn {
  padding: 5px 15px;
}
.overtime .content .table-leave table tr td:nth-child(9) {
  width: 90px;
  text-align: center;
}
.overtime .content .table-leave table tr td:nth-child(9) a {
  color: white !important;
}

.nav-tabs > li > input {
  border: 0px !important;
}

.nav-tabs > li > input {
  background: transparent !important;
  font-weight: 600;
  font-size: 14px;
}

.nav-tabs > li > a {
  border: 0px !important;
}
.nav-tabs > li > a:hover {
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

.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;
}

.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;
}

.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;
}

.nav-tabs {
  border-bottom: 2px solid #eeeeee !important;
}

.highlight {
  color: #6c9b41;
}

.sub-title span {
  font-size: 20px;
  color: #6c9b41;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  display: block;
}
.sub-title a {
  text-decoration: none;
}
.sub-title a h2 {
  text-decoration: none !important;
  font-weight: 600;
}

.schedule-adjustment {
  width: 100%;
  height: 100%;
  position: relative;
}
.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;
}
.schedule-adjustment .title .add {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 14px;
}
.schedule-adjustment .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.schedule-adjustment .content fieldset {
  float: left;
  width: 100%;
}
.schedule-adjustment .content .column-200px {
  width: 200px;
}
.schedule-adjustment .content .item .item-user {
  width: 100%;
  height: auto;
}
.schedule-adjustment .content .row {
  width: 100%;
  float: left;
}
.schedule-adjustment .content .table-leave table tr th:nth-child(9) {
  width: 90px;
  text-align: center;
}
.schedule-adjustment .content .table-leave table tr th:nth-child(10) {
  width: 90px;
  text-align: center;
}
.schedule-adjustment .content .table-leave table tr th .btn {
  padding: 5px 15px;
}
.schedule-adjustment .content .table-leave table tr td:nth-child(9) {
  width: 90px;
  text-align: center;
}
.schedule-adjustment .content .table-leave table tr td:nth-child(9) a {
  color: white !important;
}

.nav-tabs > li > input {
  border: 0px !important;
}

.nav-tabs > li > input {
  background: transparent !important;
  font-weight: 600;
  font-size: 14px;
}

.nav-tabs > li > a {
  border: 0px !important;
}
.nav-tabs > li > a:hover {
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

.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;
}

.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;
}

.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;
}

.nav-tabs {
  border-bottom: 2px solid #eeeeee !important;
}

.leave-count {
  color: #6c9b41;
}

.sub-title span {
  font-size: 20px;
  color: #6c9b41;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  display: block;
}
.sub-title a {
  text-decoration: none;
}
.sub-title a h2 {
  text-decoration: none !important;
  font-weight: 600;
}

.undertime {
  width: 100%;
  height: 100%;
  position: relative;
}
.undertime .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.undertime .title .add {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 14px;
}
.undertime .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.undertime .content fieldset {
  float: left;
  width: 100%;
}
.undertime .content .column-200px {
  width: 200px;
}
.undertime .content .item .item-user {
  width: 100%;
  height: auto;
}
.undertime .content .row {
  width: 100%;
  float: left;
}
.undertime .content .table-leave table tr th:nth-child(9) {
  width: 90px;
  text-align: center;
}
.undertime .content .table-leave table tr th:nth-child(10) {
  width: 90px;
  text-align: center;
}
.undertime .content .table-leave table tr th .btn {
  padding: 5px 15px;
}
.undertime .content .table-leave table tr td:nth-child(9) {
  width: 90px;
  text-align: center;
}
.undertime .content .table-leave table tr td:nth-child(9) a {
  color: white !important;
}

.nav-tabs > li > input {
  border: 0px !important;
}

.nav-tabs > li > input {
  background: transparent !important;
  font-weight: 600;
  font-size: 14px;
}

.nav-tabs > li > a {
  border: 0px !important;
}
.nav-tabs > li > a:hover {
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

.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;
}

.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;
}

.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;
}

.nav-tabs {
  border-bottom: 2px solid #eeeeee !important;
}

.highlight {
  color: #6c9b41;
}

.sub-title span {
  font-size: 20px;
  color: #6c9b41;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  display: block;
}
.sub-title a {
  text-decoration: none;
}
.sub-title a h2 {
  text-decoration: none !important;
  font-weight: 600;
}

.official-business {
  width: 100%;
  height: 100%;
  position: relative;
}
.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;
}
.official-business .title .add {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 14px;
}
.official-business .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.official-business .content fieldset {
  float: left;
  width: 100%;
}
.official-business .content .column-200px {
  width: 200px;
}
.official-business .content .item .item-user {
  width: 100%;
  height: auto;
}
.official-business .content .row {
  width: 100%;
  float: left;
}
.official-business .content .table-leave table tr th:nth-child(9) {
  width: 90px;
  text-align: center;
}
.official-business .content .table-leave table tr th:nth-child(10) {
  width: 90px;
  text-align: center;
}
.official-business .content .table-leave table tr th .btn {
  padding: 5px 15px;
}
.official-business .content .table-leave table tr td:nth-child(9) {
  width: 90px;
  text-align: center;
}
.official-business .content .table-leave table tr td:nth-child(9) a {
  color: white !important;
}

.nav-tabs > li > input {
  border: 0px !important;
}

.nav-tabs > li > input {
  background: transparent !important;
  font-weight: 600;
  font-size: 14px;
}

.nav-tabs > li > a {
  border: 0px !important;
}
.nav-tabs > li > a:hover {
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 2px solid #18879b !important;
  margin-bottom: -1px;
}

.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;
}

.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;
}

.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;
}

.nav-tabs {
  border-bottom: 2px solid #eeeeee !important;
}

.highlight {
  color: #6c9b41;
}

.sub-title span {
  font-size: 20px;
  color: #6c9b41;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  display: block;
}
.sub-title a {
  text-decoration: none;
}
.sub-title a h2 {
  text-decoration: none !important;
  font-weight: 600;
}

.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;
}
.error-page .img-container {
  width: 100%;
  height: auto;
  margin-top: 120px;
  text-align: center;
  display: inline-block;
}
.error-page .content {
  width: 100%;
  height: auto;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  color: #18879b;
  margin-top: 20px;
}
.error-page .btn-control {
  width: 100%;
  margin-top: 30px;
}

.change-password {
  width: 100%;
  height: 100%;
  position: relative;
}
.change-password .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.change-password .content span {
  line-height: 20px !important;
}
.change-password .content .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.error-color {
  color: #d9534f;
}

.biolog {
  width: 100%;
  height: 100%;
  position: relative;
}
.biolog .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.biolog .content .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.expiry {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #eeeeee;
}
.expiry .container {
  width: 730px;
  position: absolute;
  left: 0px;
  right: 0px;
  margin-right: auto;
  margin-left: auto;
  top: 100px;
}
.expiry .container:hover .title {
  display: none;
}
.expiry .container:hover .title-blue {
  display: inline-block !important;
}
.expiry .container:hover .error-image-1 {
  background-image: url("../../../../Images/error/disconnection-img-2.png");
}
.expiry .container:hover .footer .link {
  display: inline-block;
}
.expiry .container:hover .footer .nolink {
  display: none;
}
.expiry .container:hover .footer .logo img {
  width: 200px;
}
.expiry .container:hover .footer .logo .logo-colored {
  display: inline-block;
}
.expiry .container:hover .footer .logo .logo-grey {
  display: none;
}
.expiry .container .animate-icon {
  width: 100%;
  height: 220px;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.expiry .container .animate-icon .title {
  position: absolute;
  left: 60px;
  bottom: 15px;
  background: #eeeeee;
  padding: 10px;
  font-weight: 800;
  color: #454546;
}
.expiry .container .animate-icon .title span {
  font-size: 35px;
}
.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;
}
.expiry .container .animate-icon .title-blue span {
  font-size: 35px;
}
.expiry .container .error-image-1 {
  background-image: url("../../../../Images/error/disconnection-img-1.png");
}
.expiry .container .error-image-2 {
  background-image: url("../../../../Images/error/disconnection-img-2.png");
}
.expiry .container .content {
  line-height: 35px;
  font-size: 15px;
  margin-top: 5px;
  color: #454546;
  padding-left: 25px;
}
.expiry .container .col-md-6 {
  width: 50%;
  float: left;
}
.expiry .container .footer {
  display: block;
  padding-left: 25px;
  margin-top: 100px;
}
.expiry .container .footer .logo img {
  width: 200px;
  margin-right: 60px;
}
.expiry .container .footer .logo .logo-colored {
  display: none;
}
.expiry .container .footer .logo .logo-grey {
  display: inline-block;
}
.expiry .container .footer .link {
  display: none;
}
.expiry .container .footer .link li {
  width: 100%;
  padding: 5px 0px;
  display: inline-block;
}
.expiry .container .footer .link li a {
  text-decoration: underline;
}
.expiry .container .footer .nolink {
  display: inline-block;
}
.expiry .container .footer .nolink li {
  width: 100%;
  padding: 5px 0px;
  display: inline-block;
  color: #454546;
}

.underconstruction {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #eeeeee;
}
.underconstruction .container {
  width: 740px;
  position: absolute;
  left: 0px;
  right: 0px;
  margin-right: auto;
  margin-left: auto;
  top: 100px;
}
.underconstruction .container:hover .title {
  display: none;
}
.underconstruction .container:hover .title-blue {
  display: inline-block !important;
}
.underconstruction .container:hover .error-image-1 {
  background-image: url("../../../../Images/error/underconstruction-img-1.png");
}
.underconstruction .container:hover .footer .link {
  display: inline-block;
}
.underconstruction .container:hover .footer .nolink {
  display: none;
}
.underconstruction .container:hover .footer .logo img {
  width: 200px;
}
.underconstruction .container:hover .footer .logo .logo-colored {
  display: inline-block;
}
.underconstruction .container:hover .footer .logo .logo-grey {
  display: none;
}
.underconstruction .container .animate-icon {
  width: 100%;
  height: 220px;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.underconstruction .container .animate-icon .title {
  position: absolute;
  left: 60px;
  bottom: 15px;
  background: #eeeeee;
  padding: 10px;
  font-weight: 800;
  color: #454546;
}
.underconstruction .container .animate-icon .title span {
  font-size: 35px;
}
.underconstruction .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;
}
.underconstruction .container .animate-icon .title-blue span {
  font-size: 35px;
}
.underconstruction .container .error-image-1 {
  background-image: url("../../../../Images/error/disconnection-img-1.png");
}
.underconstruction .container .error-image-2 {
  background-image: url("../../../../Images/error/underconstruction-img-1.png");
}
.underconstruction .container .content {
  line-height: 35px;
  font-size: 15px;
  margin-top: 5px;
  color: #454546;
  padding-left: 25px;
}
.underconstruction .container .col-md-6 {
  width: 50%;
  float: left;
}
.underconstruction .container .footer {
  display: block;
  padding-left: 25px;
  margin-top: 100px;
}
.underconstruction .container .footer .logo img {
  width: 200px;
  margin-right: 60px;
}
.underconstruction .container .footer .logo .logo-colored {
  display: none;
}
.underconstruction .container .footer .logo .logo-grey {
  display: inline-block;
}
.underconstruction .container .footer .link {
  display: none;
}
.underconstruction .container .footer .link li {
  width: 100%;
  padding: 5px 0px;
  display: inline-block;
}
.underconstruction .container .footer .link li a {
  text-decoration: underline;
}
.underconstruction .container .footer .nolink {
  display: inline-block;
}
.underconstruction .container .footer .nolink li {
  width: 100%;
  padding: 5px 0px;
  display: inline-block;
  color: #454546;
}

.error404 {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 70px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #eeeeee;
}
.error404 .container {
  width: 1100px;
  position: absolute;
  left: 0px;
  right: 0px;
  margin-right: auto;
  margin-left: auto;
  top: 100px;
}
.error404 .container:hover .content .link {
  display: inline-block;
}
.error404 .container:hover .content .nolink {
  display: none;
}
.error404 .container .sprout-img {
  width: 330px;
  height: auto;
  float: left;
  text-align: left;
}
.error404 .container .content {
  width: 700px;
  height: auto;
  float: left;
}
.error404 .container .content .title {
  width: 100%;
  float: left;
  font-size: 45px;
  color: #454546;
  font-weight: 800;
  margin-top: 30px;
  margin-bottom: 10px;
}
.error404 .container .content span {
  font-size: 15px;
}
.error404 .container .content span .self {
  width: auto;
  padding: 5px;
  background-color: #18879b;
  display: inline-block;
  font-weight: 800;
  color: #ffffff;
}
.error404 .container .content span .self:hover {
  background-color: #126b7b;
  cursor: pointer;
}
.error404 .container .content .link {
  display: none;
}
.error404 .container .content .link li {
  width: 100%;
  padding: 5px 0px;
  display: inline-block;
}
.error404 .container .content .link li a {
  text-decoration: underline;
}
.error404 .container .content .nolink {
  display: inline-block;
}
.error404 .container .content .nolink li {
  width: 100%;
  padding: 5px 0px;
  display: inline-block;
  color: #454546;
}

.audit-trail {
  width: 100%;
  height: 100%;
  position: relative;
}
.audit-trail .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.audit-trail .content .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.audit-trail .content .row {
  width: 100%;
  margin: 0px !important;
}
.audit-trail .content .table-style-container .Pagination table {
  table-layout: none;
  width: 200px;
}
.audit-trail .content .table-style-container .Pagination table:hover {
  background-color: #ffffff;
}
.audit-trail .content .table-style-container .Pagination table td {
  width: auto !important;
}
.audit-trail .content .table-style-container .Pagination table td:hover {
  background-color: #ffffff;
}

.Workplace {
  width: 100%;
  height: 100%;
  position: relative;
}
.Workplace .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.Workplace .content .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.Workplace .content .row {
  width: 100%;
  margin: 0px !important;
}
.Workplace .content .table-style-container table {
  table-layout: none;
}
.Workplace .content .table-style-container table:hover {
  background-color: #ffffff;
}
.Workplace .content .table-style-container table th {
  border-top: 0px !important;
}
.Workplace .content .table-style-container table th:hover {
  background-color: #ffffff;
}
.Workplace .content .table-style-container .Pagination table {
  table-layout: none;
  width: 200px;
}
.Workplace .content .table-style-container .Pagination table:hover {
  background-color: #ffffff;
}
.Workplace .content .table-style-container .Pagination table td {
  width: auto !important;
}
.Workplace .content .table-style-container .Pagination table td:hover {
  background-color: #ffffff;
}

.FieldMaintinance {
  width: 100%;
  height: 100%;
  position: relative;
}
.FieldMaintinance .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.FieldMaintinance .content .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.FieldMaintinance .content .row {
  width: 100%;
  margin: 0px !important;
}
.FieldMaintinance .content .table-style-container table {
  table-layout: none;
}
.FieldMaintinance .content .table-style-container table:hover {
  background-color: #ffffff;
}
.FieldMaintinance .content .table-style-container table th {
  border-top: 0px !important;
}
.FieldMaintinance .content .table-style-container table th:hover {
  background-color: #ffffff;
}
.FieldMaintinance .content .table-style-container .Pagination table {
  table-layout: none;
  width: 200px;
}
.FieldMaintinance .content .table-style-container .Pagination table:hover {
  background-color: #ffffff;
}
.FieldMaintinance .content .table-style-container .Pagination table td {
  width: auto !important;
}
.FieldMaintinance .content .table-style-container .Pagination table td:hover {
  background-color: #ffffff;
}

.Assets {
  width: 100%;
  height: 100%;
  position: relative;
}
.Assets .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.Assets .content .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.Assets .content .row {
  width: 100%;
  margin: 0px !important;
}
.Assets .content .table-style-container .Pagination table {
  table-layout: none;
  width: 200px;
}
.Assets .content .table-style-container .Pagination table:hover {
  background-color: #ffffff;
}
.Assets .content .table-style-container .Pagination table td {
  width: auto !important;
}
.Assets .content .table-style-container .Pagination table td:hover {
  background-color: #ffffff;
}

.leave-report {
  width: 100%;
  height: 100%;
  position: relative;
}
.leave-report .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.leave-report .content .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.bulk-upload {
  width: 100%;
  height: 100%;
  position: relative;
}
.bulk-upload .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.bulk-upload .content .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.bulk-upload .content .row {
  width: 100%;
  margin: 0px !important;
}
.bulk-upload .content h3 {
  font-weight: 400;
  margin-bottom: 10px;
}

.orgchart {
  width: 100%;
  height: 100%;
  position: relative;
}
.orgchart .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  position: relative;
  float: left;
  margin-bottom: 50px;
}
.orgchart .content .title {
  font-size: 24px;
  line-height: 40px;
  color: #6c9b41;
  margin-bottom: 20px;
  position: absolute;
  left: 2%;
  top: 10px;
  z-index: 40;
}
.orgchart .content .item .item-user {
  width: 100%;
  height: auto;
}
.orgchart .content .row {
  width: 100%;
  margin: 0px !important;
}

.form-templates {
  width: 100%;
  height: 100%;
  position: relative;
}
.form-templates .content {
  margin-top: 40px;
  width: 100%;
  padding: 1% 2%;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  float: left;
  margin-bottom: 50px;
}
.form-templates .content .title {
  font-size: 24px;
  line-height: 40px;
  border-bottom: 1px solid #eeeeee;
  color: #6c9b41;
  float: left;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.form-templates .content .title .add {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 14px;
}
.form-templates .content .item .item-user {
  width: 100%;
  height: auto;
}
.form-templates .content .row {
  width: 100%;
  margin: 0px !important;
}

/*
@import "page/change-password";*/

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../sass/main.scss%22,%22../sass/global/mixin.scss%22,%22../sass/ui-component/fonts.scss%22,%22../sass/global/global.scss%22,%22../sass/ui-component/button.scss%22,%22../sass/ui-component/input.scss%22,%22../sass/ui-component/select.scss%22,%22../sass/ui-component/table.scss%22,%22../sass/ui-component/textarea.scss%22,%22../sass/ui-component/typography.scss%22,%22../sass/ui-component/modal.scss%22,%22../sass/ui-component/checkbox.scss%22,%22../sass/ui-component/label.scss%22,%22../sass/ui-component/tab.scss%22,%22../sass/ui-component/loading.scss%22,%22../sass/ui-component/badge.scss%22,%22../sass/ui-component/animate.scss%22,%22../sass/page/accesslevel.scss%22,%22../sass/page/dashboard.scss%22,%22../sass/page/dashboard-employee.scss%22,%22../sass/page/login.scss%22,%22../sass/page/forgotpassword.scss%22,%22../sass/page/manage-team.scss%22,%22../sass/page/employee-search.scss%22,%22../sass/page/calendar.scss%22,%22../sass/page/attendance.scss%22,%22../sass/page/employee-profile.scss%22,%22../sass/page/my-leaves.scss%22,%22../sass/page/coa.scss%22,%22../sass/page/overtime.scss%22,%22../sass/page/schedule-adjustment.scss%22,%22../sass/page/undertime.scss%22,%22../sass/page/offical-business.scss%22,%22../sass/page/error.scss%22,%22../sass/page/change-password.scss%22,%22../sass/page/biolog.scss%22,%22../sass/page/expiry.scss%22,%22../sass/page/audit-trail.scss%22,%22../sass/page/maintinance.scss%22,%22../sass/page/leave-report.scss%22,%22../sass/page/bulk-upload.scss%22,%22../sass/page/orgchart.scss%22,%22../sass/page/form-templates.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOA;ACPA;;AAAA;;AAAA;AAMA;AAMA;AAgBA;AACA;AAAsB;AAItB;AAQA;AAYA;AAkBA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcA;AAKA;AAKA;AAKA;AAKA;AAIA;AAWA;AAcA;AAEA;AASA;AAUA;AASA;AAQA;AAEA;AAOA;AAMA;AAMA;AAQA;AAOA;AAQA;AAMA;AC9NQ;ADgOR;EAAoB;IAAO;;EACvB;IAAK;;;AAET;AAAyB;EACrB;IAAO;;EACP;IAAK;;;AAET;AAA4B;EACxB;IAAO;;EACP;IAAK;;;AAET;AAAuB;EACnB;IAAO;;EACP;IAAK;;;AE7OT;;AAAA;AAAA;;AAAA;AAQA;AAAA;AAAA;AAAA;EAII;EACA;EACA;EACA;AACH;EACG;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACC;EACD;EACA;AACA;EACA;EAEA;EACA;;;AAGJ;EACI;EACA;EACE;EACF;EACA;EACA;AAA2B;EAC3B;AAA8B;EAC9B;AAAyB;;;AAG7B;EACI,kBFQmB;;;AELvB;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAIJ;AAEA;EACI;EACA;AACA;EACA;EACA;EACA;AAA2B;EAC3B;AAA8B;EAC9B;AAAyB;;AAEzB;EAVJ;IAWQ;IACA;;;AAGJ;EAfJ;IAgBQ;;;AAGJ;EAnBJ;IAoBQ;;;;AAIR;EACI;EACA;;;AAEJ;EACI;EACA;;;AAGJ;AAEA;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAIJ;AAEA;EACI,OFrCqB;;;AEwCzB;EACI,OFzCqB;;;AE4CzB;EACI,OF7CqB;;;AEgDzB;EACI,OFhDqB;;;AEoDzB;EACI,OFtDqB;;;AEwDzB;AAEA;EACI;EACA,aFxJO;EEyJP;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAKJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;;;AAIJ;EACI;EACA;;;AAIJ;EACI;;;AAGJ;EACK;;;AAGL;AAEA;EACM;EACF;;;AAEJ;EACI;;AAEA;EACI;;;AAKR;EACI;EACA;EACA;;;AAIC;EADL;IAGQ;IACA;;;;AAKH;EADL;IAGQ;;;;AAKH;EADL;IAGQ;;;;AAIR;EACI;;;AAGJ;EACI;;;AH1QJ;AIZA;EACI;EACA;EACA,WHwHc;EAgBhB,oBADqB;EAErB,uBAFqB;EAGrB,eAHqB;EGrInB;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;;AAIR;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI,kBHyDkB;EGxDlB;;AAEA;EACI,kBHsDc;EA4DpB,oBAD6B;EAE7B,iBAF6B;EAG7B,gBAH6B;EAI7B,eAJ6B;EAK7B,YAL6B;;;AG3G/B;EACI,kBH6DqB;EG5DrB,OHXkB;;AGalB;EACI,kBH0DiB;EA6CvB,oBAD6B;EAE7B,iBAF6B;EAG7B,gBAH6B;EAI7B,eAJ6B;EAK7B,YAL6B;;;AGjG/B;EACI,kBHyCkB;EGxClB,OHrBkB;;AGuBlB;EACI,kBHsCc;EAuDpB,oBAD6B;EAE7B,iBAF6B;EAG7B,gBAH6B;EAI7B,eAJ6B;EAK7B,YAL6B;;;AGtF/B;EACI,kBHmCmB;EGlCnB,OHhCkB;;AGkClB;EACI,kBHgCe;EAkDrB,oBAD6B;EAE7B,iBAF6B;EAG7B,gBAH6B;EAI7B,eAJ6B;EAK7B,YAL6B;;;AG5E/B;EACI,kBHVmB;EGWnB,OHpCmB;;AGsCnB;EACI,OHvCe;EGwCf,kBHVe;EGWf;;;AAIR;EACI;EACA;;;AAGJ;EACI;;;AAGJ;EACI,OH1BmB;EG2BnB,kBH9BmB;EG+BnB;;AAEA;EACI,kBHlCe;;;AGsCvB;EACI;EACA;;;AAIJ;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA,kBHlDe;EGmDd;EACD;;AAEA;EACI,kBHtFW;EGuFX;EACA,OH7FU;;AGiGlB;EACI;EACA;EACA;EACA;EACA;EACA,kBHnEe;EGoEf;EACA;;AAEE;EACE,kBHvGW;EGwGX;EACA,OH9GU;;AGkHlB;EACI,kBH9Ge;EG+Gf;EACA,OHrHc;;;AI9BtB;AACA;EACI;EACA;EACA;EACA,OJkDmB;EIjDnB,WJoHc;EInHd;EACA;EACA;EACA;;;AAMA;AAAA;EAEA;EACA;EACA;EACA;;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;;;AAEJ;AAAA;EAEI;EACA;EACA;EACA;;;AAGJ;EACI;EACA,YJXkB;EIYlB;;;AAIJ;EACI;EACA;EACA,YJYmB;EIXnB,OJImB;EIHnB;EJuFF,oBADqB;EAErB,uBAFqB;EAGrB,eAHqB;;;AIlFvB;AACA;EACI;EACA,OJJmB;;;AISvB;EACI;EACA,OJHmB;EIInB,kBJNmB;;;AISvB;EACK;EACD;EACA;EACA;;;AAGJ;EACK;EACD,OJlBmB;EImBnB;;;AAGJ;EACI;;;AAGJ;;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;AAAA;AAcA;EACI;EACA;EACA;;AAEA;EACI;;;AAUR;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EAEA;;;AAGJ;EACI;;;AAMJ;;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;AAAA;AAcA;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;;;AAIR;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;ACpMJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA,WLoHgB;EKnHhB;EACA,OL+CqB;EK9CrB;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEG;EArBL;IAsBW;;;;AAIX;EACI,OL4BmB;EK3BnB;;;AC5BJ;EACC;EACA;EACG;;AAEH;EACC;EACG;EACA;EACA;;AAEG;EANP;IAQW;;;AAGJ;EAXP;IAYW;;;AAGJ;EAfP;IAgBU;;;AAGN;EACO;EACA;EACA;EACA;EACA,ON2BW;EM1BX;;AAGJ;EACG;EACA;EACA;EACA;EACC;;AAIJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA,ONMW;;AMJX;EACI,kBNUO;;AMLf;EACI;EACA;EACA,ONJW;EMKX;EACA;EACA;EACA;EACA;;;AAMZ;EACC;EACA;EACG;;AAEH;EACC;EACG;EACA;EACA;;AAIA;EACO;EACA;EACA;EACA;EACA,ONjCW;EMmCX;;AAGJ;EACG,kBNhEW;EMiEX;EACA;EACA;EACC;EACA;EACD;EACA;EACC;EACA;EACA;;AAKJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA,ON/DW;;AMmEX;EACI;;AAIJ;EACI;;AAGJ;EACI,kBNrEO;;AM0Ef;EACI;EACA;EACA;EACA,ONxGW;EMyGX;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;;AAEA;EACI,ONnDK;;AMuDb;EACI;;AAEA;EACI,ON3DK;;AM+Db;EACI;;AAEA;EACI,ON9EE;;;AMyFtB;EACC;EACA;EACG;;AAIH;EACC;EACG;EACA;EACA;EACG;;AAEA;EAPP;IASW;;;AAGJ;EAZP;IAaW;;;AAGJ;EAhBP;IAiBU;;;AAGN;EACO;EACA;EACA,kBNpLU;EMqLV;EACA,ON7JW;EM8JX;;AAGJ;EACG,kBN3LW;EM4LX;EACA;EACA;EACA;;AAGH;EACI;EACA;EACA;EACA;EACA;EACA;EACA,ONjLW;;AMqLX;EACI,kBN9MM;;AMmNd;EACI;EACA;EACA;EACA;EACA,ONlNW;EMmNX;EACA;EACA;EACA;EACA;EACA;;;AAQZ;EACC;EACA;EACG;;AAEH;EACC;EACG;EACA;EACA;;AAEG;EANP;IAQW;;;AAGJ;EAXP;IAYW;;;AAGJ;EAfP;IAgBU;;;AAGN;EACO;EACA;EACA;EACA;EACA,ON1OW;EM2OX;;AAGJ;EACG,kBNxQW;EMyQX;EACA;EACA;EACC;EACA;EACD;EACA;EACC;EACA;EACA;;AAKJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA,ONvQW;;AMyQX;EACI;EACA;;AAIJ;EACI;;AAGJ;EACI,kBN5SM;;AMiTd;EACI;EACA;EACA;EACA,ON/SW;EMgTX;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAGJ;EACI;;AAEA;EACI,ONnQK;;AMuQb;EACI;;AAEA;EACI,ON3QK;;AM+Qb;EACI;;AAEA;EACI,ON9RE;;;AMySd;EACI;EACA;;;AAQR;EAFJ;IAIe;;;;AAMf;EACI;;;AAGJ;EACI;;AAEA;EACI;;;AAKR;EACI;;;ACraJ;EACE;EACA;EACA;EAEA,OPmDqB;EOlDrB,WPqHgB;EOpHhB;EACA;EACA;EACA;EACA;;;AAGF;AACA;EACE;EACA,OPsCqB;;;AOnCvB;AAEA;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;ACvCF;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;AAGD;EACC;;;ACrBD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBTQoB;ESPpB;;AAEA;EACC;EACA;;AAKF;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBTZoB;ESapB;EACA;;AAEA;EACC;EACA;;AAIF;EACC;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA,OTmBmB;ESlBnB;EACA;;AAIF;EACC;EACA;EACA;EACA;EACA;EACA;EACA;;AAGD;EACC;;AAGD;EACC;;AAGD;EACC;;;ACjGF;AAKA;AACA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;;AAGJ;EACE;;AACA;EACE;;;AAIN;AClDA;EACC,WX0HiB;EWzHd,OXmCmB;EWlCnB;EACA;;;AAKJ;EACC,WXiHiB;EWhHd,OX0BmB;;;AYpCvB;EACK;;AAED;EACC;EACA;EACA;;AAGA;EACC;EACA,OZ4CiB;EY3CjB;;AAEA;EACC;EACA;EACA;EACA;EACA,OZmCgB;EYlChB;EACA;EACA;EACS;EACA;;AAEA;EACC;EACC;;AAGF;EACX,OZsBkB;EYrBlB;;AAGA;EACC,OZiBiB;;AYdlB;EACC,OZaiB;;AYVlB;EACC,OZSiB;;AYDjB;EACC;EACA;EACS;;AAEA;EACC;EACA;EACC;;AAIZ;EACC;EACA;EACS;;AAEA;EACC;EACZ;EACC;;AAIA;EACC;EACA;EACS;;AAEA;EACC;EACZ;EACC;;;AAQN;EACK;;AAED;EACC;EACA;EACA;;AAGA;EACC;EACA,OZjDiB;EYkDjB;EACM;EACA;;AAEN;EACC;EACA;EACA;EACA;EACA,OZ5DgB;EY6DhB;EACA;EACA;EACS;EACA;;AAEA;EACC;EACC;;AAGF;EACX,OZzEkB;EY0ElB;;AAGA;EACC,OZ9EiB;;AYiFlB;EACC,OZlFiB;;AYqFlB;EACC,OZtFiB;;AY8FjB;EACC;EACA;EACS;;AAEA;EACC;EACA;EACC;;AAIZ;EACC;EACA;EACS;;AAEA;EACC;EACZ;EACC;;AAIA;EACC;EACA;EACS;;AAEA;EACC;EACZ;EACC;;;AAYN;EACG;;;AAGH;EACI;;;ACtMJ;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAgBA;EACI;EACA;EACA;EACA;EACA;EACA;EACA,kBbQkB;;;AaLtB;EACI;EACA;EACA;EACA;EACA;EACA;EACA,kBbFkB;;;AaMtB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACE;EACA;EACA;;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEF;EACE;IACE;IACA;;EAEF;IACE;IACA;;;AAGJ;EACE;IACE;IACA;;EAEF;IACE;IACA;;;ACnFH;EACG;EACA;EACA;;;AAGJ;EACI,kBd0FmB;EczFnB,OduBkB;;;AcpBtB;EACI,kBdgFkB;Ec/ElB,OdkBkB;;;AcftB;EACI,kBdqFqB;EcpFrB,OdakB;;;Ae7BtB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQA;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;AAGF;AAAA;AAAA;AAAA;EAIE;EACA;;;AAGF;EACE;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;IACE;;EAGF;IACE;;;AAIJ;EACE;IACE;;EAGF;IACE;;;AAIJ;EACE;EACA;;;AAGF;AAEA;EACE;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA;;;AAGF;AAEA;EACE;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;;EAGF;IACE;;;AAIJ;EACE;IACE;;EAGF;IACE;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;;EAGF;IACE;;;AAIJ;EACE;IACE;;EAGF;IACE;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;AAEA;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;AAEA;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;;EAGF;IACE;IACA;IACA;;EAGF;IACE;;;AAIJ;EACE;IACE;;EAGF;IACE;IACA;IACA;;EAGF;IACE;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;IACE;IACA;IACA;;EAGF;IACE;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;IACA;;;AAIJ;EACE;EACA;;;AC1wGF;EACI;EACA;EACA;;AAGA;EACI;EACA;EACA;EACA,kBhBqBc;EAqKpB,YAD6B;EgBvLvB;EACA;;AAEA;EACI;EACA;EACA;EACA,OhBoEU;EgBnEV;EACA;EACA;;AAMA;EACI;EACA;;AAIR;EACI;EACA;;;ACpCX;AACD;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EAJJ;IAKQ;;;AAIR;EACI;;AAGJ;EACI;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EjBuLV;;AiBnLU;EACI;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA,YjBzBU;EAqKpB,YAD6B;EiBzInB;EACA;;AAEA;EACI;EACA;EACA;EACA,OjBqCS;EiBpCT;EACA;EACA;EACA;;AAKJ;EACI;EACA,OjBfO;EiBgBP,WjBqDX;EiBpDW;EACA;EACA;EACA;;AAEA;EATJ;IAUQ,WjB+Cf;;;AiB3CO;EACI,kBjB9CO;EiB+CP,OjB3DM;EiB4DN;EACA;EACA;;AAGJ;EACI,kBjBrDO;EiBsDP,OjBnEM;EiBoEN;EACA;EACA;;AAGJ;EACI,kBjB5DO;EiB6DP,OjB3EM;EiB4EN;EACA;EACA;;AAGJ;EACI,kBjBnEO;EiBoEP,OjBnFM;EiBoFN;EACA;EACA;;AAGJ;EACI,kBjB1EO;EiB2EP,OjB3FM;EiB4FN;EACA;EACA;;AAGJ;EACI,kBjBjFO;EiBkFP,OjBnGM;EiBoGN;EACA;EACA;;AAGJ;EACI,kBjBxFO;EiByFP,OjB3GM;EiB4GN;EACA;EACA;;AAGJ;EACI,kBjB/FO;EiBgGP,OjBnHM;EiBoHN;EACA;EACA;;AAGJ;EACI;EACA,OjB3HM;EiB4HN;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA,kBjBvIM;EiBwIN;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;;AAEA;EACI;EACA;EACA;EACA;;AAQhB;EACI;;;AAKZ;AAEA;AAAkB;EACd;EACA;;;AAGA;AAAmC;AAC/B;EACA;EjBTN,YAD6B;EiBYvB;EACA;EACA;;;AAGJ;AACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBjB/LkB;;;AiBkMtB;EACI;EjB9BF,YAD6B;EiBiC3B;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;EACA;;;AAIJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;AAEA;EACI;;;ACtQP;EACG;EACA;EACA;EACA;EACA;;AAEA;EAEI;EACA;;AAEA;EALJ;IAMQ;;;AAIR;EACI;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;ElB2LV;;AkBvLU;EACI;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA,YlBrBU;EAqKpB,YAD6B;EkB7InB;;AAKA;EACI;EACA;EACA;EACA,OlBuCS;EkBtCT;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA,OlBZO;EkBaP,WlBwDX;EkBvDW;EACA;EACA;;AAGJ;EACI;EACA,OlBvCO;;AkB0CX;EACI;EACA,OlB3CO;;AkB8CX;EACI;EACA,OlB/CO;;AkBkDX;EACI;EACA,OlBnDO;;AkBsDX;EACI;EACA,OlBvDO;;AkB0DX;EACI;EACA,OlB3DO;;AkB8DX;EACI;EACA,OlB/DO;;AkBkEX;EACI;EACA,OlBnEO;;AkBsEX;EACI;EACA;EACA;EACA;EACA;EACA,kBlB/FM;;AkBiGN;EACI;EACA;;AAGJ;EACI;;AAEA;EACI;EACA;EACA;EACA;;AAQhB;EACI;;;AAKZ;AAEA;AAAkB;EACd;EACA;;;AAGA;AAAmC;AAC/B;EACA;ElBiCN,YAD6B;EkB9BvB;EACA;EACA;;;AAGJ;AACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBlBpJkB;;;AkBuJtB;EACI;ElBaF,YAD6B;EkBV3B;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AClMH;EACG;EACA;EACA;EACA;EACA;EACA,kBnBwDmB;;AmBtDnB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBnBWc;EAqKpB,YAD6B;AmB7KvB;AAAA;AAAA;AAGA;;AAEE;EAnBN;IAoBQ;IACA;IACA;;;AAKJ;EACI;;AAIJ;EACI;;AAGJ;EACK;EACA;EACA;EACA;;AAGL;EACK;EACA;EACA;EACA;;AAGL;EACI,OnBiCU;;AmB9Bd;EAtDJ;IAuDO;IACA;;;AAGH;EACI;EACA;EACA;EACA;EACA;;AAEA;EAPJ;IAQO;IACA;;;AAOb;EACI;EACA;;AAEA;EACI;EnB4DR,oBAD6B;EAE7B,iBAF6B;EAG7B,gBAH6B;EAI7B,eAJ6B;EAK7B,YAL6B;;;AoBnJ9B;EACG;EACA;EACA;EACA;EACA;EACA,kBpBwDmB;;AoBtDnB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBpBWc;EAqKpB,YAD6B;AoB7KxB;AAAA;AAAA;;AAKG;EAnBN;IAoBQ;IACA;IACA;;;AAGJ;EACI;;AAKJ;EACI;;AAGJ;EACK;EACA;EACA;EACA;;AAGL;EACK;EACA;EACA;EACA;;AAGL;EACI,OpBkCU;;AoB/Bd;EArDJ;IAsDO;IACA;;;AAGH;EACI;EACA;EACA;EACA;EACA;;AAEA;EAPJ;IAQO;IACA;;;AAOb;EACE;EACA;;AAEE;EACI,kBpBCY;EA4DpB,oBAD6B;EAE7B,iBAF6B;EAG7B,gBAH6B;EAI7B,eAJ6B;EAK7B,YAL6B;;;AqBnJ9B;EACC;EACA;EACA;;AAEA;EACE,OrBiFkB;EqBhFlB;;AAGF;EACE;EACA;EACA;EACA,OrByEkB;EqBxElB;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA,kBrBOkB;EAqKpB,YAD6B;EqBzK3B;EACA;;AAEA;EACE;;AAEA;EAHF;IAII;;EAEA;IACE;IACA;;;AAIJ;EACE;;AAIJ;EACE;;AAGF;EACE;EACA;;;AAKN;AAEA;EACE;AAAsB;EACtB;;AAEF;EACE;EACA;;AAYF;EACE;EACA;;;AAGF;EACE;EACA;EACA;AAuYA;AAiDA;;AAtbA;EACE;EACA;EACA;EACA,kBrB5DkB;EAqKpB,YAD6B;EqBtG3B;EACA;AA4QA;AAqDA;;AA/TA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA,OAvCG;;AA0CL;EACE;EACA;EACA;EACA,OA7CG;EA8CH;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAIJ;EACE;EACA;;AAGF;EACE;EACA;;AAEA;EACE;EACA,OrBlHY;EqBmHZ,kBA7EC;;AAgFH;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAKN;EACE;EACA;EACA;EACA;;AAKE;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAEA;EAEE;;AAQJ;EACE;EACA;EACA,cA7IA;EA8IA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAMJ;EACE;;AAGF;AAAA;EAEE;;AAGF;EACE,kBArKS;EAsKT;;AAEA;EACE;;AAIJ;EACE;EACA;;AAGF;EACE;EACA;;AAIA;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE,kBA7NC;EA8ND,cA9NC;EA+ND,OrBrQY;;AqByQhB;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;AAIJ;EACE;;AAEA;EACE;;AAKN;EACE,kBA7PQ;EA8PR;EACA;;AAEA;EACE;;AAEA;EACE,kBArQI;EAsQJ;;AAKN;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;;AACA;EACE,OArRQ;EAsRR;EACA;;AAEF;EACE,OA7RE;EA8RF;;AAMN;EACE;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE,YA1TD;;AA4TD;EACE;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA,YrBxXU;EqByXV;EACA;;AAOR;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA,cAxWI;EAyWJ;;AAGF;EACE;EACA;;AAGF;EACE;;AAGF;EACE;EACA,OAlXS;EAmXT;;AAEF;EACE;;AAEF;EACE;EACA;EACA;EACA;EACA;;AAEF;EACE;;AAEF;EACE;;AAGF;EACE,kBrBnbgB;EqBobhB;EACA;;AAGF;EACE;;AAKJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;;AAEA;EACE;EACA;EACA,qBAjbE;;AAmbF;EACE;;AAKN;AAAA;EAEE;;AAGF;EACE;;AAGF;EACE;;AAKJ;EACE;EACA;EACA;;AAEF;EACE;EACA;EACA;;AAEF;AAAA;AAAA;EAGE;;AAEF;EACE;;AAGF;AAAA;EAEE;EACA;EACA;;AAGF;AAAA;EAEE;EACA;;AAEF;EACE;;AAGF;EACE;EACA;;AACA;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;AAAA;AAAA;EAGE;;AAEF;AAAA;AAAA;AAAA;EAIE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;;AAEF;AAAA;EAEE;EACA;EACA;;AAEF;EACE;;AAEF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;;AAEF;EACE;;;ACtoBH;EACG;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,OtB8Ec;EsB7Ed;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA,kBtBYc;EAqKpB,YAD6B;EsB9KvB;EACA;;AAEA;EACI;EACA;;AAKJ;EACI;;AAIR;EACI;EAAgB;;AAChB;EACI;;AAKR;EACI;;AAEA;EACI,OtBuCU;;AsBrCV;EACI,OtBoCM;;AsBjCV;EACI,OtBgCM;;AsB7BV;EACI,OtB6BM;;AsBzBd;EACI;EACA;EtBuHV,QADuB;EA5CvB,oBADqB;EAErB,uBAFqB;EAGrB,eAHqB;EsBtEX;;AAEA;EAPJ;IAQM;IACA;IACA;IACA;;;AAGF;EACI;EtBsEd,oBAD6B;EAE7B,iBAF6B;EAG7B,gBAH6B;EAI7B,eAJ6B;EAK7B,YAL6B;;AsBjEnB;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EtBwFd,QADuB;EAhBvB,oBADqB;EAErB,uBAFqB;EAGrB,eAHqB;EsBnEP;EACA;EACA;;;ACrGf;EACG;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,OvB8Ec;EuB7Ed;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA,kBvBYc;EAqKpB,YAD6B;EuB9KvB;EACA;;AAGI;EACI;;AAEA;EACI;;AAQJ;EACI;;AAEA;EACI,kBvBsED;;AuBnEH;EACI,kBvBmED;;AuBhEH;EACI,kBvBgED;;AuB7DH;EACI,kBvB6DD;;AuB1DH;EACI,kBvB0DD;;AuBvDH;EACI,kBvBuDD;;AuBpDH;EACI,kBvBoDD;;AuBjDH;EACI,kBvBiDD;;AuB7CH;EACI;EACA;EACA;EvB+DtB,oBADqB;EAErB,uBAFqB;EAGrB,eAHqB;;AuBrDX;EACI;EACA;;AAIR;EACI;EACA;;;AAKZ;EACI;;;AAIJ;EACI;;;ACxGH;EACG;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,kBxBsBc;EAqKpB,YAD6B;EwBxLvB;EACA;;AAEC;EACG;EACA;EACA;EACA,OxBqEU;EwBpEV;EACA;EACA;;;ACrBX;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA,kBzBYkB;EyBXlB;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA,OzBwBmB;EyBvBnB;;AAGF;EACE,OzBGmB;EyBFnB;;AAGF;EACE;EACA,OzBamB;;AyBVrB;EACE;EACA,OzBXmB;EyBYnB;;AAIA;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAEA;EAPF;IAQI;IACA;;;AAGF;EACE;EACA;EACA;EACA;EACA,kBzBlDc;EyBmDd;EACA;EACA;EACA;;AAGA;EACE;EACA;EACA;EACA;EACA,OzB9DY;EyB+DZ,YzBQe;EyBPf;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA,OzBtDe;EyBuDf;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGA;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA,OzB5EW;EyB6EX;EACA;;AAGF;EACE,OzB/EW;;AyBqFnB;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA,kBzBpIc;EAqKpB,YAD6B;EyB9BvB;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;;AAEA;EACE;;AAGE;EACE;;AAGF;EACE;;AAGF;EACE,OzBjIK;;AyBoIP;EACE,OzBrIK;;AyBwIP;EACE,OzBzIK;;AyB4IP;EACE,OzB7IK;;AyBiJL;EACE,OzBzGK;;AyB4GP;EACE,OzBvHE;;AyB2HJ;EACE,OzBlHK;;AyBqHP;EACE,OzBtHK;;AyB2HX;EACE;;AAGF;EACE;;AAKN;EACE;EACA;;AAEA;EACE;;AAGF;EACE;;AAgBJ;EACE;EACA;EACA;EACA;EACA,YzB1OU;;AyB4OV;EAEC;EACA;EACA;;AAEA;EACC,OzB9OS;EyB+OT;EACA;;AAOA;EACE;;AAMR;EACE;EACA;EACA;EACA;EACA,YzBxQY;;AyB0QZ;EAEE;EACA;EACA;EACA;;AAGA;EACE;EACA;EACA;EACA;EACA,OzB/NQ;EyBgOR;;AAEA;EACE;;AAIH;EACC;EACA;EACA;EzBtLZ,oBADqB;EAErB,uBAFqB;EAGrB,eAHqB;;AyB6Lf;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE,OzB/SW;EyBgTX;;AAIA;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAMR;EACE;EACA;;AAEA;EACE;;AAGF;EACE;;AAKC;EACD;;AAIJ;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA,kBzB7WgB;EAqKpB,YAD6B;EyB2MzB;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EATF;IAUI;;;AAGF;EACE;EACA;EACA;EACA,kBzBpYgB;EAqKpB,YAD6B;EyBkOzB;EACA;EACA;;AAEA;EAVF;IAWI;;;AAGF;EACE;EACA;;AAEA;EACE,OzBrXa;EyBsXb;EACA;;AAEA;EACE,OzBhVa;;AyBsVjB;EACE;EACA;EACA;EACA;EACA,OzBrYa;;AyBuYb;EACE,OzBxYW;;AyB2Yb;EACE,OzBlZW;;AyBoZX;EACC,OzBrZU;;AyByZd;EACC;EACA;EACA;EACA;EACA;EACA;;;AAQR;EACE;;;AAIJ;EACE;;;AAGF;EACE;;;ACxeF;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,O1B8Ec;E0B7Ed;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA,kB1BIc;EAqKpB,YAD6B;E0BtKvB;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;;AAKA;EACI;EACA;;AAIR;EACI;EACA;;AAOA;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAOJ;EACI;EACA;;AAEA;EACI;;;AAOpB;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACI;;;AAKJ;EACI;EACA;EACA;EACA;;;AAIR;EACC;EACG;EACA;EACA;EACA;;;AAKJ;EACC;EACG;EACA;EACA;EACA;;;AAIJ;EACI;;;AAGJ;EACI,O1BpGmB;;;A0BwGnB;EACI;EACA,O1B1Ge;E0B2Gf;EACA;EACA;;AAGJ;EACI;;AAEC;EACG;EACA;;;AAIZ;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AC7JA;EACI;EACA;EACA;;AAEC;EACG;EACA;EACA;EACA,O3B8Ec;E2B7Ed;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA,kB3BIc;EAqKpB,YAD6B;E2BtKvB;EACA;;AAEE;EACE;EACA;;AAGJ;EACI;;AAKA;EACI;EACA;;AAIR;EACI;EACA;;AAOA;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAOJ;EACI;EACA;;AAEA;EACI;;;AAOpB;EACI;;;AAGJ;EACI;EACA;EACI;;;AAGR;EACM;;AAEF;EACI;EACA;EACA;EACA;;;AAIR;EACC;EACG;EACA;EACA;EACA;;;AAIJ;EACI;EACA;EACA;EACA;EACA;;;AAKJ;EACI;EACA;EACA;EACA;EACA;;;AAMJ;EACI;;;AAGJ;EACI,O3B5GmB;;;A2BkHnB;EACI;EACA,O3BpHe;E2BqHf;EACA;EACA;;AAGJ;EACI;;AAEC;EACG;EACA;;;ACnKZ;EACI;EACA;EACA;;AAEC;EACG;EACA;EACA;EACA,O5B8Ec;E4B7Ed;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA,kB5BIc;EAqKpB,YAD6B;E4BtKvB;EACA;;AAEE;EACE;EACA;;AAGJ;EACI;;AAKA;EACI;EACA;;AAIR;EACI;EACA;;AAOA;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAOJ;EACI;EACA;;AAEA;EACI;;;AAOpB;EACI;;;AAGJ;EACI;EACA;EACI;;;AAGR;EACM;;AAEF;EACI;EACA;EACA;EACA;;;AAIR;EACC;EACG;EACA;EACA;EACA;;;AAIJ;EACI;EACA;EACA;EACA;EACA;;;AAKJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI,O5BzGmB;;;A4B6GnB;EACI;EACA,O5B/Ge;E4BgHf;EACA;EACA;;AAGJ;EACI;;AAEA;EACI;EACA;;;AC9JZ;EACI;EACA;EACA;;AAEC;EACG;EACA;EACA;EACA,O7B8Ec;E6B7Ed;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA,kB7BIc;EAqKpB,YAD6B;E6BtKvB;EACA;;AAEE;EACE;EACA;;AAGJ;EACI;;AAKA;EACI;EACA;;AAIR;EACI;EACA;;AAOA;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAOJ;EACI;EACA;;AAEA;EACI;;;AAOpB;EACI;;;AAGJ;EACI;EACA;EACI;;;AAGR;EACM;;AAEF;EACI;EACA;EACA;EACA;;;AAIR;EACC;EACG;EACA;EACA;EACA;;;AAIJ;EACI;EACA;EACA;EACA;EACA;;;AAKJ;EACI;EACA;EACA;EACA;EACA;;;AAMJ;EACI;;;AAGJ;EACI,O7B5GmB;;;A6BkHnB;EACI;EACA,O7BpHe;E6BqHf;EACA;EACA;;AAGJ;EACI;;AAEC;EACG;EACA;;;ACnKZ;EACI;EACA;EACA;;AAEC;EACG;EACA;EACA;EACA,O9B8Ec;E8B7Ed;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA,kB9BIc;EAqKpB,YAD6B;E8BtKvB;EACA;;AAEE;EACE;EACA;;AAGJ;EACI;;AAKA;EACI;EACA;;AAIR;EACI;EACA;;AAOA;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAOJ;EACI;EACA;;AAEA;EACI;;;AAOpB;EACI;;;AAGJ;EACI;EACA;EACI;;;AAGR;EACM;;AAEF;EACI;EACA;EACA;EACA;;;AAIR;EACC;EACG;EACA;EACA;EACA;;;AAIJ;EACI;EACA;EACA;EACA;EACA;;;AAKJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI,O9BzGmB;;;A8B6GnB;EACI;EACA,O9B/Ge;E8BgHf;EACA;EACA;;AAGJ;EACI;;AAEA;EACI;EACA;;;AC9JZ;EACI;EACA;EACA;;AAEC;EACG;EACA;EACA;EACA,O/B8Ec;E+B7Ed;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA,kB/BIc;EAqKpB,YAD6B;E+BtKvB;EACA;;AAGE;EACE;EACA;;AAGJ;EACI;;AAKA;EACI;EACA;;AAIR;EACI;EACA;;AAOA;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAOJ;EACI;EACA;;AAEA;EACI;;;AAOpB;EACI;;;AAGJ;EACI;EACA;EACI;;;AAGR;EACM;;AAEF;EACI;EACA;EACA;EACA;;;AAIR;EACC;EACG;EACA;EACA;EACA;;;AAIJ;EACI;EACA;EACA;EACA;EACA;;;AAKJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI,O/B1GmB;;;A+B8GnB;EACI;EACA,O/BhHe;E+BiHf;EACA;EACA;;AAGJ;EACI;;AAEA;EACI;EACA;;;AC/JZ;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAAqB;EACrB;AAAoF;EACpF;AAAsF;EACtF;AAA0E;EAC1E;AAAqH;EACrH;;AAGA;EACC;EACA;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA,ahC+FM;EgC9FN;EACA,OhCyEuB;EgCxEvB;;AAGD;EACC;EACA;;;ACnCF;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,kBjCsBc;EAqKpB,YAD6B;EiCxLvB;EACA;;AAEA;EACI;;AAGH;EACG;EACA;EACA;EACA,OjCiEU;EiChEV;EACA;EACA;;;AAKZ;EACI,OjC6DkB;;;AkC5FtB;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,kBlCsBc;EAqKpB,YAD6B;EkCxLvB;EACA;;AAEC;EACG;EACA;EACA;EACA,OlCqEU;EkCpEV;EACA;EACA;;;ACrBZ;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBnCsDsB;;AmCpDtB;EACC;EACA;EACA;EACA;EACA;EACA;EACA;;AAGC;EACC;;AAGD;EACC;;AAGD;EACC;;AAKA;EACC;;AAGD;EACC;;AAIA;EACC;;AAID;EACC;;AAKD;EACC;;AAQJ;EACC;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA,YnCZmB;EmCanB;EACA;EACA,OnCtBmB;;AmCwBnB;EACC;;AAKF;EACC;EACA;EACA;EACA,YnC3BmB;EmC4BnB;EACA;EACA;EACA,OnCSqB;EmCRrB;;AAEA;EACC;;AAKH;EACC;;AAGD;EACC;;AAGD;EACC;EACA;EACA;EACA,OnC3DoB;EmC4DpB;;AAGD;EACC;EACA;;AAGD;EACC;EACA;EACA;;AAGC;EACC;EACA;;AAID;EACC;;AAKD;EACC;;AAKF;EACC;;AAEA;EACC;EACA;EACA;;AAEA;EACC;;AAMH;EACC;;AAEA;EACC;EACA;EACA;EACA,OnClHkB;;;AmC0HvB;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBnC3HsB;;AmC6HtB;EACC;EACA;EACA;EACA;EACA;EACA;EACA;;AAGC;EACC;;AAGD;EACC;;AAGD;EACC;;AAKA;EACC;;AAGD;EACC;;AAIA;EACC;;AAID;EACC;;AAKD;EACC;;AAQJ;EACC;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA,YnC7LmB;EmC8LnB;EACA;EACA,OnCvMmB;;AmCyMnB;EACC;;AAKF;EACC;EACA;EACA;EACA,YnC5MmB;EmC6MnB;EACA;EACA;EACA,OnCxKqB;EmCyKrB;;AAEA;EACC;;AAKH;EACC;;AAGD;EACC;;AAGD;EACC;EACA;EACA;EACA,OnC5OoB;EmC6OpB;;AAGD;EACC;EACA;;AAGD;EACC;EACA;EACA;;AAGC;EACC;EACA;;AAID;EACC;;AAKD;EACC;;AAKF;EACC;;AAEA;EACC;EACA;EACA;;AAEA;EACC;;AAMH;EACC;;AAEA;EACC;EACA;EACA;EACA,OnCnSkB;;;AmC0SvB;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBnC3SsB;;AmC6StB;EACC;EACA;EACA;EACA;EACA;EACA;EACA;;AAKE;EACC;;AAGD;EACC;;AAOH;EACC;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA,OnC5VmB;EmC6VnB;EACA;EACA;;AAGD;EACC;;AAEA;EACC;EACA;EACA,kBnCzToB;EmC0TpB;EACA;EACA,OnCnYiB;;AmCqYjB;EACC,kBnC9TmB;EmC+TnB;;AAKH;EACC;;AAEA;EACC;EACA;EACA;;AAEA;EACC;;AAMH;EACC;;AAEA;EACC;EACA;EACA;EACA,OnC1YkB;;;AoCvDvB;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,kBpCsBc;EAqKpB,YAD6B;EoCxLvB;EACA;;AAEA;EACI;EACA;EACA;EACA,OpCqEU;EoCpEV;EACA;EACA;;AAGJ;EACI;EACA;;AAOI;EACI;EACA;;AAEC;EACG,kBpCPF;;AoCUD;EACG;;AAEA;EACI,kBpCdN;;;AqC/BtB;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,kBrCsBc;EAqKpB,YAD6B;EqCxLvB;EACA;;AAEA;EACI;EACA;EACA;EACA,OrCqEU;EqCpEV;EACA;EACA;;AAGJ;EACI;EACA;;AAKA;EAEI;;AAGC;EACG,kBrCNE;;AqCSL;EACG;;AAEA;EACI,kBrCbF;;AqCqBN;EACI;EACA;;AAEC;EACG,kBrC1BF;;AqC6BD;EACG;;AAEA;EACI,kBrCjCN;;;AqC0CtB;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,kBrCnDc;EAqKpB,YAD6B;EqC/GvB;EACA;;AAEA;EACI;EACA;EACA;EACA,OrCJU;EqCKV;EACA;EACA;;AAGJ;EACI;EACA;;AAKA;EAEI;;AAGC;EACG,kBrC/EE;;AqCkFL;EACG;;AAEA;EACI,kBrCtFF;;AqC8FN;EACI;EACA;;AAEC;EACG,kBrCnGF;;AqCsGD;EACG;;AAEA;EACI,kBrC1GN;;;AqCmHtB;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,kBrC5Hc;EAqKpB,YAD6B;EqCtCvB;EACA;;AAEA;EACI;EACA;EACA;EACA,OrC7EU;EqC8EV;EACA;EACA;;AAGJ;EACI;EACA;;AAOI;EACI;EACA;;AAEC;EACG,kBrCzJF;;AqC4JD;EACG;;AAEA;EACI,kBrChKN;;;AsC/BtB;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,kBtCsBc;EAqKpB,YAD6B;EsCxLvB;EACA;;AAEC;EACG;EACA;EACA;EACA,OtCqEU;EsCpEV;EACA;EACA;;;ACrBZ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,kBvCsBc;EAqKpB,YAD6B;EuCxLvB;EACA;;AAEA;EACI;EACA;EACA;EACA,OvCqEU;EuCpEV;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;;AC/BZ;EACI;EACA;EACA;;AAGA;EACI;EACA;EACA;EACA,kBxCqBc;EAqKpB,YAD6B;EwCvLvB;EACA;EACA;;AAEA;EACI;EACA;EACA,OxCoEU;EwCnEV;EACA;EACA;EACA;EACA;;AAKA;EACI;EACA;;AAIR;EACI;EACA;;;ACrCZ;EACI;EACA;EACA;;AAGA;EACI;EACA;EACA;EACA,kBzCqBc;EAqKpB,YAD6B;EyCvLvB;EACA;;AAEA;EACI;EACA;EACA;EACA,OzCoEU;EyCnEV;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAMJ;EACI;EACA;;AAIR;EACI;EACA;;;A1CsBZ;AAAA%22,%22file%22:%22main.css%22%7D */
