@charset "utf-8";
/* CSS Document */

.textView {
    background: rgba(116,203,223,0.2);
    padding: 6px;
	margin:10px 0px;
	    font-size: 17px;
}

.wrapper {
  overflow: hidden;
}

.glyphicon{font-size: 1.5em;  color: #333332;     margin-right: 0.2em;}

.eye {    
	color: #333332;
    float: left;
    margin-right: 1.2em;
}

.eye:before {
  content:"";
  display: inline-block;
  position: relative;
  color: #620100;
  left: 3px;
}

.eye.active:before {
    color: #620100 ;
  left: 0;
  top: 0px;
  border-color: #620100 transparent transparent;
}

.eye:hover{
  cursor: pointer;  color: #000;
  
}

.content {

  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.content.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.capcomWeb{
        margin-top: 10%;
	text-align: left;
    }

@media only screen and (max-width: 992px) {
    .capcomWeb {
        margin: 10px 0px;
    }
}


