@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic);
* {
  transition: ease 0.25s;
}

a {
  text-decoration: none;
  color: inherit;
}
a :focus {
  outline: none;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

strong {
  font-weight: bold;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  background: #00A99D;
  color: #4D4D4D;
  font-family: 'Open Sans', sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

input[type="checkbox"] {
  margin: 0 15px 10px 0;
  visibility: hidden;
  position: absolute;
}

input[type=checkbox] + label {
  display: inline-block;
  margin-left: 1.2rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline;
  position: relative;
  cursor: pointer;
}

input[type=checkbox]:checked + label::after, input[type=checkbox]:hover + label::after {
  background: #00a99d;
}

input[type=checkbox] + label::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 20px;
  border: 1px solid #ccc;
  background: white;
  visibility: visible;
  position: absolute;
  top: 7px;
  left: -20px;
}

.flex {
  display: flex;
}

.space-between {
  justify-content: space-between;
}

.flex-start {
  justify-content: flex-start;
}

.flex-end {
  justify-content: flex-end;
}

.flex-wrap_wrap {
  flex-wrap: wrap;
}

.align-items_center {
  align-items: center;
}

.boton {
  background: #00A99D;
  color: white;
  border-radius: 6px;
  font-size: 1rem;
  padding: 3px 10px;
  border: none;
  box-shadow: none;
  cursor: pointer;
}
.boton:hover {
  background: #4D4D4D;
}
.boton.red {
  background: #D53D1A;
}
.boton.red:hover {
  background: #4D4D4D;
}

.col-12 {
  width: 100%;
}

@media (max-width: 640px) {
  #login .panel.small {
    margin-top: 100px;
  }
}
@media (max-width: 500px) {
  #login .panel.small {
    margin-top: 0px;
  }
}

.cont-menu-login {
  width: 100%;
}
.cont-menu-login .menu-login {
  width: 250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 500px) {
  .cont-menu-login .menu-login {
    margin: 0 auto 90px;
  }
}
.cont-menu-login .menu-login a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 25px;
  text-decoration: none;
  margin: 0 auto;
}
.cont-menu-login .menu-login a.active, .cont-menu-login .menu-login a:hover {
  color: white;
}

*:focus {
  outline: none;
}

.select {
  position: relative;
  display: table;
  width: 100%;
}
.select select {
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  background: white;
  padding: 3px 8px;
  color: #4D4D4D;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  border: solid thin #fafafa;
  width: 90%;
}
@media (max-width: 640px) {
  .select select {
    width: 97%;
  }
}
@media (max-width: 500px) {
  .select select {
    width: 100%;
  }
}
.select::after {
  content: '>';
  transform: rotate(90deg);
  padding: 3px 9.3px;
  position: absolute;
  font: 18px "Consolas", monospace;
  margin-top: 2px;
  background: #00A99D;
  color: white;
  margin-left: -24px;
  border-radius: 5px 5px 0px 0px;
  pointer-events: none;
}
@media (max-width: 640px) {
  .select::after {
    padding: 2px 9.3px;
    font: 16px "Consolas", monospace;
  }
}
.select:focus {
  outline: none;
  outline: -webkit-focus-ring-color;
}

textarea {
  background: #F5F7FA;
  width: 100%;
  height: 100px;
  border: solid thin #CECDCD;
}
@media (max-width: 500px) {
  textarea {
    width: 98%;
  }
}

.template-common {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.template-common#create-project {
  background: #F5F7FA;
}

.sidebar-left aside {
  width: 15%;
}
@media (max-width: 1440px) {
  .sidebar-left aside {
    width: 20%;
  }
}
@media (max-width: 800px) {
  .sidebar-left aside {
    width: 100%;
  }
}
.sidebar-left main {
  width: 85%;
  overflow-x: hidden;
}
@media (max-width: 1440px) {
  .sidebar-left main {
    width: 80%;
  }
}
@media (max-width: 800px) {
  .sidebar-left main {
    width: 100%;
    height: 100%;
  }
}

.center-content {
  justify-content: center;
}

.main-common {
  display: flex;
  width: 100%;
  background: #F5F7FA;
}
.main-common .header {
  margin-bottom: 66px;
}
@media (max-width: 800px) {
  .main-common .header {
    margin-bottom: 35px;
    flex-wrap: wrap;
  }
}

.main-flex-row {
  flex-direction: row;
}

.main-flex-column {
  flex-direction: column;
}

.main-center-content {
  justify-content: center;
  align-items: center;
}

