html, body {
    font-family: 'Montserrat', sans-serif;
    height: 100%;
    margin: 0px;
    padding: 0px;
}


.no-scroll {
    overflow: hidden !important;
}

.container, .app, .chart-container {
    height: 100%;
}

.desktop .chart-container {
    min-height: 600px;
}

.app {
    padding-top: 15px;
}

.viz-svg {
    overflow: visible;
	/* background: url(../content/logo.png) no-repeat; */

}

.mobile .top-category text {
    font-weight: 900;
    font-size: 18px;
}

.node {
    cursor: pointer;
}

.node circle {
    transition: fill .75s ease;
}

.grey {
    pointer-events: none !important;
}

.grey circle {
    fill: #D5D5D5; 
}

.grey rect {
    fill: #D5D5D5;
}

.grey-hover {
    pointer-events: none !important;
}

.grey-hover circle {
    fill: #D5D5D5; 
}

.grey-hover rect {
    fill: #D5D5D5;
}

.node text {
    font-family: 'Montserrat', sans-serif;

}

/* Texts in circles */
.node .category {
    font-weight: bold;
    
    
}

/* Numbers in circles */
.node .num-endpoints {

}

.info-container {
    position: absolute;
    z-index: 10;
    top: 50px;
    left: 180px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.top-bar {
    display: flex;
    justify-content: flex-end;
    margin: 0 -15px;
    padding: 10px;
    background-color: #f8f9fa;
}
.top-bar button {
    margin-left: 10px;
}

.align-vertical-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.app-name {
    font-size: 20px;
    font-weight: bold;

}

.app-close {
}

.app-info {
    margin-left: 15px;
}

.app-icon {
    cursor: pointer;
    width: 40px;
    height: 40px; 
    transition: transform 0.3s ease; /* Smooth transition for the transform property */  
}
.app-icon:hover {
    transform: scale(1.5); /* Increase the size of the icon to 150% when hovered */
}

.app-filter:after {
    content: url("../content/add-white.svg");
    color: #ffffff;
    width: 13px;
    height: 13px;
    font-weight: bold;
    float: right;
    margin-left: 15px;
}


.info {
    padding: 10px;
    margin-bottom: 10px;
}

.info-name {
    font-weight: bold;
    padding: 2px 0px; 
}

.info-description {

}

.info-url {

}

.info-tags {
    margin-top: 10px;
}

.info-tags .tag {
    padding: 5px 8px;
    background-color: #D5D5D5;
    border-radius: 15px;
    margin-right: 8px;
    display: inline-block;
    overflow: auto;
}

.info-loctags {
   margin-bottom: 10px;
}

.info-loctags .loctag {
    padding: 5px 8px;
    background-color: #009ca6;
    border-radius: 15px;
    color: #ffffff;
	margin-right: 8px;
    display: inline-block;
    overflow: auto;
}

.app-filter {
    cursor: pointer;
    padding: 8px 10px;
    font-size: 17px;
    color: #ffffff;
    background-color: #D5D5D5;
    margin-left: 10px;
    height: 40px;
    border-radius: 13px;
    
}



.filters {
    width: 300px;
    margin-left: 10px;
    padding: 15px;
    background-color: #F2A900;
    max-height: 600px;
    position: absolute;
	/* height: 100vh;; */
    overflow: hidden;
    overflow-y: scroll;
    left: 90px;
    top: 4px;
    border-radius: 15px;
    z-index: 20;
    transition: all 0.75s ease;
	
        
}

.filters .tag-wrapper {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 5px;
    padding-left: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.75s ease;
	margin-right: 10px;
	display:inline-flexbox;
    overflow: auto;
	text-wrap: wrap;

}

.filters .tag {
    display: inline-block;
    width: 100%;
    cursor: pointer;
}

.filters .header {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}

.filters .section-header {
    margin-bottom: 10px;
    font-weight: 600;
}

.filters .remove-tag {
    cursor: pointer;
    float: right;
    background-image: url("../content/add-black.svg");
    transform: rotate(45deg);
    width: 18px;
    height: 17px;
    margin-top: 3px;
    margin-right: 3px;
}

.filters .close-filter {
    cursor: pointer;
    float: right;
    background-image: url("../content/add-black.svg");
    transform: rotate(45deg);
    width: 18px;
    height: 17.5px;
}

/* detail view */
.course {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
	display: flex;
	max-width: 100%;
	margin: 20px;
	overflow: hidden;
	width: 800px;
}

.course h6 {
	opacity: 0.6;
	margin: 0;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.course h2 {
	letter-spacing: 1px;
	margin: 10px 0;
}

.course-preview {
	background-color: #31663b;
    /* 2A265F */
	color: #fff;
	padding: 20px;
	max-width: 280px;
    width: 100%;
    /* word-wrap: break-word; */
    overflow-wrap: break-word; 

    
}

.course-preview a {
	color: #fff;
	display: inline-block;
	font-size: 12px;
	opacity: 0.6;
	margin-top: 30px;
	text-decoration: none;
    overflow-wrap: break-word; 

}

.course-info {
	padding: 30px;
	position: relative;
	width: 100%;
}

.progress-container {
	position: absolute;
	top: 30px;
	right: 30px;
	text-align: right;
	width: 150px;
}

.progress {
	background-color: #ddd;
	border-radius: 3px;
	height: 5px;
	width: 100%;
}

.progress::after {
	border-radius: 3px;
	background-color: #2A265F;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 5px;
	width: 66%;
}

.progress-text {
	font-size: 10px;
	opacity: 0.6;
	letter-spacing: 1px;
}

.btn {
	background-color: #2A265F;
	border: 0;
	border-radius: 50px;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
	color: #fff;
	font-size: 16px;
	padding: 12px 25px;
	position: absolute;
	bottom: 30px;
	right: 30px;
	letter-spacing: 1px;
}

/* SOCIAL PANEL CSS */
.social-panel-container {
	position: fixed;
	right: 0;
	bottom: 80px;
	transform: translateX(100%);
	transition: transform 0.4s ease-in-out;
}

.social-panel-container.visible {
	transform: translateX(-10px);
}

.social-panel {	
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 0 16px 31px -17px rgba(0,31,97,0.6);
	border: 5px solid #001F61;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-family: 'Muli';
	position: relative;
	height: 169px;	
	width: 370px;
	max-width: calc(100% - 10px);
}

.social-panel button.close-btn {
	border: 0;
	color: #97A5CE;
	cursor: pointer;
	font-size: 20px;
	position: absolute;
	top: 5px;
	right: 5px;
}

.social-panel button.close-btn:focus {
	outline: none;
}

.social-panel p {
	background-color: #001F61;
	border-radius: 0 0 10px 10px;
	color: #fff;
	font-size: 14px;
	line-height: 18px;
	padding: 2px 17px 6px;
	position: absolute;
	top: 0;
	left: 50%;
	margin: 0;
	transform: translateX(-50%);
	text-align: center;
	width: 235px;
}

.social-panel p i {
	margin: 0 5px;
}

.social-panel p a {
	color: #FF7500;
	text-decoration: none;
}

.social-panel h4 {
	margin: 20px 0;
	color: #97A5CE;	
	font-family: 'Muli';	
	font-size: 14px;	
	line-height: 18px;
	text-transform: uppercase;
}

.social-panel ul {
	display: flex;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.social-panel ul li {
	margin: 0 10px;
}

.social-panel ul li a {
	border: 1px solid #DCE1F2;
	border-radius: 50%;
	color: #001F61;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	width: 50px;
	text-decoration: none;
}

.social-panel ul li a:hover {
	border-color: #FF6A00;
	box-shadow: 0 9px 12px -9px #FF6A00;
}

.floating-btn {
	border-radius: 26.5px;
	background-color: #001F61;
	border: 1px solid #001F61;
	box-shadow: 0 16px 22px -17px #03153B;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	line-height: 20px;
	padding: 12px 20px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
}

.floating-btn:hover {
	background-color: #ffffff;
	color: #001F61;
}

.floating-btn:focus {
	outline: none;
}

.floating-text {
	background-color: #001F61;
	border-radius: 10px 10px 0 0;
	color: #fff;
	font-family: 'Muli';
	padding: 7px 15px;
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	z-index: 998;
}

.floating-text a {
	color: #FF7500;
	text-decoration: none;
}
.app-button {
    cursor: pointer;
    padding: 8px 10px;
    font-size: 17px;
    color: #ffffff;
    background-color: #652323;
    margin-left: 10px;
    height: 40px;
    border-radius: 13px;
    
}


.cms-header {
    padding: 20px 0;
    color: #007bff;
    text-align: center;
}

.column-small {
    width: 80px;
}

.column-medium {
    width: 150px;
}

.column-large {
    width: 200px;
}

#map-config-form, 
#logos-form,
#categories-form,
#pending-submissions-form,
#data-table-form{
    margin-top: 30px;
}

.cms-inp-group {
    display: block;
    margin-bottom: 20px;
}


#categories, #aubcategories {
    margin-top: 10px;
}

#categories span, #subcategories span {
    padding: 5px 8px;
    background-color: #D5D5D5;
    border-radius: 15px;
    margin-right: 8px;
    display: inline-block;
    overflow: hidden;
}

