:root {
    --main-color: #01A4E1;
    --sales-color: #01A4E1;
    --border-sales: #185570;
    --bg-url: url(https://i.imgur.com/TCnMyzb.png);
}


html,
body {
   margin:0;
   padding:0;
   height:100%;
   font-size:18px;
}

body { 
  background: no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: rgb(42, 48, 54) !important;
    color: #fff;
}

.container {
    position: relative;
    min-height:100%;
}

.logo {
     height: 100px;
     text-align: center;
     animation: animationFrames linear 1s;
     animation-iteration-count: 1;
     transform-origin: 50% 50%;
     -webkit-animation: animationFrames linear 1s;
     -webkit-animation-iteration-count: 1;
     -webkit-transform-origin: 50% 50%;
     -moz-animation: animationFrames linear 1s;
     -moz-animation-iteration-count: 1;
     -moz-transform-origin: 50% 50%;
     -o-animation: animationFrames linear 1s;
     -o-animation-iteration-count: 1;
     -o-transform-origin: 50% 50%;
     -ms-animation: animationFrames linear 1s;
     -ms-animation-iteration-count: 1;
     -ms-transform-origin: 50% 50%;
 }
 
 .pulse {
    animation-duration: 4s!important;
}


.header {
    height: 380px;
    background: var(--bg-url) no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	-webkit-margin-top-collapse: discard;
	box-shadow: inset 0px -7px 0px #262b31 !important;
    position: relative;
    margin-top:62px;
}

.header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    /*background: var(--main-color);*/
    opacity: 0.4;
    filter: blur(100px);
}

.panel {
    margin-bottom: 21px;
    border: none;
    box-shadow: inset 0px -5px 0px #262b31 !important;
    background-color: rgb(50, 56, 62);
    border-radius: 10px;
    padding: 20px;
    font-family: 'Minecraft', sans-serif;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}


marquee {
    font-weight: normal;
    height: auto;
    width: 100%;
    max-height: 65px;
    display: inline-flex;
}

.row {
    margin-left: 0px;
    margin-right: 0px;
}

.navbar-default {
    background-color: #32383e;
    border-color: transparent;
    box-shadow: inset 0px -5px 0px #262b31 !important;
    font-size: 14px;
}

.navbar-default .navbar-nav>li>a {
    font-family: 'Minecraft', sans-serif;
    font-weight: normal;
    font-size: 18px;
    color: rgb(170, 179, 189);
    transition: 1s;
    padding: 12px 24px;
}

.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
    color: var(--main-color);
    background-color: transparent;
}

.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus {
    background-color: transparent;
    color: var(--main-color);
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
    color: var(--main-color);
    background-color: #2a3036;
    border-radius: 32px;
    font-weight: bold;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 15px;
    text-align: left;
    background-color: rgb(38, 43, 49) !important;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.175);
    background-clip: padding-box;
    transition: 1s;
}

.navbar-nav>li>.dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-radius: 10px;
}

.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
    text-decoration: none;
    color: #ffffff;
    background-color: transparent;
    border-left: 2px solid var(--main-color);
    transition: 1s;
}

.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: rgb(125, 130, 136);
    white-space: nowrap;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

