/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --header-font-color: #f4faff;
	--header-hover-color: white;
	--link-color: #004da5;
	--link-hover-color: #004da5;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #555;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
  text-decoration: none;
}

.file-link, .file-link:hover {
	font-size: 18px;
  text-decoration: underline;
  color: #008d4c;
  font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
}

.debug {
	background: #ffffc0;
}

.global-alert {
	background: #eed90e;
	position: absolute;
	top: 80px;
	width: 100%;
	z-index: 9;
	text-align: center;
	font-size: 14px;
    padding: 2px;
}

.global-alert a {
	color: #444444;
	text-decoration: underline;
}

.inline-form {
	background: #fafafa;
    border-radius: 4px;
    border: 1px solid #eee;
}

.form-control.is-invalid-simple {
  border-color: #dc3545;
}

.link-underlined {
	text-decoration: underline;
}

.inner-page a:hover {
	text-decoration: underline;
}

/*--------------------------------------------------------------
# Bootstrap
--------------------------------------------------------------*/
.text-bg-light {
	color: var(--link-color)!important;
	/* background-color: #eef7ff!important; */
}

.text-bg-warning2 {
  color: #000;
  background-color: #ffebd2;
}

.badge {
	font-weight: normal;
}

.tabs-underline.nav-tabs .nav-link {
	background: none;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 600;
	color: #012970;
	padding: 12px 0;
	margin-right: 25px;
	margin-bottom: -2px;
	border-radius: 0;
}

.tabs-underline.nav-tabs .nav-link.active, .tabs-underline.nav-tabs .nav-link.active:hover {
	/* color: #4154f1; */
	border-color: transparent;
	border-bottom: 3px solid #ff5100;
}

.tabs-underline.nav-tabs .nav-link:focus, .tabs-underline.nav-tabs .nav-link:hover {
	border-color: transparent;
	text-decoration: none;	
}



/*--------------------------------------------------------------
# MUI
--------------------------------------------------------------*/
a.MuiButton-root:hover {
	color: white;
}

.MuiAlert-message a {
  color: white;
  text-decoration: underline;
}

.MuiAutocomplete-option .preferable::after {
  color: green;
  content: " [Existing]";
}
/*--------------------------------------------------------------
# Inner page
--------------------------------------------------------------*/
.inner-page {
	min-height: 100vh;
}

.inner-page.form-cont {
	background: #f9f9f9;
}

.inner-page a:hover {
	text-decoration: underline;
}

.column-list{
	column-count: 3;
  column-gap: 20px;
}


.link-list li::marker {
	color: var(--link-color);
}

.link-list .badge.text-bg-light {
	border: 1px solid #dcecff;
}

.link-list li {
	margin-top: 6px;
}

.link-list > li:first-of-type {
	margin-top: 0;
}

.link-list ul {
	margin-bottom: 12px;
}

