:root {
    --primary_color: #2258bf;
}
::selection {
    color: var(--primary_color);
    background-color: var(--primary_color);
}

/*****************************customize scrollbar**************************/
/*
html::-webkit-scrollbar-button {
    background-image: url "";
    background-repeat: no-repeat;
    width: 19px;
    height: 0px;
}

html::-webkit-scrollbar-track {
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 3px #fff inset;
    box-shadow: 0px 0px 3px #fff inset;
}

html::-webkit-scrollbar-thumb {
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-color: #aaa;
    background-image: url("");
    background-position: center;
    background-repeat: no-repeat;
}

html::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

html::-webkit-resizer {
    background-image: url("");
    background-repeat: no-repeat;
    width: 7px;
    height: 0px;
}

html::-webkit-scrollbar {
    width: 1px;
}
*/


.custom-scroller::-webkit-scrollbar-button {
    background-image: url "";
    background-repeat: no-repeat;
    width: 19px;
    height: 0px;
}

.custom-scroller::-webkit-scrollbar-track {
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 3px #fff inset;
    box-shadow: 0px 0px 3px #fff inset;
}

.custom-scroller::-webkit-scrollbar-thumb {
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: #aaa;
    background-image: url("");
    background-position: center;
    background-repeat: no-repeat;
}

.custom-scroller::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

.custom-scroller::-webkit-resizer {
    background-image: url("");
    background-repeat: no-repeat;
    width: 7px;
    height: 0px;
}

.custom-scroller::-webkit-scrollbar {
    width: 8px;
}
/*****************************customize scrollbar**************************/

/**************************input text with no arrow********************************/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
/*********************************************************************************/

/*****************************input text placeholder*********************************/
/*input::-webkit-input-placeholder { /!* Chrome/Opera/Safari *!/
    font-style: italic;
}
input::-moz-placeholder { /!* Firefox 19+ *!/
    font-style: italic;
}
input:-ms-input-placeholder { /!* IE 10+ *!/
    font-style: italic;
}
input:-moz-placeholder { /!* Firefox 18- *!/
    font-style: italic;
}*/
/*********************************************************************************/
.toast{
    font-size: 0.9rem;
}

/*beautiful button:   https://webdeasy.de/en/top-css-buttons-en/*/
.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}
.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -1px;
    left:-1px;
    background-size: 400%;
    z-index: -1;
    filter: blur(1px);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    opacity: 1;
    transition: opacity .3s ease-in-out;

    border-radius: 10px;
}
.glow-on-hover:active {
    color: #000
}
.glow-on-hover:active:after {
    background: transparent;
}
.glow-on-hover:hover:before {
    opacity: 1;
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    animation: glowing 20s linear infinite;
}
.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/*gradient font color*/
.gradient-font-style{
    -moz-background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: -moz-linear-gradient(45deg, rgba(81,163,255,0.6) 0%, rgba(81,163,255,0.6) 40%, rgba(215,32,51,0.6) 61%, rgba(215,32,51,0.6) 100%);
    background-image: linear-gradient(45deg, rgba(81,163,255,0.6) 0%, rgba(81,163,255,0.6) 40%, rgba(215,32,51,0.6) 61%, rgba(215,32,51,0.6) 100%);
}
.flex-space-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
