html, body {
	height: 100%;
/* * If omited, background page would keep on scrolling * after the overlay one reaches its limit. */}
.overlay {
	/* * You can use either this combination,*/ position: fixed;
	bottom: 0;
	right: 353px;
	width: 20%;
	height: 70%;
	z-index: 999999;
}

/* * Or the following one, depending on your need. * * In this case, I wanted the overlay to slouch back to the left, * so it has to be of a fixed width. * * As long as overlay covers the whole page, it does the trick. * top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    */ 
		@media screen and (max-width: 1440px) {
		.overlay {
			right: 122px;
		}
		}
		
		@media screen and (max-width: 1366px) {
		.overlay {
			height: 60%;
			width: 40%;
			background-color: inherit;
			right: 75px;
		}
		}
		
		@media screen and (max-width: 1024px) {
		.overlay {
			height: 0;
			width: 56%;
			background-color: inherit;
			right: -11px;
		}
		}
		
		@media screen and (max-width: 812px) {
		.overlay {
			height: 100%;
			width: 100%;
			background-color: rgba(255, 255, 255, 0.5);
			right: 0;
		}
		}
		
		@media screen and (max-width: 768px) {
		.overlay {
			height: 0;
			width: 0;
			background-color: inherit;
			right: 540px;
		}
		}
		
		@media screen and (max-width: 736px) {
		.overlay {
			height: 100%;
			width: 100%;
			background-color: rgba(255, 255, 255, 0.5);
			right: -3px;
		}
		}
		
		@media screen and (max-width: 667px) {
		.overlay {
			height: 100%;
			width: 100%;
			background-color: rgba(255, 255, 255, 0.5);
			right: -2px;
		}
		}
		
		@media screen and (max-width: 414px) {
		.overlay {
			right: 1px;
		}
		}
		
		@media screen and (max-width: 375px) {
		.overlay {
			height: 100%;
			width: 100%;
			background-color: rgba(255, 255, 255, 0.5);
			right: 0;
		}
		}
.botVivaz {
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	border: 1px solid #cccccc;
}

		@media screen and (max-width: 1024px) {
		.botVivaz {
			width: 54%;
			height: 80%;
			bottom: 0;
			position: fixed;
			border: 1px solid #d1d1d1;
			padding: 0.2em;
			margin: 0 auto;
		}
		}
		
		@media screen and (max-width: 812px) {
		.botVivaz {
			width: 99%;
			height: 98%;
		}
		}
		
		@media screen and (max-width: 768px) {
		.botVivaz {
			width: 69%;
			height: 64%;
		}
		}
		
		@media screen and (max-width: 736px) {
		.botVivaz {
			width: 98%;
			height: 98%;
		}
		}
		
		@media screen and (max-width: 640px) {
		.botVivaz {
			height: 99%;
		}
		}

.background-content {
	height: inherit;
	overflow: inherit;/* * If you want to use padding here, remember to add: * * box-sizing: border-box;
    * * otherwise the height of this container would be larger than 100%. */}

		@media screen and (max-width: 1024px) {
		.background-content {
			height: 100%;
		}
		}
.hide-overlay .overlay {
	left: -100%;
}
.fa-toggle-off {
	display: none;
}
.hide-overlay .fa-toggle-off {
	display: inline-block;
}
.hide-overlay .fa-toggle-on {
	display: none;
}
.overlay .overlay-content {
	box-sizing: border-box;
	/*padding: 0 10px 10px;*/
	color: #fff;
	height: 100%;
	width: 100%;
}
.buttons-container {
	position: fixed;
	padding: 0px 12px;
	right: 355px;
	bottom: 64px;
	border-radius: 3px;
	border: 1px solid #ffffff;
	background-color: rgb(255,105,0);
	-webkit-box-shadow: -2px 4px 19px 2px rgba(0,0,0,0.46);
	-moz-box-shadow: -2px 4px 19px 2px rgba(0,0,0,0.46);
	box-shadow: -2px 4px 19px 2px rgba(0,0,0,0.46);
	z-index: 999999;
}

		@media screen and (max-width: 1440px) {
		.buttons-container {
			right: 121px;
		}
		}
		
		@media screen and (max-width: 1366px) {
		.buttons-container {
			right: 75px;
		}
		}
		
		@media screen and (max-width: 1024px) {
		.buttons-container {
			right: 0;
		}
		}
		
.ChatIco {
	background-image: url(/image/iconos/ico-chat-hablamos-vivaz.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	height: 45px;
	width: 62px;
	top: -7px;
	position: absolute;
	right: 112px;
	-webkit-filter: drop-shadow(-8px 4px 7px rgba(0,0,0,0.46));
	filter: drop-shadow(-4px 3px 6px rgba(0,0,0,0.46));
}

		@media screen and (max-width: 640px) {
		.ChatIco {
			right: 103px;
			top: -6px;
		}
		}
		
		@media screen and (max-width: 414px) {
		.ChatIco {
			right: 110px;
			top: -6px;
		}
		}
		
		@media screen and (max-width: 360px) {
		.ChatIco {
			right: 102px;
		}
		}
.button {
	display: inline-block;
	color: rgba(255,255,255,0.87);
	font-size: 17px;
	line-height: 36px;
	cursor: pointer;
	transition: box-shadow .4s cubic-bezier(.25, .8, .25, 1), background-color .4s cubic-bezier(.25, .8, .25, 1);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-decoration: none;
}
.button i {
	font-size: 20px;
	margin-right: 8px;
	vertical-align: middle;
}
.background-content {
	box-sizing: border-box;
}
.background-content .lorum-ipsum {
	color: rgba(0, 0, 0, .1);
}
.table-wrapper {
	padding: 0 30px;
}
table {
	width: 100%;
	border: 2px solid grey;
	text-align: center;
}
table th, table td {
	padding: 10px;
	border: 1px dashed grey;
}
.btnCerrar {
	position: absolute;
	z-index: 10;
	right: 19px;
	width: 25px;
	text-align: center;
	top: -8px;
}	

		@media screen and (max-width: 1024px) {
		.btnCerrar {
		    top: -574px;
		    right: 37px;
		}
		}
		

		@media screen and (max-width: 768px) {
		.btnCerrar {
			top: -625px;
			right: -515px;
		}
		}
		
		@media screen and (max-width: 736px) {
		.btnCerrar {
			top: -5px;
			right: 32px;
		}
		}
		
		@media screen and (max-width: 667px) {
		.btnCerrar {
			top: -5px;
			right: 30px;
		}
		}
		
		@media screen and (max-width: 640px) {
		.btnCerrar {
			right: 28px;
		}
		}
		
		@media screen and (max-width: 568px) {
		.btnCerrar {
			top: 0;
		}
		}
		
		@media screen and (max-width: 414px) {
		.btnCerrar {
			top: 0;
		}
		}
		
		@media screen and (max-width: 375px) {
		.btnCerrar {
			top: 0;
		}
		}
		
		@media screen and (max-width: 360px) {
		.btnCerrar {
			top: 0;
		}
		}
		
		@media screen and (max-width: 320px) {
		.btnCerrar {
			top: 0;
		}
		}
		
.btnCerrarColor {
	background-color: inherit;
	width: 58px;
	height: 36px;
	font-size: 41px;
}
