* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', sans-serif;
    text-decoration: none;
    color: #fff;
}

body {
    background-color: #0a0d21;
}
canvas {
	display: block;
}

.error-text {
  font-style: italic;
  color: rgb(255, 87, 87);
}

/* intro animation */
.intro { /* body class */
	position: fixed;
	z-index: 100;
}

.intro-display {
	position: relative;
	display: block;
	z-index: 101;
	margin-right: 99.9945%;
	margin-bottom: -450px;
}

.intro-text {
	font-size: 80px;
	text-align: center;
}

.intro-line1 {
	opacity: 0%;
	animation: line1 5s linear;
	animation-timing-function: ease-in-out;
}
@keyframes line1 {
	0% { opacity: 0%; }
	5% { opacity: 0%; }
	20% { opacity: 100%; }
	90% { opacity: 100%; }
	100% { opacity: 0%; }
}

.intro-line2 {
	color: #00a5fc;
	opacity: 0%;
	animation: line2 5s linear;
	animation-timing-function: ease-in-out;
}
@keyframes line2 {
	0% { opacity: 0%; }
	20% { opacity: 0%; }
	35% { opacity: 100%; }
	90% { opacity: 100%; }
	100% { opacity: 0%; }
}

.intro-custom-img {
	max-height: 300px;
	margin-left: 31%;
	opacity: 0%;
	animation: line3 5s linear;
	animation-timing-function: ease-in-out;
}
@keyframes line3 {
	0% { opacity: 0%; }
	35% { opacity: 0%; }
	50% { opacity: 100%; }
	90% { opacity: 100%; }
	100% { opacity: 0%; }
}

.intro-temphide { /* hide nav and notif */
	display: none;
}

/* particles animation */
#particles-js {
	z-index: 100;
}

/* notification */
.notif {
	position: fixed;
	height: 125px;
	width: 375px;
	bottom: 0;
	right: 0;
	margin: 1rem;
	background-color: #41bff7;
	color: white;
	border: 1px solid transparent;
	border-radius: 50px 50px 50px 50px;
	opacity: 0;
    animation: fade 10s linear;
	z-index: 1;
}

.notif-text {
	margin-top: 10px;
	margin-left: 30px;
	margin-right: 30px;
	z-index: 2;
}

@keyframes fade {
	0% { opacity: 0; }
	8% { opacity: 1; }
	92% { opacity: 1; }
	100% { opacity: 0; }
}

@media only screen and (max-width: 500px) {
    .notif {
		display: none;
	}
}

/* hover animations */
.underline-animation {
    text-decoration: none;
    background-image: 
      linear-gradient(transparent, transparent),
      linear-gradient(transparent, white);
    background-size: 100% 2px, 0 2px;
    background-position: 100% 100%, 0% 100%;
    background-repeat: no-repeat;
    transition: background-size 400ms;
}

.underline-animation:hover, .underline-animation:focus {
    text-decoration: none;
    background-size: 0 2px, 100% 2px;
}

.underline-animation-card {
  text-decoration: none;
  background-image: 
    linear-gradient(transparent, transparent),
    linear-gradient(transparent, white);
  background-size: 100% 3px, 0 3px;
  background-position: 100% 100%, 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 250ms;
  position: relative;
}

.underline-animation-card:hover, .underline-animation-card:focus {
  text-decoration: none;
  background-size: 0 3px, 100% 3px;
}

.underline-animation-mid {
    text-decoration: none;
    background-image: 
      linear-gradient(transparent, transparent),
      linear-gradient(transparent, white);
    background-size: 100% 2px, 0 2px;
    background-position: 100% 100%, 50% 100%;
    background-repeat: no-repeat;
    transition: background-size 400ms;
}

.underline-animation-mid:hover, .underline-animation-mid:focus {
    text-decoration: none;
    background-size: 0 2px, 100% 2px;
}

.card-pop {
    transform: scale(1);
    transition: 0.2s ease-in-out;
}

.card-pop:hover, .card-pop:focus {
  transform: scale(1.02);
}

.search-border-input{
    border: 2px solid #1b2833;
    transition: 0.2s ease;
}

.search-border-input:hover, .search-border-input:focus {
    border: 2px solid rgba(255, 255, 255, 0.551);
}

.search-border-btn{
  	border: 2px solid transparent;
  	transition: 0.2s ease;
}
@media only screen and (max-width: 420px) {
	.search-border-btn {
		visibility: hidden;
	}
}

.search-border-btn:hover, .search-border-btn:focus {
  border: 2px solid white;
}


