/* 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: 30%;
    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 {

    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;
}

#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;
}

.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;
}

/* Header */

header {

    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}

.header--img {

    position: relative;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.header--img > img {

    height: 100%;
    display: block;
    width: 100%;
}

#header--img-overlay {

    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(0, 0, 0, .5);
}

#header--img-text {

    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    z-index: 11;
    color: #fff;
    flex-direction: row;
}

#header--img-text > div {

    flex: 0 0 100%;
    align-self: center;
    text-align: center;
}

#header--img-title {

    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
}

#header--img-subtitle {

    display: inline-block;
    width: 70%;
    font-size: 16px;
    margin-top: .25em;
}

.server {

    flex: 0 0 50%;
    text-align: center;
    padding: 1em 2em;
    border: solid 1px;
    opacity: .5;
    transition: opacity .15s linear;
    -webkit-transition: opacity .15s linear;
}

.server:hover {

    opacity: 1;
    cursor: pointer;
}

.server--subtitle {

    font-weight: normal;
}

.server.active {

    opacity: 1 !important;
    background: rgba(121, 104, 248, .35);
}

/* Header */

/* Main Content */

.main--content {

    padding: 4em 3em;
    text-align: center;
}

#mobile--content {

    display: none;
}

.no--server {

    font-weight: bold;
    text-align: center;
    margin-top: 2em;
    font-size: 25px;
}

#bedrock--server, #java--server, #mobile_bedrock--server, #mobile_java--server {

    display: none;
}


.server--instructions {

    width: 100%;
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}

.server--instructions-item {

    flex: 0 0 100%;
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    margin: 3em 0;
}

.si--item-centre {

    justify-content: center;
}

.si--item-right {

    justify-content: flex-start;
}

.si--item-left .si--item-text {

    border-top: solid 10px #7761F8;
    border-left: solid 10px #7761F8;
    border-bottom: solid 10px #7761F8;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.si--item-left {

    justify-content: flex-end;
}

.si--item-right .si--item-text {

    border-top: solid 10px #7761F8;
    border-right: solid 10px #7761F8;
    border-bottom: solid 10px #7761F8;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.si--item-img {

    flex: 0 0 40%;
}

.si--item-img > img {

    width: 100%;
    height: 100%;
}

.si--item-text {

    flex: 0 0 35%;
    position: relative;
    align-self: center;
    height: 80%;
    background: #6759d3;
    padding: 2em 1em;
    color: #fff;
}

.item--text-step {

    position: absolute;
    top: -10px;
    left: 20px;
    background: #fbfbfb;
    padding: .25em .75em;
    color: #7761F8;
    text-transform: uppercase;
    font-weight: bold;
}

.si--item-text > h3 {

    font-size: 20px;
}

.si--item-text > p {

    margin-top: 1em;
}

.si--item-text > p > span {

    font-weight: bold;
}

/* Main Content */

/* Footer */

footer {

    display: flex;
    height: 60px;
    margin-top: -60px;
    background: #000;
    justify-content: center;
    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 {

    align-self: center;
    display: inline-block;
    width: 25%;
}

footer > a > img {

    height: 100%;
    width: 100%;
}

/* Footer */

/* Responsive */

/* Responsive */

@media screen and (max-width: 600px) {

    .navbar--brand {

        flex: 1 0 70%;
    }

    .main--content {

        padding: 3em 0em;
    }

}

@media screen and (max-width: 850px) {

    .mobile--menu {

        width: 50%;
    }

    .site--title {

        font-size: 2.5em;
    }

    .site--subtitle {

        width: 80%;
    }

    .server {

        flex: 0 0 100%;
    }

    .server--instructions-img, .server--instructions-text {

        flex: 0 0 100%;
        padding: 0;
    }
}

@media screen and (max-width: 1000px) {

    nav {
        padding: 2em;
    }

    .mobile--nav-icon {
        display: inline-block;
    }

    .navbar--links-list {
        display: none;
    }

    #mobile--content {

        display: block;
    }

    #desktop--content {

        display: none;
    }


    #mobile--content .si--item-img {

        flex: 0 0 100%;
        height: auto;
    }

    #mobile--content .si--item-text {

        flex: 0 0 80%;
        height: auto;
    }

    .si--item-centre .si--item-text {

        border: solid 10px #7761F8;
        border-top: none;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }
}

@media screen and (max-width: 1100px) {


    .si--item-text {

        flex: 0 0 40%;
        height: 90%;
    }
}

@media screen and (min-width: 1500px) {

    .si--item-text {

        flex: 0 0 40%;
    }


    .si--item-text > h3 {

        font-size: 30px;
    }

    .si--item-text > p {

        font-size: 20px;
    }
}

@media screen and (min-width: 1700px) {

    .si--item-text {

        flex: 0 0 40%;
    }

    .si--item-text > h3 {

        font-size: 35px;
    }

    .si--item-text > p {

        font-size: 20px;
    }

}

/* Responsive */