:root {
    --lightcolor: #efefef;
    --green-900: #22543d;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #272727;
    background-image: url( ../img/bg2.jpg );
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
	backdrop-filter: blur(1px) saturate(180%);
	-webkit-backdrop-filter: blur(1px) saturate(180%);
	box-shadow: 0 16px 48px rgba(31,38,135,0.1), inset 0 4px 20px rgba(255,255,255,0.2);
	color: #FFF;
	text-shadow: #000 1px 0 5px;
    font-family: Open Sans,sans-serif;
	z-index: -1;
}

img {
	pointer-events: none;
}

a {
    transition: all 0.2s ease;
}

.no-select {
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
	-o-user-select: none;
    user-select: none;
}

#serverPlaynow span {
    color: #FFF !important;
}

.layoutfooter, .layoutfooter a {
    color: #27EEF5;
	text-shadow: #000 1px 0 5px;
}

.layoutfooter .footer-links {
	margin: auto;
    width: 400px;
	padding: 15px;
}

.cbsitehover {
    height: 100%;
    width: 100%;
    transition: all 0.5s ease;
}
    .cbsitehover2 {
        overflow: hidden;
    }
    .cbsitehover:hover {
        transform: scale(1.15);
    }

.ccdiscordjoin {
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
    .ccdiscordjoin:after {
        content: '\25B8';
        position: absolute;
        opacity: 0;
        top: 0;
        right: -20px;
        transition: 0.5s;
    }
    button.ccdiscordjoinpre:hover span {
    padding-right: 20px;
    }
    button.ccdiscordjoinpre:hover .ccdiscordjoin:after {
        opacity: 1;
        right: 0;
    }

.ccinfoframe {
    width: 100%;
    height: 60vh;
    min-height: 600px;
    max-height: 900px;
	color: #000;
	text-shadow: #222 1px 0 5px;
}
.ccinfoframe  h1 {
    font-size: 21px;
	font-style: bold;
	margin: 15px;
}
.ccinfoframe  p {
    font-size: 18px;
	margin: 15px;
}

.ccmorecells {
    height: 200px;
}

@media screen and (min-width: 1024px) {
    .ccinfoframe {
        width: 500px;
        height: 60vh;
        min-height:600px;
        max-height: 900px;
    }
    .ccmorecells {
        height: 400px;
    }
}

.glass {
    position: relative;
	border-radius: 18px;
	overflow:hidden;
	isolation: isolate;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(18px) saturate(160%) brightness(115%);
    -webkit-backdrop-filter: blur(18px) saturate(160%) brightness(115%);
    box-shadow: 0 6px 30px rgba(2, 8, 23, .35);
    outline: 1px solid rgba(255,255,255,.08);
	outline-offset: -1px;
}
.glass::before {
    content: "";
	position: absolute;
	inset: -140px -140px;
	pointer-events: none;
	z-index: 0;
    background: radial-gradient(800px 480px at 0% 0%, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 60%),conic-gradient(from 120deg at 60% -10%, rgba(255,255,255,.35), rgba(255,255,255,0) 25% 70%, rgba(255,255,255,.35) 100%);
    mix-blend-mode: overlay;
	filter: blur(20px) saturate(120%);
	opacity:.6;
	transition: opacity .25s ease;
}
.glass:hover::before { opacity: .8 }
.glass.liquid::after {
    content: "";
	position: absolute;
	inset: -2px;
	pointer-events: none;
	border-radius: inherit;
	z-index:1;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(calc(18px *.9)) saturate(160%) brightness(115%);
    -webkit-backdrop-filter: blur(calc(18px *.9)) saturate(160%) brightness(115%);
    filter: blur(calc(18px *.9)) saturate(160%) brightness(115%);
    opacity: .9;
	mix-blend-mode: screen;
    -webkit-mask: radial-gradient(260px 260px at 0 0, #000 72%, transparent 72.5%),radial-gradient(260px 260px at 100% 0, #000 72%, transparent 72.5%),radial-gradient(260px 260px at 0 100%, #000 72%, transparent 72.5%),radial-gradient(260px 260px at 100% 100%, #000 72%, transparent 72.5%),linear-gradient(#000,#000);
    -webkit-mask-composite: source-over, source-over, source-over, source-over, xor;
    mask-composite: add;
}
#index-ajax {
    display: none;
}
#snackbar {
    visibility: hidden;
    min-width: 8em !important;
    margin-left: -4em !important;
    text-align: center !important;
    position: fixed !important;
    z-index: 30 !important;
    left: 50% !important;
    top: 30px !important;
	background: rgba(0,0,0,0.5) !important;
}
#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2s;
    animation: fadein 0.5s, fadeout 0.5s 2s;
}
@-webkit-keyframes fadein {
    from {top: 0; opacity: 0;} 
    to {top: 30px; opacity: 1;}
}
@keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 30px; opacity: 1;}
}
@-webkit-keyframes fadeout {
    from {top: 30px; opacity: 1;} 
    to {top: 0; opacity: 0;}
}
@keyframes fadeout {
    from {top: 30px; opacity: 1;}
    to {top: 0; opacity: 0;}
}