.table {
  width: 85%;
  justify-content: space-between;
  flex-wrap: wrap;
  /* Tabla Proyectos */
}
@media (max-width: 1370px) {
  .table {
    width: 100%;
  }
}
.table .header-table {
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.table .header-table .item-header-table {
  font-size: 80%;
}
@media (max-width: 1440px) {
  .table .header-table .item-header-table {
    width: 13%;
  }
}
@media (max-width: 1370px) {
  .table .header-table .item-header-table {
    font-size: 70%;
    width: 12%;
  }
}
@media (max-width: 1024px) {
  .table .header-table .item-header-table {
    width: 16%;
  }
}
@media (max-width: 800px) {
  .table .header-table .item-header-table {
    font-size: 60%;
  }
}
.table .header-table .item-header-table .asc .flecha {
  width: 15px;
  transform: rotate(-90deg);
  margin: -5px 0 0 5px;
}
@media (max-width: 640px) {
  .table .header-table .item-header-table .asc .flecha {
    margin: 0px 5px 5px 5px;
  }
}
.table .header-table .item-header-table .asc .flecha svg {
  width: 60%;
  height: 60%;
}
.table .header-table .item-header-table .desc .flecha {
  width: 15px;
  transform: rotate(90deg);
  margin: 9px 5px 0 0px;
  display: table;
}
@media (max-width: 640px) {
  .table .header-table .item-header-table .desc .flecha {
    margin: 5px 8px 0px 0px;
  }
}
.table .header-table .item-header-table .desc .flecha svg {
  width: 60%;
  height: 60%;
}
.table .cont-items-table {
  flex-wrap: wrap;
  margin: 5px 0;
  border-top: 1px solid #ccc;
  align-items: center;
}
.table .cont-items-table .item-table {
  padding: 10px 0;
  line-height: 1.3;
}
.table .cont-items-table .item-table:first-child, .table .cont-items-table .item-table:last-child {
  padding: 10px 0;
}
@media (max-width: 768px) {
  .table .cont-items-table .item-table {
    border-top: none;
    border-bottom: 1px solid #ccc;
  }
  .table .cont-items-table .item-table:last-child {
    border-bottom: 0;
  }
  .table .cont-items-table .item-table.botones-header-table {
    border-bottom: none !important;
  }
}
.table .cont-items-table .item-table a:hover {
  color: #00A99D;
}
.table .cont-items-table .item-table.item-acciones-table a {
  line-height: 1;
}
.table .cont-items-table .item-table.item-acciones-table a .icn {
  margin-right: 20px;
}
.table .cont-items-table .item-table.item-acciones-table a .icn svg path, .table .cont-items-table .item-table.item-acciones-table a .icn svg rect {
  fill: #00A99D;
}
.table .cont-items-table .item-table.item-acciones-table a:hover {
  color: #4D4D4D;
}
.table .cont-items-table .item-table.item-acciones-table a:hover .icn svg path, .table .cont-items-table .item-table.item-acciones-table a:hover .icn svg rect {
  fill: #4D4D4D;
}
.table .orders-list {
  width: 100%;
  margin-top: 10px;
}
.table .orders-list .header-table {
  background: #00A99D;
  color: white;
  font-size: 1rem;
  margin-bottom: 0;
  padding: 0 20px;
}
@media (max-width: 640px) {
  .table .orders-list .header-table {
    margin: 10px 0;
    padding: 10px 20px;
    border-radius: 10px;
  }
}
.table .orders-list .cont-items-table {
  background: white;
  padding: 0 20px;
  font-size: 0.9rem;
  border-top: solid thin #f1f1f1;
}
.table .orders-list .cont-items-table .item-table {
  border-top: none;
  line-height: 1.8;
}
.table .orders-list .cont-items-table .item-table a {
  color: #00A99D;
}
.table .orders-list .cont-items-table .item-table.select::after {
  font: 14px "Consolas", monospace;
}
.table .tab, .table .filter-box {
  margin: 0 0 20px;
}
.table .tab {
  display: flex;
}
.table .tab > div {
  margin-right: 10px;
}
@media (max-width: 500px) {
  .table .tab > div {
    width: 100%;
  }
}
.table .tab > div .boton {
  border-radius: 6px 6px 0 0;
}
@media (max-width: 500px) {
  .table .tab > div .boton {
    width: 85%;
    display: table;
  }
}
.table .tab > div .boton.inactivo {
  background: #4D4D4D;
}
.table .tab > div .boton.inactivo:hover {
  background: #00A99D;
}
.table.project-list-table .titulo-table, .table.project-list-table .item-titulo-table, .table.notificaciones-table .titulo-table, .table.notificaciones-table .item-titulo-table {
  width: 39%;
}
@media (max-width: 1440px) {
  .table.project-list-table .titulo-table, .table.project-list-table .item-titulo-table, .table.notificaciones-table .titulo-table, .table.notificaciones-table .item-titulo-table {
    width: 39%;
  }
}
@media (max-width: 1370px) {
  .table.project-list-table .titulo-table, .table.project-list-table .item-titulo-table, .table.notificaciones-table .titulo-table, .table.notificaciones-table .item-titulo-table {
    width: 39%;
  }
}
@media (max-width: 640px) {
  .table.project-list-table .titulo-table, .table.project-list-table .item-titulo-table, .table.notificaciones-table .titulo-table, .table.notificaciones-table .item-titulo-table {
    width: 100%;
  }
}
.table.project-list-table .deadline-table, .table.project-list-table .item-deadline-table, .table.notificaciones-table .deadline-table, .table.notificaciones-table .item-deadline-table {
  width: 20%;
}
@media (max-width: 640px) {
  .table.project-list-table .deadline-table, .table.project-list-table .item-deadline-table, .table.notificaciones-table .deadline-table, .table.notificaciones-table .item-deadline-table {
    width: 100%;
  }
}
.table.project-list-table .acciones-table, .table.project-list-table .item-acciones-table, .table.notificaciones-table .acciones-table, .table.notificaciones-table .item-acciones-table {
  width: 20%;
  color: #00A99D;
}
@media (max-width: 640px) {
  .table.project-list-table .acciones-table, .table.project-list-table .item-acciones-table, .table.notificaciones-table .acciones-table, .table.notificaciones-table .item-acciones-table {
    width: 100%;
  }
}

/* Tabla Tasks */
.task-list-table .notification {
  margin: 0 0 80px;
  color: #00A99D;
  font-weight: bold;
}
@media (max-width: 800px) {
  .task-list-table .notification {
    margin: 0 0 40px;
  }
}
.task-list-table .notification span {
  font-weight: normal;
  color: #4D4D4D;
}
.task-list-table .item-header-table {
  width: 9%;
  padding-right: 1%;
  text-align: center;
}
.task-list-table .item-header-table:first-child {
  width: 4%;
}
@media (max-width: 640px) {
  .task-list-table .item-header-table:first-child {
    width: 100%;
  }
}
.task-list-table .item-header-table:nth-child(2) {
  width: 29%;
  text-align: left;
}
@media (max-width: 800px) {
  .task-list-table .item-header-table:nth-child(2) {
    width: 20%;
  }
}
@media (max-width: 640px) {
  .task-list-table .item-header-table:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .task-list-table .item-header-table:nth-child(3) {
    width: 15%;
    margin-right: 3%;
  }
}
@media (max-width: 640px) {
  .task-list-table .item-header-table:nth-child(3) {
    width: 100%;
    margin: 10px 0 0 0px;
    padding-right: 0%;
    text-align: left;
  }
}
@media (max-width: 640px) {
  .task-list-table .item-header-table.tag-table {
    padding: 5px 0;
    border-bottom: solid thin #ccc;
  }
}
.task-list-table .item-header-table.estado-table {
  width: 4%;
  padding: 0 1%;
  margin-right: 3%;
}
@media (max-width: 1440px) {
  .task-list-table .item-header-table.estado-table {
    width: 6%;
    margin-right: 2%;
    padding: 0 1%;
  }
}
@media (max-width: 1280px) {
  .task-list-table .item-header-table.estado-table {
    margin-right: 1%;
    padding: 0 1.5%;
  }
}
@media (max-width: 1024px) {
  .task-list-table .item-header-table.estado-table {
    width: 8%;
    margin-right: 2%;
  }
}
@media (max-width: 640px) {
  .task-list-table .item-header-table.estado-table {
    width: 100%;
    margin-right: 0%;
    padding: 5px 0;
    border-bottom: solid thin #ccc;
    text-align: left;
  }
}
.task-list-table .item-header-table.fecha-table {
  width: 4%;
  padding: 0 1%;
  margin-right: 3%;
}
@media (max-width: 1440px) {
  .task-list-table .item-header-table.fecha-table {
    width: 5%;
    padding: 0 2%;
    margin-right: 0%;
  }
}
@media (max-width: 1370px) {
  .task-list-table .item-header-table.fecha-table {
    margin-right: 3%;
    padding: 0 1%;
  }
}
@media (max-width: 1280px) {
  .task-list-table .item-header-table.fecha-table {
    margin-right: 1%;
    padding: 0 1.5%;
  }
}
@media (max-width: 1024px) {
  .task-list-table .item-header-table.fecha-table {
    padding: 0 2.5%;
    margin-right: 2%;
    width: 6%;
  }
}
@media (max-width: 640px) {
  .task-list-table .item-header-table.fecha-table {
    width: 100%;
    margin-right: 0%;
    padding: 5px 0;
    border-bottom: solid thin #ccc;
    text-align: left;
  }
}
.task-list-table .item-header-table.deadline-table {
  width: 4%;
  padding: 0 1%;
  margin-right: 0%;
}
@media (max-width: 1440px) {
  .task-list-table .item-header-table.deadline-table {
    padding: 0 2%;
    width: 5%;
  }
}
@media (max-width: 1370px) {
  .task-list-table .item-header-table.deadline-table {
    padding: 0 1%;
  }
}
@media (max-width: 1280px) {
  .task-list-table .item-header-table.deadline-table {
    padding: 0 2%;
  }
}
@media (max-width: 1024px) {
  .task-list-table .item-header-table.deadline-table {
    padding: 0 2.5%;
    width: 6%;
  }
}
@media (max-width: 640px) {
  .task-list-table .item-header-table.deadline-table {
    width: 100%;
    margin-right: 0%;
    padding: 5px 0;
    border-bottom: solid thin #ccc;
    text-align: left;
  }
}
.task-list-table .item-header-table.users-tags-table {
  width: 11%;
}
@media (max-width: 1024px) {
  .task-list-table .item-header-table.users-tags-table {
    width: 10%;
  }
}
@media (max-width: 640px) {
  .task-list-table .item-header-table.users-tags-table {
    margin: 10px 0 0 0px;
    text-align: left;
  }
}
@media (max-width: 640px) {
  .task-list-table .item-header-table a {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 1370px) {
  .task-list-table .item-header-table {
    width: 12%;
  }
}
@media (max-width: 1024px) {
  .task-list-table .item-header-table {
    width: 16%;
  }
}
@media (max-width: 640px) {
  .task-list-table .item-header-table {
    width: 100%;
  }
}
.task-list-table .cont-items-table {
  margin: 20px 0;
  border-top: 1px solid #ccc;
  align-items: center;
}
@media (max-width: 640px) {
  .task-list-table .cont-items-table {
    border-top: none;
  }
}
.task-list-table .cont-items-table .item-table {
  width: 8%;
  padding-right: 1%;
}
.task-list-table .cont-items-table .item-table:first-child {
  width: 5%;
}
@media (max-width: 640px) {
  .task-list-table .cont-items-table .item-table:first-child {
    width: 100%;
  }
}
.task-list-table .cont-items-table .item-table:nth-child(2) {
  width: 30%;
}
@media (max-width: 800px) {
  .task-list-table .cont-items-table .item-table:nth-child(2) {
    width: 20%;
  }
}
@media (max-width: 640px) {
  .task-list-table .cont-items-table .item-table:nth-child(2) {
    width: 100%;
  }
}
.task-list-table .cont-items-table .item-table:nth-child(2) a {
  width: 85%;
}
.task-list-table .cont-items-table .item-table:nth-child(2) .item-notif {
  position: relative;
  margin-right: 10px;
  width: 10%;
}
.task-list-table .cont-items-table .item-table:nth-child(2) .item-notif .badge-task {
  background: red;
  color: white;
  padding: 6px;
  border-radius: 50%;
  line-height: 1.1;
  font-size: 12px;
  width: 13px;
  height: 13px;
  text-align: center;
}
.task-list-table .cont-items-table .item-table:nth-child(2) .item-notif i {
  font-size: 20px;
}
.task-list-table .cont-items-table .item-table:nth-child(3) {
  display: table;
}
@media (max-width: 800px) {
  .task-list-table .cont-items-table .item-table:nth-child(3) {
    margin-right: 3%;
  }
}
@media (max-width: 640px) {
  .task-list-table .cont-items-table .item-table:nth-child(3) {
    width: 100%;
  }
}
.task-list-table .cont-items-table .item-table.item-users-tags-table {
  font-size: 10px;
  width: 11%;
}
.task-list-table .cont-items-table .item-table.item-users-tags-table ul li {
  background: #999;
  color: white;
  padding: 4px;
  display: table;
  border-radius: 4px;
  margin-bottom: 2px;
}
.task-list-table .cont-items-table .item-table.item-users-tags-table ul li.activo {
  background: #00A99D;
}
.task-list-table .cont-items-table .item-table.item-users-tags-table ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .task-list-table .cont-items-table .item-table.item-users-tags-table ul li {
    width: 98%;
    text-align: center;
  }
}
@media (max-width: 1440px) {
  .task-list-table .cont-items-table .item-table {
    width: 9%;
  }
}
@media (max-width: 1024px) {
  .task-list-table .cont-items-table .item-table {
    width: 12%;
  }
}
@media (max-width: 640px) {
  .task-list-table .cont-items-table .item-table.item-estado-table, .task-list-table .cont-items-table .item-table.item-fecha-table, .task-list-table .cont-items-table .item-table.item-deadline-table, .task-list-table .cont-items-table .item-table.item-users-tags-table {
    text-align: center;
    width: 100%;
  }
}
.task-list-table .cont-items-table .item-table.item-acciones-table {
  width: 30% !important;
}
@media (max-width: 800px) {
  .task-list-table .cont-items-table .item-table.item-acciones-table {
    width: 100% !important;
  }
}
.task-list-table .cont-items-table .item-table.item-acciones-table a.boton {
  font-size: 14px;
  margin-right: 5px;
}
.task-list-table .cont-items-table .item-table.item-acciones-table a.boton .icn svg {
  width: 18px;
}
.task-list-table .cont-items-table .item-table.item-acciones-table a.boton .icn svg path, .task-list-table .cont-items-table .item-table.item-acciones-table a.boton .icn svg rect {
  fill: white;
}
.task-list-table .cont-items-table .item-table.item-acciones-table a.boton:hover {
  color: white;
}
.task-list-table .cont-items-table .item-table.item-acciones-table a.boton:hover .icn svg path, .task-list-table .cont-items-table .item-table.item-acciones-table a.boton:hover .icn svg rect {
  fill: white;
}
.task-list-table .cont-items-table .item-table.item-acciones-table .cont-btn-options {
  position: relative;
}
.task-list-table .acciones-table, .task-list-table .item-acciones-table {
  width: 20%;
}
.task-list-table .acciones-table:first-child, .task-list-table .item-acciones-table:first-child {
  border-top: none;
}
@media (max-width: 620px) {
  .task-list-table .acciones-table, .task-list-table .item-acciones-table {
    width: 100%;
  }
}

/* Listar Subtask */
/* Tabla Tasks */
.subtask-list-table .notification {
  margin: 0 0 80px;
  color: #00A99D;
  font-weight: bold;
}
@media (max-width: 768px) {
  .subtask-list-table .notification {
    margin: 0 0 40px;
  }
}
.subtask-list-table .notification span {
  font-weight: normal;
  color: #4D4D4D;
}
.subtask-list-table .item-header-table {
  width: 25%;
}
@media (max-width: 640px) {
  .subtask-list-table .item-header-table {
    width: 100%;
  }
}
.subtask-list-table .cont-items-table {
  margin: 25px 0;
}
.subtask-list-table .cont-items-table .item-table {
  width: 25%;
}
@media (max-width: 640px) {
  .subtask-list-table .cont-items-table .item-table {
    width: 100%;
  }
}
.subtask-list-table .cont-items-table .item-table.item-acciones-table a.boton {
  font-size: 14px;
  margin-right: 5px;
}
.subtask-list-table .cont-items-table .item-table.item-acciones-table a.boton .icn svg {
  width: 18px;
}
.subtask-list-table .cont-items-table .item-table.item-acciones-table a.boton .icn svg path, .subtask-list-table .cont-items-table .item-table.item-acciones-table a.boton .icn svg rect {
  fill: white;
}
.subtask-list-table .cont-items-table .item-table.item-acciones-table a.boton:hover {
  color: white;
}
.subtask-list-table .cont-items-table .item-table.item-acciones-table a.boton:hover .icn svg path, .subtask-list-table .cont-items-table .item-table.item-acciones-table a.boton:hover .icn svg rect {
  fill: white;
}
.subtask-list-table .cont-items-table .item-table.item-acciones-table .cont-btn-options {
  position: relative;
}
.subtask-list-table .acciones-table, .subtask-list-table .item-acciones-table {
  width: 20%;
}
.subtask-list-table .acciones-table:first-child, .subtask-list-table .item-acciones-table:first-child {
  border-top: none;
}
@media (max-width: 620px) {
  .subtask-list-table .acciones-table, .subtask-list-table .item-acciones-table {
    width: 100%;
  }
}

/* Listar órdenes */
.order-list-table .notification {
  margin: 0 0 80px;
  color: #00A99D;
  font-weight: bold;
}
.order-list-table .notification span {
  font-weight: normal;
  color: #4D4D4D;
}
.order-list-table .item-header-table {
  width: 33%;
}
@media (max-width: 640px) {
  .order-list-table .item-header-table {
    width: 100%;
  }
}
.order-list-table .item-table {
  width: 33%;
}
@media (max-width: 640px) {
  .order-list-table .item-table {
    width: 100%;
  }
}
.order-list-table .numero-orden-table, .order-list-table .tarea-table, .order-list-table .estado-table, .order-list-table .accion-table {
  width: 25%;
}
@media (max-width: 640px) {
  .order-list-table .numero-orden-table, .order-list-table .tarea-table, .order-list-table .estado-table, .order-list-table .accion-table {
    width: 100%;
  }
}
.order-list-table .item-numero-orden-table, .order-list-table .item-tarea-table, .order-list-table .item-estado-table, .order-list-table .item-acciones-table {
  width: 25%;
}
@media (max-width: 640px) {
  .order-list-table .item-numero-orden-table, .order-list-table .item-tarea-table, .order-list-table .item-estado-table, .order-list-table .item-acciones-table {
    width: 100%;
  }
}

/* Crear Proyecto - Task single - Crear Tarea - Order single  */
#create-project form, #task-single form, #create-task form, #order-single form {
  font-size: 0.8rem;
}
#create-project form h1, #task-single form h1, #create-task form h1, #order-single form h1 {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: normal;
}
#create-project form h1:before, #task-single form h1:before, #create-task form h1:before, #order-single form h1:before {
  content: '';
  width: 22px;
  height: 4px;
  background: #00A99D;
  display: block;
  position: absolute;
  top: -10px;
}
#create-project form .box, #create-project form .cont-bar, #task-single form .box, #task-single form .cont-bar, #create-task form .box, #create-task form .cont-bar, #order-single form .box, #order-single form .cont-bar {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid thin #00A99D;
  align-items: baseline;
}
@media (max-width: 500px) {
  #create-project form .box .media-content, #create-project form .cont-bar .media-content, #task-single form .box .media-content, #task-single form .cont-bar .media-content, #create-task form .box .media-content, #create-task form .cont-bar .media-content, #order-single form .box .media-content, #order-single form .cont-bar .media-content {
    width: 100%;
    margin-bottom: 20px;
  }
}
#create-project form .box .cont-estado, #create-project form .cont-bar .cont-estado, #task-single form .box .cont-estado, #task-single form .cont-bar .cont-estado, #create-task form .box .cont-estado, #create-task form .cont-bar .cont-estado, #order-single form .box .cont-estado, #order-single form .cont-bar .cont-estado {
  width: 15%;
}
@media (max-width: 640px) {
  #create-project form .box .cont-estado, #create-project form .cont-bar .cont-estado, #task-single form .box .cont-estado, #task-single form .cont-bar .cont-estado, #create-task form .box .cont-estado, #create-task form .cont-bar .cont-estado, #order-single form .box .cont-estado, #order-single form .cont-bar .cont-estado {
    width: 50%;
  }
}
@media (max-width: 500px) {
  #create-project form .box .cont-estado, #create-project form .cont-bar .cont-estado, #task-single form .box .cont-estado, #task-single form .cont-bar .cont-estado, #create-task form .box .cont-estado, #create-task form .cont-bar .cont-estado, #order-single form .box .cont-estado, #order-single form .cont-bar .cont-estado {
    width: 100%;
  }
}
#create-project form .box .cont-estado label, #create-project form .cont-bar .cont-estado label, #task-single form .box .cont-estado label, #task-single form .cont-bar .cont-estado label, #create-task form .box .cont-estado label, #create-task form .cont-bar .cont-estado label, #order-single form .box .cont-estado label, #order-single form .cont-bar .cont-estado label {
  width: 100%;
}
#create-project form .box .cont-estado #statusTask, #create-project form .cont-bar .cont-estado #statusTask, #task-single form .box .cont-estado #statusTask, #task-single form .cont-bar .cont-estado #statusTask, #create-task form .box .cont-estado #statusTask, #create-task form .cont-bar .cont-estado #statusTask, #order-single form .box .cont-estado #statusTask, #order-single form .cont-bar .cont-estado #statusTask {
  width: 100%;
}
@media (max-width: 500px) {
  #create-project form .box .cont-estado #statusTask, #create-project form .cont-bar .cont-estado #statusTask, #task-single form .box .cont-estado #statusTask, #task-single form .cont-bar .cont-estado #statusTask, #create-task form .box .cont-estado #statusTask, #create-task form .cont-bar .cont-estado #statusTask, #order-single form .box .cont-estado #statusTask, #order-single form .cont-bar .cont-estado #statusTask {
    width: 100%;
  }
}
#create-project form .box .cont-deadline, #create-project form .cont-bar .cont-deadline, #task-single form .box .cont-deadline, #task-single form .cont-bar .cont-deadline, #create-task form .box .cont-deadline, #create-task form .cont-bar .cont-deadline, #order-single form .box .cont-deadline, #order-single form .cont-bar .cont-deadline {
  width: 10%;
}
@media (max-width: 640px) {
  #create-project form .box .cont-deadline, #create-project form .cont-bar .cont-deadline, #task-single form .box .cont-deadline, #task-single form .cont-bar .cont-deadline, #create-task form .box .cont-deadline, #create-task form .cont-bar .cont-deadline, #order-single form .box .cont-deadline, #order-single form .cont-bar .cont-deadline {
    width: 50%;
  }
}
@media (max-width: 500px) {
  #create-project form .box .cont-deadline, #create-project form .cont-bar .cont-deadline, #task-single form .box .cont-deadline, #task-single form .cont-bar .cont-deadline, #create-task form .box .cont-deadline, #create-task form .cont-bar .cont-deadline, #order-single form .box .cont-deadline, #order-single form .cont-bar .cont-deadline {
    width: 100%;
  }
}
#create-project form .box p.title, #create-project form .cont-bar p.title, #task-single form .box p.title, #task-single form .cont-bar p.title, #create-task form .box p.title, #create-task form .cont-bar p.title, #order-single form .box p.title, #order-single form .cont-bar p.title {
  font-size: 0.7rem;
}
#create-project form .box .media-right, #create-project form .cont-bar .media-right, #task-single form .box .media-right, #task-single form .cont-bar .media-right, #create-task form .box .media-right, #create-task form .cont-bar .media-right, #order-single form .box .media-right, #order-single form .cont-bar .media-right {
  flex-wrap: wrap;
}
#create-project form .box .media-right > div, #create-project form .cont-bar .media-right > div, #task-single form .box .media-right > div, #task-single form .cont-bar .media-right > div, #create-task form .box .media-right > div, #create-task form .cont-bar .media-right > div, #order-single form .box .media-right > div, #order-single form .cont-bar .media-right > div {
  margin-left: 5px;
  margin-bottom: 5px;
}
@media (max-width: 500px) {
  #create-project form .box .media-right > div, #create-project form .cont-bar .media-right > div, #task-single form .box .media-right > div, #task-single form .cont-bar .media-right > div, #create-task form .box .media-right > div, #create-task form .cont-bar .media-right > div, #order-single form .box .media-right > div, #order-single form .cont-bar .media-right > div {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
}
#create-project form .box .contenido-comentario, #create-project form .cont-bar .contenido-comentario, #task-single form .box .contenido-comentario, #task-single form .cont-bar .contenido-comentario, #create-task form .box .contenido-comentario, #create-task form .cont-bar .contenido-comentario, #order-single form .box .contenido-comentario, #order-single form .cont-bar .contenido-comentario {
  font-size: 0.9rem;
  margin-top: 5px;
}
#create-project form .box.descripcion .notification, #create-project form .cont-bar.descripcion .notification, #task-single form .box.descripcion .notification, #task-single form .cont-bar.descripcion .notification, #create-task form .box.descripcion .notification, #create-task form .cont-bar.descripcion .notification, #order-single form .box.descripcion .notification, #order-single form .cont-bar.descripcion .notification {
  font-weight: normal;
  font-size: 0.7rem;
  margin-top: 4px;
  width: 100%;
}
#create-project form .box.descripcion .notification p, #create-project form .cont-bar.descripcion .notification p, #task-single form .box.descripcion .notification p, #task-single form .cont-bar.descripcion .notification p, #create-task form .box.descripcion .notification p, #create-task form .cont-bar.descripcion .notification p, #order-single form .box.descripcion .notification p, #order-single form .cont-bar.descripcion .notification p {
  width: 100%;
}
#create-project form .boton, #task-single form .boton, #create-task form .boton, #order-single form .boton {
  font-size: 0.8rem;
}
@media (max-width: 500px) {
  #create-project form .boton, #task-single form .boton, #create-task form .boton, #order-single form .boton {
    width: 100%;
    display: table;
    text-align: center;
    padding: 10px;
  }
}
#create-project form .select, #task-single form .select, #create-task form .select, #order-single form .select {
  margin: 10px 0;
}
#create-project form .select::after, #task-single form .select::after, #create-task form .select::after, #order-single form .select::after {
  font: 14px "Consolas", monospace;
}
#create-project form .select select#task-category, #task-single form .select select#task-category, #create-task form .select select#task-category, #order-single form .select select#task-category {
  width: 100%;
}
#create-project form .notification, #task-single form .notification, #create-task form .notification, #order-single form .notification {
  font-weight: bold;
}
#create-project form .item-categoria, #task-single form .item-categoria, #create-task form .item-categoria, #order-single form .item-categoria {
  width: 10%;
  padding-right: 10px;
  margin-right: 10px;
  border-right: solid thin #c4c4c4;
}
#create-project form .cont-bar > div, #task-single form .cont-bar > div, #create-task form .cont-bar > div, #order-single form .cont-bar > div {
  width: 25%;
}
@media (max-width: 768px) {
  #create-project form .cont-bar > div, #task-single form .cont-bar > div, #create-task form .cont-bar > div, #order-single form .cont-bar > div {
    width: 50%;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
  }
}
@media (max-width: 480px) {
  #create-project form .cont-bar > div, #task-single form .cont-bar > div, #create-task form .cont-bar > div, #order-single form .cont-bar > div {
    width: 100%;
  }
}
#create-project form .cont-bar > div label, #task-single form .cont-bar > div label, #create-task form .cont-bar > div label, #order-single form .cont-bar > div label {
  margin-right: 10px;
}
#create-project form .cont-bar > div .item-bar, #task-single form .cont-bar > div .item-bar, #create-task form .cont-bar > div .item-bar, #order-single form .cont-bar > div .item-bar {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
}
#create-project form .cont-bar > div .item-bar .attachment-txt, #task-single form .cont-bar > div .item-bar .attachment-txt, #create-task form .cont-bar > div .item-bar .attachment-txt, #order-single form .cont-bar > div .item-bar .attachment-txt {
  text-overflow: ellipsis;
  width: 100%;
  height: 1.2em;
  white-space: nowrap;
  font-weight: bold;
}
#create-project form .cont-bar > div .item-bar .attachment-info, #task-single form .cont-bar > div .item-bar .attachment-info, #create-task form .cont-bar > div .item-bar .attachment-info, #order-single form .cont-bar > div .item-bar .attachment-info {
  font-size: 0.7rem;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: dotted thin;
}
#create-project form .cont-bar > div .item-bar .attachment-info:last-child, #task-single form .cont-bar > div .item-bar .attachment-info:last-child, #create-task form .cont-bar > div .item-bar .attachment-info:last-child, #order-single form .cont-bar > div .item-bar .attachment-info:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  #create-project form .cont-bar > div .item-bar, #task-single form .cont-bar > div .item-bar, #create-task form .cont-bar > div .item-bar, #order-single form .cont-bar > div .item-bar {
    margin-top: 0;
  }
}
#create-project form .cont-bar > div .item-bar-adjuntos, #task-single form .cont-bar > div .item-bar-adjuntos, #create-task form .cont-bar > div .item-bar-adjuntos, #order-single form .cont-bar > div .item-bar-adjuntos {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.7rem;
  width: 100%;
}
#create-project form .cont-bar > div .item-bar-adjuntos a, #create-project form .cont-bar > div .item-bar-adjuntos .attachment-txt, #task-single form .cont-bar > div .item-bar-adjuntos a, #task-single form .cont-bar > div .item-bar-adjuntos .attachment-txt, #create-task form .cont-bar > div .item-bar-adjuntos a, #create-task form .cont-bar > div .item-bar-adjuntos .attachment-txt, #order-single form .cont-bar > div .item-bar-adjuntos a, #order-single form .cont-bar > div .item-bar-adjuntos .attachment-txt {
  text-overflow: ellipsis;
  width: 100%;
  font-weight: bold;
  margin-top: 5px;
  padding-top: 5px;
  border-top: dotted thin;
}
#create-project form .cont-bar > div .item-bar-adjuntos a:first-child, #create-project form .cont-bar > div .item-bar-adjuntos .attachment-txt:first-child, #task-single form .cont-bar > div .item-bar-adjuntos a:first-child, #task-single form .cont-bar > div .item-bar-adjuntos .attachment-txt:first-child, #create-task form .cont-bar > div .item-bar-adjuntos a:first-child, #create-task form .cont-bar > div .item-bar-adjuntos .attachment-txt:first-child, #order-single form .cont-bar > div .item-bar-adjuntos a:first-child, #order-single form .cont-bar > div .item-bar-adjuntos .attachment-txt:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
#create-project form .cont-bar > div .item-bar-adjuntos .attachment-info, #task-single form .cont-bar > div .item-bar-adjuntos .attachment-info, #create-task form .cont-bar > div .item-bar-adjuntos .attachment-info, #order-single form .cont-bar > div .item-bar-adjuntos .attachment-info {
  font-size: 0.7rem;
}
@media (max-width: 768px) {
  #create-project form .cont-bar > div .item-bar-adjuntos, #task-single form .cont-bar > div .item-bar-adjuntos, #create-task form .cont-bar > div .item-bar-adjuntos, #order-single form .cont-bar > div .item-bar-adjuntos {
    margin-top: 0;
  }
}
#create-project form .titulo-comentarios label.label, #task-single form .titulo-comentarios label.label, #create-task form .titulo-comentarios label.label, #order-single form .titulo-comentarios label.label {
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
  font-weight: bold;
}
#create-project form .comentarios .box, #task-single form .comentarios .box, #create-task form .comentarios .box, #order-single form .comentarios .box {
  border-bottom: dotted thin #CECDCD;
}
#create-project form .comentarios .box .title, #task-single form .comentarios .box .title, #create-task form .comentarios .box .title, #order-single form .comentarios .box .title {
  color: #9A9898;
}
#create-project form .cont-footer .boton, #task-single form .cont-footer .boton, #create-task form .cont-footer .boton, #order-single form .cont-footer .boton {
  margin: 10px 10px 0px 0px;
  font-size: 0.9rem;
  font-family: inherit;
}
#create-project form .cont-footer .ajax-upload-dragdrop, #task-single form .cont-footer .ajax-upload-dragdrop, #create-task form .cont-footer .ajax-upload-dragdrop, #order-single form .cont-footer .ajax-upload-dragdrop {
  border: none;
  color: #00A99D;
  font-weight: normal;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 500px) {
  #create-project form .cont-footer .ajax-upload-dragdrop, #task-single form .cont-footer .ajax-upload-dragdrop, #create-task form .cont-footer .ajax-upload-dragdrop, #order-single form .cont-footer .ajax-upload-dragdrop {
    width: 93%;
  }
}
#create-project form .cont-footer .ajax-upload-dragdrop .ajax-file-upload, #task-single form .cont-footer .ajax-upload-dragdrop .ajax-file-upload, #create-task form .cont-footer .ajax-upload-dragdrop .ajax-file-upload, #order-single form .cont-footer .ajax-upload-dragdrop .ajax-file-upload {
  background: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  box-shadow: none;
  height: auto;
  line-height: inherit;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 500px) {
  #create-project form .cont-footer .ajax-upload-dragdrop .ajax-file-upload, #task-single form .cont-footer .ajax-upload-dragdrop .ajax-file-upload, #create-task form .cont-footer .ajax-upload-dragdrop .ajax-file-upload, #order-single form .cont-footer .ajax-upload-dragdrop .ajax-file-upload {
    padding: 20px 0;
  }
}
#create-project form .cont-footer .ajax-upload-dragdrop .ajax-file-upload:hover, #task-single form .cont-footer .ajax-upload-dragdrop .ajax-file-upload:hover, #create-task form .cont-footer .ajax-upload-dragdrop .ajax-file-upload:hover, #order-single form .cont-footer .ajax-upload-dragdrop .ajax-file-upload:hover {
  color: #4D4D4D;
}
#create-project form .cont-footer .ajax-upload-dragdrop span, #task-single form .cont-footer .ajax-upload-dragdrop span, #create-task form .cont-footer .ajax-upload-dragdrop span, #order-single form .cont-footer .ajax-upload-dragdrop span {
  border: dotted thin #00A99D;
  padding: 2px 4px;
}
#create-project form .cont-footer .ajax-file-upload-container .ajax-file-upload-statusbar, #task-single form .cont-footer .ajax-file-upload-container .ajax-file-upload-statusbar, #create-task form .cont-footer .ajax-file-upload-container .ajax-file-upload-statusbar, #order-single form .cont-footer .ajax-file-upload-container .ajax-file-upload-statusbar {
  border: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#create-project form .cont-footer .ajax-file-upload-container .ajax-file-upload-statusbar .ajax-file-upload-progress, #task-single form .cont-footer .ajax-file-upload-container .ajax-file-upload-statusbar .ajax-file-upload-progress, #create-task form .cont-footer .ajax-file-upload-container .ajax-file-upload-statusbar .ajax-file-upload-progress, #order-single form .cont-footer .ajax-file-upload-container .ajax-file-upload-statusbar .ajax-file-upload-progress {
  border: none;
  width: 95%;
}
#create-project form .cont-footer .ajax-file-upload-container .ajax-file-upload-statusbar .ajax-file-upload-progress .ajax-file-upload-bar, #task-single form .cont-footer .ajax-file-upload-container .ajax-file-upload-statusbar .ajax-file-upload-progress .ajax-file-upload-bar, #create-task form .cont-footer .ajax-file-upload-container .ajax-file-upload-statusbar .ajax-file-upload-progress .ajax-file-upload-bar, #order-single form .cont-footer .ajax-file-upload-container .ajax-file-upload-statusbar .ajax-file-upload-progress .ajax-file-upload-bar {
  background-color: #00A99D;
  height: 10px;
}
#create-project form .cont-footer .ajax-file-upload-container .ajax-file-upload-statusbar .boton, #task-single form .cont-footer .ajax-file-upload-container .ajax-file-upload-statusbar .boton, #create-task form .cont-footer .ajax-file-upload-container .ajax-file-upload-statusbar .boton, #order-single form .cont-footer .ajax-file-upload-container .ajax-file-upload-statusbar .boton {
  font-size: 0.8rem;
}
@media (max-width: 640px) {
  #create-project form .cont-footer label.label, #task-single form .cont-footer label.label, #create-task form .cont-footer label.label, #order-single form .cont-footer label.label {
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 640px) {
  #create-project form .cont-footer p.control, #task-single form .cont-footer p.control, #create-task form .cont-footer p.control, #order-single form .cont-footer p.control {
    width: 100%;
  }
}
@media (max-width: 500px) {
  #create-project form .cont-footer div.control, #task-single form .cont-footer div.control, #create-task form .cont-footer div.control, #order-single form .cont-footer div.control {
    width: 100%;
  }
}