.top-bar {
    display: flex;
    justify-content: flex-end;
    margin: 0 -15px;
    padding: 10px;
    background-color: #ffffff;
}
.top-bar button {
    margin-left: 10px;
}


.filter-bar {
    display: flex;
    justify-content: flex-start;
    margin: 0 -15px;
    background-color: #ffffff;
}

menu .list-group-item.active {
    color: #ffffff;
    background-color: #007bff;
    border-color: #007bff;
}

.list-group-item:hover,
.list-group-item.active:hover {
    background-color: #0056b3;
    color: #fff;
    cursor: pointer;
}

.list-group{
    margin: 0px 10px;
}

#logos-form {
  display: flex;
  margin-top: 30px;
}

.logo-container {
  margin-right: 20px;
  text-align: center;
}

.logo-container:last-child {
  margin-right: 0;
}

.image-container {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.logo-container img {
  max-height: 100%;
  max-width: 100%;
}

.db-response{
    margin-left: 10px;
    color: #ffffff;
    background-color: #0056b3;
    border-radius: 25px;
}

#left-div {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    background-color: #f8f9fa;
    z-index: 1;
}

#testentry {
    margin: 60px 0;
}

/* Modal styles */
.categorymodal,
.subcategorymodal{
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.categorymodal-container,
.subcategorymodal-container {
  align-items: center;
  justify-content: center;
}

.categorymodal-content,
.subcategorymodal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
  height: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem;
  position: sticky; /* Use sticky positioning */
  z-index: 10; /* Ensure header/footer is on top */
  background-color: #fefefe; /* Ensure a background to cover content when scrolled */
  top: 0; /* Stick to the top */
}

