/** Realdooh bar workaround 
 ** Con Bootstrap 4 la barra de Realdooh presenta algunos errores:
**/

#tabulaeIframe{
	height: 100%;
	width: 100%;	
}

.wrapper-tabulae {
	width: 100%;
	height: 100%;
	padding-bottom: 50px;
}

.realdooh-bar {
	display: inherit !important;
}

.text-center {
	text-align: center;
}

/** - CURSOR - **/
.cursor{
	cursor: pointer !important;
	padding: 2px;
}

/** - LOADING VIEWS - **/
.loading-container{
	background-color:#f9f9f9;
	z-index:10001;
	top: 0;
	left: 0;
	height:100%;
	width:100%;
	cursor:wait;
	padding-top: 20rem;
}
.dots {
	margin: auto;
	width: 60px;
	height: 60px;
	text-align: center;

	-webkit-animation: sk-rotate 2.0s infinite linear;
	animation: sk-rotate 2.0s infinite linear;
}
.dot1, .dot2 {
	width: 60%;
	height: 60%;
	display: inline-block;
	position: absolute;
	top: 0;
	background-color: #000;
	border-radius: 100%;

	-webkit-animation: sk-bounce 2.0s infinite ease-in-out;
	animation: sk-bounce 2.0s infinite ease-in-out;
}
.dot2 {
	top: auto;
	bottom: 0;
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}
@-webkit-keyframes sk-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes sk-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}
@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}


/** - PADDINGS - **/
.no-padding-left{ padding-left: 0px; }
.no-padding-right{ padding-right: 0px; }
.no-padding-sides{
	padding-left: auto;
	padding-right: auto;
}

/** IFRAME MODULE **/

.main-message {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 0;
	
	width: 100%;
}

