* {
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background-color: rgba(73, 177, 245, 0.2);
}

::-webkit-scrollbar-thumb {
    background-color: #49b1f5;
    background-image: linear-gradient(45deg,
            rgba(255, 255, 255, 0.4) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0.4) 75%,
            transparent 75%,
            transparent);
    border-radius: 1em;
}

img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

html,
body {
    border: 0px solid transparent;
    overflow-x: hidden;
}

.m_display_none {
    display: block !important;
}

.m_display_block {
    display: none !important;
}


@media (max-width: 768px) {
    .m_display_none {
        display: none !important;
    }

    .m_display_block {
        display: block !important;
    }

}


@keyframes pulseAnimations {
    0% {
        transform: translate(-2px, -2px);
        border-radius: 5px;

        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    20% {
        transform: translate(-1px, -1px);
        border-radius: 5px;

    }

    50% {
        transform: translate(0px, 0px);
        border-radius: 5px;
        animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    }

    80% {
        transform: translate(-1px, -1px);
        border-radius: 5px;

    }

    100% {
        transform: translate(-2px, -2px);
        border-radius: 5px;

    }
}