/* Variables */
:root {
    --primary-color: #b079e4;
    --secundary-color: #1e2083;
    --lightBlue-color: #dedfff;
    --lightBlue-colorPlus: #f9f9ff;
    --lightPurple-color: #f8f1ff;
}

/* GENERAL */

body {
    min-height: 100vh;
    background-color: #fff;
    /* -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none;  */
}

#main-container {
    min-height: 100vh !important;
    font-family: "Poppins" !important;
}

/* MENU */
#menu {
    background-color: #4c2a6d;
    min-height: 100%;
    height: auto !important;
    height: 100%;
    border-radius: 0px 16px 16px 0px;
}

/* Boton del menu */
.button-menu {
    color: #ffffff;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-align: left;
    text-transform: none;
}

a.button-menu:hover {
    background-color: #a67fcc;
    font-weight: bold;
    color: #ffffff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

#menu-item {
    border: none !important;
    background-color: transparent !important;
}

/* Background side-navbar */
.side-navbar {
    height: 100%;
    position: fixed;
}
/* button  */
button {
    margin: 40px;
    padding: 5px 20px;
    cursor: pointer;
}

/* SPINNER */
#cover-spin {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#cover-spin::after {
    content: "";
    display: block;
    position: absolute;
    left: 48%;
    top: 40%;
    width: 40px;
    height: 40px;
    border-style: solid;
    border-color: var(--primary-color);
    border-top-color: transparent;
    border-width: 4px;
    border-radius: 50%;
    -webkit-animation: spin 0.8s linear infinite;
    animation: spin 0.8s linear infinite;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(219, 218, 218);
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
/* * { border: 1px solid red; } */

/* .btn:focus, .btn-large:focus, .btn-small:focus, .btn-floating:focus {
    background-color: #4C2A6D;
} */

.btn:focus,
.btn-large:focus,
.btn-small:focus,
.btn-floating:focus {
    background-color: transparent;
}

/* Bullets */
#chat-bullet{
    position: relative;
    left: -5%;
    bottom: 20%;
}

#notification-bullet{
    position: relative;
    left: -5%;
    bottom: 20%;
}

.has-story{
    background: linear-gradient(#4C2A6D, #4C2A6D) padding-box,
                linear-gradient(30deg, #01D1FF, #6640FF, #E545FF) border-box;
    border-radius: 50em;
    border: 4px solid transparent;
    padding: 1px !important;
}

.viewed-all-stories{
    background: linear-gradient(#4C2A6D,#4C2A6D) padding-box,
                linear-gradient(to right, #c3c3c3, #c3c3c3, #c3c3c3) border-box;
    border-radius: 50em;
    border: 4px solid transparent;
    padding: 1px !important;
}
