body {
	background-color: white;
	background-image: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	margin: 0;
	padding: 0;
	width: 100%;
	justify-content: center;
	align-items: center;
}
.landingpage-container {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 100%;
	background-attachment: fixed;
  }
.app-logo {
	display: none;
	width: 50px;
	height: 50px;
	object-fit: cover;
	margin-bottom: 10px;
  }
/* loading starts*/
#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: transparent;
	z-index: 9999;
	display: block;
	transition: opacity 0.5s ease, visibility 0.5s;
}

.youtube-loader {
	width: 100%;
	height: 100%;
	background-color: transparent;
	position: relative;
	overflow: hidden;
}

.progress-bar {
	width: 100%;
	height: 100%;
	position: relative;
	background-color: transparent !important;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #0066ff, #ffcc00, #0066ff);
	background-size: 200% 100%;
	width: 0%;
	transition: width 0.3s ease;
	animation: gradient-move 1s ease-in-out infinite;
}

@keyframes gradient-move {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* Animation for gradient move */
.animate-gradient-move {
	animation: gradient-move 1s ease-in-out infinite;
}

#loader-wrapper {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}
/* loading ends*/

.alert {
	margin-bottom: 0;
   }
.post-list {color: #000;}
.password-container {
   position: relative;
}
#sidebar-wrapper {
	margin-top: 75px;
}
.dropdown-container select {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 8px;
    border-radius: 5px;
	border: 1px solid black;
    font-size: 16px;
    cursor: pointer;
}
.dropdown-container {
    margin-left: 50px;
    margin-top: 7px;
}
.search-container {
	padding: 20px 0;
	background-color: #f8f9fa;
	border-bottom: 1px solid #e9ecef;
}
#wrapper{margin-top: 140px;}
#imageSelector{
	display: none;
}
.backoffice-circle i{
	display: none;
}
.circle i{
	display: none;
}
.fixed-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
  }
  .landingpage .fixed-buttons {
	gap: 10px;
	display: flex;
    position: fixed;
    z-index: 1000;
  }

  @media screen and (max-width: 667px) {
    .navbar-collapse {
        float: left;
    }
}
  /* Desktop: right: 200px */
  @media (min-width: 992px) {
	.landingpage   
	.fixed-buttons {
      right: 200px;
      
    }
  }
img {
	image-orientation: from-image;
}

.container-fluid.flash-msg {
	padding: 0;
}

.profile .container {
	margin-top: 140px;
	text-align: center;
}

.profile-section-header {
	display: flex;
	align-items: center;
	justify-content: start;
	flex-wrap: wrap;
	padding: 1rem 0;
	gap: 1rem;
}

