/*
	BTN Clave Ãšnica.
	Estilos grÃ¡ficos para el botÃ³n de clave Ãºnica.
	V 1.1.0
	por @pyanez
	24/11/2020
*/

/* Boton estilo de base */
.btn-cu {
    /*display: inline-block;*/
    display: flex;
    justify-content: center;
    font-family: Roboto-Regular,sans-serif;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 4px;
}

/*Icono ClaveÃšnica*/
.btn-cu .cl-claveunica {
    display: inline;
    float: left;
    text-indent: -9999px;
    color: #FFFFFF;
}

/*Texto ClaveÃšnica*/
.btn-cu .texto {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: bold;
    padding-left: 4px;
    text-decoration: none;
}

/* TamaÃ±o S */
.btn-cu.btn-s {
	width: 130px;
	min-width: 130px;
	height: 36px;
	padding: 8px 10px !important;
	font-size: 14px;
}

.btn-cu.btn-s .cl-claveunica {
	width: 20px;
	height: 20px;
	background-size: 20px 20px;
}

/* TamaÃ±o M */
.btn-cu.btn-m {
    width: 170px;
    min-width: 170px;
    align-items: center;
    padding: 8px 14px !important;
    gap: 4px;
    height: calc(2rem + 16px);
}

.btn-cu.btn-m .cl-claveunica {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
}

/* TamaÃ±o L */
.btn-cu.btn-l {
	width: 180px;
	min-width: 180px;
	height: 48px;
	padding: 11px 18px !important;
	font-size: 18px;
}

.btn-cu.btn-l .cl-claveunica {
	width: 26px;
	height: 26px;
	background-size: 26px 26px;
}

/* TamaÃ±o fluid-width */
.btn-cu.btn-fw {
	max-width: 550px;
	width: 100%;
	display: flex;
	justify-content: center;
}

/* Color Estandar */
.btn-cu.btn-color-estandar {
    background-color: #0F69C4;
    color: #FFF;
    text-decoration: none;
}

.btn-cu.btn-color-estandar .cl-claveunica {
	background: url(../img/cu-blanco.svg);
	/* Esta URL debe ser modificada segun donde 
	    quede alojado el documento */
}

.btn-cu.btn-color-estandar:hover {
    background-color: #0B4E91;
    color: #FFF;
    text-decoration: none;
}

.btn-cu.btn-color-estandar:active {
    background-color: #07305A;
    color: #FFF;
    text-decoration: none;
}

.btn-cu.btn-color-estandar:focus {
    background-color: #0B4E91;
    outline: 4px solid rgba(255, 190, 92, 1);
    color: #FFF;
}

/* Siguiente Linea */

.btn-m {
    min-width: 160px;
    max-height: 50px;
    padding: 0.5rem 0.9rem !important;
    font-size: 16px;
    line-height: 1.6em;
}

.btn-claveunica.btn-m {
    width: 160px;
    min-width: 160px;
    max-height: 42px;
    padding: 8px 18px 8px 15px !important;
    font-size: 16px;
    line-height: 1.6em;
}

.btn-claveunica {
    display: flex;
    justify-content: center;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 0;
    font-family: 'Roboto';
    background-color: #0F69C4;
    color: #FFF;
}

.icono-clave-unica {
    height: 24px;
    width: 24px;
    fill: #FFFFFF;
    color: #FFFFFF;
}

.texto-clave-unica {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    color: #FFFFFF;
}