.offcanvas-footer {
    position: sticky; /* Use sticky positioning */
    z-index: 10; /* Ensure header/footer is on top */
  background-color: #fefefe; /* Ensure a background to cover content when scrolled */
  bottom: 0; /* Stick to the bottom */
}

.offcanvas-body {
    max-height: calc(100vh - 60px); /* 100% viewport height minus the approx height of header and footer */
    overflow-y: auto; /* Enable vertical scrolling */
  }

.btn-close {
  box-sizing: content-box;
  width: 0.8em;
  height: 0.8em;
  padding: 0.25em 0.25em;
  color: #a1acb8;
  background: transparent url("data:image/svg+xml,%3Csvg width='150px' height='151px' viewBox='0 0 150 151' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='path-1' points='131.251657 0 74.9933705 56.25 18.7483426 0 0 18.75 56.2450278 75 0 131.25 18.7483426 150 74.9933705 93.75 131.251657 150 150 131.25 93.7549722 75 150 18.75'%3E%3C/polygon%3E%3C/defs%3E%3Cg id='🎨-%5BSetup%5D:-Colors-&amp;-Shadows' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' transform='translate%28-225.000000, -250.000000%29'%3E%3Cg id='Icon-Color' transform='translate%28225.000000, 250.500000%29'%3E%3Cuse fill='%23a1acb8' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='0.5' fill='%23a1acb8' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center/0.8em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: 0.95;
}
.btn-close:hover {
  color: #a1acb8;
  text-decoration: none;
  opacity: 0.95;
}
.btn-close:focus {
  outline: 0;
  box-shadow: none;
  opacity: 0.95;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0.25;
}

.filter-bubble{
    background-color: firebrick;
    color: white;
    margin: -40px 0px 0 -15px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
}

.categorymodal-content input,
.categorymodal-content select,
.subcategorymodal-content input,
.subcategorymodal-content select{
    margin:0 15%;
    width: 70%;
}

/* Close button style */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.editable-row {
    background-color: #F0F8FF; /* Set the desired background color for editable rows */
}

.col-md-9 {
    margin-left: 25%;
}

.hidden {
    display: none;
}

@media screen and (max-width: 480px) {

	.social-panel-container.visible {
		transform: translateX(0px);
	}
	
	.floating-btn {
		right: 10px;
	}
}