/*--------------------------------------------------------------
# Tooltips
--------------------------------------------------------------*/
.tooltip-inner {
  max-width: 400px;
  /* text-align: left; */
}
.tooltip-inner ul {
  margin: 0;
  padding-inline-start: 15px;
  text-align: left;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Badges
--------------------------------------------------------------*/
.instrument-badge, .rating-badge {
	cursor: default;
}

.instrument-badge i {
  color:#ffcc00;
	margin-right: 4px;
}

.rating-badge i {
  color:#ffcc00;
	margin-right: 4px;
}

.style-review-trigger {
  font-size: 16px;
  position: relative;
  top: 1px;
  color: #004da5;
  cursor: pointer;
}

.comment-badge i {
  margin-right: 4px;
}



/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #4154f1;
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  color: #012970;
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.navbar ~ .breadcrumbs {
	margin-top: 0;
}

.breadcrumbs {
  padding: 0;
  margin-top: 18px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 57px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol a {
  transition: 0.3s;
  position: relative;
  color: inherit;
}

.breadcrumbs ol a:hover {
  text-decoration: none;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 8px;
  color: #a3b2c3;
  content: "/";
}

/*--------------------------------------------------------------
# User
--------------------------------------------------------------*/
.user-instrument {
	font-weight: bold;
}

.avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #d5dce4;
    color: #44668c;
	font-size: 16px;
}

.header .profile {
	font-size: 12px;
	display: flex;
	/* align-items: center; */
}

.profile .rep {
	display: flex;
}

.profile .info {
	display: flex;
	padding-left: 8px;
	flex-direction: column;
}

.profile .name {
    text-overflow: ellipsis;
    max-width: 160px;
    overflow: hidden;
}

.profile .points {
	margin-right: 4px;
}

.medal-count {
	position: relative;
}

.medal-count.gold {
	color: #f2d227;
}

.medal-count.silver {
	color: #d6d6d6;
}

.medal-count.bronze {
	color: #f89659;
}

.medal-count::before {
	content: "●";
	left: -2px;
    position: relative;
	margin-left: 8px;
}

.profile .counts {
	padding: 30px 0 60px;
}

.user-side-menu {
	width: 250px;
}

.badge-list {
	list-style-type: none;
}

.badge-list li {
	margin-bottom: 14px;
}

.badge-list li.last {
	margin-bottom: 24px;
}

.badge-large {
	padding: 4px 8px;
	border-radius: 6px;
	cursor: default;
}

.badge-large.bronze {
	background: linear-gradient(135deg, #ffcdae 0%, #ffa166 100%);
}
.badge-large.silver {
	background: linear-gradient(135deg, #ececec 0%, #d6d6d6 100%);
}
.badge-large.gold {
	background: linear-gradient(135deg, #fff706 0%, #ffdc66 100%);
}

.badge-large.disabled {
	background: white;
	color: #ccc;
}

.badge-large.bronze.disabled{
	border: 1px solid #f89659;
}

.badge-large.silver.disabled{
	border: 1px solid #d6d6d6;
}

.badge-large.gold.disabled{
	border: 1px solid #f2d227;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #dce6ee;
  width: 30px;
	height: 30px;
  border-radius: 50%;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 18px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2c93e2;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: none;
  z-index: 997;
  padding: 20px 0 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--header-font-color);
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}

.header .logo span sup {
	font-style: normal;
	/* color: #c4ff00; */
	color: #ff5100;
	font-size: 12px;
	top: -0.8em;
	margin-left: 1px;
}

.user-menu {
	width: 200px;
}

.logged-in {
	display: none;
}

.logged-out {
	display: none;
}

/*--------------------------------------------------------------
# Title
--------------------------------------------------------------*/
.title {
	--stripe1: rgb(255 255 255 / 0%);
	--stripe2: rgb(0 0 0 / 40%);
	/* background: url(../img/hero-bg.png) top center no-repeat, linear-gradient(90deg, #f2f5fc 0%, #f2f5fc 50%, rgb(255 255 255) 50%); */
	/* background: linear-gradient(180deg, rgb(73 44 219 / 99%), rgb(157 157 157 / 59%)), url(../../img/synthesizer-4354772_1920.jpg) top center no-repeat; */
	background: linear-gradient(0deg, var(--stripe1) 25%, var(--stripe2) 25%, var(--stripe2) 50%, var(--stripe1) 50%, var(--stripe1) 75%, var(--stripe2) 75%, var(--stripe2) 100%), url(../img/hero.jpg) top center no-repeat;
	/* min-height: 200px; */
	background-size: 10px 10px, auto;
	/* background-size: 10px 10px, 100%; */
	position: relative;
	width: 100%;
	text-align: center;
	color: var(--header-font-color);
	/* animation: shrink 25s infinite alternate; */
	background-position-y: 35%;
	padding: 100px 0 20px 0;
}

.title h1 {
	font-size: 36px;
    font-weight: 600;
	margin-top: 40px;
}
.title h2 {
    /* margin-top: 15px; */
    font-size: 20px;
}

.title::after {
	/* background: linear-gradient(180deg, rgb(33 69 110), rgb(42 75 113 / 60%)); */
	background: linear-gradient(180deg, rgb(0 109 192), rgb(20 36 86 / 60%));
}

.title .navbar a, .title .navbar a:focus {
	font-family: "Open Sans", sans-serif;
}

.title .navbar>ul>li {
	padding: 10px 6px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 12px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  position: relative;
	font-weight: normal;
  color: var(--header-font-color);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--header-font-color);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #dc4600;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #dc4600;
  box-shadow: 0px 0px 4px 0px #fffad5;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  right: 0;
	left: inherit;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a,
.navbar .dropdown ul a:focus {
	color: var(--link-color);
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--link-hover-color);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: unset;
	right: calc(100%);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.menu-underline::after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 1px;
	bottom: -1px;
	left: 0;
	background-color: #ff5100;
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}

.navbar .active.menu-underline::after,
.navbar .active:focus.menu-underline::after,
.menu-underline:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
  color: var(--header-font-color);;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 577px) {
  .mobile-nav-toggle {
    display: block;
  }

  .main-navbar ul {
    display: none;
  }

  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }

  .column-list {
    column-count: 1;
  }

}