.profile-section-actions {
	display: flex;
	align-items: center;
	justify-content: end;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.profile-nav-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.5rem 0.85rem;
	border-radius: 999px;
	background: #f3f3f3;
	border: 1px solid #d6d6d6;
	color: #333;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.profile-nav-btn:hover,
.profile-nav-btn:focus {
	background: #e2e2e2;
	border-color: #c5c5c5;
	color: #111;
}

.profile-back-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.5rem 0.95rem;
	border-radius: 999px;
	border: 1px solid #b1b1b1;
	background: #fff;
	color: #333;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.profile-back-btn:hover,
.profile-back-btn:focus {
	background: #f0f0f0;
	border-color: #9e9e9e;
	color: #111;
}

@media (max-width: 767px) {
	.profile-section-header {
		flex-direction: column;
		align-items: stretch;
		justify-content: center;
	}

	.profile-section-actions {
		justify-content: space-between;
	}
}

.app-keys,
.user-keys {
	width: 20%;
	margin: 0 auto;
}

/*HELPER CLASSES*/
.display-none {
	display: none;
}

.display-block {
	display: block;
}

.display-inline {
	display: inline-block;
}

.point-cursor {
	cursor: pointer;
	user-select: none;
}

.align-left {
	text-align: left;
}

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

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

.float-right {
	float: right;
}

.float-left {
	float: left;
}

.margin-0-auto {
	display: block;
	margin: 0 auto;
}

.padding-0 {
	padding: 0;
}

.padding-2 {
	padding: 2rem;
}

.title {
	font-size: 2em;
}

.sub-title {
	font-size: 1.5em;
}

.small-text {
	font-size: .75em;
}

/* Link for Site Instructions (normal/light theme) */
.site-instructions-link {
	color: #1d5875;
	text-decoration: none;
	font-size: 12px;
	font-weight: 500;
	opacity: 0.7;
	transition: opacity 0.2s;
}
.site-instructions-link:hover {
	opacity: 1;
	text-decoration: none;
	color: #1d5875;
}
.site-instructions-link p {
	margin: 0;
	line-height: 1;
	text-align: center;
}


.list-style-none {
	list-style: none;
	padding: 0;
}

.font-weight-600 {
	font-weight: 600;
}

.margin-right-display-inline {
	margin-right: -0.45rem;
}

.color-white {
	color: #fff;
}

.remove-btn-design {
	background: #fff;
	border: none;
}

/* NAVBAR */
.navbar {
	margin-bottom: 0;
}

.navbar-default {
	background: #fff;
	border-color: #fff;
}

.navbar-default .navbar-brand,
.navbar-default .navbar-text {
	color: #000;
}

.navbar-default .navbar-nav>li>a {
	color: #000;
}

.navbar-collapse {
	float: left;
}

/*MODAL*/
.modal-content {
	padding: 3%;
}

#close-modal-form,
.close-modal-form {
	border-radius: 9px;
	padding: 1px 10px;
	position: absolute;
	top: -10px;
	right: -10px;
}

/* LOGIN & SIGNUP PAGES */
.login-form,
.signup-form,
.resetpassword-form {
	border: 0px solid black;
	border-radius: 50%;
	height: 425px;
	margin: 10rem auto 0;
	padding: 2rem;
	text-align: center;
	width: 425px;
	max-width: 90vw;
	position: relative;
	background-image: linear-gradient(to right top, #bbb, #eee, #bebebe);
	z-index: 10;
	user-select: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.login-form:after,
.signup-form:after,
.resetpassword-form:after {
	content: "";
	height: calc(100% - 8px);
	width: calc(100% - 8px);
	position: absolute;
	left: 4px;
	top: 4px;
	background: #fff;
	border: 0;
	border-radius: 50%;
	z-index: -1;
}

.login-form {
	user-select: none;
	cursor: pointer;
}

.login-form>h1#omni {
	font-size: 2.5rem;
	font-weight: 500;
	color: #374151;
	margin: 0 0 1.5rem 0;
	z-index: 1;
	letter-spacing: 0.02em;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
}

#login-text {
	font-size: 1.1em;
	display: none;
}

/* Button container - holds Login and Sign Up side by side */
.button-container {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	z-index: 1;
}

/* Button styling to replace Bootstrap */
.login-btn {
	padding: 0.5rem 1.5rem;
	background-color: #ffffff;
	color: #374151;
	border: 1px solid #d1d5db;
	border-radius: 0.25rem;
	font-size: 1rem;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
}

.login-btn:hover {
	background-color: #f9fafb;
	border-color: #9ca3af;
}

/* Show button container and login buttons */
.login-form .button-container {
	display: flex;
}

.login-form>h2,
.login-form>form {
	display: none;
}

.signup-form>h2 {
	margin-top: -8rem
}

.resetpassword-form h2 {
	margin-top: 5rem;
}

.whiteboard-toggle-btn {
	position: fixed;
	bottom: 25px;
	left: 25px;
	z-index: 50;
	/* Commented out for now - hide whiteboard button in bottom task bar */
	display: none !important;
}

.whiteboard-btn {
	padding: 0.5rem 1rem;
	background-color: #f3f4f6;
	color: #1f2937;
	border: 1px solid #d1d5db;
	border-radius: 0.25rem;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s;
	display: inline-block;
}

.whiteboard-btn:hover {
	background-color: #e5e7eb;
	border-color: #9ca3af;
}

/* SETUP PAGE*/
.setup-page {
	margin: 3rem auto;
}

.steps {
	margin: 3rem 1rem 1rem 1rem;
	padding: 2rem;
	border: 1px solid #000;
}


/* INDEX PAGE */
#show-apps {
	float: left;
}