/* scenes */
.scene1 {
    position: relative;
    height: 60vh;
    top: 0px;
    background: linear-gradient(#0a0d21, #0a0d21, #173464);
}

.scene2 {
    position: relative;
    height: 20vh;
    background: linear-gradient(#0b2236, #0a0d21, #0a0d21);
}

/* animations */
.logo-animation-area {
    position: absolute;
    padding-left: 18rem;
    margin-bottom: 4rem;
    height: 0.7rem;
    width: 0.7rem;
}

.logo-animation {
    position: absolute;
    animation: animate 1.2s linear infinite;
}
@keyframes animate {
    0% {
      top: 0%;
      animation-timing-function: ease-in-out;
    }
    50% {
      top: 100%;
      animation-timing-function: ease-in-out;
    }
    100% {
      top: 0%;
      animation-timing-function: ease-in-out;
    }
}
@media only screen and (max-width: 1023px) {
    .logo-animation {
      display: none;
    }
}

.dropdown-animation {
	animation: slideDown 300ms ease-in-out;
}
@keyframes slideDown {
	0% { 
	  opacity: 0;
	  transform: translateY(-20px);
	}
	100% {
	  opacity: 1;
	  transform: translateY(0);
	}
}

/* global styles */
.filter {
    background-color: #0b2236;
    color: #00a5fc;
    padding: 0.5rem;
    border-radius: 3px;
    margin: 0.2rem;
    transition: 0.2s ease;
    border: 1px solid #0b2236;
}

.filter:hover, .filter:focus {
    border: 1px solid rgba(255, 255, 255, 0.551);
}

.button-light {
    color: #0b2236;
    background-color: #00a5fc;
    padding: 0.5rem 1.5rem;
    border: 2px solid rgba(0, 165, 252);
    border-radius: 10px;
    font-weight: 700;
    transition: 0.2s ease;
}

.button-light:hover {
    color: #ffffff;
    border-color: white;
}

.button-dark {
    color: #00a5fc;
    background-color: #0b2236;
    padding: 0.5rem 1.5rem;
    border: 2px solid rgba(11, 34, 54);
    border-radius: 10px; 
    font-weight: 700;
    transition: 0.2s ease;
}

.button-dark:hover {
    color: #ffffff;
    border-color: white;
}

/* Hamburger Icon CSS */
.menu {
    background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
}
.line {
  fill: none;
  stroke: #fff;
  stroke-width: 4;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 4;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 4;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 4;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 4;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 4;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 4;
}

/* navigation css */
.navigation {
    background-color: #41bff7;
    position: sticky;
    top: 0;
    z-index: 3;
}

.dropdown-white:hover {
    background-color: white !important;
	  color: #091D3E !important;
}

.navChange {
	transition: 0.5s ease;
	opacity: 0.3;
}

.navChange.open {
	opacity: 1;
}

.navChange:hover, .navChange:focus {
	opacity: 1;
}

nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin: 0rem 1rem;
    height: min-content;
}

nav .logo {
    font-weight: 700;
    font-size: 1.3rem;
}

nav .links {
    display: none;
}

nav .links a {
    margin-right: 0.3rem;
}

nav .links.open {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 0rem;
}

@media only screen and (max-width: 1003px) {
	nav .logo {
		margin-right: 1rem;
	}
  .img-fluid {
    margin-top: 16px;
  }
	nav .navDrawer.open {
		margin-left: 0;
	}
	nav .nav-item {
		margin-top: 1rem;
	}
}

nav .navDrawer {
    visibility: hidden;
    opacity: 0;
    transition: visibility 1s, max-width 1s, opacity 0.6s;
    max-width: 0;
    overflow: hidden;
    margin-right: 1rem;
    margin-left: 1rem;
}

nav .navDrawer.open {
    visibility: visible;
    opacity: 1;
    max-width: 280px;
}

nav .nav-search {
    top: 0;
    padding: 5px;
    background-color: #0094d4;
    border: 2px solid rgb(230, 230, 230);
    border-radius: 5px;
    transition: 0.2s ease;
    outline: none;
}

nav .nav-search:hover, nav .nav-search:focus {
	  border: 2px solid white;
}

nav .nav-search::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: rgb(230, 230, 230);
}
  
nav .nav-search:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: rgb(230, 230, 230);
}
  
nav .nav-search::-ms-input-placeholder { /* Microsoft Edge */
	color: rgb(230, 230, 230);
}

/* header styling */
.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.header-container header {
    margin: 0rem 1rem 3rem 1rem;
    padding-top: 3rem;
}

