/*
	Video player
*/

.overlay {
  width: 100%;
  background: rgba(0,0,0,.75);
  position: absolute;
  left: 0;
  top: 0;
}
.videobox {
  position: absolute;
  background: white;
  text-align: center;
  padding: 20px;
  border-radius: 5px;
}
.videobox video {
  width: 700px;
}
.close {
  width: 36px;
  height: 36px;
  position: absolute;
  top: -18px;
  right: -18px;
  display: block;
  background: transparent url(../../images/close.png) no-repeat center center;
  opacity: .8;
}
.close:hover {
  opacity: 1;
}

/*
	Contenidos Desplegables
*/

.collapsible {
  background-color: #74514A;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 50%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 14px;
  margin: 0 auto;
}

.active, .collapsible:hover {
  background-color: #E5843B;
}

.collapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #EBE7C9;
  width: 50%;
  margin: 0 auto;	
}

.NonCollapsible {
  background-color: #74514A;
  color: white;
  padding: 18px;
  width: 50%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 14px;
  margin: 0;
}

.contentFix {
  padding:18px;
  background-color: #EBE7C9;
  width: 50%;
  margin: 0 auto;	
}
	