.circle,
.smaller-circle,
.larger-circle,
.largest-circle {
	/* border: 1px solid black; */
	border: 0px solid black;
	border-radius: 50%;
	margin: 2rem auto;
	text-align: center;
	position: relative;
	background-image: linear-gradient(to right top, #bbb, #eee, #bebebe);
	z-index: 10;
}

.circle:after,
.smaller-circle:after,
.larger-circle:after,
.largest-circle:after {
	content: "";
	height: calc(100% - 8px);
	width: calc(100% - 8px);
	position: absolute;
	left: 4px;
	top: 4px;
	background: #fff;
	border: 0;
	border-radius: 50%;
	z-index: -1;
}

#nav-tabs .smaller-circle {
	margin: 0 auto !important;
}

.circle>p,
.smaller-circle>p,
.larger-circle>p,
.largest-circle>p {
	position: absolute;
	left: 0px;
	right: 0px;
	z-index: 999;
}

.circle>a,
.smaller-circle>a,
.larger-circle>a,
.largest-circle>a {
	z-index: 999;
}

.smallest-circle,
.inner-circle {
	border: 0px solid black;
	border-radius: 50%;
	margin: 2rem auto;
	text-align: center;
	position: relative;
	background-image: linear-gradient(to right top, #bbb, #eee, #bebebe);
	z-index: 10;
}

.smallest-circle>p,
.inner-circle>p {
	position: absolute;
	left: 0px;
	right: 0px;
	z-index: 999;
}

.smallest-circle:after,
.inner-circle:after {
	content: "";
	height: calc(100% - 8px);
	width: calc(100% - 8px);
	position: absolute;
	left: 4px;
	top: 4px;
	background: #fff;
	border: 0;
	border-radius: 50%;
	z-index: -1;
}

.larger-circle {
	height: 250px;
	width: 250px;
}

.largest-circle {
	height: 310px;
	width: 310px;
}

.circle {
	height: 200px;
	width: 200px;
}

.smaller-circle {
	height: 150px;
	width: 150px;
}

.smallest-circle {
	height: 110px;
	width: 110px;
}

.inner-circle {
	height: 75px;
	width: 75px;
}

.larger-circle>p,
.circle>p,
.smaller-circle>p,
.smallest-circle>p,
.inner-circle {
	color: #000;
}

.larger-circle>p {
	margin-top: 11rem
}

.largest-circle>p {
	margin-top: 13rem;
}

.circle>p {
	margin-top: 9rem;
}

.smaller-circle>p {
	margin-top: 6rem;
}

.smallest-circle>p,
.smallest-circle>i {
	margin-top: 2rem;
}

.inner-circle>p {
	margin-top: 2.5rem;
}

.outer-circle>a {
	display: none;
	margin-top: 5rem;
	/* padding: 1rem; */
}

.backoffice-circle {
	background: #d4d4d4;
}

#nav-tabs .smaller-circle>i {
	margin-top: 3.5rem;
}

/* PROFILE PAGE */
.profile-section {
	height: 535px;
}


