@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
@import url(https://fonts.googleapis.com/css?family=Oswald:200,300,regular,500,600,700);

html,
body {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

.oswald {
    font-family: 'Oswald', sans-serif;
}

.hideScrollbar::-webkit-scrollbar {
    display: none !important;
}

.hideScrollbar {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.toastify {
    max-width: calc(75% - 20px) !important;
}

#chatToggleBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--color-purpleClr);
    border: none;
    cursor: pointer;
    font-size: 26px;
    color: #fff;
    z-index: 999999;
}

#chatPopup {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 300px;
    height: 420px;
    background: #1d1c21 !important;
    border: 1px solid #38285c;
    border-radius: 14px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 999999;
}

#chatPopupHeader {
    background: var(--color-purpleClr);
    padding: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

#chatMessages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    scrollbar-width: none;
}

#chatMessages div {
    max-width: 80%;
}

.msg-user {
    margin-left: auto;
    background: var(--color-purpleClr);
    color: white;
    padding: 8px 10px;
    border-radius: 10px;
    border-bottom-right-radius: 0;
    font-size: 13px;
    margin-bottom: 12px;
}

.msg-admin {
    margin-right: auto;
    background: #2e2a32;
    color: #eee;
    padding: 8px 10px;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    font-size: 13px;
}

.admin-timestamp {
    font-size: 10px;
    color: #999;
    display: inline-block;
    margin-bottom: 12px;
}

#chatForm {
    display: flex;
    border-top: 1px solid #38285c;
}

#chatForm textarea {
    flex: 1;
    resize: none;
    background: transparent;
    color: white;
    padding: 8px;
    border: none;
    height: 42px;
    font-size: 13px;
}

#chatForm button {
    background: var(--color-purpleClr);
    border: none;
    padding: 0 14px;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

@media (width<=640px) {
    #chatToggleBtn {
        right: 16px;
        bottom: 86px;
    }

    #chatPopup {
        bottom: 152px;
        right: 16px;
    }
}