
/*DEFAULT LOAD*/
.ajax_load {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.j_profile_image{height: 100px; background-size: 100px; background-position: center; background-repeat: no-repeat; background-size: 100%; }
.j_logo, .j_icon{height: 100px; background-size: 100px; background-position: center; background-repeat: no-repeat; background-size: 100%; }

.ajax_load_box {
    margin: auto;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.ajax_load_box_circle {
    border: 16px solid #e3e3e3;
    border-top: 16px solid #1dd1a1;
    border-radius: 50%;
    margin: auto;
    width: 80px;
    height: 80px;

    -webkit-animation: spin 1.2s linear infinite;
    -o-animation: spin 1.2s linear infinite;
    animation: spin 1.2s linear infinite;
}

.ajax_load_box_title {
    margin-top: 15px;
    font-weight: bold;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Estilização do botão flutuante */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #878787;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    /* box-shadow: 2px 2px 10px rgba(38, 42, 48, 0.3); */
    z-index: 1000;
    opacity: 0.7; /* Define a opacidade inicial */
    transition: opacity 0.3s; /* Transição suave da opacidade */
}

.floating-btn:hover {
    background-color: #4e5052;
    opacity: 1; /* Define a opacidade total ao passar o mouse */
}