@keyframes animationFrames{
  0% {
    transform:  rotate(0deg) scaleX(1.00) scaleY(1.00) ;
  }
  10% {
    transform:  rotate(-3deg) scaleX(0.80) scaleY(0.80) ;
  }
  20% {
    transform:  rotate(-3deg) scaleX(0.80) scaleY(0.80) ;
  }
  30% {
    transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  40% {
    transform:  rotate(-3deg) scaleX(1.20) scaleY(1.20) ;
  }
  50% {
    transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  60% {
    transform:  rotate(-3deg) scaleX(1.20) scaleY(1.20) ;
  }
  70% {
    transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  80% {
    transform:  rotate(-3deg) scaleX(1.20) scaleY(1.20) ;
  }
  90% {
    transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  100% {
    transform:  rotate(0deg) scaleX(1.20) scaleY(1.20) ;
  }
}

@-moz-keyframes animationFrames{
  0% {
    -moz-transform:  rotate(0deg) scaleX(1.00) scaleY(1.00) ;
  }
  10% {
    -moz-transform:  rotate(-3deg) scaleX(0.80) scaleY(0.80) ;
  }
  20% {
    -moz-transform:  rotate(-3deg) scaleX(0.80) scaleY(0.80) ;
  }
  30% {
    -moz-transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  40% {
    -moz-transform:  rotate(-3deg) scaleX(1.20) scaleY(1.20) ;
  }
  50% {
    -moz-transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  60% {
    -moz-transform:  rotate(-3deg) scaleX(1.20) scaleY(1.20) ;
  }
  70% {
    -moz-transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  80% {
    -moz-transform:  rotate(-3deg) scaleX(1.20) scaleY(1.20) ;
  }
  90% {
    -moz-transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  100% {
    -moz-transform:  rotate(0deg) scaleX(1.20) scaleY(1.20) ;
  }
}

@-webkit-keyframes animationFrames {
  0% {
    -webkit-transform:  rotate(0deg) scaleX(1.00) scaleY(1.00) ;
  }
  10% {
    -webkit-transform:  rotate(-3deg) scaleX(0.80) scaleY(0.80) ;
  }
  20% {
    -webkit-transform:  rotate(-3deg) scaleX(0.80) scaleY(0.80) ;
  }
  30% {
    -webkit-transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  40% {
    -webkit-transform:  rotate(-3deg) scaleX(1.20) scaleY(1.20) ;
  }
  50% {
    -webkit-transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  60% {
    -webkit-transform:  rotate(-3deg) scaleX(1.20) scaleY(1.20) ;
  }
  70% {
    -webkit-transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  80% {
    -webkit-transform:  rotate(-3deg) scaleX(1.20) scaleY(1.20) ;
  }
  90% {
    -webkit-transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  100% {
    -webkit-transform:  rotate(0deg) scaleX(1.20) scaleY(1.20) ;
  }
}

@-o-keyframes animationFrames {
  0% {
    -o-transform:  rotate(0deg) scaleX(1.00) scaleY(1.00) ;
  }
  10% {
    -o-transform:  rotate(-3deg) scaleX(0.80) scaleY(0.80) ;
  }
  20% {
    -o-transform:  rotate(-3deg) scaleX(0.80) scaleY(0.80) ;
  }
  30% {
    -o-transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  40% {
    -o-transform:  rotate(-3deg) scaleX(1.20) scaleY(1.20) ;
  }
  50% {
    -o-transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  60% {
    -o-transform:  rotate(-3deg) scaleX(1.20) scaleY(1.20) ;
  }
  70% {
    -o-transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  80% {
    -o-transform:  rotate(-3deg) scaleX(1.20) scaleY(1.20) ;
  }
  90% {
    -o-transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  100% {
    -o-transform:  rotate(0deg) scaleX(1.20) scaleY(1.20) ;
  }
}

@-ms-keyframes animationFrames {
  0% {
    -ms-transform:  rotate(0deg) scaleX(1.00) scaleY(1.00) ;
  }
  10% {
    -ms-transform:  rotate(-3deg) scaleX(0.80) scaleY(0.80) ;
  }
  20% {
    -ms-transform:  rotate(-3deg) scaleX(0.80) scaleY(0.80) ;
  }
  30% {
    -ms-transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  40% {
    -ms-transform:  rotate(-3deg) scaleX(1.20) scaleY(1.20) ;
  }
  50% {
    -ms-transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  60% {
    -ms-transform:  rotate(-3deg) scaleX(1.20) scaleY(1.20) ;
  }
  70% {
    -ms-transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  80% {
    -ms-transform:  rotate(-3deg) scaleX(1.20) scaleY(1.20) ;
  }
  90% {
    -ms-transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  100% {
    -ms-transform:  rotate(0deg) scaleX(1.20) scaleY(1.20) ;
  }
}

.panel-default>.panel-heading {
    background: unset;
    border: 0;
    color: var(--main-color);
    padding-top: 20px;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    padding: 0px 0px;
}

.label {
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
    top: -2px;
    position: relative;
}

::-webkit-scrollbar {
	width: 8px;
	height: 30px;
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
        border-radius: 20px;
}

::-webkit-scrollbar-track {
	background-color:#3f4045;
}

::-webkit-scrollbar-corner {
    background-color: var(--main-color);
}

a {
    color: var(--main-color);
}

a:hover, a:focus {
    color: var(--main-color);
    text-decoration: none;
    opacity: 0.9;
}

::selection {
    color: #fff;
    background-color: var(--main-color);
}

.cyv-sales {
    background: var(--sales-color);
    border-radius: 4px;
    text-align: left;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    padding: 12px;
    color: #FFFFFF;
    margin-bottom: 10px;
    border-bottom: solid var(--border-sales) 4px;
    max-height: 65px;
    width: auto;
    display: flex;
}

.cart {
    background: var(--main-color);
    border-radius: 10px;
    height: 83px;
    border: none !important;
    box-shadow: 5px 5px #0000008f;
    margin-bottom: 15px !important;
    line-height: 83px;
    margin-top: -10%;
    cursor: pointer;
}

.cart:hover {
    opacity: 0.9;
}

.cart h1 {
    font-size: 16px;
    line-height: 83px;
    margin-left: 2vh;
}

.cart a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Minecraft', sans-serif;
    font-size: 18px;
}

.cart i {
    color: var(--main-color);
    background: #32383e;
    font-size: 25px;
    text-align: center;
    height: 35px;
    width: 35px;
    line-height: 35px;
    margin-left: 10px;
    border-radius: 3px;
    position: relative;
    top: 0.5vh;
    left: -1%;
    box-shadow: 2px 2px 2px #00000085;
}

@media all and (max-width: 750px) { 
    .cart {
        margin-top: 0;
    }
}

.payments li {
    list-style: none;
    margin-bottom: 8px;
    padding-bottom: 8px;
	line-height: 2;
    }
	
.payments {
    margin: 0;
    -webkit-padding-start: 1px;
    }
	
.payments li .avatar {
    width: 32px;
    height: 32px;
    margin-left: -3ch;
    }
	
.payments li .info {
    line-height: 15px;
    float: right;
    font-size: 12px;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
    width: 90%;
    padding-bottom: 8px;
    border-bottom: 1px solid #82818147;
    }  
	
.avatar img {
    width: 32px;
    border-radius: 10px;
}
		
.avatar, .info {
    display: inline-block;
    vertical-align: middle;
	}
		

div .ign{
    font-weight: bold;
    }
		
.top-donator {
    position: absolute;
    bottom: 0;
    right: -3ch;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    width: 95px;
}

#top-info {
    margin: -1ch;
    float: left;
    position: relative;
    font-size: 15px;
    top: -10px;
}

#top-info b {
    font-weight: 800;
    margin: 0;
    color: var(--main-color);
}

#top-info span {
    float: left;
    display: block;
    font-size: 11px;
    color: #fff;
}
		
#avatar {
    position: relative;
    float: left;
    width: 25%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    padding-left: 20px;
    height: 90px;
    }
	
#info {
    text-align: center;
    width: 75%;
    margin-left: 40px;
    top: 20px;
    position: absolute;
    }
		
.extra {
    font-size: 8px;
    margin: 0;
    color: #a7a7a7;
    font-weight: bold !important;
    text-transform: uppercase;
    border-radius: 3px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.module-line {
    margin-top: 0px !important;
    margin-bottom: 2px !important;
    border-top: 3px solid var(--main-color);
    width: 50px;
    float: left;
}

#server-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    position: relative;
    top: 5px;
}

.goal {
    height: 35px;
}

.progress-bar {
    background-color: var(--main-color) !important;
}

.progress {
    background-color: #2a3036;
}

.progress {
    height: 15px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#goal-p {
    background: #2a3036;
    height: 21px;
    width: 100px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 2px;
    font-size: 10px;
    font-weight: bold;
    line-height: 21px;
}

.gift-btn {
    color: var(--main-color);
    background-color: #394046;
    border: none;
    line-height: 1.5;
    font-weight: bold;
    transition: .25s ease;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border-top-right-radius: 20px!important;
    border-bottom-right-radius: 20px!important;
    border-top-left-radius: 0px!important;
    border-bottom-left-radius: 0px!important;
    width: 95px!important;
    line-height: 1!important;
}

.gifts {
    display: inline-flex;
}

.form-control {
    border-radius: 0;
    border-color: #24292e;
    background: #24292e;
    color: white;
    -webkit-box-shadow: -2px 3px 5px rgba(0, 0, 0, 0.15);
    box-shadow: -2px 3px 5px rgba(0, 0, 0, 0.15);
    border-radius: 25px;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #24292e;
    opacity: 1;
}

.gift-form {
    position: relative;
    margin-left: -12%;
    right: 2px;
    display: block;
    height: 34px;
    width: 140px;
    max-width: 140px;
    padding: 6px 16px;
    line-height: 1.5!important;
    font-size: 15px;
    color: #fff;
    background-color: #24292e;
    border: none;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

#footer {
    height: 250px;
    background: #32383e;
    color: #677079;
        margin-top: 10ch;
}

.footer-img {
    height: 200px;
    filter: grayscale(1);
    opacity: 0.2;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: 1s;
}

.footer-img:hover {
    filter: none;
    opacity: unset;
    transition: 1s;
}

.copyright {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin-top: -1%;
}

.cyvers-header {
    font-family: 'Minercraftory', sans-serif;
    height: 40px;
    line-height: 20px;
    border-bottom: 1px solid var(--main-color);
    font-weight: bold;
    text-transform: uppercase;
    color: var(--main-color);
    text-align: center;
    font-size: 30px;
}

.pack {
    font-family: 'Minecraft', sans-serif;
    font-size: 12px;
    background: rgb(42, 48, 54) !important;
    width: auto;
    height: 300px;
    border-radius: 5px;
    text-align: center;
}

.btn-price {
    background: var(--main-color);
    border: none;
    border-radius: 32px;
    line-height: 1.5;
    font-weight: bold;
    transition: .25s ease;
    box-shadow: 0 -3px 0 rgba(0, 0, 0, .1) inset;
    padding: 5px 10px;
    float: left;
    top: -15px;
    left: -5px;
    position: relative;
}

.btn-price:hover {
    background: var(--main-color);
    filter: saturate(1.2) brightness(1.15) contrast(0.85);
}

#c-price {
    font-size: 13px;
    color: #677079;
}

.pack-main {
    padding: 0px!important;
    width: 200px;
    height: 290px;
}

.item-footer {
    margin-top: 20px;
}

.img-responsive, .thumbnail>img, .thumbnail a>img, .carousel-inner>.item>img, .carousel-inner>.item>a>img {
    display: block;
    max-width: 100%;
	max-height: 150px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
	transition: 2s;
}

.img-responsive:hover {
    transform: scale(0.9);
    transition: transform .05s ease-in-out;
	transition: 2s;
}

.pack-desc {
    padding-top: 15px;
    line-height: 1;
}

.btn-primary:active:hover, .btn-primary.active:hover, .open>.dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open>.dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open>.dropdown-toggle.btn-primary.focus {
    color: #ffffff;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.btn-price.active.focus {
    color: #ffffff;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.modal-content {
    position: relative;
    background-color: #32383e;
    box-shadow: inset 0px -5px 0px #262b31 !important;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,0.5);
    box-shadow: 0 3px 9px rgba(0,0,0,0.5);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    outline: 0;
    border-radius: 5px;
}

.modal-title {
    margin: 0;
    line-height: 1.42857143;
    color: var(--main-color);
    font-weight: bold;
}

.modal .close {
    color: #ff0000;
    transition: 1s;
}

.modal-header {
    padding: 15px;
    border-bottom: none;
}

.modal-footer {
    padding: 20px;
    text-align: right;
    border-top: none;
    background: #2a3036;
    border-radius: 5px;
}

.label {
    padding: .4em .6em .2em;
}

#pull-left {
    padding: 16px 0 0 0;
    float: left;
	font-size: 12px;
    font-weight: 600;
    color: rgb(158, 236, 178);
}

.btn {
    border-width: 2px;
    border: none;
    border-radius: 5px;
    line-height: 2.5;
    font-weight: normal;
    box-shadow: 0 -3px 0 rgba(0, 0, 0, .1) inset;
    background: #626161;
    width: 170px;
}

.btn-primary {
    color: #ffffff;
    background-color: var(--main-color);
    border-color: var(--main-color);
    transition: .25s ease;
}

.btn-primary:hover , .btn-primary:focus {
    background: var(--main-color);
    filter: saturate(1.2) brightness(1.15) contrast(0.85);
}

@media all and (max-width: 750px) {
.cyvers-login {
    border-bottom: 2px solid #2a3036;
    word-break: break-word;
    padding: 5px;
    margin-bottom: 15px;
}
}

@media all and (min-width: 760px) {
    .cyvers-login {
    border-right: 2px solid #2a3036;
    word-break: break-word;
    padding: 5px;
}
}

@media all and (max-width: 750px) {
.login-form {
    height: 40px;
    line-height: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--main-color);
    font-size: 12px!important;
}
}

.login-form {
    height: 40px;
    line-height: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--main-color);
    font-size: 18px;
}

.cyvers-basket {
    font-size: 18px;
    font-weight: 300;
    border-bottom: 4px solid var(--main-color);
    height: 50px;
    padding: 12px 15px;
    border-radius: 0;
    color: #FFF;
    text-shadow: 0px 1px #000, 0px 2px #000;
}

.cyvers-right {
   float: right;
	 color: var(--main-color);
}

.btn-b {
    border-radius: 3px;
    border-width: 0 0 3px;
    font-weight: bold;
    padding: 0 13px;
    height: 31px;
    line-height: 31px;
    outline: none!important;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.15)!important;
    background: #626161;
		transition: 1s;
}

.cyvers-b {
    border-bottom: 2px solid #2a3036;
    padding: 12px 14px 9px;
    border-radius: 2px;
    margin-top: 15px!important;
    display: block;
}

.cyvers-b h4 {
    margin: 0;
    display: block;
    padding: 0 0 1px;
    font-size: 18px;
    color: var(--main-color);
    text-transform: capitalize;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #2a3036;
}

.quantity input {
    width: 30px;
    padding: 1px;
    text-align: center;
    border: 1px solid #32383e;
    background: #32383e;
}

.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
    vertical-align: middle;
}

.r-redeem {
    height: 40px;
}

.m-name {
    color: #fff;
    border-top: 2px solid #2a3036;
}

.table-hover>tbody>tr:hover {
    background-color: transparent;
}

@media screen and (min-width: 0px) {
.cyvers-nav ul#main-nav li {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
    text-decoration: none;
    letter-spacing: 1px;
    display: block;
    padding: 0px 10px;
    text-transform: uppercase;
    position: relative;
    transition: .15s;
    margin: 0 2px;
    margin-top: 30px;
    height: 55px;
    line-height: 55px;
}

.cyvers-nav ul#main-nav li {
    display: inline-block;
}

.cyvers-nav ul#main-nav li a {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
    text-decoration: none;
    letter-spacing: 1px;
    display: block;
    padding: 0px 10px;
    text-transform: uppercase;
    position: relative;
    transition: .15s;
    margin: 0 2px;
}

.subline::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    width: 0;
    bottom: 1px;
    background: var(--main-color);
    height: 4px;
    transition-property: width;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.subline:hover:after, .subline:focus:after, .subline:active:after {
    left: 0;
    right: auto;
    width: 100%;
}

.cyvers-nav ul#main-nav li a:hover {
    transition: 1s;
    color: var(--main-color);
}

.cyvers-nav ul#main-nav li.activ a {
    display: inline-block;
    width: 155px;
    height: 55px;
    line-height: 52px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    background: var(--main-color);
    color: #fff;
    border-radius: 30px;
    letter-spacing: 1px;
    margin: 0;
    transition: 1s;
}

.cyvers-nav ul#main-nav li.activ a:hover {
   color: #fff;
   filter: drop-shadow(2px 4px 6px black);
}

.cyvers-nav .dd-mobile {
    font-size: 0px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0px 20px;
    padding-left: 0px;
    margin: 10px;
    width: auto;
    float: right;
    box-shadow: 0px 0px 10px rgba(31, 31, 31, 0.65);
}

.cyvers-nav .dd-mobile li {
    list-style: none;
}

.cyvers-nav .dd-mobile li a {
    font-size: 16px;
    padding: 21px 15px;
    display: block;
	 text-align: right;
}

.cyvers-nav .dd-mobile li a i.fas {
    display: inline-block;
    vertical-align: middle;
    font-size: 28px;
    color: white;
}

.cyvers-nav .dd-mobile li a span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    margin-left: 10px;
}

.dd-bg {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
    transition: .25s;
    opacity: 0;
}

.dd-bg.active {
    z-index: 99;
    opacity: 1;
}

ul#main-nav .dd-close {
    margin: 0px -20px;
    background: #2a3036;
    display: none;
}

ul#main-nav .dd-close a  {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    line-height: 5;
    display: block;
		transition: 1s;
}

