:root {
    --text-card: #252b41a3;
    --red-color: #f03232;
}

html,
body {
    font-family: "Poppins", sans-serif !important;
}

input,
button,
textarea,
select {
    font-family: inherit;
}

.text-card-color {
    color: var(--text-card) !important;
}

/* Skeleton Pulse */

.skeleton-line {
    font-size: 0;
    color: transparent;
    pointer-events: none;
    line-height: 1;
    background-color: #e0e0e0;
    border-radius: 4px;
    display: block;
    animation: skeleton-pulse 1.5s infinite ease-in-out;
}

@keyframes skeleton-pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

/* end Skeleton Pulse */

/* Header agent */

#pauses ul .menu-text {
    font-size: 1rem !important;
}

#queues ul .menu-text {
    font-size: 1rem !important;
}
/* end Header agent */

/* Tooltip */
.tooltip .tooltip-inner {
    background: #fff !important;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15) !important;
    color: #000 !important;
    font-size: 12px !important;
    font-family: "Montserrat", Arial;
    font-weight: 500;
}

.tooltip .arrow::before {
    border-bottom-color: #fff;
}
/* end Tooltip */

/* Icons layout */
.icon-layout {
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.edit-table-icon {
    color: black;
    cursor: pointer;
    background: #2826261a;
}

.delete-table-icon {
    color: var(--red-color);
    cursor: pointer;
    background: #e35c5c24;
}

.play-audio-icon {
    color: var(--red-color) !important;
    font-size: 1.2rem;
}

.download-audio-icon {
    color: rgb(181, 181, 181) !important;
    transition: all 0.3s ease-in-out !important;
    font-size: 1.2rem;
}

.download-audio-icon:hover,
.play-audio-icon:hover {
    color: var(--red-color) !important;
    background: #edf2f7 !important;
}

/* end Icons layout */

/* Select min-width */
.select2-container--default .select2-dropdown {
    min-width: 200px;
}
/* end Select min-width */

.form-control {
    text-align: left !important; 
}