.align-center .wall-img-outer {
	height: 500px;
	width: 500px;
	margin: 0 auto;
	/* border: 4px solid; */
	color: #3a00ff;
	border-radius: 250px;
	position: relative;
	background-image: linear-gradient(to right top, #bbb, #eee, #bebebe);
}

.align-center .wall-img-wrapper {
	position: absolute;
	left: calc(50% - 285px);
}

.align-center .wall-img {
	/* margin-left: 10rem; */
	border-radius: 50%;
	/* height: 500px; */
	/* margin: auto; */
	/* width: 500px; */
	object-fit: cover;
	position: absolute;
	left: 4px;
	top: 4px;
	width: calc(100% - 8px);
	height: calc(100% - 8px);
}

.nav-profile-img {
	border: 3px solid #fff;
	border-radius: 50%;
	height: 220px;
	width: 200px;
	margin-top: 15rem;
	margin-left: -10rem;
	object-fit: cover;
}

.align-center .profile-img-wrapper {
	position: absolute;
	left: calc(50% - -70px);
	top: 270px;
}

.align-center .profile-img-outer {
	height: 220px;
	width: 200px;
	border-radius: 50%;
	position: relative;
	background-image: linear-gradient(to right top, #bbb, #eee, #bebebe);
}

.align-center img.profile-img {
	/* border: 3px solid #fff; */
	border-radius: 50%;
	position: absolute;
	left: 4px;
	top: 4px;
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	/* margin-top: 15rem;
	margin-left: -10rem; */
	object-fit: cover;
}

img.nav-profile-img {
	border: 3px solid #fff;
	border-radius: 50%;
	height: 220px;
	width: 200px;
	margin-top: 15rem;
	margin-left: -10rem;
	object-fit: cover;
}

#profile-name {
	font-size: 2em;
	text-align: center;
}

.profile .circle p,
.profile .circle span,
.profile #profile-name {
	text-align: center;
	width: 100%;
	display: block;
}

/* Ensure profile circles have perfectly centered content */
.profile .circle {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}

.profile .circle i {
	margin: 0 0 8px 0;
}

.profile .circle>p {
	position: static;
	margin: 0;
}

.profile .circle span {
	display: inline-block;
}

.expand-circle-tabs {
	height: 350px;
	padding: 0 2rem;
	width: 350px;
}

.hidden-content {
	display: none;
}

.show-content {
	display: block;
	padding-top: 10px;
}

.show-content>p:first-child {
	padding-top: 95px;
}

/*ABOUT PAGE*/
#personal-info-form>.modal-dialog {
	width: 90%;
}

.section.about {
	width: 70%;
	margin: 0 auto;
}

/* CONTENT PAGE*/
img.nav-profile-img.content-page {
	margin-left: 0;
	margin-top: 0;
}

.nav-profile-img.content-page,
.tabs {
	display: inline-block;
}

.tabs {
	overflow-x: auto;
	white-space: nowrap;
	width: 100%;
}

.tabs>a {
	display: inline-block;
}

.content-tabs {
	overflow-x: auto;
	white-space: nowrap;
	width: 100%;

}

.semi-circle {
	display: inline-block;
	cursor: pointer;
	user-select: none;
	color: #d4d4d4;
	border: 1px solid #d4d4d4;
	border-radius: 100px 100px 0px 0px;
	display: inline-block;
	margin: 1rem 1rem 0;
	padding: 2rem 1rem 0rem 1rem;
	min-width: 92px;
	text-align: center;
}
.toggle-password {
   position: absolute;
   right: 10px;
   top: 50%;
   transform: translateY(-50%);
   cursor: pointer;
}

.semi-circle-select {
	color: #000;
}

.section {
	display: none;
}

.section.first {
	display: block;
}

.content {
	position: relative;
	z-index: 0;
	margin: 2rem auto;
}

/*FRIENDS*/
.friends {
	text-align: left;
}

.friends-list,
.friends-request-list {
	list-style: none;
	padding: 0;
}

/*WALL*/

#post-content-textbox {
	resize: vertical;
}

.each-post {
	border: 1px solid #d4d4d4;
	padding: 2rem;
}

.delete-post {
	padding: 0.3rem 0.8rem;
}

.post-edit-form {
	display: none;
	margin-top: 1rem
}

.storage-files {
	width: 200px;
	height: 200px;
}

.wall-video {
	width: 500px;
}

.app-tabs {
	position: fixed;
	bottom: 1rem;
}

.app-tabs>.semi-circle {
	border: 1px solid #000;
	background: #fff;
}

/*MEDIA*/
.photo {
	width: 100%;
	position: relative;
	z-index: -1;
	flex-shrink: 0;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
}

.gradient {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: 100%;
	height: 380px;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.65) 100%);
	/* FF3.6+ */
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.65) 100%);
	/* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.65) 100%);
	/* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.65) 100%);
	/* IE10+ */
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.65) 100%);
	/* W3C */
}

