.linkDiputacion{
    position: absolute;
    top: 45px;
    right: 7px;
    display: inline-block;
    overflow: hidden;
    border: none;
    text-decoration: none;
    background: url("/system/modules/es.inpro.opencms.core/resources/plugins/soporte/images/contacto.png") no-repeat 50% 50%;
    width: 60px;
    height: 63px;
    cursor: pointer;
    zoom: 1;
    *display: inline;
    opacity: 0.9;
    webkit-transition: opacity 0.2s ease-out;
    padding: 3px;
}

/*
.linkDiputacion:hover{
	top: 30px;
	opacity: 1;
}*/


.linkDiputacion2{
    position: absolute;
    top: 45px;
    right: 67px;
    display: inline-block;
    overflow: hidden;
    border: none;
    text-decoration: none;
    background: url("/system/modules/es.inpro.opencms.core/resources/plugins/soporte/images/educacion.png") no-repeat 50% 50%;
    width: 60px;
    height: 63px;
    cursor: pointer;
    zoom: 1;
    *display: inline;
    opacity: 0.9;
    webkit-transition: margin 0.2s ease-out;
    -moz-transition: margin 0.2s ease-out;
    -o-transition: margin 0.2s ease-out;
    transition:all 0.2s ease-out;
    padding: 3px;
}
/*
.linkDiputacion2:hover{
	top: 30px;
	opacity: 1;
}*/
.linkDiputacion:hover{
	opacity: 0.65;
}


.linkDiputacion2:hover{
	opacity: 0.65;
}

/******************
 SUPPORT
*******************/
#chat-btn {
    position: fixed;
    bottom: 80px;
    right: 40px;
    border: none;
    height: 60px;
    width: 60px;
    cursor: pointer;
    z-index: 9999;
    border-radius: 5px;
	transform-origin: center;
  }
  
#imagenSoporte{
    position: fixed;
    bottom: 60px;
    right: 10px;
    padding: 10px 20px;
    height: 100px;
    width: 120px;
    z-index: 9999;
	transform-origin: center;
    cursor: pointer;
    border: none;
	animation: beat .4s 6 alternate;
}
@keyframes beat {
    to {
        transform: scale(1.2);
    }
}

#chat-popup {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 120px;
    width: 400px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 9998;
    animation-duration: 0.5s;
    animation-name: slide-up;
  }
  
  @keyframes slide-up {
    from {
        opacity: 20%;
      transform: translateX(10%);
    }
    to {
        opacity: 100%;
      transform: translateX(0%);
    }
  }

#chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #5bbecf;
    font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    color: white;
    padding: 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#chat-header h3 {
    margin: 0;
}

#close-btn {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

#chat-content {
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*align-items: center;*/
    background-color: white;
    padding: 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}