/* HEADER */
.header {
    background-color: #006DB6;
    width: 100%;
    height: 65px;
}

.header__logo-container {
    height: inherit;
    line-height: 65px;
    padding: 0 15px;
}

.header__logo-img {
    height: 55px;
}

.header__button {
    height: inherit;
}

@media (min-width: 768px) {
    .header__button {
        display: none;
    }
}

.header__title {
    color: #FFF;
    font-weight: 600;
    font-size: 12px;
    display: none;
}

@media (min-width: 768px) {
    .header__title {
        font-size: 16px;
        display: block;
    }
}

.header__button-container {
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Contenido */

.page-header {
    font-weight: 600;
    border-width: 2px;
}

.page-warning {
    color: #a94442; 
    font-weight: 600;

}


@media (min-width: 768px) {
    .modal-dialog {
        width: 90% !important;
    }
}

.viewer {
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.viewer-img {
    max-width: 90%;
}

.btn-block {
    background-color: #006DB6;
    margin-bottom: 10px;
    padding: 30px 0;
}

.btn-title {
    padding: 10px 0;
}