#create-task form .cont-footer {
  margin: 20px 0 10px;
}
#create-task form .cont-footer label {
  display: table;
}
#create-task form .cont-footer .select {
  width: 25%;
  margin: 10px 0px 0px 0px;
}
@media (max-width: 500px) {
  #create-task form .cont-footer .select {
    width: 100%;
  }
}
@media (max-width: 500px) {
  #create-task form .wizard-navigation {
    width: 100%;
    display: table;
  }
}
#create-task form .wizard-navigation .boton {
  margin: 10px 0px 0px 0px;
}
@media (max-width: 500px) {
  #create-task form .wizard-navigation .boton {
    line-height: 1;
  }
}

@media (max-width: 640px) {
  #project-list .project-list-table #lista-task .cont-items-table, #project-list .project-list-table .body-table .cont-items-table, #project-list .order-list-table #lista-task .cont-items-table, #project-list .order-list-table .body-table .cont-items-table, #project-list .task-list-table #lista-task .cont-items-table, #project-list .task-list-table .body-table .cont-items-table, #task-list .project-list-table #lista-task .cont-items-table, #task-list .project-list-table .body-table .cont-items-table, #task-list .order-list-table #lista-task .cont-items-table, #task-list .order-list-table .body-table .cont-items-table, #task-list .task-list-table #lista-task .cont-items-table, #task-list .task-list-table .body-table .cont-items-table {
    padding: 0 3%;
    border: solid thin #ccc;
    border-radius: 10px;
    margin-bottom: 20px;
  }
}

