/*
	BTN Clave Única.
	Estilos gráficos para el botón de clave única.
	V 1.0.0
	por David Barra, DGD.
	09-07-2019
*/

.btn-cu {
    width: 160px !important;
    height: 42px !important;
    display: inline-block;
    padding: 8px 18px 8px 15px !important;
    background-color: #0F69C4;
    font-family: Roboto, sans-serif;
    font-size: 1em;
    line-height: 1.6em;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 0;
    margin: 15px;
}

.btn-cu .cl-claveunica{
	color:#fff;
	display: inline-block;
	float: left;
	text-indent: -9999px;
	width: 24px;
	height: 24px;
	background: url(img/clave-unica.svg); /* Esta URL debe ser modificada segun donde quede alojado el documento */
	background-size: 24px 24px;
}

	.btn-cu .texto{
		padding-left: 3px;
		text-decoration: underline;
		}

    .btn-cu:hover {
        color: #fff;
        background-color: #0C549C;
    }

        .btn-cu:hover.hover-shw {
            color: #fff;
            background-color: #0F69C4 !important;
            -webkit-box-shadow: 0px 1px 15px 0px rgba(0,0,0,0.2);
            -moz-box-shadow: 0px 1px 15px 0px rgba(0,0,0,0.2);
            box-shadow: 0px 1px 15px 0px rgba(0,0,0,0.2);
        }


/*INICIO MEDIAS*/
@media (max-width: 575.98px) {
    .btn-cu {
        width: 130px !important;
        height: 36px !important;
        padding: 6px 14px 6px 12px !important;
        font-size: 0.8rem;
    }
    .btn-cu .cl-claveunica {
        width: 18px;
        height: 18px;
        background-size: 18px 18px;
    }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {
    .btn-cu {
        width: 130px !important;
        height: 36px !important;
        padding: 6px 14px 6px 12px !important;
        font-size: 0.8rem;
    }

    .btn-cu .cl-claveunica {
        width: 18px;
        height: 18px;
        background-size: 18px 18px;
    }
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {
    .btn-cu {
        width: 180px !important;
        height: 48px !important;
        padding: 11px 16px 11px 6px !important;
        font-size: 18px;
    }

        .btn-cu .cl-claveunica {
            width: 32px;
            height: 32px;
            background-size: 32px 32px;
        }
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .btn-cu {
        width: 180px !important;
        height: 48px !important;
        padding: 11px 16px 11px 6px !important;
        font-size: 18px;
    }

        .btn-cu .cl-claveunica {
            width: 32px;
            height: 32px;
            background-size: 32px 32px;
        }
}
/*FIN MEDIAS*/