

.mainContent {
}


.ucaspeech_bar {
	display: flex;
	justify-content: flex-end;
	background-color: none;
	margin: 5px;
	padding: 5px;
	text-align: right;
}

.ucaspeech_bar .settings {
	display: none;
}

.ucaspeech_bar .ucaspeech_btn {
	border: 1px solid #000;
	border-radius: 3px;
	color: #7D7D7D;
	background-color: #e6e6e6;
	height: auto;
	overflow: hidden;
	opacity: 0.7;
	margin: 0 0px 0 7px;
	padding: 2px 10px;
	font-size: inherit;
	font-weight: inherit;
	width: auto;
	min-width: 40px;
	box-shadow: none;
}
.ucaspeech_bar .ucaspeech_btn:hover,
.ucaspeech_bar .ucaspeech_btn:focus {
	opacity: 1;
	background-color: #e6e6e6;
}

.ucaspeech_btn:disabled {
	opacity: 0.3;
}
.ucaspeech_bar .ucaspeech_btn:disabled:hover,
.ucaspeech_bar .ucaspeech_btn:disabled:focus {
	opacity: 0.3;
}

.ucaspeech_btn.state_on {
	outline: 2px solid #0A07;	
}

.ucaspeech_btn.x2 {
	font-size: 40px;
	padding: 10px 20px;
}


/* --------------------------------------------------------------------------------------------------- POPUP */
.uca_dropdown {
  position: relative;
}
.uca_dropdown-content {
  display: none;
  font-size: 14px;
  position: absolute;
  bottom: 100%;
  padding: 10px;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.2);
  z-index: 1;

  max-width: 95%;
  overflow: hidden;

  border: 1px solid #00000077;
  border-radius: 3px;
}
.uca_dropdown-content.show {
	display: block;
}

.uca_dropdown-content .option {
	margin: 0px 0 7px 0;
	display: flex;
}

.uca_dropdown-content .option label {
  width: 150px;
  font-weight: normal;
}

.uca_dropdown-content input[type="range"] {
  width: 200px;
  padding: 0;
}

.uca_dropdown-content .ucaspeech_ctl {
	border: 1px solid #000000aa;
	border-radius: 3px;
	height: auto;
	max-width: 200px;
	margin-left: 20px;
	line-height: 1;
	font-size: inherit;
	font-weight: inherit;
	padding: 1px 17px;
}

.uca_dropdown-content .reset_bar {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}





/* --------------------------------------------------------------------------------------------------- MODAL AUTOSPEECH */
.ucaspeech_modal_bg {
	display: none;
	position: fixed;
	z-index: 1000;
	background-color: #00000077	;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

.ucaspeech_modal_bg.show {
	display: block;
}

.ucaspeech_modal {
	background-color: #550000;
	padding: 30px;

	position: fixed;
	left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;


  background-color: #f1f1f1;
  min-width: 150px;
  box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.2);
  border: 1px solid #00000077;
  border-radius: 3px;
  text-align: center;
}

.ucaspeech_modal.autospeech {
	background-color: #fff;
	color: #000000BB;
}


.ucaspeech_modal.show {
	display: block;
}

.ucaspeech_modal.autospeech .ucaspeech_speech {
	margin-top: 20px;
}














/* .................................................................................... RESPONSIVE .........................................................................................*/



/* Medida para SmartPhones Horizontal ............................................*/
@media screen and (max-width: 600px) {  
	.uca_dropdown-content {
		font-size: 12px;
	}
	.ucaspeech_modal {
		font-size: 12px;
	}

}