/* ==========================================
   Syria Bot
========================================== */

#syria-bot-floating {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Chat Box */

#syria-bot-box {
    display: none;
    flex-direction: column;
    width: 320px;
    margin-bottom: 10px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .2);
}

/* Open */

#syria-bot-floating.open>#syria-bot-box {
    display: flex !important;
}

/* Header */

.syria-bot-header {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
}

/* Welcome */

#syria-bot-welcome {
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 10px;
    background: #f4f7ff;
    color: #333;
    font-size: 14px;
    line-height: 1.8;
}

/* Question */

#syria-bot-question {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

/* Button */

#syria-bot-send {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: 0;
    border-radius: 8px;
    background: #124ee6;
    color: #fff;
    cursor: pointer;
}

/* Answer */

#syria-bot-answer {
    margin-top: 15px;
    line-height: 1.8;
}

/* Floating Icon */

#syria-bot-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #124ee6;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .3);
    transition: transform .25s, background .25s;
}

#syria-bot-toggle:hover {
    transform: scale(1.08);
    background: #0d3fc2;
}

/* Order */

.syria-bot-header {
    order: 1;
}

#syria-bot-welcome {
    order: 2;
}

#syria-bot-question {
    order: 3;
}

#syria-bot-send {
    order: 4;
}

#syria-bot-answer {
    order: 5;
}

/* Mobile */

@media (max-width:480px) {

    #syria-bot-box {
        width: 280px;
    }

}