/*BOTONES PARIS*/
.btn-content {
    margin: 40px;
}

.primary-button,
.secondary-button,
.outline-button,
.hipervinculo-button,
.disabled-button {
    width: 100%;
    min-height: 45px;
    min-width: 190px;
    max-width: 250px;
    border-radius: 8px;
    text-transform: capitalize;
    text-align: center;
    font-size: 0.8750em;
    text-transform: none;
    -webkit-transition: .2s ease-in-out;
    transition: all .2s ease-in-out;
    cursor: pointer;
    text-decoration: none;
    padding: 10px;
    display: block;
    margin: 0 auto;
}

.primary-button {
    font-size: 14px;
    color: #ffffff;
    background-color: #009CE0;
    border: 1px solid #009CE0;
}

.primary-button:hover {
    background-color: #fff;
    color: #009CE0;
    border: 1px solid #009CE0;
}

.secondary-button {
    font-size: 14px;
    color: #fff;
    background-color: #003F6D;
    border: 1px solid #003F6D;
}

.secondary-button:hover {
    color: #fff;
    background-color: #006080;
    border: 1px solid #006080;
}

.outline-button {
    font-size: 14px;
    color: #009CE0;
    background-color: #fff;
    border: 1px solid #009CE0;
}

.outline-button:hover {
    background-color: #009CE0;
    color: #fff;
}

.hipervinculo-button {
    font-size: 14px;
    color: #003F6D;
    background-color: #fff;
    border: none;
}

.hipervinculo-button:hover {
    color: #00355B;
    background: #fff;
    text-decoration: underline;
}

.disabled-button {
    font-size: 14px;
    color: #1a1a1a;
    background-color: #AAAAAA;
    border: 1px solid #AAAAAA;
}