/* Font */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');
/* Font */

* {

    padding: 0;
    margin: 0;
    box-sizing: border-box;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

html, body {

    width: 100%;
    min-height: 100vh;
}

body {

    position: relative;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    background: #FBFBFB;
    animation:  overflow .5s linear;
    -webkit-animation:  overflow .5s linear;
    -moz-animation:  overflow .5s linear;
    -o-animation:  overflow .5s linear;
}

@keyframes pulse {

    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    75% {

        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes pulse {

    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    75% {

        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeIn {

    from {

        top: 25px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {


    from {

        top: 25px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

@keyframes overflow {
    from {
        overflow: hidden;
    }
    to {
        overflow: hidden;
    }
}

@-webkit-keyframes overflow {
    from {
        overflow: hidden;
    }
    to {
        overflow: hidden;
    }
}

/* Site Popup */

.site--popup {

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform-origin: center;
    -webkit-transform-origin: center;
    background: #fff;
    padding: 1em 2em;
    width: 40%;
    z-index: 999;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .5);
    border-radius: 5px;
    text-align: right;
    transition: transform .2s ease-in;
    -webkit-transition: transform .2s ease-in;
}

.site--popup-show {

    transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
}

.site--popup-content {

    position: relative;
    width: 100%;
}

.popup--content-text {

    padding: 5em 1em;
    text-align: center;
}
.popup--content-text > h1 {

    font-size: 1.75em;
}

.popup--content-text > p {

    opacity: .5;
    margin-top: .5em;
}

.close--popup {

    position: absolute;
    right: 0;
    bottom: 0;
    background: #6759d3;
    color: #fff;
    text-decoration: none;
    padding: .5em 1em;
    border-radius: 3px;
}

/* Site Popup */

/* Body */

.wrapper {

    position: relative;
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    min-height: 100vh;
    z-index: 10;
    padding-bottom: 60px;
    opacity: 0;
    animation: fadeIn .5s ease-in forwards;
    -moz-animation: fadeIn .5s ease-in forwards;
    -o-animation: fadeIn .5s ease-in forwards;
    -webkit-animation: fadeIn .5s ease-in forwards;
}

nav {

    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    flex-wrap: nowrap;
    padding: 3em 5em;
    flex: 0 0 auto;
}

.navbar--brand {

    flex: 0 1 auto;
    align-self: center;
}

.navbar--brand > a {

    display: block;
    height: auto;
    width: auto;
}

.navbar--brand > a > img {

    width: 100%;
    height: 100%;
}

.navbar--links {

    flex: 1 0 auto;
    text-align: right;
    align-self: center;
}

.navbar--links-list {

    list-style: none;
    padding-left: 0;
}

.navbar--links-item {

    display: inline-block;
    padding: .5em 1.75em;
}

.navbar--links-item > a {

    color: #000;
    text-decoration: none;
    font-size: 1em;
    text-transform: uppercase;
    font-weight: bold;
}

#player--count > #symbol {

    display: inline-block;
    background: #7761F8;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    animation:  pulse 1s linear alternate infinite;
    -webkit-animation:  pulse 1s linear alternate infinite;
    -moz-animation:  pulse 1s linear alternate infinite;
    -o-animation:  pulse 1s linear alternate infinite;
}

#player--count {

    position: relative;
    font-weight: bold;
    padding-top: .5em;
    text-transform: uppercase;
}

#player--count:hover {

    cursor: pointer;
}

#player--count:hover .tooltip {

    visibility: visible;
}

.tooltip {

    position: absolute;
    bottom: 0;
    left: 0;
    top: calc(100% + 20px);
    visibility: hidden;
    z-index: 9999;
}

.tooltip > div {

    position: relative;
    background: rgba(0, 0, 0, .75);
    color: #fff;
    border-radius: 10px;
    padding: .75em 1em;
}

.tooltip > div::before {

    content: "";
    position: absolute;
    top: -7px;
    left: 0;
    right: 0;
    margin: auto;
    background: rgba(0, 0, 0, .75);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    height: 7px;
    width: 15px;
}

.tooltip span {

    display: block;
    margin: .25em 0;
}

.mobile--nav-icon { display: none }

.mobile--nav-icon:hover { cursor: pointer }

.mobile--nav-icon > span {

    display: block;
    width: 25px;
    height: 3px;
    background: #000;
    margin: .75em 0;
    transition: transform .15s ease-out;
}

#mn1 {

    margin-top: 0;
}

#mn2 {
    margin-bottom: 0;
}

.rotate--nav-icon1 {

    transform: translateY(12px) rotate(45deg);
    -webkit-transform: translateY(12px) rotate(45deg);
}

.rotate--nav-icon2 {

    transform: translateY(-2px) rotate(-45deg);
    -webkit-transform: translateY(-2px) rotate(-45deg);
}

.mobile--menu {

    position: absolute;
    top: 0;
    left: -200%;
    background: rgba(0, 0, 0, .75);
    height: 100%;
    z-index: 999;
    padding: 2em 3em;
    width: 30%;
}

.mobile--menu-list {

    list-style: none;
    padding-left: 0;
}

.mobile--menu-item {

    margin: 2em 0;
}

.mobile--menu-item > a {

    color: #fff;
    text-decoration: none;
}

.main {

    position: relative;
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    text-align: center;
    flex: 1 0 auto;
    justify-content: center;
}

.main--content {

    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex: 0 0 100%;
    height: 100%;
    width: 90%;
    align-self: center;
    transform: translateY(-10%);
    -webkit-transform: translateY(-10%);
}

.main--content a {
    text-decoration: none;
    color: #7761F8;
}

.main--content-text {

    flex: 0 0 45%;
    align-self: center;
}

.main--content-servers {

    flex: 0 0 55%;
    justify-content: center;
}

.site--title {

    font-size: 40px;
    margin-top: .25em;
    margin-bottom: .5em;
}

.site--subtitle {

    display: inline-block;
    width: auto;
    max-width: 70%;
    font-size: 16px;
}

#welcome--top {

    display: inline-block;
    font-weight: bold;
}

.blue--highlight {

    background: #7761F8;
    color: #fff;
    text-transform: uppercase;
    padding: .25em .5em;
}

#join--button {

    text-align: center;
    margin-top: 1em;
}

