/* Begin - Scrollbar styles */

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    width: 2px;
    border: 1px dashed #ed8322;
}

::-webkit-scrollbar-thumb {
    background-color: #ed8322;
    background-image: -webkit-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
}

::-webkit-scrollbar-thumb:hover {
    background: #ff9f43;
    background-image: -webkit-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
}

/* End - Scrollbar styles */

body {
    cursor: default;
}

.cursor-not-allowed {
    cursor: not-allowed !important;
}

.vs__selected,
.flatpickr-monthSelect-month,
.apexcharts-menu-icon,
.con-vs-avatar,
.vs-table-text,
.vs-radio--label,
.vs-radio,
#qr_code,
a,
input,
select,
button,
.mouse-pointer::after,
#dark_mode,
#algolia-content-container .vs-list--item {
    cursor: pointer !important;
}

.toggle-song {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.toggle-song__btn {
    border: none;
    background-color: transparent;
    color: #ed8322;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
}

.toggle-song__btn:focus {
    outline: none;
}

.toggle-song__btn:hover,
.toggle-song__btn:focus {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    opacity: 0.7;
}

.toggle-song__text {
    font-size: 14px;
    color: #ed8322;
    margin-left: 8px;
}

.gg-play-button-o,
.gg-play-pause-o {
    box-sizing: border-box;
    position: relative;
    display: block;
    -webkit-transform: scale(var(--ggs, 1));
    transform: scale(var(--ggs, 1));
    width: 22px;
    height: 22px;
    border: 2px solid;
    border-radius: 22px;
}

.gg-play-button-o::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 0;
    height: 10px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid;
    top: 4px;
    left: 7px;
}

.gg-play-pause-o::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 6px;
    height: 6px;
    left: 6px;
    top: 6px;
    border-left: 2px solid;
    border-right: 2px solid;
}

.cursor-hide {
    cursor: unset !important;
}

.description-intro {
    margin: 10px;
    text-align: center;
    font-weight: bold;
}

.sub-description-intro {
    text-align: center;
    font-weight: normal;
}

.default-cursor {
    cursor: default !important;
}

.button-picker {
    border-top-left-radius: 0 !important;
    margin-left: -5px;
    border-bottom-left-radius: 0 !important;
}

.input-picker {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.color-href {
    color: #626262 !important;
}

.mouse-pointer {
    cursor: pointer !important;
}

.wrapper {
    position: relative;
}

.regular-input:focus {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

.emoji-invoker {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0.4;
}
.emoji-invoker:hover {
    transform: scale(1.1);
    opacity: 1;
}
