:root {
    --bg-color1: #f3f6f3;
    --bg-color2: #f5f5f5;
    --bg-color3: #00CCBC;
    --text1: #010B10;
    --text-light: #fffffe;

    --success: #00f2c3;
    --info: #1d8cf8;
    --warning: #ff8d72;
    --danger: #fd5d93;
}

.bg-success {
    background-color: var(--success) !important;
}

.pointer {
    cursor: pointer;
}

html, body {
    background: var(--bg-color1);
    height: 100%;
    color: var(--text1);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1em;
    padding: 0px;
    font-size: 0.9em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--bg-color1);

}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--bg-color2);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--text1);
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                     supported by Chrome, Edge, Opera and Firefox */
}

span {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                     supported by Chrome, Edge, Opera and Firefox */
}

input[type=text], input[type=password], input[type=email], input[type=tel], input[type=search], input[type=email], input[type=url], select, textarea {
    background: var(--bg-color2) !important;
    border-color: var(--bg-color2) !important;
    border-radius: 8px !important;
    color: black !important;
    height: 30px !important;

}

.icon-hover {
    padding: 5px;
    cursor: pointer;
    transition: all ease-in-out 300ms;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.icon-hover:hover {
    background-color: var(--success);
    color: white !important;
    border-radius: 50px;
}

::-webkit-calendar-picker-indicator {
    background-color: var(--success);
    padding: 5px;
    cursor: pointer;
    border-radius: 3px;
}

.mini-btn {
    font-size: 1em;

    padding: 8px !important;
}

.mini-input {
    height: 25px !important;
    font-size: 0.8em;
    border-radius: 4px !important;
}

.text-07 {
    font-size: 0.7em !important;
}

.text-08 {
    font-size: 0.8em !important;
}

.text-09 {
    font-size: 0.9em !important;
}

.text-ico-06 {
    font-size: 1.6em !important;
}

.text-ico-05 {
    font-size: 1.5em !important;
}

.text-ico-04 {
    font-size: 1.4em !important;
}

.text-ico-03 {
    font-size: 1.3em !important;
}

.text-ico-02 {
    font-size: 1.2em !important;
}

.text-ico-01 {
    font-size: 1.1em !important;
}

.rounded {
    border-radius: 10px !important;
}

.font-weight-bold-500 {
    font-weight: 500;
}