#join--button > a {

    display: inline-block;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: transform .15s linear;
    -webkit-transition: transform .15s linear;
    padding: .75em 1em;
    border-radius: 20px;
}

#join--button > a:hover {

    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.main--content-servers {

    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.servers--item {

    position: relative;
    flex: 0 0 40%;
    padding: 1em;
    transition: transform .15s linear;
    -webkit-transition: transform .15s linear;
}

.servers--item:hover {

    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.servers--item > a {

    position: relative;
    display: block;
    height: 100%;
    max-width: 100%;
}

.servers--item > a > img {

    width: 100%;
    height: 100%;
}


/* Body */

/* Footer */

footer {

    height: 60px;
    margin-top: -60px;
    display: flex;
    justify-content: flex-end;
    background: #6759d3;
    padding: 0 1em;
    opacity: 0;
    animation: fadeIn .5s ease-in forwards;
    -moz-animation: fadeIn .5s ease-in forwards;
    -o-animation: fadeIn .5s ease-in forwards;
    -webkit-animation: fadeIn .5s ease-in forwards;
}

footer > a {

    display: inline-block;
    width: 15%;
    align-self: center;
    z-index: 999;
}

footer > a > img {

    height: 100%;
    width: 100%;
}
/* Footer */

/* Responsive */

@media screen and (max-width: 600px) {

    .navbar--brand {

        flex: 1 0 70%;
    }

    .site--popup {

        width: 80%;
    }

    footer > a {
        width: 50%;
    }

    .main--content-servers {

        justify-content: center;
    }

    .servers--item {

        flex: 0 0 75%;
    }

}

@media screen and (max-width: 850px) {

    .site--title {

        font-size: 2.5em;
    }

    .site--subtitle {

        width: 80%;
    }

    footer > a {
        width: 30%;
    }

}

@media screen and (max-width: 1000px) {

    nav {
        padding: 2em;
    }

    .mobile--nav-icon {
        display: inline-block;
    }

    .navbar--links-list {
        display: none;
    }

    .main--content-servers, .main--content-text {

        flex: 0 0 100%;
    }

    .main--content {

        transform: translateY(0);
        -webkit-transform: translateY(0);
    }

}

@media screen and (max-width: 1100px) {

    .main--content {

        top: 50%;
    }
}

@media screen and (min-width: 1500px) {

    .site--title {

        font-size: 50px;
        margin-bottom: .25em;
    }

    .site--subtitle {

        font-size: 20px;
    }

    #welcome--top {

        font-size: 20px;
    }
}

@media screen and (min-width: 1700px) {


    .site--title {

        font-size: 65px;
    }

    .site--subtitle {

        font-size: 22px;
    }

    #welcome--top {

        font-size: 20px;
    }

    #join--button > a {

        font-size: 20px;
    }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .main--content{
        max-width: 400px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .main--content{
        max-width: 400px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .main--content{
        max-width: 600px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .main--content{
        max-width: 700px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .main--content{
        max-width: 1100px;
    }
}

/* Responsive */

.main--rules{
    text-align: left;
}

.rules--intro{
    padding-bottom: 1.5rem;
}

.rules--outro{
    padding-top: 1.5rem;
}
/* collapsible */

/* Style the button that is used to open and close the collapsible content */
.collapsible {
    background-color: #7761F8;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

.collapsible:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #ffffff;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
    background-color: #5137fc;
}

/* Style the collapsible content. Note: hidden by default */
.content {
    padding: 0px 18px;
    background-color: #d4ceff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.content p {
    padding: 8px 0;
}