.delete-btn {
	visibility: hidden;
	background-color: transparent;
	border: 0;
	display: block;
	margin: 0 auto;
}

.smaller-circle:hover .delete-btn {
	visibility: visible;
}

.delete-photo {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0.3rem 0.8rem;
	color: #fff;
	background: #000;
}

.delete-video {
	margin-left: 15rem;
	padding: 0.3rem 0.8rem;
	color: #fff;
	background: #000;
}

.text-box {
	color: white;
	position: absolute;
	bottom: 0;
	padding: 2%;
}

.upload-btn {
	margin: 1rem 0.1rem;
}

.video-list {
	overflow-x: none;
	overflow-y: auto;
	white-space: nowrap;
	height: 500px;
	width: 100%;
}

.each-video {
	border-radius: 50%;
	object-fit: fill;
}

#video-player {
	width: 540px;
	height: 310px;
}

/*SETTINGS PAGE*/
.refer,
.transfer,
.ledger {
	margin: 0 auto;
	width: 50%;
}

#profile_orientation {
	display: none;
}

.edit-profile-info {
	width: 40%;
}

/*BACKOFFICE*/
#sidebar-wrapper {
	top: 60px;
	width: 200px;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
}
.sidebar-tabs i{

display: none;
}
#wrapper {
	padding-left: 200px;
}

.sidebar-nav li a {
	display: block;
	color: #000;
	text-decoration: none;
	padding: 10px 15px 10px 30px;
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus {
	color: #000;
}

.sidebar-nav>.select {
	background: rgb(238, 238, 238);
}

img.backoffice-img {
	height: 50px;
	width: 50px;
	margin-top: 0;
	margin-left: 0;
}

.delete-user-form {
	margin-top: 20rem;
	width: 30%;
}

.suspend-user,
.unsuspend-user {
	margin: auto 1rem;
}

.sidebar-nav.dropdown-menu {
	width: 100%;
}

/*WHITEBOARD*/
.whiteboard {
	display: none;
	position: relative;
}

.cb-reg,
.cb-full {
	float: left;
	margin: 0 20px;
	margin-top: 3px;
}

.tools {
	position: fixed;
	bottom: 50px;
	padding: 5px;
}

.tools-login {
	position: fixed;
	bottom: 10px;
	padding: 5px;
}

.colors {
	width: 400px;
	float: left;
	text-align: left;
}

.chat-btn {
	float: left;
	margin: 13px 0 0 16px;
}

.fa-eraser {
	color: pink;
}

.color {
	display: inline-block;
	height: 48px;
	width: 48px;
	margin: 0 5px;
	border-radius: 50%;
}
.btn button {
   border-radius: 10px;
     background:#2563eb ;
     color: #ffffff;
   border: 2px solid #C0C0C0;
   padding: 10px 20px;
   font-size: 16px;
   font-weight: 600;
   border-radius: 12px;
   cursor: pointer;
   transition: all 0.3s ease;
   backdrop-filter: blur(6px);
 }
.color.white {
	background-color: white;
	border: 1px solid black;
	border-radius: 25%;
}

.color.black {
	background-color: black;
}

.color.red {
	background-color: red;
}

.color.green {
	background-color: green;
}

.color.blue {
	background-color: blue;
}

.color.yellow {
	background-color: yellow;
}

.size {
	float: left;
	margin-top: 13px;
}

#size {
	width: 120px;
}

/*feedback*/
#feedback-border {
	position: fixed;
	bottom: 1rem;
	left: 1.5rem;
	z-index: 1000;
	background: #fff;
	border: 1px solid #d4d4d4;
	padding: 1rem 1rem 0 1rem;
}
#setup {
	position: fixed;
	bottom: 28px;
	right: 148px;
	left: auto;
	z-index: 2100;
	background: rgba(255, 255, 255, 0.85);
	border: none;
	padding: 6px 12px 6px 12px;
	border-radius: 8px;
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
}

#feedback-circle>p {
	margin-top: 4.5rem;
}

#feedback-form .modal-content {
	margin-top: 12rem;
}

