@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto/Roboto-Regular.ttf');
}

html {
    overflow: scroll;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 0;
    /* Remove scrollbar space */
    background: transparent;
    /* Optional: just make scrollbar invisible */
}

/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}

html,
body {
    background-color: #282828;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
}

#wrapper {
    max-width: 414px;
    position: relative;
    margin: 0 auto;
    min-height: 100vh;
    transition: all 0.3s;
    top: 0;
    color: #fff;
}

#main {
    position: absolute;
    top: 67px;
    bottom: 0;
}

.bg-quiz-primary {
   background-color: #ee790b;
}

.text-quiz-primary {
    color: #F8891F !important;
}

.bg-color-pink {
	background-color: #BE0191 !important;
}

/* Floating */
@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(14px);
    }

    100% {
        transform: translatey(0px);
    }
}

.float-icons {
    top: 0px;
    right: 88px;
    position: absolute;
    transform: translatey(0px);
    animation: float 3s ease-in-out infinite;
}

#buy-coins-tnc {
    position: absolute;
    top: 40%;
    left: 8%;
    width: 84.5%;
    height: 55%;
}

#buy-coins-tnc ol li {
    margin-left: -20px;
}

@media (max-width: 575.98px) {
    #buy-coins-tnc {
        overflow-y: scroll;
    }
}

/* Oct 28, 2021 */
.bg-home-en {
    background: url(../img/bg-home-en.png) no-repeat center bottom;
    background-size: cover;
    /* background: rgb(237, 165, 30); */
    /* background: radial-gradient(circle, rgba(237, 165, 30, 1) 0%, rgba(251, 134, 8, 1) 50%, rgba(236, 150, 45, 1) 100%); */
}

.bg-home-sw {
    background: url(../img/bg-home-sw.png) no-repeat center bottom;
    background-size: cover;
    /* background: rgb(237, 165, 30); */
    /* background: radial-gradient(circle, rgba(237, 165, 30, 1) 0%, rgba(251, 134, 8, 1) 50%, rgba(236, 150, 45, 1) 100%); */
}

/* Large devices (desktops, less than 1200px) */
@media (min-width: 1200px) {
    #main {
        min-height: 100vh;
    }
}

@media (max-width: 320px) {
    #main {
        min-height: 100vh;
    }
}

@media (max-width: 360px) {
    #main {
        min-height: 100vh;
    }
}