
 .chatbox {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 280px;
    background-color: white;
    border-radius: 30px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;

}

.chatbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background-color: #1dca19;
    border-top-left-radius: 10px;
    border-top-right-radius: 30px;
	 box-shadow: none; /* Quita el sombreado */
    border: none; /* Quita cualquier borde */
}

.chatbox-logo {
    width: 40px;
    height: 40px;
}

.close-button {
    background: none;
    border: none;
    font-size: 20px;
    color: blue;
    cursor: pointer;
}

.chatbox-content {
    padding: 10px;
    text-align: center;
}

.chatbox p {
    margin: 0 0 10px;
    color: #333;
    font-size: 14px;
}

.chatbox-button {
    display: inline-block;
    padding: 8px 35px;
    background-color: #011068;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
}

.chatbox-button:hover {
    background-color: #1233DF;
	color: white;
}

.chatbox-open-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1DCA19; /* Color de fondo verde */
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: none; /* Quita el sombreado */
    border: none; /* Quita cualquier borde */
    z-index: 1000;
    outline: none; /* Quita el borde que aparece al hacer clic */
}


.chatbox-notification {
    
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    margin-left: 5px;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('fonts/BarlowCondensed-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