ul#main-nav .dd-close a:hover {
    color: #ff0000;
	transition: 1s;
}

.navbar-default {
    background-color: #32383e;
    border-color: transparent;
    box-shadow: inset 0px -5px 0px #262b31 !important;
    font-weight: 600;
    font-size: 14px;
    margin-top: 2%;
}
}

@media all and (max-width: 992px) {
    .cyvers-nav ul#main-nav li a {
        font-size: 14px;
        color: white;
        text-decoration: none;
        font-weight: 600;
        display: block;
        padding: 0px 10px;
        text-transform: uppercase;
        line-height: 5;
        position: relative;
    }
}

@media all and (max-width: 750px) { 
    ul#main-nav .dd-close {
        display: block;
    }
    
    .cyvers-nav ul#main-nav li {
        display: block;
    }
    
    .cyvers-nav ul#main-nav {
        display: block;
        position: fixed;
        right: 0;
        top: 0;
        height: 100%;
        z-index: 200;
        width: 250px;
        max-width: 75%;
        text-align: center;
        border-radius: 0px;
        transition: .25s;
        right: -250px;
    }
    
    .cyvers-nav ul#main-nav.open {
        right: 0px;   
 	    font-size: 0px;
 	    background: #32383e;
  	    border-radius: 4px;
	    padding: 0px 20px;
	    box-shadow: 0px 0px 10px rgba(31, 31, 31, 0.65);
	    transition: 1s
    }
    
    .cyvers-nav .dd-mobile {
        display: block;
    }
    
    .cyvers-nav ul#main-nav li.activ a {
   color: #fff;
   border-bottom: 0;
   height: 49px;
}