.sub-navbar ul {
  flex-wrap: wrap;
  justify-content: center;
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
  /* max-width: 300px; */
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  /* left: 15px; */
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
  
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #012970;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #4154f1;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #4154f1;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  --stripe1: rgb(255 255 255 / 0%);
	--stripe2: rgb(0 0 0 / 40%);
  width: 100%;
  height: 100vh;
  background: linear-gradient(0deg, var(--stripe1) 25%, var(--stripe2) 25%, var(--stripe2) 50%, var(--stripe1) 50%, var(--stripe1) 75%, var(--stripe2) 75%, var(--stripe2) 100%), url(../img/hero.jpg) top center no-repeat;
	min-height: 600px;
	background-size: 10px 10px, auto;
  position: relative;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: var(--header-font-color);
}

.hero h2 {
  color: var(--header-font-color);
  margin: 15px 0 0 0;
  font-size: 26px;
}

.hero .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #d40086;
}

#hero-typewriter {
  color: #ffb848;
}

.hero .btn-get-started span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .hero-img {
  text-align: right;
}

.hero .feature {
	display: flex;
	align-items: center;
	flex-direction: column;
	/* border: 1px solid red; */
	width: 70%;
	color: var(--header-font-color);
  margin-top: 16px;
}

.hero .feature .info {
	text-align: center;
}

.hero .feature i {
	border: 1px solid var(--header-font-color);
    font-size: 34px;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    text-align: center;
    margin-bottom: 8px;
}

.hero .feature h4 em {
	color: #c4ff00;
	text-shadow: 0px 0px 4px #efffba;
}

.hero .feature .disclaimer {
	font-size: 12px;
	margin-top: 4px;
	color: #84afd2;
}

.hero .feature .disclaimer a {
	color: #84afd2;
	text-decoration: underline;
}

.hero::after, .title::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	z-index: 1;
}

.hero::after{
	/* background: linear-gradient(180deg, rgb(33 69 110 / 95%), rgb(33 69 110 / 20%)); */
	/* background: linear-gradient(180deg, rgb(35 125 194), rgb(97 0 144 / 60%)); */
	background: linear-gradient(180deg, rgb(0 109 192), rgb(68 26 73 / 60%));
}

.hero>.container, .title>.container {
	/* background: linear-gradient(90deg, #0000004a, rgb(255 255 255 / 0%) 70%, rgb(255 255 255 / 0%)); */
	z-index: 11;
	/* padding: 40px; */
}

/* @media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
} */

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
  }

  .hero .hero-img {
    text-align: center;
    margin-top: 80px;
  }

  .hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero .hero-img img {
    width: 100%;
  }
}



/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  background-color: white;
  padding: 40px;
}

.about h3 {
  font-size: 14px;
  font-weight: 700;
  color: #4154f1;
  text-transform: uppercase;
}

.about h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
}

.about p {
  margin: 0 0 1rem 0;
	text-indent: 2rem;
  text-align: justify;
  line-height: 24px;
}

.about .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}

.about .btn-read-more span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .btn-read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Roadmap
--------------------------------------------------------------*/
.roadmap {
	list-style: none;
	padding-left: 1rem;
}

.roadmap i {
	margin-right: 8px;
	color: red;
}

.roadmap .done {
	color: #008d4c;
}

.roadmap .in-progress {
	color: #ffcc00;
}

.roadmap li {
	margin: 0 0 8px 20px;
	text-indent: -12px;;
}
/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values .box {
  padding: 30px;
  box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
  text-align: center;
  transition: 0.3s;
  height: 100%;
}

.values .box img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values .box h3 {
  font-size: 24px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .box:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.values .box:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 30px 0 60px;
}

.counts .count-box {
  display: flex;
  align-items: center;
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.counts .count-box i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: #4154f1;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #0b198f;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #f9f9f9;
	padding: 0 0 10px 0;
  font-size: 14px;
  margin-top: 120px;
}

.footer .footer-newsletter {
  padding: 50px 0;
  background: #f6f9ff;
  border-top: 1px solid #e1ecff;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  color: #012970;
}

.footer .footer-newsletter form {
  margin-top: 20px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  border: 1px solid #e1ecff;
}

.footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 8px;
  width: calc(100% - 140px);
}

.footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 30px;
  margin: 3px;
  background: #4154f1;
  color: #fff;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter form input[type=submit]:hover {
  background: #5969f3;
}

