@import url('https://fonts.cdnfonts.com/css/rawline');

.chatbot-window *, input, button {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
}

.chatbot-window {
    font-family: 'Rawline', sans-serif;
    position: fixed;
    bottom: 15vh;
    right: 1.5vh;
    width: 120px;
    height: 105px;
    z-index: 9999;
    cursor: pointer;
}

.chatbot-icon {
    width: 120px;
    height: 105px;
}

.chatbot-window-close {
    display: none !important;
}

.chatbot-button-remove {
    z-index: 100000;
    position: absolute;
    top: 0;
    right: -0.8vh;
    margin-top: -25px;
    padding-bottom: 1px;
    width: 20px;
    height: 20px;
    border: 2px solid #071D41;
    border-radius: 50%;
    background: #fff;
    color: #071D41;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chatbot-body-alerta {
    position: fixed;
    bottom: 1.5vh;
    right: 1.5vh;
    width: 420px;
    height: 85%;
    border: 1px solid #000;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.chatbot-body {
    position: fixed;
    bottom: 1.5vh;
    right: 1.5vh;
    width: 400px;
    height: 70%;
    border: 1px solid #000;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

@media screen and (max-height: 768px) {
    .chatbot-body {
        height: 95%;
    }
    .chatbot-body-alerta {
        height: 85%;
    }
}

.chatbot-body-hide {
    display: none;
}

.chatbot-header {
    background-color: #071D41;
    width: 100%;
    height: 50px;
    border-radius: 8px 8px 0px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.chatbot-avatar {
    width: 35px;
    height: 35px;
    margin: 20px;
}

.chatbot-name {
    font-size: 13px;
    color: #fff;
    text-align: center;
    font-weight: 400;
    margin-right: 20px;
}

.chatbot-window-button-close {
    float: right;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    color: white;
    padding-right: 15px;
}

.chatbot-frame {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0px 0px 8px 8px;
}

.alerta-cookies {
    background-color: #fff;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0px 0px 8px 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    font-size: 1.3rem;
}


@media screen and (max-width: 768px) {
    .chatbot-body {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0px;
    }

    .chatbot-header {
        border-radius: 0px;
    }
}