.subline::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    width: 0;
    bottom: 1px;
    background: none;
    height: 4px;
    transition-property: width;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.gift-form {
    position: relative;
    margin-left: -10%;
    right: 2px;
    display: block;
    height: 34px;
    width: 200px;
    padding: 6px 16px;
    line-height: 1.5!important;
    font-size: 15px;
    color: #fff;
    background-color: #24292e;
    border: none;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.dropdown-menu {
    background-color: #2a3036!important;
    text-align: center;
    margin-right: -2ch;
}
}
html  {
    overflow-x: hidden;
}
@media all and (min-width: 750px) {
    .cyvers-nav ul#main-nav {
        display: block!important;
        text-align: center;
        position: relative;
    margin-left: -10ch;
    }
    .cyvers-nav .dd-mobile {
        display: none;
    }
}

.open .dropdown-menu {
    opacity: 1;
    transform: rotateX(0deg);
    transform-origin: top;
    width: 100%;
    border: none;
		margin-left: -4ch;
}

.open > .dropdown-menu {
    display: block;
}

.dropdown-menu {
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    transform: rotateX(90deg);
    transform-origin: top;
    opacity: 0;
    display: block;
    width: 100%;
    border: none;
    background-color: #32383e!important;
}

.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
    text-decoration: none;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.075);
    border-left: 2px solid var(--main-color);
    transition: 0.2s;
}