.notificaciones-table .item-table {
  width: 100%;
}
.notificaciones-table .item-table .delete-notification {
  cursor: pointer;
  color: #dadada;
  font-weight: bold;
}
.notificaciones-table .item-table .delete-notification:hover {
  color: #00A99D;
}

.permisos-table .cont-table > div:first-child {
  width: 25%;
}
@media (max-width: 1280px) {
  .permisos-table .cont-table > div:first-child {
    width: 49%;
  }
}
@media (max-width: 500px) {
  .permisos-table .cont-table > div:first-child {
    width: 100%;
    margin-bottom: 30px;
  }
}
.permisos-table .cont-table > div:nth-child(2) {
  width: 17%;
}
@media (max-width: 1280px) {
  .permisos-table .cont-table > div:nth-child(2) {
    width: 49%;
  }
}
@media (max-width: 500px) {
  .permisos-table .cont-table > div:nth-child(2) {
    width: 100%;
  }
}
.permisos-table .cont-table > div .select {
  margin-bottom: 10px;
}
.permisos-table .cont-table > div .select::after {
  font: 14px "Consolas", monospace;
}
.permisos-table .cont-table > div .item-table {
  border-top: 1px solid #ccc;
  padding: 5px 0;
  line-height: 2;
  font-size: 14px;
}
@media (max-width: 1280px) {
  .permisos-table .cont-table > div .item-table {
    padding: 20px 0;
  }
}
.permisos-table .cont-table > div .boton {
  font-size: 14px;
}