.header-container header .left-content {
    margin-bottom: 2rem;
}

@media only screen and (max-width: 700px) {
	.left-content {
		display: none;
	}
}

.header-container header .left-content span {
    color: #00a5fc;
}

.header-container header .right-content .top img {
    display: none;
}

.header-container header .right-content input {
    margin: 1rem 0rem;
    background-color: #0b2236;
    border: 2px solid #1b2833;
    border-radius: 5px;
    padding: 0.5rem;
    transition: 0.2s ease;
}

.header-container header .right-content input:hover,
.header-container header .right-content input:focus {
    border: 2px solid rgba(255, 255, 255, 0.551);
}

.header-container header .right-content input:focus {
    outline: none;
}

.header-container header .right-content .buttons {
    max-width: 350px;
}


/* top servers section */
.section-top-servers-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #173464;
}

.top-servers{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem;
}

.top-servers .title {
    font-size: 2rem;
    margin: 2rem 0rem;
}

.server-card {
    max-width: 300px;
    margin-bottom: 2rem;
    margin-top: 2rem;
    margin: auto;
	  height: 650px;
}

.server-card#premium {
  border: 3.5px solid #ffa500;
  border-radius: 20px;
}

.server-card .top-card {
    background-color: #072f5b;
    padding: 32px;
    border-radius: 18px 18px 20px 20px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    position: relative;
    top: -1px;
}

.server-card .top-card.custom {
    margin: 3px;
}

.custom-border {
	position: absolute;
	margin-left: -3px;
	margin-top: -3px;
	border-radius: 20px 20px 16px 16px;
}

.server-card .top-card .main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.server-card .top-card .users-online {
    color: #00a5fc;
    margin-bottom: 0;
}

.server-card .top-card .users-online span {
    color: #fff;
}

.server-card .top-card .emojis {
    color: #01e082;
    margin-bottom: 0;
}

.server-card .top-card .bots {
    color: #e3aa0a;
    margin-bottom: 0;
}

.server-card .top-card .server-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.server-card .bottom-card {
    background-color: #0a0d21;
    border-radius: 20px 20px 16px 16px;
    border: 3px solid #026da7;
    transition: 0.2s ease-in-out;
    transform: scale(0.98);
	  height: 637px;
}

.server-card .bottom-card:hover, .server-card .bottom-card:focus {
    transform: scale(1);
}

.server-card .bottom-card .description {
    padding-bottom: 1rem;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    height: 12rem;
}

.description::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 40px;
    width: 100%;
    background: var(--check-background, linear-gradient(rgba(0,0,0,0), #0a0d21));
}

.server-card .bottom-card .filters {
    margin-bottom: 2rem;
    margin-top: 0.7rem;
    max-height: 1rem;
    min-height: 3.6rem;
    overflow: hidden;
    position: relative;
}

.server-card .bottom-card .filters::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 15px;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0), #0a0d21, #0a0d21);
}

.server-card .bottom-card .join {
    margin-right: 1rem;
}

.server-card .beneath {
    padding: 2rem;
}

/* super bump meter */
.server-card .beneath .super-bump-container {
    height: 1.25rem;
    width: 100%;
    margin-top: -1.25rem;
    margin-bottom: 2rem;
    background-color: #0b2236;
    border: 2px solid #026da7;
    border-radius: 10px;
    z-index: 0;
	position: relative;
}