.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    line-height: 2;
    white-space: nowrap;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-menu>li>a:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    width: 3px;
    border-radius: 0 6px 6px 0;
    height: 0;
    border-left: var(--main-color);
}

.navbar .navbar-nav {
  display: inline-block;
  float: none;
  vertical-align: top;
}

.navbar .navbar-collapse {
    text-align: center;
    padding: 16px 24px;
}

.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus {
    color: var(--main-color);
    background-color: transparent;
}

.cyvers-count {
    display: flex;
    align-items: flex-end;
    margin-top: 10ch;
}

.left i {
    float: right;
    height: 40px;
    width: 40px;
    margin-left: 10px;
    font-size: 40px;
    margin-top: -10px;
    color: var(--main-color);
}

.right i {
    float: left;
    height: 40px;
    width: 40px;
    margin-right: 10px;
    font-size: 40px;
    margin-top: -10px;
    color: var(--main-color);
}

#cyvers-mc {
    font-weight: bold;
    color: var(--main-color);
    font-family: sans-serif;
}

#cyvers-discord {
    font-weight: bold;
    color: var(--main-color);
    font-family: sans-serif;
}

.players {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px !important;
    margin-bottom: 14px;
    display: block;
    font-weight: normal;
}

.left {
    font-family: 'Minecraft', sans-serif;
    float: left;
    position: relative;
    bottom: -10px;
	width: 30%;
	text-align: right;
	transition: all .2s ease-in-out !important;
}