.footer .footer-top {
  /* background: white url(../img/footer-bg.png) no-repeat right top; */
  background-size: contain;
  border-top: 1px solid #e1ecff;
  border-bottom: 1px solid #e1ecff;
  padding: 60px 0 30px 0;
}

@media (max-width: 992px) {
  .footer .footer-top {
    background-position: center bottom;
  }
}

.footer .footer-top .footer-info {
  margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}

.footer .footer-top .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}

.footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
}

.footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
  color: #012970;
}

.footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #012970;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-top .footer-links {
  margin-bottom: 30px;
}

.footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #d0d4fc;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-top .footer-links ul a {
  color: #013289;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-top .footer-links ul a:hover {
  color: #4154f1;
}

.footer .footer-top .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
  padding-top: 10px;
  color: #012970;
  font-size: 12px;
}

.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

.footer a {
	text-decoration: underline;
	padding: 0 8px;
}

/*--------------------------------------------------------------
# Search
--------------------------------------------------------------*/

.search-button {
	background-color: transparent;
	color: var(--header-font-color);
	/* border: 1px solid #4c729d; */
	border: 1px solid #2e7fbd;
	border-radius: 4px;
	min-height: 34px;
    display: flex;
    align-items: center;
	position: relative;
	cursor: pointer;
	/* min-width: 220px; */
	font-size: 14px;
	flex: 0.8;
}

.search-button i {
	padding: 0 3px;
}

.search-button span {
	margin-left: 10px;
	margin-right: auto;
}

.search-button kbd {
    background-color: #1d6096;
    font-size: 12px;
    color: #c3dffc;
}

.search-button:hover {
	/* background-color: #44668c; */
	background-color: #1f78c3;
}

.search-input .input-group-text {
	background-color: inherit;
}

.search-input .form-control {
	border-left: none;
	padding-left: 0;
}

.search-dialog *:focus {
	/* border: 0!important;
	outline: 0!important;
	border-color: inherit; */
	box-shadow: none;
}

.search-input .input-group-text:has( + .form-control:focus) {
	border-color: #86b7fe;
}

.search-dialog {
	font-size: 16px;
    font-family: "Open Sans", sans-serif;
}

@media (min-width: 576px) {
	.search-dialog .modal-dialog {
		max-width: 640px;
	}
}

.search-dialog .modal-footer {
	justify-content: flex-start;
	font-size: 10px;
}

.search-dialog ul {
	list-style: none;
	margin: 0 0 20px 0;
	padding: 0;
}

.search-dialog .search-category {
	font-size: 12px;
}

