/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

#respond{
    display:none;
}

/* Loader CSS */
.loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Asegura que los botones con loader tengan estilos adecuados */
input[type="submit"].submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

input[type="submit"].submit{
    background-color: black;
    color: white;
    cursor: pointer;
}
.conversations__row{
    display: flex;
    width: calc(100% - 20px);
    color: #9b9b9b;
    background-color: #f6f9fa;
    border-radius: 15px;
    padding: 10px;
    margin: 0 0 10px 0;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}
.conversations__avatar{
    width: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tabs.lua-tabs .tabs__label{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-transform: uppercase;
}
.tabs.lua-tabs .tabs__label img{
    width: 20px;
    height: auto;
    margin-bottom: 1px;
    margin-right: 3px;
}
.lua_tabs__content{
    display: none;
    padding: 20px 10px;

}
.tabs--style1 input[type="radio"].tabs__radio:checked + label.tabs__label {
    color: #fff;
    background-color: #83cbf8;
    font-size: 14px;
}