/*INBOX*/
.message-header {
	padding: 0 2rem;
}

.each-message {
	border: 1px solid #d4d4d4;
	padding: 2rem;
}

.message-content {
	white-space: pre-wrap;
}

.rotate {
	animation: rotateAnim 2s linear infinite;
}


.preview-snapshot {
	width: 75%;
}

@keyframes rotateAnim {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}


/*MEDIA QUERIES*/
@media (min-width: 668px) and (max-width: 1024px) {
	body {
		font-size: 1.25em;
	}

	img.nav-profile-img {
		height: 165px;
		width: 150px;
		margin-top: 8rem;
		margin-left: -7rem;
	}

	.wall-img {
		height: 300px;
		width: 300px;
	}

	.profile-img-outer {
		width: 150px;
		height: 160px;
	}

	.align-center .profile-img {
		width: calc(100% - 8px);
		height: calc(100% - 8px);
	}

	.circle {
		height: 150px;
		width: 150px;
	}

	.smaller-circle {
		height: 100px;
		width: 100px;
	}

	.smallest-circle {
		height: 90px;
		width: 90px;
	}

	.inner-circle {
		height: 60px;
		width: 60px;
	}

	.outer-circle>a {
		padding: 0.5rem;
		margin-top: 4.3rem;
	}

	.larger-circle {
		height: 200px;
		width: 200px;
	}

	.largest-circle {
		height: 270px;
		width: 270px;
	}

	.circle>p {
		margin-top: 6rem;
	}

	.smaller-circle>p {
		margin-top: 3.7rem;
	}

	.larger-circle>p {
		margin-top: 9rem;
	}

	.expand-circle-tabs {
		height: 300px;
		padding: 0 2rem;
		width: 300px;
	}

	.expand {
		width: 300px;
		height: 300px;
	}

	.photo {
		height: 240px;
	}

	#sidebar-wrapper {
		width: 160px;
	}

	#wrapper {
		padding-left: 160px;
	}

	img.backoffice-img {
		height: 50px;
		width: 50px;
		margin-top: 0;
		margin-left: 0;
	}

	#feedback-circle>p {
		margin-top: 3.5rem;
	}
}

@media screen and (max-width: 667px) {
	
	body {
		font-size: 1em;
	}

	.align-center .wall-img-outer {
		height: 250px;
		width: 250px;
		/* border: 4px solid; */
		border-radius: 125px;
	}


	.login-form,
	.signup-form {
		height: 90vw;
		width: 90vw;
		margin-top: 5rem;
		padding: 1rem 4rem;
	}
	
	.login-form > h1#omni {
		font-size: 2rem;
		font-weight: 500;
		letter-spacing: 0.02em;
	}
	
	.login-btn {
		font-size: 0.875rem;
		padding: 0.4rem 1.2rem;
	}

	.profile-section {
		height: 290px;
	}

	.align-center .wall-img {
		height: 200px;
		width: 200px;
		width: calc(100% - 8px);
		height: calc(100% - 8px);
	}

	.align-center .wall-img-wrapper {
		position: absolute;
		left: calc(50% - 150px);
	}

	.align-center .profile-img-wrapper {
		position: absolute;
		left: calc(50% - -25px);
		top: 105px;
	}

	.align-center .profile-img-outer {
		width: 115px;
		height: 130px;
	}

	.align-center img.profile-img {
		width: calc(100% - 8px);
		height: calc(100% - 8px);
	}

	img.nav-profile-img {
		height: 110px;
		width: 100px;
		margin-top: 5.75rem;
		margin-left: -5rem;
	}

	.circle {
		height: 115px;
		width: 115px;
	}

	.smaller-circle {
		height: 95px;
		width: 95px;
	}

	.show-content>p:first-child {
		padding-top: 55px;
	}

	/* .smallest-circle {
		height: 65px;
		width: 65px;
	} */

	.inner-circle {
		height: 50px;
		width: 50px;
	}

	.outer-circle>a {
		padding: 0;
		margin-top: 1.5rem;
	}

	.larger-circle {
		height: 150px;
		width: 150px;
	}
	.largest-circle {
		height: 242px;
		width: 242px;
	}

	/*.largest-circle {
		height: 350px;
		width: 350px;
	}*/

	.largest-circle>p {
		margin-top: 11rem;
	}

	.circle>p {
		margin-top: 4.7rem;
	}

	.smaller-circle>p {
		margin-top: 3.5rem;
	}