.search-dialog li {
	position: relative;
	border: 1px solid;
	border-color: white white #dee2e6 white;
	padding: 6px 12px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.search-dialog li a {
	flex: 1 1 0%;
	overflow-x: hidden;
	text-overflow: ellipsis;
    white-space: nowrap;
	font-size: 16px;
}

.search-dialog .selected {
	border-color: #86b7fe;
	background: #f1f7ff;
	border-radius: 4px;
}

.search-dialog li:has( + .selected) {
	border-color: white;
}

.search-dialog li .badge {
	display: inline-flex;
	height: 20px;
    align-items: center;
    justify-content: center;
    /* vertical-align: middle;*/
	color: #444;
    border: 1px solid #dee2e6;
	border-radius: 10px;
    font-weight: normal;
	margin-left: 8px;
	min-width: 54px;
}

.search-dialog li kbd {
	background: transparent;
	color: #444;
	display: inline-flex;
	/* height: 17px; */
    align-items: center;
	position: relative;
    top: 2px;
	display: none;
}

.search-dialog li.selected kbd {
	display: block;
}

.search-dialog modal-footer kbd {
	padding: 3px 4px;
	background-color: #999;
}

/*--------------------------------------------------------------
# Style Review
--------------------------------------------------------------*/
.style-review-dialog *:focus {
  box-shadow: none;
}

/*--------------------------------------------------------------
# Filters
--------------------------------------------------------------*/
.filter-input {
	display: flex;
	flex: 1;
	max-width: 320px;
}

.filter-menu {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.filter-menu .form-control {
	font-size: 14px;
}

.filter-input .input-group-text {
	background-color: inherit;
}

.filter-input .form-control {
	border-left: none;
	padding-left: 0;
}

.filter-menu *:focus {
	box-shadow: none;
}

.filter-input .input-group-text:has( + .form-control:focus) {
	border-color: #86b7fe;
}

.sort-menu .btn {
	--bs-btn-font-size: 14px;
}

.sort-menu a {
	min-width: 80px;
}

.sort-menu .btn-outline-secondary {
	border-color: #ced4da;
}

.instrument-menu {
	/* position: relative;
	display: inline-flex;
	vertical-align: middle; */
	width: initial;
}

/*--------------------------------------------------------------
# Rating
--------------------------------------------------------------*/
.star-rating {
	cursor: default;
	display: inline-flex;
  color: #ccc;
}

.star-rating.high i {
	color: #ff5100;
}

.star-rating-large {
	font-size:22px;
}

.rating {
  display: flex;
  flex-direction: row-reverse;
}

.star-vote .rating:has(input:checked) i::before {
	content: "\f588";
}

.star-vote .rating:hover i::before {
	content: "\f588";
}

.rating > input {
  display: none;
}

.star-vote .rating > label {
  cursor: pointer;
}

/* .rating:not(:hover) > input:checked ~ label > i::before,
.rating:not(:hover) > input:checked ~ label ~ label > i::before {
	content: "\f586";
} */
.rating:not(:hover) > input:checked ~ label > i::before,
.rating:not(:hover) > input:checked ~ label ~ label > i::before {
	content: "\f586";
}
.rating > input:checked ~ label > i,
.rating > input:checked ~ label ~ label > i {
	color: #ff00d4;
}

.rating > input:checked ~ label:hover > i::before,
.rating > input:checked ~ label:hover ~ label > i::before,
.rating > input:not(:checked) ~ label:hover > i::before,
.rating > input:not(:checked) ~ label:hover ~ label > i::before {
	color: #ff00d4;
}

.rating > input:checked ~ label:hover > i,
.rating > input:checked ~ label:hover ~ label > i,
.rating > input:not(:checked) ~ label:hover > i::before,
.rating > input:not(:checked) ~ label:hover ~ label > i::before {
	content: "\f586";
} 

/*--------------------------------------------------------------
# introjs
--------------------------------------------------------------*/
.introjs-tooltipReferenceLayer * {
  font-family: "Open Sans", sans-serif;
}


.introjs-tooltip {
  min-width: 400px;
  max-width: 400px;
}

.introjs-button, .introjs-button:active, .introjs-button:focus, .introjs-button:hover {
  border: none;
  background: none;
  box-shadow: none;
  text-shadow: none;
  color: var(--link-color);
}

.introjs-disabled, .introjs-disabled:active, .introjs-disabled:focus, .introjs-disabled:hover {
  color: #bbb;
}

.introjs-tooltipbuttons {
  padding: 3px 10px;
}

.introjs-bullets {
  padding-top: 3px;
  padding-bottom: 3px;
}

.introjs-tooltiptext {
  padding: 3px 15px 3px 15px;
  font-size: 14px;
}
.introjs-tooltiptext ul {
  margin-bottom: 0;
}

.introjs-tooltiptext p {
  margin-bottom: 0.5em;
}

.introjs-tooltip-header {
  padding-left: 15px;
}



/*--------------------------------------------------------------
# Style Player
--------------------------------------------------------------*/
.styleplayer {
  padding: 3px;
}

.styleplayer .debug-panel{
  margin-top: 10px;
}

.style-controls *:focus {
	box-shadow: none;
}

.style-controls {
	background: #fafafa;
	font-size: 18px;
	/* display: inline-block; */
  display: flex;
}

.style-controls .left-panel{
	flex: 7;
}

.style-controls .right-panel {
  /* min-width: 200px; */
  margin-left: 3px;
  flex: 3;
  min-width: 270px;
}


.style-sections {
	--color-disabled: #ddd;
	--color-enabled: #3f96d8;
	--color-queued: #ff9e2d;
	--color-active: #f81d1d ;
	--color-active-progress: #df0606;
  --color-play: #72ce00;
  --color-stop: #bb511b;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.style-controls button {
	border-radius: 4px;
	border: none;
	color: #FFFFFF;
	justify-content: center;
  align-items: center;
	/* padding: 5px; */
	cursor: pointer;
	/* margin: 3px; */
  display: flex;
  height: 32px;
}

.style-controls button i {
  margin-right: 3px;
}

.style-sections .play-button.status-stopped {
  background: var(--color-play);
}

.style-sections .play-button.status-playing {
  background: var(--color-stop);
}

.style-sections .section.status-disabled{
	cursor: default;
	color: var(--color-disabled);
}

.style-sections .section.status-enabled{
	background: var(--color-enabled);
}

.style-sections .section.status-queued{
	background: var(--color-queued);
}

.style-sections .section.status-active{
	background: var(--color-active);
}

/* channels */
.style-channels {
  /* min-width: 200px; */
  /* margin-left: 3px;
  flex: 3; */

  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  align-self: start;

	--color-disabled: #ddd;
	--color-enabled: #586d92;
	--color-active: #ff4e4e;
}

.style-channels .channel {
	justify-content: left;
  font-size: 14px;
  line-height: 29px;
  align-items: normal;
  position: relative;
}

.style-channels .channel i {
  font-size: 8px;
  margin-right: 6px;
  margin-left: 3px;
  line-height: 30px;
}

.style-channels .channel span {
  position: absolute;
  right: 10px;
}

.style-channels .channel.status-disabled{
	background: var(--color-disabled);
	color: #555;
}

.style-channels .channel.status-enabled{
	background: var(--color-enabled);
}

.style-channels .channel.active i {
	color: var(--color-active);
}

/* settings */

.settings-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  margin-top: 3px;
}

.setting-selector {
  display: flex;
  align-items: center;
  height: 32px;
  font-size: 14px;
}

.setting-selector select {
  width: auto;
  display: inline;
  flex: 1;
  margin-right: 3px;
}

.setting-selector label {
  display: inline-block;
  margin-right: 5px;
  margin-left: 6px;
  min-width: 50px;
  text-align: right;
}

.setting-toggles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 3px;

  --color-active: #ff4e4e;
}