.left:hover {
    transition: all .2s ease-in-out !important;
    bottom: 2px !important;
    cursor: pointer;
}

.right:hover {
    transition: all .2s ease-in-out !important;
    bottom: 2px !important;
    cursor: pointer;
}

.right {
    font-family: 'Minecraft', sans-serif;
    float: right;
    position: relative;
    bottom: -10px;
	width: 30%;
	transition: all .2s ease-in-out !important;
}

small.ipCopy {
    opacity: 0.56;
    text-transform: uppercase !important;
    font-size: 9px !important;
    cursor: pointer;
}

small.ipCopy a {
    color: #185570;
    transition: 1s;
}

small.ipCopy a:hover {
    color: var(--main-color);
    transition: 1s;
}

small.ipCopy:hover {
    color: var(--main-color);
    transition: 1s;
}

span#count {
    color: var(--main-color);
}

small a {
    text-decoration: none;
    color: var(--main-color);
    cursor: pointer;
}

small a:hover, a:focus {
    text-decoration: none;
    color: #91B9FB;
    cursor: pointer;
}

.swal-modal {
    background-color: #3f4045;
}

.swal-overlay--show-modal .swal-modal {
    border-radius: 20px;
}

.swal-title {
    color: var(--main-color);
}

.swal-text {
    color: #fff;
}