/* Profile content tabs use flex gap for spacing; no extra top padding */
.smaller-circle>i {
	padding-top: 0;
}

	#nav-tabs .smaller-circle>i {
		margin-top: 0 !important;
	}

	#tabs {
		height: 120px !important;
	}

	.smallest-circle>p,
	.smallest-circle>i {
		margin-top: 3.1rem;
	}

	.inner-circle>p {
		margin-top: 2rem;
	}

	.larger-circle>p {
		margin-top: 6.5rem;
	}

	.expand-circle-tabs {
		height: 250px;
		padding: 0 2rem;
		width: 250px;
	}

	.expand {
		width: 200px;
		height: 200px;
		padding: 0;
	}

	#recaptcha {
		margin: 0 auto;
		width: 100%;
		display: flex;
		justify-content: center;
	  }
	  .password-container {
		position: relative;
	  }
	  .toggle-password {
		position: absolute;
		right: 10px;
		top: 50%;
		transform: translateY(-50%);
		cursor: pointer;
	  }
	  .search-container {
		padding: 20px 0;
		background-color: #f8f9fa;
		border-bottom: 1px solid #e9ecef;
	  }
	  
	  .search-form {
		position: relative;
		max-width: 600px;
		margin: 0 auto;
	  }
	  
	  #suggestions {
		position: absolute;
		width: 100%;
		top: 100%;
		left: 0;
		z-index: 1000;
		border: 1px solid #ddd;
		border-radius: 4px;
		box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	  }
  
	  .suggestion-item {
		padding: 8px 12px;
		cursor: pointer;
		border-bottom: 1px solid #eee;
		background-color: white;
	  }
  
	  .suggestion-item:last-child {
		border-bottom: none;
	  }
  
	  .suggestion-item:hover {
		background-color: #f8f9fa;
	  }
	  .search-container {
		padding: 20px 0;
		background-color: #f8f9fa;
		border-bottom: 1px solid #e9ecef;
	  }
	  
	  .search-form {
		position: relative;
		max-width: 600px;
		margin: 0 auto;
	  }
	  
	  #suggestions {
		position: absolute;
		width: 100%;
		top: 100%;
		left: 0;
		z-index: 1000;
		border: 1px solid #ddd;
		border-radius: 4px;
		box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	  }
  
	  .suggestion-item {
		padding: 8px 12px;
		cursor: pointer;
		border-bottom: 1px solid #eee;
		background-color: white;
	  }
  
	  .suggestion-item:last-child {
		border-bottom: none;
	  }
  
	  .suggestion-item:hover {
		background-color: #f8f9fa;
	  }
	  .card {
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .btn-primary {
        background-color: #007bff;
        border: none;
    }
    .btn-primary:hover {
        background-color: #0056b3;
    }
    .form-label {
        font-weight: 600;
    }
	.video-list {
		overflow-y: none;
		overflow-x: auto;
		height: 150px;
	}

	#each-video-div {
		display: inline-block;
	}

	#video-player {
		width: 270px;
		height: 155px;
	}

	#sidebar-wrapper {
		width: 110px;
	}

	#wrapper {
		padding-left: 110px;
	}

	img.backoffice-img {
		height: 40px;
		width: 40px;
		margin-top: 0;
		margin-left: 0;
	}

	#feedback-circle>p {
		margin-top: 2.5rem;
	}

	.gradient {
		height: 200px;
	}
}

    /* Mobile: right: 20px */
	@media (max-width: 991.98px) {
		.landingpage  .fixed-buttons {
		  right: 20px;
		}
	  }


	  .input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group {
		margin: 0 !important;
	 }
	 
	 .alert {
		margin-bottom: 0;
	   }
	   .landingpage-container .container{
		padding-top: 55px;
	  }