@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800&display=swap');

/* Body */
body {
	font-family: 'Sora', sans-serif;
	font-size: 14px;
}
a {
	text-decoration: none;
	color: #1b1b1b;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
a:hover {
	color: #0d6efd;
}
.site-brand {
	width: 200px;
	padding: 6px;
}
.topbar{
	background: #0091e2;
	color: #f9f9f9;
	text-align: right;
	padding: 2px 15px;
}
.topbar a {
	color: #f9f9f9;
}
	.topbar a:hover {
		color: #ffffff;
	}
/* Custom Bootstrap */
.btn {
	font-size: 14px;
	padding: 12px 30px !important;
	font-weight: 600;
}
.btn-primary {
	background: #f14f00;
	border-color: #f14f00;
}
.btn-primary:hover, .btn-primary:focus {
	background: #e14a00;
	border-color: #e14a00;
}
.bg-primary {
	background-color: #f14f00 !important;
}
.shadow {
  box-shadow: 0 10px 40px 0 rgba(47,47,47,.1) !important;
}
.bg-light {
	background-color: #f9f9f9 !important;
}
.bg-blue {
	background: #397bd3;
}
.text-primary {
	color: #f14f00 !important;
}

/* Index */
.transition-3d-hover {
  transition: all 0.2s ease-in-out;
}
.transition-3d-hover:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
.gradient-text{
	color: #000000;
}
.icon {
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.user-img {
	width: 40px;
}
.admin-icon {
	height: 25px;
	width: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.social-icon {
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.icon-sm {
	height: 30px;
	width: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.build-something-together {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../img/pages/banner.jpeg);
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: -2rem;
}
.centerfootericons {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
}
.bg-footer {
    --bs-bg-opacity: 1;
    background-color: rgb(0 110 195) !important;
}
.borderfooteritems {
    --bs-border-opacity: 1;
    border-color: rgb(255 255 255) !important;
}
.text-white-footer {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, .9) !important;
}
.blueicons {
    color: #397bd3 !important;
}
/* Navbar */
.app-nav  a.nav-link.py-4 {
	padding-top: 35px !important;
	padding-bottom: 35px !important;
	color: #faf6f6;
	font-weight: bold;
	font-size: 15px;
}
.app-nav .navbar-nav .nav-link:hover {
	color: #fff;
	font-weight: bold;
}
.app-nav .navbar-nav .nav-link.active {
	color: #fff;
	font-weight: bold;
}
.osahan-header-logo .logo {
	height: 30px;
}
.osahan-user-header {
	background-image: url("/images/guitarbanner.png");
	position: relative;
	display: flex;
	align-items: flex-end;
	height: 400px;
	border-radius: 24px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	overflow: hidden;
	max-width: 1380px;
	margin: auto;
}
.osahan-sidebar {
	position: relative;
}

	.osahan-sidebar .profile-img {
		height: 120px;
		width: 120px;
		object-fit: cover;
	}
.osahan-sidebar-links .dropdown-item {
	font-size: 15px;
	padding: 12px 15px;
	color: #595c5f;
	border-radius: 8px;
	margin: 2px 0;
}
	.osahan-sidebar-links .dropdown-item.active, .osahan-sidebar-links .dropdown-item:hover {
		background: rgb(61 157 255 / 8%);
		color: #006ec3;
	}
.text-purple {
	color: #f14f00 !important;
}

.btn-theme {
	padding: 10px 25px !important;
}

.btn-purple {
	background-color: #f14f00;
	color: #ffffff;
	border: 1px solid #f14f00;
}

	.btn-purple:hover, .btn-purple:focus, .btn-outline-purple:hover {
		background-color: #e14a00;
		color: #ffffff;
		border: 1px solid #e14a00;
	}

.btn-outline-purple {
	color: #e14a00;
	border: 1px solid #e14a00;
}

.bg-purple {
	background-color: #f14f00;
}
.bg-opacity-purple {
	background: rgb(61 157 255 / 8%);
}
.text-purple {
	color: #006ec3 !important;
}
.navbar-nav .dropdown-menu {
  box-shadow: 0px 24px 21px rgb(0 0 0 / 11%) !important;
}
.dropdown:hover>.dropdown-menu {
  display: block;
  animation: dropdown-show 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@keyframes dropdown-show {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.dropdown-menu:hover .dropdown-item{
  opacity: 0.6;
}
.dropdown-menu .dropdown-item:hover{
  opacity: unset;
  font-weight: 500;
}
.dropdown-item{
  transition: all 0.2s ease-in-out;
  padding-right: 40px;
}
.dropdown-item:hover{
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
.dropdown-item:after {
  content: "\ea6c";
  font-family: remixicon!important;
  font-style: normal;
  position: absolute;
  right: 0;
  font-size: 14px;
  line-height: 24px;
  opacity: 0;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.dropdown-item:hover:after{
  opacity: unset;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.dropdown-item {
  position: relative;
}

/* Back To Top */
#back-to-top {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	box-shadow: 0 10px 40px 0 rgba(47,47,47,.1) !important;
	background-color: #fff;
	color: #2d2a3e;
	width: 50px;
	border-radius: 100px;
	cursor: pointer;
	height: 50px;
	border: 3px solid #ebebeb;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14px;
}
#back-to-top:hover {
	box-shadow: 0 10px 40px 0 rgba(47,47,47,.1) !important;
	background-color: #2d2a3e;
	color: #ffffff;
}

/* Mobile Sidebar */
#sidebar .offcanvas-header .link-light {
    color: #000 !important;
}
#sidebar .offcanvas-body .nav-item .nav-link {
    text-align: center;
    padding: 15px 20px !important;
}
#sidebar .offcanvas-body .nav-item.dropdown {
    position: unset !important;
}
#sidebar .offcanvas-body .dropdown-menu {
    position: relative !important;
    transform: unset !important;
    box-shadow: none !important;
}
#sidebar .offcanvas-body .dropdown-menu .dropdown-mega-content .col-lg-3 {
    border: none !important;
    padding: 15px 15px !important;
    text-align: center;
}

/* Page Loading */
.page-loading {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all .4s .2s ease-in-out;
	transition: all .4s .2s ease-in-out;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	z-index: 9999;
}
[data-bs-theme="dark"] .page-loading {
	background-color: #121519;
}
.page-loading.active {
	opacity: 1;
	visibility: visible;
}
.page-loading-inner {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	text-align: center;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
	opacity: 0;
}
.page-loading.active > .page-loading-inner {
	opacity: 1;
}
.page-loading-inner > span {
	display: block;
	font-family: "Inter", sans-serif;
	font-size: 1rem;
	font-weight: normal;
	color: #6f788b;
}
[data-bs-theme="dark"] .page-loading-inner > span {
	color: #fff;
	opacity: .6;
}
.page-spinner {
	display: inline-block;
	width: 2.75rem;
	height: 2.75rem;
	margin-bottom: .75rem;
	vertical-align: text-bottom;
	background-color: #d7dde2; 
	border-radius: 50%;
	opacity: 0;
	-webkit-animation: spinner .75s linear infinite;
	animation: spinner .75s linear infinite;
}
[data-bs-theme="dark"] .page-spinner {
	background-color: rgba(255,255,255,.25);
}
@-webkit-keyframes spinner {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	50% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes spinner {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	50% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
    