.server-card .beneath .super-bump-container .super-bump-value {
    height: 1rem;
    width: 0%;
    background: linear-gradient(to right, #00a5fc, #6500fc, #b900fc, #6500fc, #00a5fc);
    border-radius: 10px;
    z-index: 1;
	  background-size: 400%;
}
.super-bump-value.on {
    width: 100% !important;
    filter: drop-shadow(0 0 8px #00a5fc);
    animation: animatemeter 8s linear infinite;
}
@keyframes animatemeter {
    0% {
        background-position: 400%;
    }
    100% {
        background-position: 0%;
    }
}

.show-more {
    position: absolute;
    right: 5rem;
    padding: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-weight: bold;
    background-color: #00a5fc;
    border: 2px solid rgba(0, 165, 252);
    border-radius: 50px;
    transition: 0.2s ease-in-out;
}

.show-more:hover, .show-more:focus {
    border: 2px solid white;
}

@media only screen and (max-width: 1150px) {
  .show-more {
    display: none;
  }
}

/* search results section */

.container-fluid .search {
  background: linear-gradient(#0a0d21, #0a0d21, #0b2236);
}

.index-paging {
  background-color: #091D3E;
  border: 2px solid #082E52;
  border-radius: 50px;
}


.searched-card {
  min-width: 350px;
  max-width: 400px;
  padding: 1rem;
  display: inline-block;
}

.searched-card .searched-header { /* old styling */
  padding: 1rem;
  padding-left: 2rem;
  border-radius: 20px 20px 0px 0px;
  box-shadow: 0px 0px 19px -2px rgba(255, 255, 255, 0.1);
  background-color: #052344;
  font-weight: bold;
  font-size: 1.2rem;
}

.searched-card .searched-header .join-bump-container { /* old styling */
  display: flex;
  margin-top: 0.5rem;
  font-size: 1rem;
}

.searched-card .searched-header .join-bump-container .join { /* old styling */
  margin-right: 1rem;
}

.searched-card .searched-body { /* old styling */
  padding: 2rem;
  border-radius: 0px 0px 20px 20px;
  box-shadow: 0px 0px 19px -2px rgba(255, 255, 255, 0.1);
  background-color: #1a3b70;
}

.searched-card .searched-body .searched-tags button { /* old styling */
  padding-top: 1rem;
  background-color: #0b2236;
  color: #00a5fc;
  border: none;
  padding: 0.5rem;
  border-radius: 3px;
  margin: 0.2rem;
  max-width: 350px;
  margin-top: 0.5rem;
}

.container-fluid .search .search-header { /* old styling */
  font-size: 2rem;
}

.container-fluid input { /* old styling */
  margin: 1rem 0rem;
  background-color: #0b2236;
  border: 2px solid #1b2833;
  border-radius: 5px;
  padding: 0.5rem;
}

/* config section */
.premiumAd {
  font-style: italic;
  text-align: center;
  color:#fdc161;
}

.premiumAd-reset {
	font-style: normal;
	text-align: left;
	color: white;
	padding-left: 10%;
	padding-right: 10%;
}

.bumperRewardRole {
  margin-left: auto;
  margin-right: 2rem;
  margin-top: 5px;
}

/* glide / slider */
.glide1, .glide3, .glide5 {
    background-color: #173464;
    padding-bottom: 3rem;
}

.glide2, .glide4, .glide6 {
    background-color: #0b2236;
    padding-bottom: 3rem;
}

.glide__arrows {
    position: relative;
}

@media only screen and (max-width: 600px) {
	#hideArrow {
		display: none;
	}
}

@media only screen and (max-width: 1200px){
  .premiumAd-reset {
    text-align: center;
  }
}

/* upcoming servers section */
.section-upcoming-servers-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0b2236;
}

.upcoming-servers{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem;
}

.section-upcoming-servers-container h1 {
    font-size: 2rem;
    margin: 3rem 0rem;
}

/* footer */
.footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

footer {
    padding: 3rem;
}

footer .links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem 0rem;
}

footer .links a {
    margin-bottom: 0.3rem;
}

footer .links a:hover {
    color: #00a5fc;
    transition: 0.2s ease;
}

/* home page */
.header-container {
  display: block;
  justify-content: unset;
  align-items: unset;
  text-align: left;
}


