::-webkit-scrollbar {
    width: 6px;
    border-radius: 10px;
}
::-webkit-scrollbar-track {
    background-color: #F1F1F1;
}
::-webkit-scrollbar-thumb {
    background-color: #888888;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #555555;
}
input::-ms-reveal,
input::-ms-clear {
    display: none;
}
* {
    touch-action: manipulation;
}
body {
    background-image: linear-gradient(to bottom,#DDE1F2,#ECEDF7);
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.splashscreen {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.splashscreen > img {
    max-width: 60%;
    pointer-events: none; 
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
} 
.splashscreen > noscript {
    position: absolute;
    bottom: 43px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: #0085FF;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}   