.swal-icon--success:after, .swal-icon--success:before {
    background: #3f4045;
}

.swal-icon--success__hide-corners {
    background-color: #3f4045;
}

.swal-icon--success__line {
    background-color: var(--main-color);
}

.swal-icon--success__ring {
    border: 4px solid var(--main-color);
}

.swal-button {
    background-color: var(--main-color);
}

.swal-button:not([disabled]):hover {
    opacity: 0.9;
    background-color: var(--main-color);
}

.swal-button-container {
    margin: 5px;
    float: none;
    text-align: center;
    position: relative;
	display: block;
}

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--main-color);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -moz-border-radius: 35px;
    border-radius: 10px;
    border-bottom: 3px solid rgb(50, 56, 62);
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top:hover {
    opacity: 0.9s;
}

#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

.navbar-default .navbar-toggle {
    border-color: #2a3036;
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: #2a3036;
}

@media screen and (min-width: 0px) and (max-width: 720px) {
  #cyvers-hide{ display: none; }
  
  .header:before {
    content: "";
  }
}

.cart-mc {
    margin-left: 3ch;
}

.navbar-default .navbar-nav .open .dropdown-menu>.active>a, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus {
    color: var(--main-color);
    background-color: #2a3036;
    font-weight: bold;
}

#particles-js {
    position: absolute;
    height: 380px;
    width: 1300px;
    margin: 0 auto;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    pointer-events: none;
}

canvas{
  display:block;
  vertical-align:bottom;
}

@media only screen and (max-width: 1105px) {
	#particles-js {
		display: block;
		width: 100%
	}
}

@media screen and (max-width: 992px) {
    .cyvers-nav ul#main-nav li.activ a {
    background: unset;
}
   .cyv-sales {
       display: inline-flex;
       max-width: 100%;
   }

}