.deadline-danger {
  color: #ff0000;
  font-weight: 500 !important;
}

#notification-list .table .cont-items-table {
  border-top: none;
  margin-top: 0;
}
#notification-list .table .cont-items-table .boton#marcar-leidas {
  font-size: 12px;
  margin-bottom: 15px;
  display: table;
}
#notification-list .table .cont-items-table .item-table {
  border-top: 1px solid #ccc;
  align-items: center;
}
#notification-list .table .cont-items-table .item-table .date-notification {
  width: 100%;
  color: #00A99D;
  font-size: 12px;
  margin-bottom: 5px;
}
#notification-list .table .cont-items-table .item-table .date-notification .dia-notif, #notification-list .table .cont-items-table .item-table .date-notification .hora-notif {
  margin-right: 5px;
  font-weight: bold;
}
#notification-list .table .cont-items-table .item-table .date-notification .dia-notif span, #notification-list .table .cont-items-table .item-table .date-notification .hora-notif span {
  font-weight: normal;
}
#notification-list .table .cont-items-table .item-table .link-notif {
  width: 90%;
}
#notification-list .table .cont-items-table .comments-notif {
  margin: 10px 0 0 20px;
  font-size: 12px;
  width: 100%;
}

#main-navigation {
  width: 100%;
}
#main-navigation > ul {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  height: 40px;
}
#main-navigation > ul > li {
  margin: 16px;
}
#main-navigation > ul > li a {
  color: #333;
}

