/*UTILITIES---------------------*/

.ellipsis{
	width: 100%: 
	white-space: nowrap; 
	overflow: hidden; 
	text-overflow: ellipsis; 
	-o-text-overflow: ellipsis; 
	-ms-text-overflow: ellipsis;
}

/*BUTTONS*/

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.btn-group-lg>.btn, .btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

/*PANTALLAS*/

.pantalla {
    background: white;
    width: 100%;
    min-height: 100vh;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}
.pantalla.modal {
    height: 100vh;
    background-color: transparent;
    z-index: 4;
	pointer-events: none;
	display: none;
}
.pantalla.modal p {
    font-size: 18px;
    margin: 2px 5px 0px;
    line-height: 21px;
}
.centrar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.25);
    position: fixed;
}
.modal-holder {
    width: 90%;
    max-width: 330px;
    min-height: initial;
    position: relative;
    background-color: white;
    border-radius: 10px;
    pointer-events: all;
    padding-top: 15px;
}
.pantalla.modal .body {
    min-height: initial;
    height: auto;
    padding: 0 15px 0;
    background: transparent;
    overflow: auto;
    max-height: calc(100vh - 154px);
}
.pantalla.modal .footer {
    padding: 10px 10px 10px;
    text-align: center;
}
.pantalla.modal .footer .btn {
    width: calc(50% - 8px);
    margin: 0 2px;
}
.pantalla.modal .footer .btn.solitario{
	width: 100%;
	margin: 0;
}


/*LANGUAGE---------------------*/

#language ul{
	padding: 10px 0 0;
	list-style: none;
	margin-bottom: 0;
}

	#language ul li{
	display: inline-block;
	}

		#language ul li img{
	width: 50px;
	margin: 0 6px 12px;
	border-radius: 50%;
	}


/*LOADER---------------------*/

.loader{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background: rgba(0,0,0,0.4);
    position: fixed;
    z-index: 5;
    color: white;
    font-size: 80px;
	display: none;
	top: 0;
    left: 0;
}