/* Root */
.btn-primary{
    color: #fcea0c;
    background-color: #5b23a2;
    border-color: #5b23a2;
}
.header{
    background-color: #5b23a2;
}
/* General */
.logo img {
    transition: opacity .3s ease;
    width: 70px;
}
.fixed-sidebar .logo{
    background-color: rgba(255, 60, 100, 1);
}
.left-menu a:hover svg {
    fill: #003879;
}

.bg-whatsapp{
    background: #0be675;
}

.btn-compartir{
    display: inline-block;
}

.boton-registrate{
    margin-bottom: 0px;
}

/* Landing Login */
.landing-page:before{
    background-color: rgba(255, 60, 100, 0.9);
}
.registration-login-form .nav-link.active{
    fill: #003879;
}

/* Listado de Orlas */
.contenedor-orlas > div{
    margin-bottom: 1em;
}

@media(max-width: 767px){
    .left-menu{
        padding: 0 0;
    }
    .header--standard-landing .header-menu{
        background-color: #ff3c64;
    }
}
@media(min-width: 768px){
    .main-header {
        max-width: calc(100% - 70px);
        margin: 0 auto 30px 70px;
    }
    .header--standard-landing .header-menu .nav-item {
        display: block;
        visibility: visible;
        opacity: 1;
    }

}

@media (max-width: 600px){
    #foto-a {
        display: none;
    }
    #foto-b {
        margin-bottom: 30px;
    }
}

@media (min-width: 601px){
    #foto-a {
        margin-bottom: 30px;
    }
    #foto-b {
        display: none;
    }
}

.ui-block-botones{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 1em;
}
.ui-block-botones .boton{
    display: inline-block;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .5rem;
    font-size: .688rem;
    border-radius: .25rem;
    transition: all .2s ease-in-out;
    background-color: #38a9ff;
    color: #fff;
    fill: #fff;
}

/** CHAT **/
.sidebar--small .author-thumb img {
    width: 100%;
}
.sidebar--large .author-thumb img {
    width: 15%;
}
.fixed-sidebar-right.sidebar--chat{
    width: 270px;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    padding-bottom: 70px;
}
.fixed-sidebar.activo .fixed-sidebar-right.sidebar--chat {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition-delay: .3s;
}

.cajas-chat {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}

.caja-chat{
    display: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}

.caja-chat-usuario{
    flex: 1;
    background-color: #7c5ac2;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 1.3em;
}

.caja-chat-mensajes{
    flex: 8;
    overflow-y: scroll;  
    height: 75%;
    max-height: 75%;
}

.caja-chat .caja-mensaje{
    width: 100%;
    min-height: 132px;
}

.mensaje-chat{
    margin-left: 0.3em;
    margin-right: 0.3em;
    padding: 0.7em 0.3em;
    border-bottom: 1px solid #ddd;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}
.mensaje-chat.propio{

}
.mensaje-chat.otro{

}
.mensaje-chat-cabecera{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.mensaje-chat-autor{
    font-weight: 700;
}
.mensaje-chat-hora{
    color: #bbb;
}
.mensaje-chat-texto{

}
.caja-chat-texto{
    flex: 1;    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0 0.5 em;
    max-height: 13%;
}

.caja-chat-texto textarea{
    border-radius: 0;
    box-sizing: border-box;
    width: 100%;
    display: block;
    padding: 16px 9px;
    border: 1px solid #ccc;
    resize: none;
    font-size: 13px;
    position: absolute;
    bottom: 0;
    max-height: 100%;
}

/** ESTILOS CHAT RESPONSIVE (MÓVIL) **/

@media only screen and (max-width:  768px) {

    .fixed-sidebar-right.sidebar--chat{
        width: 100vw;
        
    }
    
    .fixed-sidebar-right.sidebar--large{
        width: 100vw;
    }

}

/** MENUS RESPONSIVE **/

#menu_mobile{
    margin-top: 5%;
    margin-bottom: 5%;
    display: none;
}

#menu_mobile .list-group-item{
    background-color: #dee4ec;
    text-align: center;
}

#menu_mobile .list-group-item a{
    color: #888da8;
}

#menu_mobile .panel-heading{
    
    border: 1px solid rgba(0,0,0,.125);
    background-color: #dee4ec;
    text-align: center;
    
}

#menu_mobile .panel-heading a {
    font-weight: bold;
    color: #888da8;
}

@media only screen and (max-width:  768px) {
    
    #menu_web {
        display: none;
    }
    
    #menu_mobile{
        display:block;
    }
    
}

/**HEADER RESPONSIVE**/

.header icon-chat{
    display: none;
    color:white;
}

@media only screen and (max-width: 768px) {
    
    .header{
        padding-right:0px;
    }
    
    .header icon-chat{
        display: block;
    }
    
}

#site-header-responsive .header-content-wrapper{
    display: block;
}

#site-header-responsive .control-block{
    float:right;
}

.ck-content{
    height: 15%;
}

.post p {
    word-wrap: break-word;
}