body #content {
  display: flex;
  justify-content: center;
  flex-direction: row;
  min-height: 100%;
}
body #content .container {
  width: 100%;
}

.mce-widget button:hover {
  color: #fff !important;
}
.mce-widget button {
  border-top: none !important;
}
.mce-widget button:hover {
  color: #fff !important;
}

label::before, label::after {
  display: none;
}

.center-content {
  padding: 50px;
}
.center-content#main {
  background: #F5F7FA;
  padding: 100px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .center-content#main {
    padding: 50px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .center-content#main {
    padding: 50px;
    width: 75%;
  }
}
.center-content#main .header {
  flex-wrap: wrap;
  align-items: center;
}
.center-content#main.template_project {
  background: #F5F7FA;
  padding: 100px;
  align-items: flex-start;
  width: auto;
}
.center-content .panel.small {
  margin: 0px;
  background: #F5F7FA;
  width: 100%;
  height: 305px;
}

.sidebar {
  background: #00A99D;
  color: white;
}
.sidebar a {
  color: rgba(255, 255, 255, 0.5);
}
.sidebar > nav .logo {
  width: 200px;
  margin: 0 40px 80px;
  padding: 10px 0 0;
}
@media (max-width: 768px) {
  .sidebar > nav .logo {
    margin: 0 40px;
  }
}
.sidebar > nav .logo svg {
  width: 100%;
}
.sidebar > nav .logo svg path, .sidebar > nav .logo svg rect {
  fill: white;
}
.sidebar > nav > ul {
  padding-left: 40px;
}
.sidebar > nav > ul > li {
  min-height: 40px;
  padding: 10px 0 0;
}
.sidebar > nav > ul > li > a {
  text-transform: uppercase;
}
.sidebar > nav > ul > li.active a, .sidebar > nav > ul > li:hover a {
  color: white;
  position: relative;
}
.sidebar > nav > ul > li.active a::before, .sidebar > nav > ul > li:hover a::before {
  content: '';
  width: 22px;
  height: 4px;
  background: white;
  display: block;
  position: absolute;
  top: -10px;
}
.sidebar > nav > ul > li > .dropdown {
  position: relative;
  top: 10px;
  display: none;
  padding-top: 20px;
  padding-left: 10px;
  padding-bottom: 20px;
  background: #333;
}
.sidebar > nav > ul > li > .dropdown a {
  color: #7a7a7a;
  font-style: italic;
}
.sidebar > nav > ul > li > .dropdown .subcategoria {
  margin-top: 5px;
}
.sidebar > nav > ul > li > .dropdown .subcategoria a {
  color: #7a7a7a;
  font-style: italic;
}

