@font-face {
  font-family: 'Century Gothic';
  src: url('fonts/gothic_0.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}
.camera-menu-back {
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
}
.camera-menu-base-area {
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background-color: grey;
  opacity: 0.6;
  z-index: 2;
}
.camera-menu-container {
  width: 100%;
  height: 100%;
}
.camera-menu {
  position: absolute;
  z-index: 500;
  overflow: hidden;
  background-color: blue;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 94%;
  height: 200px;
  left: 3%;
  bottom: -70px;
}
.camera-menu .camera-menu-title {
  width: 100%;
  height: 40px;
  background-color: #747373;
}
.camera-menu .camera-menu-title .camera-menu-title-content {
  padding-top: 10px;
  padding-left: 10px;
  padding-bottom: 12px;
  color: #ffffff;
  font-family: 'Century Gothic', sans-serif;
  font-weight: bold;
  border-bottom: 1px solid;
}
.camera-menu .camera-menu-item {
  height: 45px;
  border: 1px solid lightgray;
  border-top: none;
  background-color: white;
}
.camera-menu .camera-menu-item .camera-menu-name {
  padding: 10px;
  color: #000000;
  font-family: 'Century Gothic', sans-serif;
  float: left;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* Animación del menú */
.camera-menu-animate-enter {
  bottom: -200px;
}
.camera-menu-animate-enter-active {
  bottom: -70px;
  transition: bottom 0.3s linear;
  -webkit-transition: bottom 0.3s linear;
}
.camera-menu-animate-leave {
  bottom: -70px;
}
.camera-menu-animate-leave-active {
  bottom: -200px;
  transition: bottom 0.3s linear;
  -webkit-transition: bottom 0.3s linear;
}
.camera-back-enter {
  opacity: 0;
}
.camera-back-enter-active {
  opacity: 0.6;
  transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s linear;
}
.camera-back-leave {
  opacity: 0.6;
}
.camera-back-leave-active {
  opacity: 0;
  transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s linear;
}
.center-vertical {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@font-face {
  font-family: 'Century Gothic';
  src: url('fonts/gothic_0.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}
.crop-area {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
  background-color: #6EC0D5;
  top: 0;
}
.crop-area .title {
  color: white;
  font-family: 'Righteous';
  font-size: 28px;
  text-align: center;
  margin-top: 25px;
  height: 30px;
}
.crop-area .editor-back {
  z-index: 100;
  position: absolute;
  left: 30px;
  top: 85px;
  background-color: transparent;
  border: 4px solid white;
  overflow: hidden;
  pointer-events: none;
}
.crop-area .avatar-editor-container {
  position: relative;
  top: 5px;
}
.crop-area .crop-buttons-container {
  position: fixed;
  bottom: 20px;
  width: 100%;
}
.crop-area .crop-buttons-container .crop-button {
  float: left;
  height: 40px;
  width: 40%;
  border-radius: 5px;
  position: relative;
  border-style: none;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: 17px;
  cursor: pointer;
}
.crop-area .crop-buttons-container .crop-button > span {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: 17px;
}
.crop-area .crop-buttons-container .crop-save-button {
  margin-left: 7.5%;
  margin-right: 2.5%;
  background-color: #c1cfde;
}
.crop-area .crop-buttons-container .crop-cancel-button {
  margin-left: 2.5%;
  margin-right: 7.5%;
  background-color: #c14445;
}
.selectable {
  cursor: pointer;
}
.center-vertical {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@font-face {
  font-family: 'Century Gothic';
  src: url('fonts/gothic_0.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}
.Modal {
  -webkit-transition: visibility visibility 140ms;
  -o-transition: visibility visibility 140ms;
  transition: visibility visibility 140ms;
  bottom: 0;
  left: 0;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 1100;
  height: 100%;
}
.Modal.is-open {
  -webkit-transition: visibility none;
  -o-transition: visibility none;
  transition: visibility none;
  visibility: visible;
  z-index: 1100;
}
.Modal-dialog {
  max-width: 100%;
  padding: 25px;
  width: auto;
  z-index: 2;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'Century Gothic', sans-serif;
  font-size: 15px;
  text-align: center;
}
.Modal-dialog-enter {
  -webkit-animation-name: modalDialogEnter;
  animation-name: modalDialogEnter;
  -webkit-animation-duration: 260ms;
  animation-duration: 260ms;
  -webkit-animation-timing-function: cubic-bezier(0.5, -0.55, 0.4, 1.55);
  animation-timing-function: cubic-bezier(0.5, -0.55, 0.4, 1.55);
}
.Modal-dialog-leave {
  -webkit-animation-duration: 140ms;
  animation-duration: 140ms;
  -webkit-animation-name: modalDialogLeave;
  animation-name: modalDialogLeave;
}
.Modal-content {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.175), 0 3px 8px rgba(0, 0, 0, 0.175);
  outline: none;
  position: relative;
  display: inline-block;
  min-width: 250px;
  max-width: 400px;
}
.Modal__header,
.Modal__body,
.Modal__footer {
  margin-left: 25px;
  margin-right: 25px;
  padding-bottom: 25px;
  padding-top: 25px;
  position: relative;
  text-align: center;
}
.Modal__header {
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
  z-index: 1;
}
.Modal__header__text {
  color: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}
.Modal__header__close {
  -webkit-transition: visibility opacity 140ms;
  -o-transition: visibility opacity 140ms;
  transition: visibility opacity 140ms;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1ex;
  margin: 0;
  opacity: .4;
  font-size: 24px;
  padding: 25px 25px;
  position: absolute;
  right: -25px;
  top: 0;
}
.Modal__header__close::after {
  content: "\00d7";
}
.Modal__header__close:hover,
.Modal__header__close:focus {
  opacity: 1;
  outline: 0;
}
.Modal__header__close:active {
  color: #d64242;
}
.Modal__body {
  margin: 0;
  padding: 25px 25px;
}
.Modal__footer {
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  z-index: 1;
  width: 100%;
  padding-top: 13px;
  padding-bottom: 13px;
  margin: 0;
  text-align: center;
  color: #6491c2;
  font-weight: bolder;
  font-size: 16px;
  cursor: pointer;
}
.Modal-backdrop {
  -webkit-transition: visibility 140ms;
  -o-transition: visibility 140ms;
  transition: visibility 140ms;
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1099;
}
.Modal-background-enter {
  -webkit-animation-name: modalBackdropEnter;
  animation-name: modalBackdropEnter;
}
.Modal-background-leave {
  -webkit-animation-duration: 240ms;
  animation-duration: 240ms;
  -webkit-animation-name: modalBackdropLeave;
  animation-name: modalBackdropLeave;
}
@-webkit-keyframes modalDialogEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalDialogEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes modalDialogLeave {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes modalDialogLeave {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes modalBackdropEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes modalBackdropEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalBackdropEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes modalBackdropLeave {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes modalBackdropLeave {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.center-vertical {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.Spinner {
  display: inline-block;
  font-size: 8px;
  height: 8px;
  position: relative;
  text-align: center;
  vertical-align: middle;
}
.Spinner_dot {
  -webkit-animation: pulse 1s infinite ease-in-out;
  -o-animation: pulse 1s infinite ease-in-out;
  animation: pulse 1s infinite ease-in-out;
  height: 1em;
  width: 1em;
  border-radius: 50%;
  display: inline-block;
  vertical-align: top;
}
.Spinner_dot--second {
  -webkit-animation-delay: 160ms;
  animation-delay: 160ms;
  margin-left: 1em;
}
.Spinner_dot--third {
  -webkit-animation-delay: 320ms;
  animation-delay: 320ms;
  margin-left: 1em;
}
.Spinner--default > .Spinner_dot {
  background-color: lightgrey;
}
.Spinner--primary > .Spinner_dot {
  background-color: #80BAF9;
}
.Spinner--inverted > .Spinner_dot {
  background-color: white;
}
.Spinner--sm {
  font-size: 4px;
  height: 4px;
}
.Spinner--lg {
  font-size: 16px;
  height: 16px;
}
@-webkit-keyframes pulse {
  0%,
  80%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes pulse {
  0%,
  80%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
.AvatarCropper-base {
  text-align: center;
}
.AvatarCropper-base input[type=range] {
  display: inline-block;
}
.AvatarCropper-base input[type=range] {
  /*removes default webkit styles*/
  -webkit-appearance: none;
  /*fix for FF unable to apply focus style bug */
  padding: 20px 0;
  border: 1px solid white;
  /*required for proper track sizing in FF*/
  width: 400px;
}
.AvatarCropper-base input[type=range]::-webkit-slider-runnable-track {
  width: 400px;
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px;
}
.AvatarCropper-base input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #454545;
  margin-top: -4px;
}
.AvatarCropper-base input[type=range]:focus {
  outline: none;
}
.AvatarCropper-base input[type=range]:focus::-webkit-slider-runnable-track {
  background: #ccc;
}
.AvatarCropper-base input[type=range]::-moz-range-track {
  width: 400px;
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px;
}
.AvatarCropper-base input[type=range]::-moz-range-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #454545;
}
/*hide the outline behind the border*/
.AvatarCropper-base input[type=range]:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px;
}
.AvatarCropper-base input[type=range]::-ms-track {
  width: 400px;
  height: 5px;
  /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
  background: transparent;
  /*leave room for the larger thumb to overflow with a transparent border */
  border-color: transparent;
  border-width: 6px 0;
  /*remove default tick marks*/
  color: transparent;
}
.AvatarCropper-base input[type=range]::-ms-fill-lower {
  background: #777;
  border-radius: 10px;
}
.AvatarCropper-base input[type=range]::-ms-fill-upper {
  background: #ddd;
  border-radius: 10px;
}
.AvatarCropper-base input[type=range]::-ms-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #454545;
}
.AvatarCropper-base input[type=range]:focus::-ms-fill-lower {
  background: #888;
}
.AvatarCropper-base input[type=range]:focus::-ms-fill-upper {
  background: #ccc;
}
.AvatarCropper-base canvas {
  cursor: move;
}
/* SIZES */
/* Important! avatar+date+data+footer = 100% */
/* COLORS */
/* FONTS */
@font-face {
  font-family: 'Righteous';
  src: url('fonts/Righteous-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Century Gothic';
  src: url('fonts/gothic_0.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}
html,
body {
  overflow: hidden;
}
.start-area {
  background-color: white;
  left: 0;
  top: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
}
.text-input {
  width: 100%;
  padding: 0 3% 0 3%;
  height: 40px;
}
.opacity01 {
  opacity: 0.1;
}
.opacity05 {
  opacity: 0.5;
}
.parent-area {
  background-color: #979898;
  left: 0;
  top: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
}
.mobile-area {
  overflow: hidden;
  position: absolute;
  width: 375px;
  height: 560px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #f9f9f9;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  border: 2px solid gray;
  -webkit-box-shadow: 4px 5px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 4px 5px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 4px 5px 5px 0px rgba(0, 0, 0, 0.75);
}
.base-area {
  background-color: white;
  left: 0;
  top: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
}
.base-area-web {
  overflow: hidden;
  position: absolute;
  width: 325px;
  height: 460px;
  margin-top: 30px;
  margin-left: 25px;
  margin-right: 25px;
  border: 1px solid lightgrey;
}
.mobile-button-area {
  position: absolute;
  width: 375px;
  height: 70px;
  top: 490px;
}
.mobile-button {
  position: absolute;
  height: 40px;
  width: 40px;
  border-radius: 800px;
  border: 1px solid #cecece;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.mobile-button-inside {
  width: 33%;
  height: 33%;
  border: 1px solid silver;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.login-area {
  background-color: #80BAF9;
  left: 0;
  top: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 10;
}
.sign-in-link {
  width: 100%;
  height: 10%;
  background-color: #80BAF9;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: small;
  text-align: center;
  top: 90%;
  position: absolute;
}
.sign-in-link-content {
  width: 160px;
  height: 30px;
  margin: auto;
  font-size: 16px;
}
.login-content {
  width: 400px;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
}
.title {
  color: white;
  font-family: 'Righteous';
  font-size: xx-large;
  text-align: center;
}
.subtitle {
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: x-large;
  text-align: center;
}
.single-input {
  border: none;
  -webkit-appearance: textfield;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  font-size: 14px;
  font-family: 'Century Gothic', sans-serif;
}
.top-input {
  border: none;
  border-bottom: 1px solid lightgrey;
  margin-top: 15px;
  -webkit-appearance: textfield;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  font-size: 14px;
  font-family: 'Century Gothic', sans-serif;
}
.middle-input {
  border: none;
  -webkit-appearance: textfield;
  border-bottom: 1px solid lightgrey;
  font-size: 14px;
  font-family: 'Century Gothic', sans-serif;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.bottom-input {
  border: none;
  -webkit-appearance: textfield;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  font-size: 14px;
  font-family: 'Century Gothic', sans-serif;
}
.login-button {
  height: 40px;
  width: 100%;
  background-color: #c1cfde;
  border-radius: 5px;
  margin-top: 10px;
  border-style: none;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: 17px;
  cursor: pointer;
}
.login-button > span {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: 17px;
}
.remember-me {
  margin-top: 10px;
  cursor: pointer;
}
.contact-help {
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: small;
  margin-top: 20px;
  text-align: center;
}
.contact-content {
  height: 100%;
  margin: auto;
  font-size: 16px;
}
.forgot-pass {
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: small;
  margin-top: 20px;
  text-align: center;
}
.forgot-pass-content {
  height: 100%;
  margin: auto;
  font-size: 16px;
}
.error-message {
  margin-top: 10px;
  width: 100%;
  height: 40px;
  color: #fafa00;
  text-align: center;
  font-family: 'Century Gothic', sans-serif;
  font-size: small;
}
.message-ok {
  margin-top: 10px;
  width: 100%;
  height: 40px;
  color: #008C13;
  text-align: center;
  font-family: 'Century Gothic', sans-serif;
  font-size: small;
}
.message {
  margin-top: 10%;
  width: 100%;
  height: 40px;
  color: #fafa00;
  text-align: center;
  font-family: 'Century Gothic', sans-serif;
  font-size: medium;
}
.change-password-area {
  background-color: #80BAF9;
  left: -100%;
  top: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 10;
}
.reset-password-area {
  background-color: #f1f1f1;
  left: 0;
  top: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 10;
}
.reset-password-content {
  width: 25%;
  top: 30%;
  padding: 15px;
  background-color: white;
  position: relative;
  -webkit-transform: translateY(-25%);
  -moz-transform: translateY(-25%);
  -o-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  transform: translateY(-25%);
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .reset-password-content {
    width: 90%;
  }
}
.reset-password-title {
  color: #307183;
  font-size: xx-large;
  text-align: center;
}
.reset-password-button {
  height: 40px;
  width: 100%;
  background-color: #6EC0D5;
  border-radius: 5px;
  margin-top: 10px;
  border-style: none;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: 17px;
  cursor: pointer;
}
.reset-password-button > span {
  text-align: center;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: 17px;
}
.sign-in-area {
  background-color: #80BAF9;
  left: 0;
  top: 100%;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 4;
}
.sign-in {
  left: 0;
  top: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 94%;
}
.sign-in-content {
  width: 400px;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
}
.sign-in-input {
  width: 94%;
  padding: 0 3% 0 3%;
  height: 40px;
}
.sign-in-user-input {
  border: none;
  border-bottom: 1px solid lightgrey;
  margin-top: 15px;
  -webkit-appearance: textfield;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  font-size: 14px;
  font-family: 'Century Gothic', sans-serif;
}
.sign-in-button {
  height: 40px;
  width: 100%;
  background-color: #c1cfde;
  border-radius: 5px;
  margin-top: 10px;
  border-style: none;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: 17px;
  cursor: pointer;
}
.sign-in-button > span {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: 17px;
}
.sign-in-back {
  width: 100%;
  height: 6%;
  background-color: #80BAF9;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: small;
  text-align: center;
  top: 94%;
  position: absolute;
}
.sign-in-back-content {
  width: 160px;
  height: 100%;
  margin: auto;
}
.legal-terms {
  background-color: white;
  max-height: 70vh;
  overflow-y: scroll;
}
.legal-terms .legal-terms-container {
  font-family: 'Century Gothic', sans-serif;
}
.legal-terms .legal-terms-container .condiciones-legales {
  padding: 15px;
  text-align: justify;
}
.legal-terms .legal-terms-container .texto-legales {
  padding: 5px;
}
.check-container {
  text-align: center;
  margin-top: 20px;
}
.check-container .check-container-inside {
  display: inline-block;
}
.check-container .check-container-inside .check-legal {
  height: 15px;
  width: 15px;
  border: 1px solid white;
  float: left;
}
.check-container .check-container-inside .check-legal .check-on {
  height: 11px;
  width: 11px;
  margin: 2px;
  background-color: #ffffff;
}
.check-container .check-container-inside .legal-terms-message-container {
  float: left;
}
.check-container .check-container-inside .legal-terms-message-container .legal-terms-message {
  font-size: 14px;
  margin-left: 10px;
  color: white;
  font-family: 'Century Gothic', sans-serif;
}
.check-container .check-container-inside .legal-terms-message-container u {
  cursor: pointer;
}
.change-password-back {
  width: 100%;
  height: 6%;
  background-color: #80BAF9;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: small;
  text-align: center;
  top: 90%;
  position: absolute;
}
.change-password-back-content {
  width: 100px;
  height: 100%;
  margin: auto;
}
.config-notifications-area {
  background-color: #80BAF9;
  left: -100%;
  top: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 10;
}
.config-notifications-back {
  width: 100%;
  height: 6%;
  background-color: #80BAF9;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: small;
  text-align: center;
  top: 94%;
  position: absolute;
}
.config-notifications-back-content {
  width: 100px;
  height: 100%;
  margin: auto;
}
.devices {
  left: 0;
  top: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.devices-content {
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  max-width: 600px;
}
.notifications-device {
  width: 100%;
  height: 60px;
  border: 1px solid white;
  border-radius: 5px;
  margin-top: 15px;
  cursor: pointer;
}
.notifications-device .device-icon {
  width: 20%;
  height: 100%;
  float: left;
  text-align: center;
}
.notifications-device .device-icon .device-icon-content {
  height: 40px;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.notifications-device .device-icon .device-icon-content > img {
  width: 40px;
  height: 40px;
}
.notifications-device .device-name {
  width: 60%;
  height: 100%;
  float: left;
}
.notifications-device .device-name .device-name-content {
  padding-left: 10px;
  font-family: 'Century Gothic', sans-serif;
  font-size: large;
  color: white;
  font-weight: bold;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.notifications-device .device-check {
  width: 20%;
  height: 100%;
  float: left;
  text-align: center;
}
.notifications-device .device-check .device-check-content {
  height: 30px;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.notifications-device .device-check .device-check-content > img {
  width: 30px;
  height: 30px;
}
.device-selected {
  background-color: #c9c9c9;
}
.notes-area {
  background-color: #80BAF9;
  left: -100%;
  top: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 10;
  text-align: center;
}
.notebook {
  width: 85%;
  height: 30%;
  margin-top: 5%;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 5px;
  resize: vertical;
  font-family: 'Century Gothic', sans-serif;
  font-size: 13px;
  line-height: 24px;
  -webkit-appearance: none;
  border: none;
  background: url('../img/notebook.png');
}
.info-char {
  width: 90%;
  height: 12px;
  margin-top: 1%;
  padding-right: 8%;
  margin-bottom: 5px;
  text-align: right;
  color: white;
  font-size: 9px;
  font-family: 'Century Gothic', sans-serif;
}
.note-area-title {
  margin-top: 5%;
  color: white;
  font-family: 'Righteous';
  font-size: x-large;
  text-align: center;
}
.info-note-area-container {
  margin-top: 5%;
  margin-left: 8%;
  margin-right: 7%;
  margin-bottom: 5%;
  width: 85%;
  font-size: 12px;
  text-align: left !important;
}
.button-note-area {
  width: 100%;
  height: 40px;
  margin-top: 20px;
}
.info-note {
  color: white;
  font-family: 'Century Gothic', sans-serif;
}
.message-note {
  margin-top: 5%;
  margin-left: 8%;
  margin-right: 7%;
  margin-bottom: 5%;
  width: 85%;
  font-size: 12px;
  text-align: center !important;
  color: yellow;
  font-family: 'Century Gothic', sans-serif;
}
.error-note {
  color: red !important;
}
.recovery-area {
  background-color: #80BAF9;
  left: 0;
  top: -100%;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 4;
}
.recovery {
  left: 0;
  top: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 90%;
}
.recovery-content {
  width: 400px;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
}
.recovery-subtitle {
  font-size: 20px;
}
.recovery-user-input {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.recovery-button {
  height: 40px;
  width: 100%;
  background-color: #c1cfde;
  border-radius: 5px;
  margin-top: 10px;
  border-style: none;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: 17px;
  cursor: pointer;
}
.recovery-button > span {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: 17px;
}
.recovery-back {
  width: 100%;
  height: 10%;
  background-color: #80BAF9;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: small;
  text-align: center;
  top: 90%;
  position: absolute;
}
.recovery-back-content {
  height: 100%;
  margin: auto;
  font-size: 16px;
}
.suggestions-area {
  background-color: #80BAF9;
  left: -100%;
  top: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 10;
  text-align: center;
}
.suggestions-area .suggestions-area-title {
  margin-top: 5%;
  color: white;
  font-family: 'Righteous';
  font-size: x-large;
  text-align: center;
}
.suggestions-area .suggestions {
  width: 85%;
  height: 30%;
  margin-top: 5%;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 5px;
  resize: vertical;
  font-family: 'Century Gothic', sans-serif;
  font-size: 13px;
  line-height: 24px;
  -webkit-appearance: none;
  border: none;
  background: url('../img/notebook.png');
}
.suggestions-area .info-char {
  width: 90%;
  height: 12px;
  margin-top: 1%;
  padding-right: 8%;
  margin-bottom: 5px;
  text-align: right;
  color: white;
  font-size: 9px;
  font-family: 'Century Gothic', sans-serif;
}
.suggestions-area .suggestions-note-area {
  width: 100%;
  height: 40px;
  margin-top: 20px;
}
.suggestions-area .info-suggestions-area-container {
  margin-top: 5%;
  margin-left: 8%;
  margin-right: 7%;
  margin-bottom: 5%;
  width: 85%;
  font-size: 12px;
  text-align: left !important;
}
.suggestions-area .info-suggestions-area-container .info-suggestions {
  color: white;
  font-family: 'Century Gothic', sans-serif;
}
.suggestions-area .message-suggestions {
  margin-top: 5%;
  margin-left: 8%;
  margin-right: 7%;
  margin-bottom: 5%;
  width: 85%;
  font-size: 12px;
  text-align: center !important;
  color: yellow;
  font-family: 'Century Gothic', sans-serif;
}
.suggestions-area .error-note {
  color: red !important;
}
.contact-help-area {
  background-color: #80BAF9;
  top: 0;
  overflow: hidden;
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 10;
  text-align: center;
}
.contact-help-area .contact-help-area-title {
  margin-top: 50px;
  color: white;
  font-family: 'Righteous';
  font-size: x-large;
  text-align: center;
}
.contact-help-area .contact-help-area-fields {
  width: 85%;
  margin-left: 7.5%;
}
.contact-help-area .contact-help-area-message {
  width: 85%;
  height: 30%;
  margin-top: 2%;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 5px;
  resize: vertical;
  font-family: 'Century Gothic', sans-serif;
  font-size: 13px;
  line-height: 24px;
  -webkit-appearance: none;
  border: none;
  background: url('../img/notebook.png');
}
.contact-help-area .info-char {
  width: 90%;
  height: 12px;
  margin-top: 1%;
  padding-right: 8%;
  margin-bottom: 5px;
  text-align: right;
  color: white;
  font-size: 9px;
  font-family: 'Century Gothic', sans-serif;
}
.contact-help-area .contact-help-note-area {
  width: 100%;
  height: 40px;
  margin-top: 20px;
}
.contact-help-area .contact-help-note-area .manage-button {
  height: 40px;
}
.contact-help-area .info-contact-help-area-container {
  margin-top: 3%;
  margin-left: 8%;
  margin-right: 7%;
  margin-bottom: 5%;
  width: 85%;
  font-size: 14px;
  text-align: left !important;
}
.contact-help-area .info-contact-help-area-container .info-contact-help {
  color: white;
  font-family: 'Century Gothic', sans-serif;
}
.contact-help-area .message-contact-help {
  margin-top: 5%;
  margin-left: 8%;
  margin-right: 7%;
  margin-bottom: 5%;
  width: 85%;
  font-size: 12px;
  text-align: center !important;
  color: yellow;
  font-family: 'Century Gothic', sans-serif;
}
.contact-help-area .error-note {
  color: red !important;
}
.kid-area {
  background-color: white;
  left: 0;
  top: 0;
  overflow: hidden;
  margin-left: 250px;
  height: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 20;
}
.header-area {
  height: 75px;
  text-align: left;
  z-index: 2;
  background-color: #383C40;
}
.logo {
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: 24px;
  margin-left: 20px;
  display: inline-block;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.menu-button {
  position: absolute;
  z-index: 1000;
  padding: 0;
  width: 2em;
  height: 1.85em;
  border: none;
  text-indent: 2.5em;
  font-size: 1.5em;
  color: transparent;
  background: transparent;
  visibility: hidden;
}
.menu-button::before {
  visibility: hidden;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  bottom: 0.5em;
  left: 0.5em;
  background: -webkit-linear-gradient(#ffffff 20%, transparent 20%, transparent 40%, #ffffff 40%, #ffffff 60%, transparent 60%, transparent 80%, #ffffff 80%);
  background: -moz-linear-gradient(#ffffff 20%, transparent 20%, transparent 40%, #ffffff 40%, #ffffff 60%, transparent 60%, transparent 80%, #ffffff 80%);
  background: -o-linear-gradient(#ffffff 20%, transparent 20%, transparent 40%, #ffffff 40%, #ffffff 60%, transparent 60%, transparent 80%, #ffffff 80%);
  background: linear-gradient(#ffffff 20%, transparent 20%, transparent 40%, #ffffff 40%, #ffffff 60%, transparent 60%, transparent 80%, #ffffff 80%);
  content: '';
}
.badge {
  height: 9px;
  width: 9px;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
  background-color: #ff1300;
  position: absolute;
  z-index: 10;
  margin-left: 1.3em;
  top: 0.35em;
}
.header-area .flaticon-menu48:before {
  color: white;
  font-size: 20px;
  margin-left: 0;
}
.calendar-button-container {
  cursor: pointer;
  width: 75px;
  height: 45px;
  float: right;
  right: 20px;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.calendar-button-container .calendar-button-info {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  font-family: 'Century Gothic', sans-serif;
  cursor: pointer;
}
.calendar-button-container .calendar-button-info .calendar-button-month {
  width: 100%;
  height: 20px;
  background-color: #4d6b8a;
  color: white;
  font-size: 14px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.calendar-button-container .calendar-button-info .calendar-button-month .calendar-button-month-content {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.calendar-button-container .calendar-button-info .calendar-button-day {
  width: 100%;
  height: 40px;
  color: #3D636E;
  font-size: 24px;
  background-color: #ffffff;
}
.calendar-button-container .calendar-button-info .calendar-button-day .calendar-button-day-content {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header-section-area {
  position: relative;
  width: 100%;
  height: 5%;
  background-color: #f6f7f8;
  bottom: 0;
  text-align: center;
  color: #727B8F;
  border-bottom: 1px solid #dcdee3;
  font-size: 15px;
}
.header-section-image-left {
  height: 100%;
  width: 15%;
  position: relative;
  float: left;
  text-align: center;
  cursor: pointer;
}
.header-section-image-left img {
  height: 75%;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header-section-image-right {
  height: 100%;
  width: 15%;
  position: relative;
  float: right;
  text-align: center;
  cursor: pointer;
}
.header-section-image-right img {
  height: 75%;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sectionName {
  font-family: 'Century Gothic', sans-serif;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 70%;
  margin: auto;
  float: left;
}
.avatar-area {
  position: absolute;
  top: 0;
  width: 100%;
  height: 22%;
  background-color: #6EC0D5;
  text-align: center;
  visibility: hidden;
}
.avatar-area-events {
  position: absolute;
  top: 0;
  width: 100%;
  height: 22%;
  background-color: #6EC0D5;
  text-align: center;
}
.avatar-container {
  position: relative;
  width: 100%;
  height: 80%;
  top: 10%;
  text-align: center;
  float: left;
}
.avatar-container .avatar-image {
  position: relative;
  margin: 0 auto;
  top: 40%;
  -webkit-transform: translateY(-40%);
  -moz-transform: translateY(-40%);
  -o-transform: translateY(-40%);
  -ms-transform: translateY(-40%);
  transform: translateY(-40%);
  z-index: 10;
  border: 3px solid white;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background-color: white;
  cursor: pointer;
}
.avatar-container .avatar-image .avatar-selector {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.avatar-container .avatar-image img {
  height: 100%;
  margin: 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.avatar-container .avatar-name {
  font-family: 'Century Gothic', sans-serif;
  font-size: medium;
  color: white;
  text-align: center;
  display: inline-block;
}
.avatar-container .avatar-name .kid-in-class {
  height: 13px;
  width: 13px;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
  border: 2px solid white;
  float: right;
  margin-left: 5px;
  background-color: white;
  margin-top: 2px;
}
.avatar-container .avatar-name .flaticon-check12:before {
  color: #3DB93C;
  background-color: white;
  font-size: 15px;
  margin-left: 0;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
  float: left;
}
.avatar-container .avatar-state {
  margin: 0 auto;
  display: inline-block;
}
.avatar-container .avatar-state .avatar-state-text {
  float: left;
  color: green;
  font-size: small;
  font-family: 'Century Gothic', sans-serif;
  margin-top: 1px;
}
.avatar-container .avatar-state .class-image {
  height: 15px;
  width: 15px;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
  border: 2px solid white;
  float: left;
  margin-left: 5px;
  margin-top: 5px;
}
.avatar-container .avatar-state .flaticon-check12:before {
  color: yellow;
  font-size: 15px;
  margin-left: 0;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
  float: left;
}
.avatar-container .avatar-image-shadow {
  opacity: 0.1;
}
.date-area {
  position: absolute;
  top: 22%;
  width: 100%;
  height: 0%;
  background-color: #6EC0D5;
  text-align: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.date {
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: 13px;
}
.data-area {
  position: relative;
  height: calc(95% - 80px);
  background-color: #ffffff;
  overflow: hidden;
  z-index: 100;
}
.content-area {
  position: relative;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}
.values-area {
  display: inline-block;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.report-area {
  min-height: 200px;
  width: 92%;
  font-family: 'Century Gothic', sans-serif;
  padding: 0% 2% 2% 2%;
  background-color: white;
  background: url('../img/notebook.png');
  line-height: 24px;
  font-size: 13px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.report {
  position: relative;
  word-wrap: break-word;
  width: 100%;
}
.check {
  margin-left: 10px;
}
.scroll-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.menu-area {
  background-color: #383C40;
  left: 0;
  top: 0;
  overflow: hidden;
  position: absolute;
  width: 250px;
  height: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.menu-content {
  position: absolute;
  width: 250px;
  height: 100%;
  text-align: left;
}
.header-menu-area {
  width: 100%;
  height: 75px;
  text-align: left;
  color: white;
  background: #80BAF9;
}
.kid-selector {
  width: 100%;
  height: 100%;
  text-align: center;
  display: inline-block;
  cursor: pointer;
}
.kid-selector-image {
  float: left;
  left: 1%;
  width: 25%;
  height: 100%;
  text-align: center;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.kid-selector-image-container {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 2px solid white;
  background-color: white;
}
.kid-selector-image img {
  height: 100%;
  width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.kid-selector-info {
  float: left;
  width: 75%;
  height: 100%;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.kid-name {
  float: left;
  padding-left: 5%;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.show-hide-kids {
  width: 20px;
  height: 20px;
  text-align: center;
  float: right;
  margin-right: 10px;
  margin-top: 25px;
}
.show-hide-kids-animate1 {
  -webkit-animation-fill-mode: forwards;
  /* Chrome, Safari, Opera */
  animation-fill-mode: forwards;
  -webkit-animation: half-rotation 0.5s linear forwards;
}
.show-hide-kids-animate2 {
  -webkit-animation-fill-mode: forwards;
  /* Chrome, Safari, Opera */
  animation-fill-mode: forwards;
  -webkit-animation: half-rotation2 0.5s linear forwards;
}
@-webkit-keyframes half-rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(179deg);
  }
}
@-webkit-keyframes half-rotation2 {
  from {
    -webkit-transform: rotate(179deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
.menu-options {
  padding-left: 0;
  margin-top: 0;
  height: 100%;
  list-style: none;
}
.menu-item {
  height: 46px;
  text-align: center;
  font-family: 'Century Gothic', sans-serif;
}
.menu-item-content {
  width: 100%;
  height: 100%;
  text-align: center;
  font-family: 'Century Gothic', sans-serif;
}
.menu-item-selected {
  border-left: 5px solid #c8e5bc;
  background: #322f2b;
}
.menu-item-image {
  float: left;
  left: 1%;
  position: relative;
  width: 25%;
  height: 100%;
  text-align: center;
}
.menu-icon {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.photo-item-description {
  margin-top: 10px;
  min-height: 45px;
  max-height: 45px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.photo-item-description-large {
  margin-top: 10px;
  text-align: left;
  font-family: 'Century Gothic', sans-serif;
  color: #777;
}
.photo-item-likes {
  font-family: 'Century Gothic', sans-serif;
  color: #777;
  text-align: left;
  min-height: 40px;
  max-height: 40px;
  margin-top: 10px;
  border-bottom: 1px solid #e8e8e8;
}
.photo-item-likes img {
  cursor: pointer;
}
.photo-item-likes .flaticon-lights7:before {
  font-size: 18px;
  margin-left: 0;
  cursor: pointer;
}
.photo-item-likes .flaticon-padlock71:before {
  font-size: 18px;
  margin-left: 0;
  cursor: pointer;
}
.photo-item-likes .flaticon-file128:before {
  font-size: 18px;
  margin-left: 0;
  cursor: pointer;
}
.photo-item-likes .flaticon-idea14:before {
  font-size: 18px;
  margin-left: 0;
  cursor: pointer;
}
.menu-item-image .flaticon-baby53:before {
  color: #AAAAAA;
  font-size: 24px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-image .flaticon-picture:before {
  color: #AAAAAA;
  font-size: 24px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-image .flaticon-baby63:before {
  color: #AAAAAA;
  font-size: 24px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-image .flaticon-business75:before {
  color: #AAAAAA;
  font-size: 24px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-image .flaticon-plate7:before {
  color: white;
  font-size: 30px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-image .flaticon-restaurant:before {
  color: #AAAAAA;
  font-size: 24px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-image .flaticon-email103:before {
  color: white;
  font-size: 24px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-image .flaticon-new100:before {
  color: #AAAAAA;
  font-size: 24px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-image .flaticon-question3:before {
  color: #AAAAAA;
  font-size: 24px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-image .flaticon-list9:before {
  color: white;
  font-size: 30px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-image .flaticon-notebook24:before {
  color: #AAAAAA;
  font-size: 24px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-image .flaticon-calendar146:before {
  color: white;
  font-size: 30px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-image .flaticon-calendar-icons:before {
  color: #AAAAAA;
  font-size: 24px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-image .flaticon-gear39:before {
  color: #AAAAAA;
  font-size: 24px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-image .flaticon-light102:before {
  color: #AAAAAA;
  font-size: 24px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-image .flaticon-mobile228:before {
  color: white;
  font-size: 30px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-image .flaticon-closed:before {
  color: #AAAAAA;
  font-size: 24px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-image .flaticon-direction237:before {
  color: #AAAAAA;
  font-size: 24px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-image .flaticon-idea14:before {
  color: white;
  font-size: 30px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-image .flaticon-logout20:before {
  color: white;
  font-size: 30px;
  margin-left: 0;
  margin-top: 5px;
}
.menu-item-info {
  float: left;
  width: 75%;
  height: 100%;
  cursor: pointer;
}
.menu-item-info .badge {
  height: 9px;
  width: 9px;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
  background-color: #ff1300;
  margin-right: 23px;
  float: right;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.menu-name {
  float: left;
  padding-left: 5%;
  color: #AAAAAA;
  font-size: 14px;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.menu-item-news {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-right: 15px;
  float: right;
  min-width: 24px;
  height: 23px;
  width: auto;
  background-color: #FF1300;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.menu-item-news .menu-item-news-content {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  width: auto;
  height: auto;
  color: white;
  font-size: 13px;
  font-family: 'Century Gothic', sans-serif;
  margin-left: 4px;
  margin-right: 4px;
}
.menu-item-needs {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-right: 15px;
  float: right;
  width: 24px;
  height: 24px;
}
.category {
  position: relative;
  width: 100%;
  height: 40px;
  text-align: center;
  background-color: white;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  overflow: hidden;
  top: 0;
  z-index: 2;
  -webkit-transform: translateZ(0);
}
.category-image {
  float: left;
  position: relative;
  width: 0;
  height: 40px;
  text-align: center;
}
.category-image img {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0.2;
}
.category-info {
  float: left;
  width: 100%;
  height: 40px;
}
.category-name {
  float: left;
  padding-left: 5%;
  color: white;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.category-font-style {
  font-family: 'Century Gothic', sans-serif;
  color: white;
  font-size: large;
  padding-left: 17px;
}
.subcategory {
  position: relative;
  width: 90%;
  height: 30px;
  text-align: center;
  top: 0;
  border-bottom: 1px solid #E7577A;
  margin-left: 5%;
  margin-right: 5%;
}
.subcategory-container {
  display: inline-block;
  height: 100%;
  text-align: center;
}
.subcategory-image {
  float: left;
  position: relative;
  height: 100%;
  text-align: center;
  margin-right: 10px;
}
.subcategory-image img {
  height: 20px;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.subcategory-info {
  float: left;
  height: 100%;
}
.subcategory-name {
  text-align: center;
  width: 100%;
  color: white;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.subcategory-font-style {
  font-family: 'Century Gothic', sans-serif;
  color: white;
  font-size: medium;
}
.subcategory-divisor {
  float: left;
  position: relative;
  width: 2%;
  height: 90px;
  background-color: #d3d3d3;
  overflow: hidden;
}
.dimension {
  margin-left: 10px;
  text-align: left;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  top: 0;
  box-shadow: inset 0 -1px 0 0 #e8e8e8;
}
.dimension-image {
  float: left;
  position: relative;
  height: 90px;
  width: 90px;
  text-align: center;
}
.dimension-image-container {
  width: 100%;
  height: 70%;
}
.dimension-image-container img {
  height: 80%;
  top: 65%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.dimension-name-container {
  width: 100%;
  height: 30%;
  text-align: center;
}
.dimension-name {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.dimension-note {
  padding-right: 5%;
  padding-bottom: 10px;
  padding-top: 10px;
  padding-left: 5%;
  margin-bottom: 10px;
  clear: both;
  border-radius: 8px;
  margin-right: 5%;
  margin-left: 5%;
}
.dimension-note:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-bottom-style: solid;
  border-bottom-width: 8px;
  border-bottom-color: inherit;
}
.dimension-note-font-style {
  font-family: 'Century Gothic', sans-serif;
  color: #000000;
  font-size: 80%;
}
.dimension-info {
  float: left;
  height: 100%;
  text-align: center;
}
.dimension-values {
  height: 100%;
  display: inline-block;
  margin-left: 40px;
}
.dimension-value {
  width: 90px;
  float: left;
  position: relative;
  height: 90px;
  text-align: center;
  margin-left: 10px;
}
.dimension-value-container {
  width: 100%;
  height: 70%;
}
.dimension-value-container img {
  height: 80%;
  top: 65%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.value-off {
  opacity: 0.2;
}
.dimension-font-style {
  font-family: 'Century Gothic', sans-serif;
  color: #000000;
  font-size: 65%;
}
.dimensions-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.center-vertical {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.border-radius {
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
}
.border-radius3 {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.kid-component {
  width: 100%;
  height: 70px;
  border-bottom-color: black;
  border-width: 1px;
}
.kid-component-light {
  background-color: #6EC0D5;
}
.kid-component-icon {
  float: left;
  width: 35%;
  height: 70px;
  text-align: center;
}
.kid-component-container {
  display: inline-block;
  height: 50%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 2px solid white;
  background-color: white;
}
.kid-component-img {
  height: 100%;
  margin: 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.kid-component-info {
  float: left;
  height: 70px;
  width: 65%;
}
.kid-component-name {
  float: left;
  width: auto;
  height: auto;
  padding-left: 3px;
  color: black;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'Century Gothic', sans-serif;
  color: white;
  list-style: none;
}
.kidslist-area {
  display: inline-block;
  position: absolute;
  background-color: #f3f4f5;
  width: 100%;
  height: 100%;
  list-style: none;
  text-align: left;
  background-color: #6A6B6C;
  z-index: 3;
}
.kidslist {
  padding-left: 0;
  margin-top: 0;
  list-style: none;
}
.kidslist-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.kidslist-animate-leave {
  top: 0;
  -webkit-transition: top .5s linear;
  -moz-transition: top .5s linear;
  -o-transition: top .5s linear;
  -ms-transition: top .5s linear;
  transition: top .5s linear;
}
.kidslist-animate-leave-active {
  top: -100%;
}
.kidslist-animate-enter {
  top: -100%;
}
.kidslist-animate-enter-active {
  top: 0;
  -webkit-transition: top .5s linear;
  -moz-transition: top .5s linear;
  -o-transition: top .5s linear;
  -ms-transition: top .5s linear;
  transition: top .5s linear;
}
.kidslist-divider {
  height: 2px;
  margin: 3px 0;
  overflow: hidden;
  background-color: rgba(202, 206, 209, 0.5);
}
.manage-kid-options {
  text-align: center;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: medium;
  height: 40px;
  width: 100%;
  -webkit-transition: top .5s linear;
  -moz-transition: top .5s linear;
  -o-transition: top .5s linear;
  -ms-transition: top .5s linear;
  transition: top .5s linear;
}
.manage-kid-options-content {
  width: 100%;
  height: 100%;
  -webkit-transition: top .5s linear;
  -moz-transition: top .5s linear;
  -o-transition: top .5s linear;
  -ms-transition: top .5s linear;
  transition: top .5s linear;
}
.manage-button {
  height: 80%;
  width: 40%;
  border-style: none;
  color: #727B8F;
  border-radius: 2px;
  font-family: 'Century Gothic', sans-serif;
  font-size: small;
}
.manage-button > span {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: small;
}
.add-kid-button {
  float: left;
  margin-left: 7%;
  background-color: #0E7691;
}
.close-manage-button {
  float: right;
  margin-right: 7%;
  background-color: #c14445;
}
.add-kid-area {
  background-color: #80BAF9;
  left: -100%;
  top: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 10;
}
.add-kid-content {
  width: 90%;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: 5%;
  margin-right: 5%;
  text-align: center;
}
.add-kid-content .add-kid-input {
  width: 60%;
}
.add-kid-content .add-kid-options {
  width: 60%;
  height: 40px;
  margin-top: 20px;
  margin-left: 20%;
}
.message-add-kid {
  margin-top: 5%;
  margin-left: 8%;
  margin-right: 7%;
  margin-bottom: 5%;
  width: 85%;
  height: 15px;
  font-size: 12px;
  text-align: center !important;
  color: #f5f5f5;
  font-family: 'Century Gothic', sans-serif;
}
.info-message {
  color: yellow !important;
}
.menu-options-area {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/**** Calendar ******/
.calendar-area {
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  z-index: 10;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
  -webkit-transform: translateZ(0);
}
.border-box {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.calendar {
  float: left;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  background: white;
  width: 100%;
  margin-bottom: 10px;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);
}
.calendar > div.footer {
  float: left;
  width: 100%;
  font-family: 'Century Gothic', sans-serif;
  border-top: solid 1px #4d6b8a;
}
.calendar > div.footer > div.footer_legend {
  width: 50%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.calendar > div.footer > div.footer_legend > div {
  width: 25%;
  display: inline-block;
}
.calendar > div.footer > div span.footer-text {
  font-family: 'Century Gothic', sans-serif;
  font-size: 0.75em;
  margin-left: 10px;
}
.calendar > div.footer > div span.day-attended {
  height: 6px;
  width: 6px;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
  background-color: green;
  float: left;
  margin-top: 8px;
  margin-left: 5px;
}
.calendar > div.footer > div span.day-note {
  height: 6px;
  width: 6px;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
  background-color: green;
  float: left;
  margin-top: 8px;
  margin-left: 5px;
}
.calendar > div.footer > div span.day-no-attended {
  height: 6px;
  width: 6px;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
  background-color: #FF1300;
  float: left;
  margin-top: 8px;
  margin-left: 5px;
}
.calendar > div.footer > div span.day-medicines {
  height: 6px;
  width: 6px;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
  background-color: orange;
  float: left;
  margin-top: 8px;
  margin-left: 5px;
}
.calendar > div.footer > div span.day-needs {
  height: 6px;
  width: 6px;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
  background-color: blue;
  float: left;
  margin-top: 8px;
  margin-left: 5px;
}
.calendar > div.header {
  float: left;
  width: 100%;
  background: #4d6b8a;
  height: 40px;
  color: white;
  font-style: 'Century Gothic', sans-serif;
}
.calendar > div.header > * {
  line-height: 40px !important;
}
.calendar > div.header .control {
  float: left;
  width: 10%;
  height: 100%;
  font-size: 1.125em;
  font-weight: bold;
  position: relative;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  cursor: pointer;
}
.calendar > div.header .control > img {
  width: 20px;
  height: 20px;
  line-height: 20px !important;
  display: inline-block;
  vertical-align: middle;
}
.calendar > div.header .left {
  text-align: right;
}
.calendar > div.header .right {
  text-align: left;
}
.calendar > div.header .flaticon-next21:before {
  font-size: 15px;
  margin-left: 0;
}
.calendar > div.header .flaticon-arrow133:before {
  font-size: 15px;
  margin-left: 0;
}
.calendar > div.header .month-label {
  float: left;
  width: 80%;
  font-weight: bold;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  text-align: center;
  color: inherit;
  font-family: 'Century Gothic', sans-serif;
}
.calendar > div.week {
  float: left;
  width: 100%;
  border-top: solid 1px #CCC;
  font-family: 'Century Gothic', sans-serif;
}
.calendar > div.week:first-child {
  border-top: none;
}
.calendar > div.week > span.day {
  float: left;
  width: 14.28571429%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  border-left: solid 1px #CCC;
  font-size: 0.75em;
  text-align: center;
  height: 30px;
  line-height: 30px !important;
  display: inline-block;
  vertical-align: middle;
  background: white;
  cursor: pointer;
  color: black;
}
.calendar > div.week > span.day:first-child {
  border-left: none;
}
.calendar > div.week > span.day.today {
  background: #E3F2FF;
}
.calendar > div.week > span.day.different-month {
  color: #C0C0C0;
}
.calendar > div.week > span.day.selected {
  background: #4d6b8a;
  color: white;
}
.calendar > div.week > span.day div.day-summary {
  position: relative;
  top: -28px;
  left: 2px;
}
.calendar > div.week > span.day div.day-summary span.day-attended {
  height: 6px;
  width: 6px;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
  background-color: green;
  display: block;
  margin-top: 2px;
}
.calendar > div.week > span.day div.day-summary span.day-note {
  height: 6px;
  width: 6px;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
  background-color: green;
  display: block;
  margin-top: 2px;
}
.calendar > div.week > span.day div.day-summary span.day-not-attended {
  height: 6px;
  width: 6px;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
  background-color: #FF1300;
  display: block;
  margin-top: 2px;
}
.calendar > div.week > span.day div.day-summary span.day-medicines {
  height: 6px;
  width: 6px;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
  background-color: orange;
  display: block;
  margin-top: 2px;
}
.calendar > div.week > span.day div.day-summary span.day-needs {
  height: 6px;
  width: 6px;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
  background-color: blue;
  display: block;
  margin-top: 2px;
}
.calendar > div.week.names > span {
  color: #4d6b8a;
  font-weight: bold;
}
.day {
  cursor: pointer;
}
.activities-list-container {
  width: 100%;
  height: 100%;
  float: left;
  background: #E9F0F5;
  overflow-y: auto;
}
.activities-list-container .activities-list {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.notifications-list-container {
  width: 100%;
  height: 100%;
  float: left;
  overflow-y: auto;
}
.notifications-list-container .notifications-list {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.photos-list-container {
  width: 100%;
  height: 100%;
  margin-left: 10px;
  margin-right: 10px;
  float: left;
  overflow-y: auto;
}
.photos-list-container .photos-list {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.photos-list-container .photos-list .photos-list-item {
  float: left;
  width: 180px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: 'Century Gothic', sans-serif;
  color: #777;
  border: 1px solid #D3D3D3;
}
.img-photos-empty {
  -webkit-filter: opacity(0.2);
  -moz-filter: opacity(0.2);
  -ms-filter: opacity(0.2);
  -o-filter: opacity(0.2);
}
.notification-container {
  position: relative;
  height: 70px;
  width: 100%;
  text-align: center;
  background-color: white;
  right: 0%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.notification {
  width: 100%;
  height: 69px;
  text-align: center;
  right: 0%;
  background-color: white;
  z-index: 2;
  border-bottom: 1px solid #e8e8e8;
}
.notification-readed {
  color: gray;
}
.notification-unreaded {
  font-weight: bold;
  color: #1560ff;
}
.notification-header {
  position: absolute;
  height: 19%;
  width: 98%;
  text-align: right;
  font-family: 'Century Gothic', sans-serif;
  font-size: small;
  padding-top: 2px;
}
.notification-content {
  width: 98%;
  text-align: left;
  font-family: 'Century Gothic', sans-serif;
  font-size: small;
  margin-left: 2%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.notification-delete {
  position: absolute;
  height: 70px;
  width: 30%;
  background-color: #dc0000;
  text-align: center;
  font-family: 'Century Gothic', sans-serif;
  color: white;
  right: 0;
  z-index: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.notification-delete > div {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.empty-data-container {
  width: 100%;
  background-color: white;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.empty-data-container .empty-data-img {
  height: 70%;
  width: 100%;
  text-align: center;
}
.empty-data-container .empty-data-img > img {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.empty-data-container .empty-data-text {
  height: 30%;
  width: 100%;
  color: #d9d9d9;
  font-family: 'Century Gothic', sans-serif;
  text-align: center;
}
.medication-area {
  width: 100%;
}
.medication-list {
  list-style: none;
  padding-left: 0;
  padding-top: 0;
  margin-top: 0;
  width: 100%;
  display: inline-block;
}
.medication-title {
  height: 35px;
  float: left;
  text-align: left;
  padding-left: 17px;
  background-color: #5799ae;
}
.medication-name-title {
  width: 45%;
  border-top-left-radius: 5px;
}
.medication-dose-title {
  width: 35%;
}
.medication-take-title {
  width: 20%;
  border-top-right-radius: 5px;
}
.medication-title-label {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'Century Gothic', sans-serif;
  font-size: medium;
  color: white;
}
.dose-container {
  position: relative;
  width: 100%;
  height: 70px;
}
.medication-name {
  height: 100%;
  width: 45%;
  float: left;
}
.dose {
  height: 100%;
  width: 35%;
  float: left;
}
.dose-taking {
  height: 100%;
  width: 20%;
  float: left;
}
.dose-content {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'Century Gothic', sans-serif;
  font-size: medium;
  color: black;
  text-align: left;
  padding-left: 17px;
}
.dose-separator {
  height: 1px;
  width: 100%;
  background-color: lightgrey;
}
.food-date {
  text-align: center;
  position: relative;
  width: 100%;
  z-index: 10;
  padding: 3px;
  height: 35px;
  font-family: 'Century Gothic', sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  background-color: #69C186;
}
.food-list-container {
  width: 100%;
  height: 100%;
  float: left;
}
.food-list-container .food-list {
  border-left: 1px solid #D3D3D3;
  border-right: 1px solid #D3D3D3;
  margin-top: 25px;
  padding: 0px;
  border-bottom: 1px solid #D3D3D3;
}
.food-type {
  padding-left: 15px;
  width: 100%;
  height: 20px;
  background-color: #69C186;
}
.food-type .food-type-content {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'Century Gothic', sans-serif;
  color: white;
  font-size: 13px;
}
.food-item {
  position: relative;
  width: 100%;
  height: 70px;
  text-align: center;
  border-bottom: 1px solid #D3D3D3;
}
.food-item-image {
  float: left;
  position: relative;
  width: 25%;
  height: 100%;
  text-align: center;
}
.food-item-image img {
  height: 60%;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.food-item-info {
  float: left;
  width: 75%;
  height: 100%;
}
.food-item-name {
  float: left;
  padding-left: 5%;
  color: white;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.food-item-font-style {
  font-family: 'Century Gothic', sans-serif;
  color: #485e8c;
  font-size: medium;
  padding-left: 10px;
}
.food-info-title {
  font-size: 14px;
  font-family: 'Century Gothic', sans-serif;
  color: #485e8c;
  padding-left: 5px;
  padding-top: 8px;
}
.food-info {
  font-family: 'Century Gothic', sans-serif;
  color: #485e8c;
  font-size: 11px;
  padding-left: 5px;
  padding-top: 8px;
  margin-bottom: 10px;
}
.food-info .food-info-title {
  font-size: 14px;
  font-family: 'Century Gothic', sans-serif;
  color: #485e8c;
  padding-left: 5px;
  padding-top: 8px;
}
.food-info .food-info-content {
  padding-left: 5px;
  padding-top: 3px;
}
.food-next-enter {
  left: 100%;
}
.food-next-enter.food-next-enter-active {
  left: 0%;
  transition: left 0.3s linear;
  -webkit-transition: left 0.3s linear;
}
.food-next-leave {
  left: 0%;
}
.food-next-leave.food-next-leave-active {
  left: -100%;
  transition: left 0.3s linear;
  -webkit-transition: left 0.3s linear;
}
.food-prev-enter {
  left: -100%;
}
.food-prev-enter.food-prev-enter-active {
  left: 0%;
  transition: left 0.3s linear;
  -webkit-transition: left 0.3s linear;
}
.food-prev-leave {
  left: 0%;
}
.food-prev-leave.food-prev-leave-active {
  left: 100%;
  transition: left 0.3s linear;
  -webkit-transition: left 0.3s linear;
}
.event-item {
  position: relative;
  width: 100%;
  height: 70px;
  border-bottom: 1px solid #D3D3D3;
  font-family: 'Century Gothic', sans-serif;
}
.event-item-date {
  float: left;
  position: relative;
  width: 25%;
  height: 100%;
  text-align: center;
  background-color: lightgrey;
}
.closed {
  background-color: #c14445 !important;
}
.closed-text {
  color: #c14445 !important;
}
.event-item-date-content {
  height: 60%;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: xx-large;
  color: white;
  font-weight: 900;
}
.event-item-font-style {
  color: #485e8c;
  font-size: medium;
  padding-left: 10px;
}
.event-item-info {
  float: left;
  width: 75%;
  height: 100%;
}
.event-item-name {
  float: left;
  padding-left: 5%;
  color: #848483;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.event-item-time {
  font-size: 14px;
  color: white;
  margin-top: 10px;
}
.events-list-container {
  width: 100%;
  height: 100%;
  float: left;
}
.events-list-container .events-list {
  height: 100%;
  overflow-y: auto;
}
.event-detail {
  position: absolute;
  left: 100%;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.event-header {
  height: 20%;
  width: 100%;
  font-size: 14px;
  background-color: lightgrey;
  font-size: x-large;
  color: white;
  font-weight: 900;
  font-family: 'Century Gothic', sans-serif;
}
.event-header .event-header-content {
  text-align: center;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 60%;
  margin-left: 20%;
  float: left;
}
.event-info {
  height: 80%;
  width: 100%;
  font-family: 'Century Gothic', sans-serif;
  padding: 10px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.event-back {
  float: right;
  width: 32px;
  height: 32px;
  padding: 10px;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.event-back img {
  width: 32px;
  height: 32px;
}
.event-next-enter {
  left: 100%;
}
.event-next-enter.event-next-enter-active {
  left: 0%;
  transition: left 0.3s linear;
  -webkit-transition: left 0.3s linear;
}
.event-next-leave {
  left: 0%;
}
.event-next-leave.event-next-leave-active {
  left: -100%;
  transition: left 0.3s linear;
  -webkit-transition: left 0.3s linear;
}
.event-prev-enter {
  left: -100%;
}
.event-prev-enter.event-prev-enter-active {
  left: 0%;
  transition: left 0.3s linear;
  -webkit-transition: left 0.3s linear;
}
.event-prev-leave {
  left: 0%;
}
.event-prev-leave.event-prev-leave-active {
  left: 100%;
  transition: left 0.3s linear;
  -webkit-transition: left 0.3s linear;
}
.notification-detail {
  min-height: 300px;
}
.notification-detail-header {
  font-size: 14px;
  font-family: 'Century Gothic', sans-serif;
}
.notification-detail-header .notification-icon {
  margin-left: -15px;
  margin-top: 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  border-radius: 5px;
  width: 30px;
  height: 30px;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
}
.notification-detail-header .notification-detail-header-content {
  color: grey;
}
.notification-info {
  font-family: 'Century Gothic', sans-serif;
  padding: 10px;
  white-space: pre-wrap;
}
.notification-back {
  height: 80%;
  width: 100%;
  font-family: 'Century Gothic', sans-serif;
  padding: 10px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.delete-kid {
  height: 15px;
  width: 15px;
  right: 10%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  float: right;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.delete-kid img {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
  height: 100%;
}
.manage-kids-header {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'Century Gothic', sans-serif;
  font-size: medium;
  color: white;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}
.take-photo-area {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}
.take-photo {
  position: relative;
  display: inline-block;
  border: 5px solid white;
  background-color: white;
  margin-bottom: 15px;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
}
.take-photo img {
  margin-top: 10px;
  cursor: pointer;
}
.opacity-animate-leave {
  top: 0;
  -webkit-transition: top .5s linear;
  -moz-transition: top .5s linear;
  -o-transition: top .5s linear;
  -ms-transition: top .5s linear;
  transition: top .5s linear;
}
.opacity-animate-leave-active {
  opacity: 1;
}
.opacity-animate-enter {
  top: -100%;
  -webkit-transition: top .5s linear;
  -moz-transition: top .5s linear;
  -o-transition: top .5s linear;
  -ms-transition: top .5s linear;
  transition: top .5s linear;
}
.opacity-animate-enter-active {
  top: 0;
}
.loading-base-area {
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.loading-kid-area {
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 150px;
}
.loading-on {
  z-index: 200;
  opacity: 1;
}
.loading-off {
  z-index: -200;
  opacity: 0;
}
.loading-area {
  top: 0;
  left: 0;
  margin: auto;
  width: 200px;
  height: 55px;
  opacity: 1;
  text-align: center;
  background-color: #9b9898;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 800px;
  border: 3px solid white;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.loading-area .loading-icon {
  font-family: 'Century Gothic', sans-serif;
  height: 55px;
  float: left;
  border-radius: 800px;
}
.loading-area .loading-icon > img {
  height: 50px;
  width: 50px;
  -webkit-animation: rotation 2s infinite linear;
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
.loading-area .loading-info {
  font-family: 'Century Gothic', sans-serif;
  color: white;
  float: left;
  margin-left: 10px;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.init-on {
  z-index: 200;
  opacity: 1;
  background-color: #6EC0D5;
}
.init-off {
  z-index: -200;
  opacity: 0;
}
.init-area {
  width: 100%;
  height: 55px;
  opacity: 1;
  text-align: center;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.init-area .loading-info {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.init-area .loading-info .label {
  color: white;
  width: 70%;
  margin-left: 15%;
  margin-right: 15%;
  text-align: center;
  font-family: 'Century Gothic', sans-serif;
  border: 2px solid transparent;
}
.init-area .status-bar {
  width: 70%;
  height: 5px;
  border: 2px solid white;
  border-radius: 30px;
  margin-left: 15%;
  margin-right: 15%;
  margin-top: 25px;
  text-align: center;
}
.init-area .status-bar .progress {
  width: 100%;
  height: 100%;
  background-color: white;
}
.parent-report {
  background-color: lightgray;
  border-radius: 5px;
  padding: 2%;
  width: 84%;
}
.school-report {
  background-color: #d7ffca;
  border-radius: 5px;
  padding: 2%;
  width: 84%;
  margin-left: 12%;
}
.school-message {
  white-space: pre-wrap;
}
/* Check */
.check-component {
  height: 20px;
  float: left;
}
.check-component .check {
  height: 18px;
  width: 18px;
  margin-right: 5px;
  border: 1px solid white;
  float: left;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.check-component .check .check-selected {
  height: 12px;
  width: 12px;
  background-color: white;
  left: 0;
  top: 0;
  margin: auto;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.check-component .check-label {
  float: left;
  font-size: 13px;
  font-family: 'Century Gothic', sans-serif;
  color: white;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* Componente Area de mensajes */
.alert-info {
  width: 96%;
  position: absolute;
  z-index: 300;
  border-bottom: 1px solid #e1e0b8;
  background-color: #fffed6;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  font-family: 'Righteous';
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 2%;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  opacity: 1;
}
.alert-info .close {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.alert-info-danger {
  background-image: -webkit-linear-gradient(top, #f2dede 0, #e7c3c3 100%);
  background-image: -o-linear-gradient(top, #f2dede 0, #e7c3c3 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));
  background-image: linear-gradient(to bottom, #f2dede 0, #e7c3c3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
  background-repeat: repeat-x;
  border-color: #dca7a7;
  color: #a94442;
  background-color: #f2dede;
}
.alert-info-danger > strong {
  font-weight: bolder;
  color: #882508;
}
.alert-info-success {
  color: #3c763d;
  background-color: #dff0d8;
  background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
  background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
  background-repeat: repeat-x;
  border-color: #b2dba1;
}
.alert-info-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
  background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
  background-repeat: repeat-x;
  border-color: #f5e79e;
}
.small {
  font-size: 85%;
}
.hide {
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -200;
}
.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}
.activity {
  margin: 2%;
  border: 1px solid rgba(180, 180, 180, 0.75);
  box-shadow: 0 0.8px 0 0 rgba(206, 219, 236, 0.5);
  border-radius: 5px;
}
.tab {
  width: 100%;
  height: 40px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.tab-content {
  width: 100%;
  display: inline-block;
  background-color: white;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.selectable {
  cursor: pointer;
}
.cut-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sombra {
  -webkit-box-shadow: -3px 0px 8px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -3px 0px 8px 0px rgba(0, 0, 0, 0.75);
  box-shadow: -3px 0px 8px 0px rgba(0, 0, 0, 0.75);
}
.version-number {
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: 11px;
  position: absolute;
  padding-left: 90%;
  bottom: 0;
}
.general-message {
  z-index: 100;
  position: absolute;
  width: 100%;
  height: 100px;
  background-color: red;
}
.update-mark-container {
  width: 100%;
  height: 60px;
}
.update-mark-container .update-mark-content {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.update-mark-container .update-mark-content .update-mark {
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
  text-align: center;
  font-family: 'Century Gothic', sans-serif;
  font-size: 10px;
  color: grey;
}
.crop-area {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
  background-color: #6EC0D5;
}
.crop-area .title {
  color: white;
  font-family: 'Righteous';
  font-size: 28px;
  text-align: center;
  margin-top: 25px;
  height: 30px;
}
.crop-area .editor-back {
  z-index: 100;
  position: absolute;
  left: 30px;
  top: 85px;
  background-color: transparent;
  border: 4px solid white;
  overflow: hidden;
  pointer-events: none;
}
.crop-area .avatar-editor-container {
  position: relative;
  top: 5px;
}
.crop-area .crop-buttons-container {
  position: fixed;
  bottom: 20px;
  width: 100%;
}
.crop-area .crop-buttons-container .crop-button {
  float: left;
  height: 40px;
  width: 40%;
  border-radius: 5px;
  position: relative;
  border-style: none;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: 17px;
  cursor: pointer;
}
.crop-area .crop-buttons-container .crop-button > span {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  color: white;
  font-family: 'Century Gothic', sans-serif;
  font-size: 17px;
}
.crop-area .crop-buttons-container .crop-save-button {
  margin-left: 7.5%;
  margin-right: 2.5%;
  background-color: #c1cfde;
}
.crop-area .crop-buttons-container .crop-cancel-button {
  margin-left: 2.5%;
  margin-right: 7.5%;
  background-color: #c14445;
}
.fileUpload input.upload {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-container {
  position: relative;
}
.modal-container .modal,
.modal-container .modal-backdrop {
  position: absolute;
}
#detailEvent {
  top: 150px;
  left: 250px;
}
.kid-refresh {
  margin-left: 40px;
  width: 40px;
  height: 40px;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.activation-area {
  background-color: #80BAF9;
  left: 0;
  top: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 10;
}
.activation-content {
  width: 75%;
  top: 25%;
  position: relative;
  -webkit-transform: translateY(-25%);
  -moz-transform: translateY(-25%);
  -o-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  transform: translateY(-25%);
  margin: 0 auto;
}
.title-activation {
  color: white;
  font-family: 'Righteous';
  font-size: xx-large;
  text-align: center;
}
.info-activation {
  color: white;
  margin-top: 30px;
  font-family: 'Righteous';
  font-size: medium;
  text-align: center;
}
.info-activation-ok {
  color: white;
  margin-top: 30px;
  font-family: 'Righteous';
  font-size: large;
  text-align: center;
}
.info-activation-error {
  color: red;
  margin-top: 30px;
  font-family: 'Righteous';
  font-size: large;
  text-align: center;
}
.kid-in-class {
  height: 18px;
  width: 18px;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
  border: 2px solid white;
  float: right;
  margin-left: 5px;
  background-color: white;
  margin-top: 2px;
}
.message-base-area {
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.message-back {
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background-color: grey;
  opacity: 0.5;
}
.message-on {
  z-index: 1500;
  opacity: 1;
}
.message-off {
  z-index: -200;
  opacity: 0;
}
.message-area {
  margin: auto;
  width: 550px;
  height: 300px;
  opacity: 1;
  text-align: center;
  background-color: #9b9898;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  border: 6px solid white;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.message-area .message-icon {
  font-family: 'Century Gothic', sans-serif;
  height: 100px;
  float: left;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  border: 4px solid white;
  top: 50px;
  position: relative;
  margin-left: 30px;
}
.message-area .message-icon > img {
  height: 100px;
  width: 100px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.message-area .message-info {
  font-family: 'Century Gothic', sans-serif;
  color: white;
  top: 50px;
}
.message-info-text {
  height: 135px;
  font-family: 'Century Gothic', sans-serif;
  font-size: 22px;
  padding-right: 20px;
  padding-left: 20px;
  color: white;
  text-align: center;
}
.message-info-text .message-info-text-content {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.message-info-options {
  margin-top: 50px;
  height: 50px;
  bottom: 20px;
}
.ok-manage-button {
  float: left;
  margin-left: 7%;
  background-color: #0E7691;
}
.cancel-manage-button {
  float: right;
  margin-right: 7%;
  background-color: #c14445;
}
.container-photo-detail {
  min-width: 100%;
  min-height: 100%;
  text-align: center;
}
.img-photo-detail {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.confirm-text-content {
  font-size: 14px;
}
.confirm-ok-button {
  padding-bottom: 10px;
  color: #c14445;
  font-size: 18px;
  border-bottom: 1px solid;
  border-bottom-color: #dcdee3;
}
.confirm-cancel-button {
  padding: 10px;
}
#charts-area {
  background-color: white;
  font-family: 'Century Gothic', sans-serif;
}
.charts-list-container {
  float: left;
  width: 100%;
  height: 100%;
}
.charts-list-scroller {
  position: absolute;
  top: 60px;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  overflow-y: scroll;
  padding-top: 25px;
}
.chart-container {
  padding: 5px;
  clear: left;
  margin-left: 10%;
  margin-right: 10%;
}
.chart-header {
  height: 55px;
  border-bottom: 2px solid;
}
.chart-header-img {
  float: left;
  height: 40px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.chart-header-img img {
  height: 40px;
}
.chart-header-name {
  width: 100%;
  height: 30px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.chart-header-name span {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.chart-button-selected {
  width: 50%;
  height: 30px;
  background-color: white;
  border: 1px solid white;
  font-weight: bold;
  font-size: 15px;
  border-top: 1px solid #80808021;
  border-right: 1px solid #80808021;
  border-left: 1px solid #80808021;
}
.chart-button-unselected {
  width: 50%;
  height: 30px;
  background-color: #4d6b8a;
  color: white;
  border: 1px solid white;
  opacity: 0.3;
}
.chart-legend-bar-color {
  width: 7px;
  height: 7px;
  float: left;
  margin-top: 6px;
  margin-left: 5px;
}
.chart-legend-bar-text {
  font-size: 12px;
  margin-left: 5px;
}
.chart-legend-bar {
  font-size: 14px;
  margin-bottom: 40px;
}
.chart-header-dimension-multiple {
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
  clear: left;
}
.chart-title-y {
  font-size: 14px;
  font-family: 'Century Gothic', sans-serif;
}
.empty-chart-container {
  height: 100%;
  width: 100%;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.empty-chart-container .empty-data-img {
  width: 100%;
  text-align: center;
  padding-top: 10%;
}
.empty-chart-container .empty-data-text {
  margin-top: 30px;
  height: 30%;
  width: 98%;
  color: #d9d9d9;
  font-family: 'Century Gothic', sans-serif;
  text-align: center;
}
.range-chart-area {
  width: 100%;
  background: white;
  height: 30px;
  color: #727B8F;
  font-family: 'Century Gothic', sans-serif;
  font-size: small;
  border-bottom: 1px solid #f1f1f1;
}
.range-chart-area > * {
  line-height: 30px !important;
}
.range-chart-area .control {
  float: left;
  width: 10%;
  height: 100%;
  font-size: 1.125em;
  font-weight: bold;
  position: relative;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  cursor: pointer;
}
.range-chart-area .control > img {
  width: 20px;
  height: 20px;
  line-height: 20px !important;
  display: inline-block;
  vertical-align: middle;
}
.range-chart-area .left {
  text-align: center;
}
.range-chart-area .right {
  text-align: center;
}
.range-chart-area .flaticon-next21:before {
  font-size: 15px;
  margin-left: 0;
}
.range-chart-area .flaticon-arrow133:before {
  font-size: 15px;
  margin-left: 0;
}
.range-chart-area .month-label {
  float: left;
  width: 80%;
  font-weight: bold;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  text-align: center;
  color: inherit;
  font-family: 'Century Gothic', sans-serif;
}
.mailbox-button-selected {
  width: 50%;
  height: 30px;
  background-color: white;
  color: #4d6b8a;
  font-weight: bold;
  font-size: 15px;
  border-top: 1px solid #80808021;
  border-right: 1px solid #80808021;
  border-left: 1px solid #80808021;
}
.mailbox-button-unselected {
  width: 50%;
  height: 30px;
  background-color: #4d6b8a;
  color: white;
  opacity: 0.3;
}
.mailbox-mode-area {
  position: relative;
  height: 7%;
  padding-bottom: 10px;
}
.mailbox-content-area {
  position: relative;
  height: 93%;
}
.mailbox-attach {
  float: right;
  margin-top: 7px;
}
.mailshot-detail {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: white;
}
.mailbox-attach .flaticon-paper-clip:before {
  margin-right: 15px;
  -webkit-border-radius: 800px;
  -moz-border-radius: 800px;
  border-radius: 800px;
}
.mailshot-documents {
  font-family: 'Century Gothic', sans-serif;
  padding-bottom: 15px;
}
.mailshot-documents-title {
  color: grey;
  font-size: 10px;
}
.mailshot-documents-content {
  font-size: 14px;
  font-weight: bold;
  height: 30px;
  margin: 15px;
  color: #868686;
  padding-bottom: 5px;
}
.mailshot-documents-name {
  float: left;
  width: 80%;
  margin-left: 20px;
  margin-top: 3px;
}
.mailshot-documents-name > span {
  word-wrap: break-word;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
}
.mailshot-documents-content .flaticon-attached:before {
  font-size: 24px;
  margin-left: 0;
  margin-top: 0px;
  float: left;
}
.mailshot-content {
  width: 85%;
  text-align: left;
  font-family: 'Century Gothic', sans-serif;
  font-size: small;
  margin-left: 2%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mailshot-detail-header {
  min-height: 15%;
  width: 95%;
  margin: 10px;
  margin-top: 0;
  font-size: 14px;
  font-family: 'Century Gothic', sans-serif;
  border-bottom: 1px solid #DCDEE3;
  overflow: auto;
}
.mailshot-detail-header .notification-icon {
  float: left;
  width: 10%;
  border-radius: 5px;
  padding: 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.mailshot-detail-header .notification-icon .flaticon-new100:before {
  color: #599cb1;
  font-size: 36px;
  margin-left: 0;
  margin-top: 0px;
}
.mailshot-detail-header .notification-icon .flaticon-medical50:before {
  color: #599cb1;
  font-size: 36px;
  margin-left: 0;
  margin-top: 0px;
}
.mailshot-detail-header .notification-icon .flaticon-text-document-outlined-symbol:before {
  color: #599cb1;
  font-size: 36px;
  margin-left: 0;
  margin-top: 10px;
}
.mailshot-detail-header .notification-detail-header-content {
  float: left;
  width: 65%;
  padding: 10px;
  color: grey;
}
.mailshot-detail-header .notification-detail-header-content .notification-detail-header-content2 {
  margin-top: 5px;
}
.mailshot-detail-header .message-back {
  right: 0;
  position: absolute;
  margin-right: 10px;
  top: 5%;
}
.mailshot-detail-header .message-back .message-back-content {
  font-family: 'Century Gothic', sans-serif;
  font-size: 14px;
  font-weight: bolder;
  color: #599cb1;
}
.mailshot-detail-header::after {
  content: "";
  clear: both;
  display: table;
}
.mailshot-info-content {
  height: 100%;
  width: 100%;
}
.passhelper-eye {
  text-decoration: underline;
  font-size: 12px;
  font-family: 'Century Gothic', sans-serif;
}
.passhelper-icon {
  width: 12px;
  padding-bottom: 2px;
  margin-right: 5px;
}
button,
button:active,
button:focus,
button:hover,
.btn,
.btn:active,
.btn:focus,
.btn:hover {
  outline: none !important;
}
