body {
    font-family: 'Inter', sans-serif;
    /* background-color: #EDF0F7; */
}

a {
    color: #DC4C64;
}
a:hover {
    color: #DC4C64;
}

a:not(.sidenav-link):not(.btn):not(.dropdown-item):not(.nav-link):not(.navbar-brand):not(.page-link):not(.carousel-control-prev):not(.carousel-control-next) {
    color: #DC4C64;
}

a:not(.sidenav-link):not(.btn):not(.dropdown-item):not(.nav-link):not(.navbar-brand):not(.page-link):not(.carousel-control-prev):not(.carousel-control-next):hover {
    color: #DC4C64;
}

/* .input-group.has-validation>.dropdown-toggle:nth-last-child(n+4), .input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu), .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;

    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;

    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
} */

.box {
    max-width: 576px;
}

.navbar {
    background-color: white;
}

.banner {
    position: relative;
    background-image: url(/static/lp/img/bg-game.png);
    background-size: contain;
    animation-name: animate-bg;
    animation-timing-function: linear;
    animation-duration: 2000s;
    animation-iteration-count: infinite;
    animation-direction: normal;
}

.section {
    padding-top: 24px;
    padding-bottom: 24px;
}
.section-smoke {
    background-color: #E7E7E7;
    color: #606060;
}
.section .section-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.65rem;
}

.term {
    font-size: 0.875rem;
    line-height: 1.35rem;
    text-align: center;
    opacity: 0.85;
}
.term ol li {
    margin-bottom: 0.25rem;
}
.term ol li:last-child {
    margin-bottom: 0;
}

.card .card-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1.125rem;
    line-height: 1.65rem;
}

.btn-lg {
    font-size: 1rem;
    font-weight: bold;
}

.content {
    position: relative;
    min-height: 140px;
}

.loading {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(225, 225, 225, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
}

@keyframes animate-bg {
	100% {background-position: 100000px 0}
}
@-webkit-keyframes animate-bg {
	100% {background-position: 100000px 0}
}
@-moz-keyframes animate-bg {
	100% {background-position: 100000px 0}
}
@-o-keyframes animate-bg {
	100% {background-position: 100000px 0}
}

@keyframes blur {
    from {
        transform: translate(0) rotate(45deg);
    }
    to {
        transform: translateX(370px) rotate(45deg);
    }
}