.header-container header {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.header-container header .left-content h1 {
  font-size: 2.3rem;
}

/* premium page */
.adju-premium {
    min-width: 300px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .adju-premium2 {
      margin-left: 300px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .adju-premium2 {
      margin-left: 200px;
    }
}

/* search page */
.noresults {
    max-width: 300px;
	padding-bottom: 3rem;
    margin: auto;
}

@media only screen and (max-width: 700px) {
    .adju-search {
		max-width: 300px;
	}
}

/* Media Queries */
/* hiding mobile menu on desktop */
@media only screen and (min-width: 769px) {
    .navigation {
        padding: 1rem;
    }
    
    .navigation .menu {
        display: none;
    }

    .navigation .links {
        display: block;
    }

    .navigation .links a {
        margin-right: 1rem;
        font-weight: 700;
    }

    .navigation .links a:hover {
        color: #0b2236;
        transition: 0.3s ease;
    }

    .header-container header .right-content input {
        width: 300px;
    }
}

@media only screen and (min-width: 1024px) {
    .header-container header .left-content h1 {
        font-size: 3rem;
    }

    .header-container header .right-content .top {
        display: flex;
        align-items: center;
    }

    .header-container header .right-content .top h1 {
        font-size: 3rem;
    }

    .header-container header .right-content .top img {
        display: block;
        width: 50px;
    }
}

@media only screen and (min-width: 1500px) {
    .header-container {
        margin: auto;
        max-width: 1200px
    }
}


/* Experimental */
.nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    display: block;
    margin-left: 5px;
    margin-right: 5px;
}

.nav-link2:hover, .nav-link2:focus {
  text-decoration: none;
}

.nav-link2.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-pills .nav-link2 {
  border-radius: 0.25rem;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link2.active,
.nav-tabs .nav-item.show .nav-link2 {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-fill .nav-item {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}


@media (max-width:1200px){
.nav fix {
    padding-left: 50px;

}
	
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  max-width: 250px;
  
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  
  min-width: 12rem;
  padding: 0.75rem 0;
  margin: 0.25rem 0 0;
  
  font-size: 0.95rem;
  color: #f8f9fa;
  text-align: left;
  list-style: none;
  
  background-color: #0f2547;
  background-clip: padding-box;
  
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
              0 2px 4px -1px rgba(0, 0, 0, 0.06);
  
  backdrop-filter: blur(8px);
  
}

.dropdown-menu2 {
  cursor: pointer;
  max-width: 250px;
  text-wrap: wrap;
  overflow: auto;
  
 
  
}


.dropdown-menu > * {
  padding: 0.5rem 1.25rem;
  transition: background-color 0.15s ease-in-out;
}

.dropdown-menu > *:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #F4F4F4;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}

.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  min-width: 0;
  margin-bottom: 0;
}

.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: -ms-flexbox;
  display: flex;
}

.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}

.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}

.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #007bff;
  background-color: #007bff;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50% / 50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}

.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  -webkit-transform: translateX(0.75rem);
  transform: translateX(0.75rem);
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
  display: none;
}

.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-file-input[disabled] ~ .custom-file-label,
.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-range:focus {
  outline: none;
}

.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

.custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}

.custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
  cursor: default;
}

.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}

.nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

.nav-fill .nav-item {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar .container,
.navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -ms-flex-direction: row;
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

button2 {
  border-radius: 0;
}

button2:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button2,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button2,
input {
  overflow: visible;
}

button2,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button2,
[type="button2"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button2;
}

button2:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

button2::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

.scrollbar {
  margin-left: 30px;
  float: left;
  height: 300px;
  width: 65px;
  background: #fff;
  overflow-y: scroll;
  margin-bottom: 25px;
}
.force-overflow {
  min-height: 450px;
}

.scrollbar-primary::-webkit-scrollbar {
  width: 12px;
  background-color: #00a4fc34;
}

.scrollbar-primary::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #00a5fc;
}

.scrollbar-primary {
  scrollbar-color: #00a5fc #00a4fc34;
}

 /* Using .box-relative1 for both border card box & home page box */

.box-relative1{
	position: relative;
}


.img-crown1 {
    position: absolute;
    margin-left: 214px;
    margin-top: -34px;
}

.img-crown-custom {
    position: absolute !important;
    margin-left: 208px !important;
    margin-top: -34px !important;
}

.img-crown-custom-top {
    position: absolute;
    margin-left: 203px;
    margin-top: -29px;
}

.img-checkmark-solid {
  	position: absolute;
  	margin-left: -30px;
  	margin-top: -30px;
}

.img-checkmark-custom {
  	position: absolute;
  	margin-left: -75px;
  	margin-top: 15px;
}

.img-lock-custom {
	position: absolute;
	margin-left: -80px;
	margin-top: 20px;
}

@media only screen and (max-width: 1003px) {
	.img-custom1 {
		margin-top: 20px !important;
	}
	.img-custom2 {
		margin-top: 15px !important;
	}
  .img-crown-custom-top {
    margin-top: -29px !important;
  }
}

.img-crown-bage {
  position: absolute;
  display: block;
  margin-left: 65px;
  margin-top: -50px;
}

@media (max-height:700px){
	.mobile-screen-title {
		margin-top: 500px;
	}
}

@media (max-width:1921px){
	.sc-1 {
		margin-top: -8.8rem;
	}
	.sc-2 {
	  margin-top: -12rem;
  	}
	.sc-3 {
	margin-top: -17.5rem;
	}
  	.sc-4 {
		margin-top: -3rem;
  	}
}
  
@media (max-width:375px){
	.sc-1 {
		margin-top: -3.8rem;
	}
	.sc-2 {
	  margin-top: -7rem;
  	}
	.sc-3 {
	margin-top: -12.5rem;
	}
  	.sc-4 {
		margin-top: -0rem;
  	}  
}
  