main .center-content#main.template_project {
  padding: 70px 70px  0 70px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  main .center-content#main.template_project {
    padding: 40px;
  }
}
main .center-content#main.template_project .breadcrumbs {
  height: 15px;
}
@media (max-width: 640px) {
  main .center-content#main.template_project .breadcrumbs {
    margin-bottom: 40px;
  }
}
main .center-content#main.template_project .breadcrumbs ul li a.activo {
  font-weight: bold;
}
main .center-content#main.template_project .breadcrumbs ul li .flecha {
  height: 17px;
  display: block;
  width: 10px;
  margin: 0 5px;
}
main .center-content#main.template_project .breadcrumbs ul li .flecha svg {
  width: 100%;
  height: 100%;
}

.header .logo {
  width: 300px;
}
@media (max-width: 768px) {
  .header .logo {
    margin-bottom: 40px;
  }
}
.header .logo svg {
  width: 100%;
  height: 100%;
}
.header .logo svg rect {
  fill: #00A99D;
}
.header .logo:hover rect {
  y: 15;
}
@media (max-width: 800px) {
  .header .usuario {
    justify-content: space-between;
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 640px) {
  .header .usuario.flex-end {
    justify-content: flex-start;
    width: 100%;
  }
}
.header .usuario .cont-usuario {
  position: relative;
}
.header .usuario .cont-usuario:nth-child(3) {
  width: 50%;
}
@media (max-width: 800px) {
  .header .usuario .cont-usuario {
    justify-content: flex-start;
  }
  .header .usuario .cont-usuario:nth-child(1) {
    margin-left: 15px;
  }
  .header .usuario .cont-usuario:nth-child(2) {
    justify-content: flex-end;
    width: 90%;
  }
  .header .usuario .cont-usuario:nth-child(3) {
    width: 50%;
    margin-top: 20px;
  }
}
@media (max-width: 500px) {
  .header .usuario .cont-usuario:first-child {
    margin: 0 0 20px 15px;
  }
  .header .usuario .cont-usuario:nth-child(2) {
    justify-content: flex-start;
    width: 50%;
  }
  .header .usuario .cont-usuario:nth-child(3) {
    width: 100%;
  }
}
.header .usuario .cont-usuario .avatar {
  width: 10%;
  height: 10%;
  margin: 0 10px 0 0;
  display: flex;
}
@media (max-width: 800px) {
  .header .usuario .cont-usuario .avatar {
    width: 15%;
    height: 50px;
  }
}
.header .usuario .cont-usuario .avatar svg {
  width: 100%;
  height: 100%;
}
.header .usuario .cont-usuario .avatar svg circle, .header .usuario .cont-usuario .avatar svg path {
  fill: #00A99D;
}
.header .usuario .cont-usuario a {
  cursor: pointer;
}
@media (max-width: 800px) {
  .header .usuario .cont-usuario a#menu-boton {
    width: 75%;
    line-height: 3;
  }
  .header .usuario .cont-usuario a#menu-boton .header-tab {
    width: 100%;
  }
}
.header .usuario .cont-usuario a.ver-notif {
  font-size: 12px;
  margin-left: 10px;
  color: red;
}
@media (max-width: 800px) {
  .header .usuario .cont-usuario a.ver-notif {
    font-size: 14px;
  }
}
.header .usuario .cont-usuario a.ver-notif:hover {
  color: inherit;
}
.header .usuario .cont-usuario .flecha {
  transform: rotate(90deg);
  margin: 4px 0 0 5px;
  width: 15px;
}
@media (max-width: 800px) {
  .header .usuario .cont-usuario .flecha {
    width: 30px;
    height: 40px;
    margin: 10px 0 0 5px;
  }
}
.header .usuario .cont-usuario .flecha svg {
  width: 60%;
  height: auto;
}
@media (max-width: 800px) {
  .header .usuario .cont-usuario .flecha svg {
    width: 60%;
    height: 60%;
  }
}
@media (max-width: 500px) {
  .header .usuario .cont-usuario .flecha svg {
    width: auto;
    height: 60%;
  }
}
.header .usuario .cont-usuario #cont-mainmenu {
  position: absolute;
  top: 30px;
  right: -7px;
  display: none;
  background: #00A99D;
  color: white;
  border-radius: 6px;
  font-size: 0.9rem;
  padding: 10px;
  border: none;
  box-shadow: none;
  text-align: left;
  z-index: 9;
}
@media (max-width: 640px) {
  .header .usuario .cont-usuario #cont-mainmenu {
    width: 82%;
    top: 50px;
  }
}
@media (max-width: 500px) {
  .header .usuario .cont-usuario #cont-mainmenu {
    width: 93%;
    right: 0px;
  }
}
.header .usuario .cont-usuario #cont-mainmenu li a {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: solid thin rgba(255, 255, 255, 0.2);
  display: block;
}
.header .usuario .cont-usuario #cont-mainmenu li a:hover {
  color: rgba(255, 255, 255, 0.5);
}
.header .usuario .cont-usuario #cont-mainmenu li:last-child a {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
.header .usuario .cont-usuario .header-tab i {
  font-size: 20px;
}
@media (max-width: 800px) {
  .header .usuario .cont-usuario .header-tab i {
    font-size: 30px;
  }
}
.header .usuario .cont-usuario .header-tab .badge {
  position: absolute;
  background: red;
  color: white;
  padding: 8px;
  border-radius: 50%;
  line-height: 0.5;
  left: -15px;
  top: -10px;
  font-size: 12px;
}
@media (max-width: 800px) {
  .header .usuario .cont-usuario .header-tab .badge {
    font-size: 14px;
    padding: 10px;
  }
}
.header .usuario .cont-usuario .notificacion-dropdown {
  position: absolute;
  padding: 10px;
  border-radius: 6px;
  width: 250px;
  background: white;
  left: 0;
  top: 30px;
  z-index: 9;
  border: solid thin #ccc;
  display: none;
}
.header .usuario .cont-usuario .notificacion-dropdown ul#notifications {
  font-size: 11px;
  display: block;
}
.header .usuario .cont-usuario .notificacion-dropdown ul#notifications li {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.header .usuario .cont-usuario .notificacion-dropdown ul#notifications li .delete-notification {
  cursor: pointer;
  color: #dadada;
  font-weight: bold;
}
.header .usuario .cont-usuario .notificacion-dropdown ul#notifications li .delete-notification:hover {
  color: #00A99D;
}
.header .usuario .cont-usuario .notificacion-dropdown ul#notifications li:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.header .usuario .cont-usuario .notificacion-dropdown ul#notifications li:last-child a {
  color: #00A99D;
}
.header .usuario .cont-usuario .notificacion-dropdown ul#notifications li:last-child a:hover {
  text-decoration: underline;
}

.botones {
  margin-top: 150px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .botones {
    margin-top: 50px;
  }
}
.botones a {
  padding: 4% 4% 4% 0;
  font-size: 50px;
  text-transform: uppercase;
  position: relative;
  font-weight: bold;
  display: table;
}
@media (max-width: 768px) {
  .botones a {
    padding: 20% 0;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .botones a {
    font-size: 45px;
  }
}
.botones a span {
  font-size: 25px;
  display: block;
  line-height: 0.5;
  font-weight: normal;
}
.botones a::before {
  content: '';
  width: 52px;
  height: 10px;
  background: #00A99D;
  display: block;
  position: absolute;
  top: 0;
  transition: ease 0.25s;
}
.botones a:hover::before {
  content: '';
  width: 52px;
  height: 10px;
  background: #00A99D;
  display: block;
  position: absolute;
  top: 20px;
}

#options {
  position: absolute;
  top: 42px;
  display: none;
  background: #00A99D;
  color: white;
  border-radius: 6px;
  font-size: 0.9rem;
  padding: 10px;
  border: none;
  box-shadow: none;
  text-align: left;
  z-index: 9;
}
#options li a {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: solid thin rgba(255, 255, 255, 0.2);
  display: block;
}
#options li a:hover {
  color: rgba(255, 255, 255, 0.5);
}
#options li:last-child a {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

/* Accordion */
.accordion-toggle {
  cursor: pointer;
}

.gear {
  padding: 4px;
  height: 30px;
  display: block;
  width: 30px;
  background: #00A99D;
  border-radius: 5px;
}
.gear svg {
  width: 100%;
  height: 100%;
}