.btn-info {
    width: auto;
    line-height: 1.5;
}

.btn-default {
    width: auto;
    line-height: 1.5;
}

.btn-danger {
    width: auto;
    background: red;
}

.btn-redeem {
    width: auto;
    line-height: 0;
}

.table tr {
    background: #2a3036;
    border-bottom: 10px solid #32383e;
}

.table-hover>tbody>tr:hover {
    background-color: #2a3036;
}

.table-hover>tbody>tr {
    bborder-radius: 10px;
}

.btn-checkout {
    width: auto!important;
    line-height: 2;
}

@media screen and (max-width: 767px) {
.table-responsive {
    width: 100%;
    margin-bottom: 15.75px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: unset;
    display: block;
}
}

@media screen and (max-width: 992px) {
.serverstatus {
    display: block;
    text-align: left;
}
}

p.js-status-player-count {
    font-size: 12px;
}

.mc-server b {
    margin-left: 8px;
}

.mc-server {
    display: -webkit-inline-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    line-height: 25px;
}

.r-redeemy {
    height: 45px;
}

.btn-quantity {
    margin-bottom: 1px;
    height: 25px;
}

.modal-open {
    overflow: unset;
}

del {
    color: red;
}

@media (max-width: 991px) {
.logo img {
    width: 340px;
}
}

.logo {
    margin: 0;
}

@media (max-width: 991px) {
.cyvers-header {

    height: auto;
    line-height: normal;
}
}
.panel-body{
    font-family:Arial;
    font-size:12px;
    }
.pack{
    font-family:'Minecraft',sans-serif;
    }

/* Headers de módulos del sidebar */
.cyvers-module-header {
    font-family: 'Minercraftory', sans-serif;
    color: #01A4E1;
    font-size: 13px;
    text-transform: uppercase;
    padding: 12px 15px 8px 15px;
    margin: -20px -20px 12px -20px;
    border-bottom: 2px solid #01A4E1;
    background-color: rgba(1, 164, 225, 0.05);
    border-radius: 10px 10px 0 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 1px;
}

.cyvers-module-header i {
    margin-right: 6px;
    font-size: 12px;
}

/* Panel del módulo del sidebar */
.cyvers-module {
    overflow: visible;
}

/* Skins/avatares pixelados crujientes */
.cyvers-module img[alt] {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Top Donador con bust 3D que sobresale */
.cyvers-module-donator .panel-body {
    position: relative;
    overflow: visible;
    padding-bottom: 20px;
    min-height: 100px;
}

.donator-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    position: relative;
}

.donator-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.donator-name {
    font-family: 'Minercraftory', sans-serif;
    color: #01A4E1;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.donator-amount {
    color: #fff;
    font-size: 11px;
    margin-top: 4px;
    font-family: 'Minecraft', sans-serif;
    white-space: nowrap;
}

.donator-bust {
    height: 100px;
    width: auto;
    margin-top: -35px;
    margin-right: -10px;
    margin-bottom: -15px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
    flex-shrink: 0;
}

/* Permitir overflow en el panel del módulo donator */
.cyvers-module-donator {
    overflow: visible !important;
}

/* Paquetes destacados */
.featured-packages {
    margin: 25px 0;
}

.featured-title {
    font-family: 'Minercraftory', sans-serif;
    color: #01A4E1;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.featured-title i {
    margin-right: 8px;
    color: #f5c601;
}

.featured-card {
    display: block;
    background: rgb(42, 48, 54);
    border: 2px solid #01A4E1;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: inset 0px -5px 0px #185570;
    margin-bottom: 15px;
    text-decoration: none;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: inset 0px -5px 0px #185570, 0 8px 20px rgba(1, 164, 225, 0.3);
    text-decoration: none;
    border-color: #f5c601;
}

.featured-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
    image-rendering: pixelated;
}

.featured-info {
    text-align: center;
}

.featured-name {
    display: block;
    color: #fff;
    font-family: 'Minecraft', sans-serif;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.featured-price {
    color: #01A4E1;
    font-family: 'Minercraftory', sans-serif;
    font-size: 16px;
    font-weight: bold;
}

@media all and (max-width: 750px) {
    .featured-card {
        margin-bottom: 10px;
    }
}