@media (max-height:730px){
	.sc-1 {
		margin-top: -3.8rem;
	}
	.sc-2 {
	  margin-top: -7rem;
  	}
	.sc-3 {
		margin-top: -12.5rem;
  	}
  	.sc-4 {
		margin-top: -0rem;
  	}
}
  
@media (max-height:600px){
	.sc-1 {
		margin-top: -2.8rem;
	}
	.sc-2 {
		margin-top: -6rem;
	}
	.sc-3 {
		margin-top: -11.5rem;
	}
	.sc-4 {
	  margin-top: -0rem;
	}
}
  
@media (min-height:950px){
	.sc-1 {
		margin-top: -8.8rem;
	}
	.sc-2 {
	  margin-top: -12rem;
	}
	.sc-3 {
		margin-top: -17.5rem;
	}
	.sc-4 {
		margin-top: -3rem;
	}
}
  
@media (min-height:1000px){
	.sc-1 {
		margin-top: -15.8rem;
	}
	.sc-2 {
		margin-top: -19rem;
	}
	.sc-3 {
		margin-top: -30.5rem;
	}
	.sc-4 {
		margin-top: -10rem;
	}
}

.no-servers {
	height: 12rem;
	margin-top: 4rem;
}

/* loading wheal */

.loader {
  position: relative;
  top: 10px;
  left: 80px;
  border: 12px solid #bbbbbb;
  border-radius: 50%;
  border-top: 12px solid #3498db;
  width: 70px;
  height: 70px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.tags-dropdown {
  background-color: #131629;
  border: 2px solid #1b2833;
  border-radius: 5px;
  width: 30rem;
  display: block;
  position: absolute;
  z-index: 1;
  opacity: 90%;
  text-align: left;
  padding: 0.5rem;
}
@media only screen and (max-width: 700px) and (min-width: 421px) {
  .tags-dropdown {
     width: 300px;
  }
}
@media only screen and (max-width: 420px) {
  .tags-dropdown {
     visibility: hidden;
  }
}

@media only screen and (max-width: 991px) {
	.border-select {
		justify-content: center !important;
	}
}


/* Premium page */

.purchase-spacing {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.purchase-decoration, .purchase-decoration:hover {
  text-decoration: none;
  color: black;
}

.premium-thanks-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem 0;
}

.premium-thanks-box {
  background: rgba(8, 28, 61, 0.8);
  border: 2px solid #41BFF7;
  border-radius: 15px;
  padding: 2.5rem;
  max-width: 700px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 20px rgba(65, 191, 247, 0.3);
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(65, 191, 247, 0.3);
  }
  to {
    box-shadow: 0 0 25px rgba(65, 191, 247, 0.5);
  }
}

.premium-thanks-logo {
  margin-bottom: 1.5rem;
}

.premium-logo {
  width: 100px;
  height: auto;
}

.premium-thanks-heading {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(65, 191, 247, 0.5);
}

.premium-thanks-developer {
  color: #41BFF7;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.premium-thanks-message {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.premium-thanks-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.benefit-item i {
  color: #41BFF7;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .premium-thanks-box {
    padding: 1.5rem;
  }
  
  .premium-thanks-heading {
    font-size: 2rem;
  }
  
  .premium-thanks-benefits {
    gap: 1rem;
  }
}

.btn-completed {
  color: #fff;
  background-color: #00ccff;
  border-color: #091D3E;
  padding-right: 41px;
  padding-left: 44px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.btn-completed:hover {
  color: #fff;
  background-color: #00ccff;
  border-color: #294C86;
}

.btn-completed:focus, .btn-completed.focus {
  color: #fff;
  background-color: #00ccff;
  border-color: #294C86;
  box-shadow: 0 0 0 0.2rem #082E52;
  -webkit-box-shadow: 0 0 0 0.2rem #082E52;
}

.btn-completed.disabled, .btn-completed:disabled {
  color: #fff;
  background-color: #00ccff;
  border-color: #294C86;
}

.btn-completed:not(:disabled):not(.disabled):active, .btn-completed:not(:disabled):not(.disabled).active,
.show > .btn-completed.dropdown-toggle {
  color: #fff;
  background-color: #00ccff;
  border-color: #294C86;
}

.btn-completed:not(:disabled):not(.disabled):active:focus, .btn-completed:not(:disabled):not(.disabled).active:focus,
.show > .btn-completed.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem #294C86;
  -webkit-box-shadow: 0 0 0 0.2rem #294C86;
}