/*
    ALGUMAS FORMATAÇÕES DO BOOTSTRAP USADO NO PAINEL PRINCIPAL
*/

#tab-foto label {
    font-size: 12px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 400;
    color: #555;
    font-family: "Roboto","Helvetica Neue",Arial,sans-serif;
}
#tab-foto .fotoAutor {
    width: 100%;
}

.btn-info-outline,
.btn-danger-outline {
    border: 2px solid;
    background-color: transparent;
}

.btn-info-outline {
    border-color: #1DC7EA;
    color: #1DC7EA !important;
}
.btn-info-outline:hover {
    color: #42d0ed;
    border-color: #42d0ed;
}
.btn-danger-outline {
    border-color: #FF4A55;
    color: #FF4A55 !important;
}
.btn-danger-outline:hover {
    color: #EE2D20;
    border-color: #EE2D20;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: #000;
    display: none;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}
.fade.in {
    opacity: 1;
}
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    z-index: 1000;
    background: rgba(0,0,0,.5);
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
    -webkit-transform: translate(0,-25%);
    -ms-transform: translate(0,-25%);
    -o-transform: translate(0,-25%);
    transform: translate(0,-25%);
}
@media (min-width: 768px) {
    .modal-dialog:not(.modal-xl) {
        max-width: 650px;
        margin: 30px auto;
    }
}
.modal-dialog {
    position: relative;
    max-width: auto;
    margin: 30px auto;
}
.modal.in .modal-dialog {
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0);
}
@media (min-width: 768px) {
    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
        box-shadow: 0 5px 15px rgba(0,0,0,.5);
    }
}
.modal-content {
    font-family: "Roboto","Helvetica Neue",Arial,sans-serif;
    font-weight: 400;
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
    box-shadow: 0 3px 9px rgba(0,0,0,.5);
}
.modal-content .btn:not(.btn-success, .btn-danger) {
    border-width: 2px;
    background-color: transparent;
    font-weight: 400;
    opacity: 0.8;
    filter: alpha(opacity=80);
    padding: 8px 16px;
    border-color: #888888;
    color: #888888;
    font-size: 14px;
    border-radius: 4px;
}

.justify-content-space-between {
    justify-content: space-between;
}