#footer {
  color: #fff;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * 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: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.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 fadeInRightShort {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightShort {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightShort {
  -webkit-animation-name: fadeInRightShort;
  animation-name: fadeInRightShort;
}

@-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;
}

.panel {
  background: #F5F7FA;
  border-radius: 6px;
  height: 100%;
  padding: 20px 20px;
}
.panel.small {
  max-width: 300px;
}
.panel.medium {
  max-width: 600px;
}
.panel.large {
  max-width: 1000px;
}

.wizard {
  position: relative;
  border-radius: 0;
  padding: 0;
}
.wizard .tab-pane {
  display: none;
  min-height: 500px;
  flex-direction: column;
}
.wizard .tab-pane.active {
  display: flex;
}
.wizard .wizard-navigation {
  margin-top: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.wizard .wizard-navigation > li {
  margin-right: 5px;
}
.wizard .wizard-navigation > li:last-child {
  margin-right: 0;
}
.wizard .input-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.wizard .input-container > .input-header {
  width: 60%;
  padding-bottom: 20px;
}
.wizard .input-container label {
  padding-bottom: 5px;
}
.wizard .input-container input {
  height: 30px;
  font-size: 22px;
}
@media (max-width: 500px) {
  .wizard .input-container input {
    width: 100%;
  }
}

.users-in-project {
  padding: 30px 0;
}
.users-in-project h5 {
  margin-bottom: 10px;
}
.users-in-project ul {
  padding: 0;
  margin: 0;
}
.users-in-project ul li {
  display: inline-block;
  margin-right: 10px;
  border: 1px solid #ccc;
  padding: 2px 4px;
  font-size: 12px;
  border-radius: 4px;
  background: #363636;
  font-weight: bold;
  color: #fff;
}

.tag-category {
  border-radius: 4px;
  padding: 4px 6px;
  color: #FFf;
  font-size: 12px;
  text-align: center;
  display: inline;
  font-weight: bold;
  margin: 2px;
  background: #ccc;
}
@media (max-width: 800px) {
  .tag-category {
    display: table;
    width: 80%;
  }
}
@media (max-width: 640px) {
  .tag-category {
    width: 97%;
  }
}
@media (max-width: 360px) {
  .tag-category {
    width: 94%;
  }
}

.tag-category.tag-1 {
  background: #f00;
}

.tag-category.tag-2 {
  background: #13be33;
}

.tag-category.tag-3 {
  background: #df38ce;
}

.tag-category.tag-4 {
  background: #000000;
}

.tag-category.tag-5 {
  background: #131abe;
}

.tag-category.tag-6 {
  background: #842ff1;
}

.tag-category.tag-7 {
  background: #f1bb2f;
}

.contenido-comentario > ul {
  margin: 0;
  padding-left: 30px;
}
.contenido-comentario > ul > li {
  list-style-type: disc;
}

@media (max-width: 500px) {
  #register .center-content .panel.small {
    height: 350px;
  }
}

#login-form, #register-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#login-form p, #register-form p {
  width: 100%;
}
#login-form p.avatar, #register-form p.avatar {
  background: #00A99D;
  border-radius: 50%;
  line-height: 0;
  border: solid 8px #00A99D;
  margin: -105px auto 40px;
  width: 50%;
}
#login-form p.avatar svg, #register-form p.avatar svg {
  width: 100%;
  height: 100%;
}
#login-form p:last-child, #register-form p:last-child {
  width: 100px;
}
#login-form p a.olvido, #register-form p a.olvido {
  font-size: 0.7rem;
  float: right;
  display: none;
}
#login-form p a.olvido:hover, #register-form p a.olvido:hover {
  text-decoration: underline;
}
#login-form label, #register-form label {
  text-transform: uppercase;
  width: 100%;
  font-size: 15px;
}
#login-form input, #register-form input {
  width: 100%;
  margin: 0px 0 10px 0;
  height: 22px;
  border: none;
  background: transparent;
}
#login-form input[type='text'], #login-form input[type='password'], #register-form input[type='text'], #register-form input[type='password'] {
  border-bottom: solid thin #4D4D4D;
  color: #4D4D4D;
  font-size: 1rem;
  padding-bottom: 5%;
}
#login-form input[type='text']:-moz-placeholder, #login-form input[type='password']:-moz-placeholder, #register-form input[type='text']:-moz-placeholder, #register-form input[type='password']:-moz-placeholder {
  color: #4D4D4D;
}
#login-form input[type='text']::-moz-placeholder, #login-form input[type='password']::-moz-placeholder, #register-form input[type='text']::-moz-placeholder, #register-form input[type='password']::-moz-placeholder {
  color: #4D4D4D;
}
#login-form input[type='text']::-webkit-input-placeholder, #login-form input[type='password']::-webkit-input-placeholder, #register-form input[type='text']::-webkit-input-placeholder, #register-form input[type='password']::-webkit-input-placeholder {
  color: #4D4D4D;
}
#login-form input[type='text']:-ms-input-placeholder, #login-form input[type='password']:-ms-input-placeholder, #register-form input[type='text']:-ms-input-placeholder, #register-form input[type='password']:-ms-input-placeholder {
  color: #4D4D4D;
}
#login-form input[type='text']:focus, #login-form input[type='password']:focus, #register-form input[type='text']:focus, #register-form input[type='password']:focus {
  outline: none;
}
#login-form input[type='text']:focus:-moz-placeholder, #register-form input[type='text']:focus:-moz-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input[type='text']:focus::-moz-placeholder, #register-form input[type='text']:focus::-moz-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input[type='text']:focus::-webkit-input-placeholder, #register-form input[type='text']:focus::-webkit-input-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input[type='text']:focus::-webkit-input-placeholder, #register-form input[type='text']:focus::-webkit-input-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input[type='text']:focus:-ms-input-placeholder, #register-form input[type='text']:focus:-ms-input-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input[type='text']:hover:-moz-placeholder, #register-form input[type='text']:hover:-moz-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input[type='text']:hover::-moz-placeholder, #register-form input[type='text']:hover::-moz-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input[type='text']:hover::-webkit-input-placeholder, #register-form input[type='text']:hover::-webkit-input-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input[type='text']:hover::-webkit-input-placeholder, #register-form input[type='text']:hover::-webkit-input-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input[type='text']:hover:-ms-input-placeholder, #register-form input[type='text']:hover:-ms-input-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input[type='password']:focus:-moz-placeholder, #register-form input[type='password']:focus:-moz-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input[type='password']:focus::-moz-placeholder, #register-form input[type='password']:focus::-moz-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input[type='password']:focus::-webkit-input-placeholder, #register-form input[type='password']:focus::-webkit-input-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input[type='password']:focus::-webkit-input-placeholder, #register-form input[type='password']:focus::-webkit-input-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input[type='password']:focus:-ms-input-placeholder, #register-form input[type='password']:focus:-ms-input-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input[type='password']:hover:-moz-placeholder, #register-form input[type='password']:hover:-moz-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input[type='password']:hover::-moz-placeholder, #register-form input[type='password']:hover::-moz-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input[type='password']:hover::-webkit-input-placeholder, #register-form input[type='password']:hover::-webkit-input-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input[type='password']:hover::-webkit-input-placeholder, #register-form input[type='password']:hover::-webkit-input-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input[type='password']:hover:-ms-input-placeholder, #register-form input[type='password']:hover:-ms-input-placeholder {
  color: rgba(77, 77, 77, 0.5);
}
#login-form input:-webkit-autofill, #register-form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #F5F7FA inset;
  -webkit-text-fill-color: #4D4D4D !important;
}
#login-form input[type='submit'], #register-form input[type='submit'] {
  margin-top: 20px;
  height: 30px;
  background: #00A99D;
  border-radius: 6px;
  box-shadow: none;
  text-shadow: none;
  font-size: 1rem;
  color: white;
}
#login-form input[type='submit']:hover, #register-form input[type='submit']:hover {
  background: rgba(0, 169, 157, 0.5);
}

.table .cont-items-table .item-table.item-titulo-table {
  line-height: 1.3;
}

.contenido-comentario p {
  margin-bottom: 10px;
}

/*# sourceMappingURL=style.css.map */
