@import "roboto.css";/*downloaded from https://fonts.googleapis.com/css?family=Roboto:400,300*/
body {
    height: 100vh;
    background-color: #EEEEEE;
    -webkit-transition: background-color 300ms;
    transition: background-color 300ms;
    font-family: roboto, open_sansregular, sans-serif;
}


.card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  min-height: 350px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;  
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
          animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
 -webkit-box-shadow: 0px 2px 6px 0px rgba(190, 190, 190,0.55);
 -moz-box-shadow: 0px 2px 6px 0px rgba(190, 190, 190,0.55);
  box-shadow: 0px 2px 6px 0px rgba(190, 190, 190,0.55);
  border-radius: 10px
}

@media screen and (min-width: 30em) {
  .card {
   Overflow:hidden;
    border-radius: 3px;
  }
}
.card-face {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
   background-color: #ffffff;
}
.card-face__bullet {
  background-color: #f44336;
  color: #FFF;
  display: block;
  padding: 4px 0;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  box-sizing: border-box;
  line-height: 1.2;
  text-align: center;
  font-size: 12px;
  position: absolute;
  top: 10px;
  right: 0;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.27);
  -webkit-animation: bullet 500ms;
          animation: bullet 500ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
          animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  font-weight: bold;
}
.card-face.face-1 {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.show-menu .card-face.face-1 {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.card-face.face-2 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.show-menu .card-face.face-2 {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
 
.card-face__menu-button {
  position: absolute;
  top: 10px;
  right: 5px;
  background: transparent;
  border: none;
  outline: none;
  padding: 5px 15px;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-animation: menu 2s;
          animation: menu 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
          animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.card-face__menu-button img {
  pointer-events: none;
  width:7px
}
.card-face__back-button {
  position: absolute;
  top: 10px;
  right: 0px;
  background: transparent;
  border: none;
  outline: none;
  padding: 5px 15px;
}
.card-face__menu-button, .card-face__back-button:hover {
    cursor: pointer;
  }
.card-face__back-button img {
  pointer-events: none;
}
.card-face__settings-button {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px;
}
.card-face__avatar {
  display: block;
  width: 150px;
  height: 150px;
  position: relative;
  margin-top: 30px;
  margin-bottom: 110px;
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
  opacity: 0;
  -webkit-animation: avatar 1.5s;
          animation: avatar 1.5s;
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
          animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.card-face__avatar img {
  /* border-radius: 50%; */
  border-radius: 0;
  border: 7px solid #fff;
}
.card-face__name {
    font-size: 20px;
    font-family: Roboto, open_sansregular, sans-serif;
    line-height: 30px;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    padding: 10px 20px;
    text-align: center;
    width: 100%;
    color: #263238;
    -webkit-animation: fadedown 1s;
    animation: fadedown 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.area {
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    padding: 10px 0;
    text-align: left;
    color: #1C262A;
    font-family: Roboto, open_sansregular, sans-serif;
    margin-top: 20px;
    text-transform: uppercase;
}

.areaDetalle {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    padding-left: 15px;
    text-align: left;
    color: #329AFB;
    font-family: Roboto, open_sansregular, sans-serif;
    margin-top: 28px;
    vertical-align: bottom;
    margin-bottom: 3px;
}
.titulo-area {
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    padding: 10px 0;
    text-align: left;
    color: #1C262A;
    font-family: Roboto, open_sansregular, sans-serif;
    margin: 10px 0;
    text-transform: uppercase;
}
.section-area {
	/*border-bottom: 1px solid #EEEEEE;*/
	margin: 0 5px;
}
.filter-area {
	float: right;
	margin-top: 30px;
	width: 25px;
}
.filter-area:hover { 
  fill: #329AFB;
  cursor: pointer
}


.card-face__title {
  font-size: 14px;
  line-height: 20px;
  color: #595959;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  padding: 5px 20px;
  text-align: center;
  box-sizing: border-box;
  font-weight: 300;
  min-height:46px;
  -webkit-animation: fadedown 1s;
          animation: fadedown 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
          animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
		  
}
.card-face__title:after {
  content: "";
  width: 70px;
  height: 1px;
  display: block;
}
.card-face-footer {
	left: 0;
	right: 0;
	text-align: center;
	bottom: 0;
	background-color: #ffffff;
	border-top: 1px solid #e6eaee; 
	height: 95px;
	padding-top: 20px;
	margin-top: 20px;
    width: 95%
	}
.card-face__social {
  display: inline-block;
  margin: 0 2px;
  -webkit-animation: socials 1.5s;
          animation: socials 1.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
          animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.card-face__social:nth-child(1) {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}
.card-face__social:nth-child(2) {
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}
.card-face__social:nth-child(3) {
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}
.card-face__social:nth-child(4) {
  -webkit-animation-delay: 800ms;
          animation-delay: 800ms;
}
.card-face__stats {
  display: block;
  margin: 10px 0;
}
.show-menu .card-face__stats {
  -webkit-animation: stats 1s;
          animation: stats 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
          animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.card-face__stats:nth-of-type(1) {
  -webkit-animation-delay: 0;
          animation-delay: 0;
}
.card-face__stats:nth-of-type(2) {
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
}
.card-face__stats:nth-of-type(3) {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}
@-webkit-keyframes avatar {
  from {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 1;
  }
}
@keyframes avatar {
  from {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 1;
  }
}
@-webkit-keyframes menu {
  from {
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes menu {
  from {
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadedown {
  from {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadedown {
  from {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes socials {
  from {
    -webkit-transform: translateY(300%);
            transform: translateY(300%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes socials {
  from {
    -webkit-transform: translateY(300%);
            transform: translateY(300%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@-webkit-keyframes stats {
  from {
    -webkit-transform: translateX(300%);
            transform: translateX(300%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes stats {
  from {
    -webkit-transform: translateX(300%);
            transform: translateX(300%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@-webkit-keyframes bullet {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
            transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes bullet {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
            transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

	.description {
		padding: 10px 0 20px 0;
		vertical-align: top;
		line-height: 19px;
		font-size: 13px;
		width: 85%;
		height: 90%;
		color: #333333
	}

	ul {
	padding:0;
	list-style: none;
	margin: 0;	
	}
	
	li{
	padding: 2px 0;
	list-style: none;
	margin: 0;	
	}
		
	.s-switch input[type='checkbox']{display:none}

.s-switch {
	width: 62px;
	height: 22px;
	z-index: 0;
	margin: 10px 0 0 0;
	padding: 0;
	appearance: none;
	border: none;
	cursor: pointer;
	position: relative;
	border-radius:16px; 
	-moz-border-radius:16px; 
	-webkit-border-radius:16px;
	-webkit-animation: fadedown 1s;
          animation: fadedown 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
          animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.s-switch:before {
    content: ' ';
    background: #B2B2B2 !important;
    position: absolute;
    left: 1px;
    top: 1px;
    width: 60px;
    height: 20px;
    z-index: 1;
    border-radius: 16px;
    -moz-border-radius: 16px;
    -webkit-border-radius: 16px;
}

.s-switch:after {
	content: ' ';
	height: 16px;
	width: 16px;
	border-radius: 28px;
	z-index: 2;
	background: #FFFFFF;
	position: absolute;
	-webkit-transition-duration: 300ms;
	transition-duration: 300ms;
	top: 3px;
	left: 3px;
}
.s-switch-on, .s-switch-on:before{
	background: #329AFB !important;
}
.s-switch-on:after{
	left: 41px !important;
}
.s-switch-readonly, .s-switch-disabled{
	opacity: 0.8;
}

a{
	text-decoration: none
}

.imgSVG{
	width:23px
}


/* robot */
#robot {
  max-height: 130px;
  width: 100%;
  margin-top: 10px;
}

.clr {
    animation: col 3s linear infinite;
    -webkit-animation: col 3s linear infinite;
    -moz-animation: col 3s linear infinite;
    -o-animation: col 3s linear infinite;
}

.clr-error {
    animation: col-error 3s infinite;
    animation-timing-function: linear;
    -webkit-animation: col-error 3s infinite;
    -webkit-animation-timing-function: linear;
}

.clr-text {
    animation: col-text 3s linear infinite;
    -webkit-animation: col-text 3s linear infinite;
    -moz-animation: col-text 3s linear infinite;
    -o-animation: col-text 3s linear infinite;
}

    @keyframes col {
    0%,100% {fill:#113861} /* azul */
    25%,50% {fill:#2067B2} /* celeste */
    }
    @keyframes col-error {
    0%,100% {fill:#113861}
    25%,50% {fill:#2067B2} 
    }
    @keyframes col-text {
    0%,25%{fill:#fff}
    50%,100% {fill:#5D9CEC}
    }

    .delay-2 { animation-delay: 0.20s;}
    .delay-3 { animation-delay: 0.40s;}
    .delay-4 { animation-delay: 0.60s;}
    .delay-5 { animation-delay: 0.80s;}
    .delay-6 { animation-delay: 1.0s;}
    .delay-7 { animation-delay: 1.20s;}



.morecontent span {
    display: none;
}
.morelink {
    display: block;
	padding: 10px 0;
}
.more {
   margin: 0
}

.page-title {
    width: 100%;
    color: #151515;
    margin-top: 30px;
    font-size: 23px;
    font-family: Roboto, open_sansregular, sans-serif;
    font-weight: 300
}

.bg {
  width: 100%;
  background-color: #fff;
  margin-top: 10px;
  margin-bottom: 20px
}

@media only screen and (max-width: 768px) {
    .card-face__name {
    font-size: 18px;
    }
    .imgSVG {
        width: 25px;
        margin: 0;
        }
    .card-face__social {
        margin: 0 5px;
        }
    .description {
        padding: 10px 0 10px 0;
        width: 75%;
        height: 80%;
        }
    .card-face__title {
        font-size: 13px;
        line-height: 20px;
        color: #595959;
        text-align: center;
        font-weight: 300;
    }
    .jumbotron {
        margin-bottom: 3rem;
    }
	.area {
        font-size: 13px;
	}
	.page-title {
        font-size: 20px;
        font-weight: 300;
        margin-top: 40px;
        margin-left: 15px
	}



}

.card-selected {
    border: 2px solid #e3e4e4 !important;
}

.card-hover:hover {
    box-shadow: 0 1px 6px rgba(3,3,3,.35);
}
