@media only screen and (max-width: 992px) {

	.pc {
		display: none;
	}

    .mobile {
		display: block;
	}
	
}

@media only screen and (min-width: 992px) {

	.pc {
		display: block;
	}

    .mobile {
		display: none;
	}
	
}

@media only screen and (max-width: 456px) {

	.lang-style {
		display: none;
	}

    .bordered {
        border: none;
    }
	
}

@media only screen and (min-width: 456px) {

	.lang-style {
        display: flex;
        align-items: center;
	}
	
    .bordered {
        border-radius: 10px;
    }
}

@media only screen and (max-width: 466px) {

	.arrow {
		font-size: 15px;
	}
}

@media only screen and (max-width: 768px) {

	.donor-perks-img {
		max-width: 100%;
	}

    .mm-input {
        max-width: 180px;
        min-width: 180px;
    }
}

@media only screen and (min-width: 768px) {

	.donor-perks-img {
		max-width: 100%;
	}
}

.child-body {
    overflow-x: hidden;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-family: "Rubik", sans-serif;
    background-color: rgb(199, 132, 70);
    background-blend-mode: multiply;
    background-image: url('/images/background/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    
}

body {
    overflow-x: hidden;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-family: "Rubik", sans-serif;
    background-color: rgb(20, 20, 20);
}

.content {
}

button {
    border: none;
    border-radius: 4px;
    color: rgb(199, 199, 199);
    background-color: rgb(54, 54, 54);
}

.button-small {
    padding: 2px;
    min-height: 40px;
    max-height: 40px;
    min-width: 40px;
    max-width: 40px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    display: inline-block;
}

.dropdown {
    padding-top: 12px;
    padding-left: 12px;
    padding-right: 12px;
    position: absolute;
    transform: translateX(-120px);
    display: none;
    border: 1px solid #0e0e0e;
    border-radius: 10px;
    background-color: rgb(34, 34, 34);
}

.dropdown-li {
    color: rgb(10, 10, 10);
    display: block;
}

.servers-on {
    font-size: 12px;
}

.server {
    word-wrap: break-word;
    padding: 25px;
    border-radius: 20px 20px 0 0;
    max-width: 120px;
    min-width: 115px;
    background-color: rgb(230, 164, 22);
}

.player-count {
    min-height: 30px;
    max-height: 30px;
    max-width: 120px;
    padding-top: 5px;
    border-radius: 0 0 20px 20px;
    background-color: rgb(165, 120, 22);
}

a {
    color: rgb(240, 240, 240);
}

a:focus {
    color: rgb(240, 240, 240);
}

.no-action {
	pointer-events: none;
	user-select: none;
}

.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}

.logo-medium {
    width: 150px;
}

.nav-style {
    -webkit-box-shadow: 0px 7px 13px -7px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 7px 13px -7px rgba(0, 0, 0, 1);
    box-shadow: 0px 7px 13px -7px rgba(0, 0, 0, 1);
    padding: 5px;
    min-height: 70px;
    background-color: rgb(32, 32, 32);
}

.footer-container {
    padding: 5px;
    min-height: 70px;
    background-color: rgb(32, 32, 32);
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
	margin-left: 5px;
}

.clear-align {
    clear: both;
}

.font-small {
    font-size: 12px;
}

.palette-darker {
    background-color: rgba(20, 20, 20, 0.849);
}

.tp-input {
    border: none;
    font-size: 18px;
    background-color: rgb(223, 223, 223);
    color: rgb(44, 44, 44);
    padding: 12px;
    margin: 10px;
    border-radius: 10px;
    width: 25%;
}

.s-input {
    border: none;
    font-size: 18px;
    background-color: rgb(241, 181, 50);
    color: black;
    padding: 12px;
    margin: 10px;
    border-radius: 10px;
}

#youtube-board {
    fill: rgb(17, 16, 16);
    transition: all 0.8s ease;
}

.youtube-text {
    transition: opacity 0.8s;
    transition: all 0.8s ease;
}

#youtube-logo {
    transition: all 0.8s ease;
    transform: translate(-216px, -216px);
    transform-origin: calc(50% + 216px) calc(50% + 216px);
}

svg:hover #youtube-board {
    fill: rgb(219, 39, 39);
}

svg:hover .youtube-text {
    opacity: 100%;
}

svg:hover #youtube-logo {
    transform: translate(-216px, -216px) scale(0.6) translateY(-120px);
}

.arrow-animation {
    transition: all 0.8s ease;
    transform-origin: 50% 50%;
}

.arrow-active {
    transform: rotate(180deg);
}
