  #sidebar {
    height: 100%;
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #111;
    transition: 0.5s;
  }
  #sidebar a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    display: block;
    transition: 0.3s;
  }
  #sidebar a:hover {
    color: #f1f1f1;
  }
  #sidebar .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 25px;
    color: #fff;
    cursor: pointer;
  }
  .page-container {
    transition: margin-left 0.5s;
    padding: 16px;
    margin-left: 250px;
    padding-top: 65px;
  }
  #navbar {
    background-color: white;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
  #brand-logo {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  nav.navbar {
    left: 250px;
    min-height: 60px;
    transition: margin-left 0.5s;
  }
  .sidebar-brand.brand-logo  {
    background-color: white;
    text-align: center;
  }
  .user-icon {
    height: 40px;
    width: 40px;
    border-radius: 50%;
  }

  /* //////// */
  .btn-secondary,.btn-primary {
    font-size: 16px;
    line-height: 1.3333333;
    border-radius: 0.5rem;
    cursor: pointer;
  }
  .btn-primary {
    background-color: #080808 !important;
    color: white !important;
    border: 1px solid #080808 !important;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
    background-color: #080808 !important;
    border-color: #DEFF10 !important;
    color: #DEFF10 !important;
}
.xtras_app_version {
  color: white;
  position: fixed;
  bottom: 0;
  padding: 10px;
  z-index: 3;
  margin: 0;
  padding-bottom: 0;
  font-size: 8px;
}
.template-list .template {
  cursor: pointer;
  border: 1px solid transparent;
}
.template.selected {
  border: 1px solid blue;
}
.icon-picker-list {
	display: flex;
	flex-flow: row wrap;
	list-style: none;
	padding-left: 0;
}

.icon-picker-list li {
	display: flex;
	flex: 0 0 20%;
	float: left;
	width: 20%;
}

.icon-picker-list a {
	background-color: #f9f9f9;
	border: 1px solid #fff;
	color: black;
	display: flex;
	flex: 1 1 auto;
	font-size: 12px;
	line-height: 1.4;
	min-height: 100px;
	padding: 10px;
	text-align: center;
	user-select: none;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.icon-picker-list a:hover,
.icon-picker-list a.active{
	background-color: #009E49;
	color: #fff;
	cursor: pointer;
	text-decoration: none;
}

.icon-picker-list .fa {
	font-size: 24px;
	margin-bottom: 10px;
	margin-top: 5px;
}

.icon-picker-list .name-class {
	display: block;
	text-align: center;
	word-wrap: break-word;
}

.iconPickerContainer {
  display: flex;
  align-items: center;
  gap: 20px;
}