.setting-toggles button {
	justify-content: left;
  font-size: 11px;
  line-height: 29px;
  align-items: normal;
  position: relative;
  background: #0e4f61;
}

.setting-toggles button i {
  font-size: 6px;
  margin-right: 6px;
  margin-left: 2px;
  line-height: 30px;
}

.setting-toggles .status-enabled i{
	color: var(--color-active);
}

/* voices */
.style-voices {
	display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 38px;

	--color-disabled: #ddd;
	--color-enabled: #586d92;
	--color-active: #f81d1d ;
	--color-inactive: #32a758;
}

.style-voices .voice {
	display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
}

.style-voices .part{
  font-size: 14px;
  cursor: default;
}
.style-voices .part.status-disabled{
	background: var(--color-disabled);
	color: #555;
}

.style-voices .part.status-enabled{
	background: var(--color-enabled);
}

.style-voices .status-active .ots{
	background: var(--color-active);
}

.style-voices .status-inactive .ots{
	background: var(--color-inactive);
}

.style-voices .status-inactive .part.status-enabled {
	background: #999;
}

/*style info*/
/* .style-info-cont {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 3px;
  font-size: 14px;
  height: 32px;
} */

.style-info {
  color: #063150;
  height: 38px;
  display: flex;
  align-items: center;
}
.style-info strong {
  margin-left: 4px;
}

.style-info .help {
  margin-left: auto;
  font-size: 24px;
  color: #3f96d8;
  cursor: pointer;
}

/* song */
.song-summary {
  min-height: 180px;
  display: flex;
}

.song-summary .song-info {
  /* min-width: 200px; */
  flex: 1 0 0%;
  padding-left: 20px;
}

.song-summary .notation {
  width: 220px;
}

.song-summary .video-reference{
  width: 320px;
  height: 180px;
}

.song-summary .video-placeholder{
  background:#fafafa;
  border: 1px solid #ddd;
  height: 100%;
}

.video-placeholder i {
  font-size: 80px;
  color: #ddd;
}

.small-inline-form-cont {
  line-height: 34px;
  margin-bottom: 0.5rem;
}

.small-inline-form-cont .hover_action {
  display: none;
}
.small-inline-form-cont:hover .hover_action {
  display: inline;
}

.bordered-container {
  /* background: #fdfdfd; */
  border: 1px solid #eee;
  border-radius: 4px;
  box-shadow: 2px 2px 8px 0px #f0f0f0;
}

/* media queries */

@media (min-width: 578px) and (max-width: 767px) {
  .navbar a {
    /* font-size: clamp(10px, 2vw, 18px); */
    font-size: 2vw;
  }
  .navbar>ul>li {
    padding: 10px 1vw;
  }
  .header .logo span {
    font-size: 2vw;
  }
  .header .logo span sup {
    font-size: 1.5vw;
  }
  .search-button {
    font-size: 2vw;
    min-height: 5vw;
  }
  .avatar {
    width: 5vw;
    height: 5vw;
  }
}
