.ui-button.atlas-btn {
    display: inline-block;
    background: none;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0px;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    margin-right: 5px;
    -webkit-box-shadow: inset 0 0px 0 #fff;
    text-shadow: none;
    box-shadow: inset 0 0px 0 #fff;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.ui-button.atlas-btn>span.ui-button-text {
    margin: .375rem .75rem;
}

.ui-button.atlas-btn>span{
    color: #fff;
}

.ui-button.atlas-btn>span.ui-icon{
    font-size: 1.2em;
    height:auto;
    width:auto;
    margin-top: -10px;
}

.ui-button.btn-primary {
    background: #7992bd !important;
    border-color: #c0d0ed !important;
}

.ui-button.btn-primary:hover {
    background: #6689B4  !important;
    border-color: #c0d0ed !important;
}

.ui-button.btn-secondary {
    background: #6c757d !important;
    border-color: #6c757d !important;
}

.ui-button.btn-secondary:hover {
    background: #545b62 !important;
    border-color: #4e555b !important;
}

.ui-button.btn-success {
    background: #28a745 !important;
    border-color: #28a745 !important;
}

.ui-button.btn-success:hover {
    background: #1e7e34 !important;
    border-color: #1c7430 !important;
}

.ui-button.btn-danger {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
}

.ui-button.btn-danger:hover{
    background: #bd2130 !important;
    border-color: #b21f2d !important;
}

.ui-button.btn-warning {
    background: #ffc107 !important;
    border-color: #ffc107 !important;
}

.ui-button.btn-warning>span {
    color:#212529;
}

.ui-button.btn-warning:hover {
    background: #d39e00 !important;
    border-color: #c69500 !important;
}

.ui-button.btn-info {
    background: #17a2b8 !important;
    border-color: #17a2b8 !important;
}

.ui-button.btn-info:hover {
    color: #fff ;
    background: #117a8b !important;
    border-color: #10707f !important;
}

.ui-button.btn-link>span {
    font-weight: bold;
    color: #7992bd !important;
    background-color: transparent;
}

.btn-link.btn-outline-link {
    border-color: #7992bd !important;
}

.ui-button.btn-link>span.ui-button-text:hover{
    text-decoration: underline;
}

.ui-button.btn-link>span.ui-icon:hover{
     color: #6689B4 !important;
}

.atlas-btn.btn-link>span.ui-button-text {
    margin: 0 .75rem !important;
}

/** Pantallas pequeñas (menores de 481px) */
@media screen and (max-width: 480px) {

	.ui-button.atlas-btn{
	   width:100%;
	}

	.ui-button.btn-link{
	   width:auto;
	}

}

