@import url("https://fonts.googleapis.com/css?family=Source+Code+Pro:200,900");
:root {
  --text-color: white;
  --shadow-color: hsla(210, 40%, 52%, 0.4);
  --btn-color: #55b467;
  --btn-color2: #2876b6;
  --bg-color: white;
  --title-color: #9b2335;
}

* {
  box-sizing: border-box;
}
html,
body {
  color: black;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  font-size: 16px;
  line-height: 120%;
  font-family: "Robot Slab", sans-serif;
}
.dashboard {
  display: grid;
  width: 100%;
  height: 100%;
  grid-gap: 0;
  grid-template-columns: 12% auto;
  grid-template-rows: 80px auto;
  grid-template-areas: "menu search" "menu content";
  border: 1px solid #1b253d;
}
.search-wrap {
  grid-area: search;
  margin-left: -150px;
  background: #f5f5fa;
  /* background: #ced4da; */
  border-bottom: 1px solid #ede8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3em;
  text-align: center;
}
aside .user-actions b {
  text-align: center;
  align-items: center;

  /* margin-left: 380px; */
}
.search-wrap .user-actions {
  /* align-items: center;
text-align: center; */
  margin-top: 10px;
  margin-left: 350px;
}
.search-wrap .search {
  height: 40px;
}
.search-wrap .search label {
  display: flex;
  align-items: center;
  height: 100%;
}
.search-wrap .search label svg {
  display: block;
}
.search-wrap .search label svg path,
.search-wrap .search label svg circle {
  fill: #b6bbc6;
  transition: fill 0.15s ease;
}
.search-wrap .search label input {
  display: block;
  padding-left: 1em;
  height: 100%;
  margin: 0;
  border: 0;
}
.search-wrap .search label input:focus {
  background: #f5f5fa;
}
.search-wrap .search label:hover svg path,
.search-wrap .search label:hover svg circle {
  fill: var(--title-color);
}
.search-wrap .user-actions button {
  border: 0;
  background: none;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  margin-left: 0.5em;
}
.search-wrap .user-actions button svg {
  position: relative;
  top: 2px;
}
.search-wrap .user-actions button svg path,
.search-wrap .user-actions button svg circle {
  fill: black;
  transition: fill 0.15s ease;
}
.search-wrap .user-actions button:hover svg path,
.search-wrap .user-actions button:hover svg circle {
  fill: var(--title-color);
}

.search-wrap .user-actions .user .user-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.search-wrap {
  text-align: center;
}
.content-wrap {
  grid-area: content;
  padding: 3em;
  overflow: auto;
  border-left: 0.5px solid #ede8f0;
}
.content-wrap .content-head {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}
header {
  text-align: center;
}

.content-wrap .content-head .action button {
  border: 0;
  background: #4b84fe;
  color: #fff;
  width: auto;
  height: 3.5em;
  padding: 0 2.25em;
  border-radius: 3.5em;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background-color 0.15s ease;
}
.content-wrap .content-head .action button:hover {
  background-color: var(--title-color);
}
.content-wrap .content-head .action button:hover:active {
  background-color: var(--title-color);
  transition: none;
}
.content-wrap .info-boxes {
  padding: 3em 0 2em;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 2em;
}
.content-wrap .info-boxes .info-box {
  background: #fff;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 3em;
  border: 1px solid #ede8f0;
  border-radius: 5px;
}
.content-wrap .info-boxes .info-box .box-icon svg {
  display: block;
  width: 48px;
  height: 48px;
}
.content-wrap .info-boxes .info-box .box-icon svg path,
.content-wrap .info-boxes .info-box .box-icon svg circle {
  fill: #99a0b0;
}
.content-wrap .info-boxes .info-box .box-content {
  padding-left: 1.25em;
  white-space: nowrap;
}
.content-wrap .info-boxes .info-box .box-content .big {
  display: block;
  font-size: 2em;
  line-height: 150%;
  color: #1b253d;
}
.content-wrap .info-boxes .info-box.active svg circle,
.content-wrap .info-boxes .info-box.active svg path {
  fill: var(--title-color);
}
.content-wrap .person-boxes {
  text-align: center;
  align-items: center;
  padding: 0;
  grid-gap: 2em;
}
.content-wrap .person-boxes .person-box {
  background: #f5f5fa;
  height: 320px;
  text-align: center;
  padding: 3em;
  border: 1px solid #ede8f0;
  border-radius: 5px;
  margin-top: 60px;
}
.content-wrap .person-boxes .person-box:nth-child(2n) .box-avatar .no-name {
  background: #4b84fe;
}
.content-wrap .person-boxes .person-box:nth-child(5n) .box-avatar .no-name {
  background: #ffbb09;
}
.content-wrap .person-boxes .person-box .box-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0px auto;
  overflow: hidden;
}
.content-wrap .person-boxes .person-box .box-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.content-wrap .person-boxes .person-box .box-avatar .no-name {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 1.5em;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  background: #fa5b67;
}

.content-wrap .person-boxes .person-box .box-bio {
  white-space: no-wrap;
  text-align: center;
}

.content-wrap .person-boxes .person-box .box-bio .bio-name {
  margin: 2em 0 0.75em;
  color: #1b253d;
  font-size: 1em;
  font-weight: 700;
  line-height: 100%;
}

.content-wrap .person-boxes .person-box .box-bio .bio-position {
  margin: 0;
  font-size: 0.875em;
  line-height: 100%;
  text-align: center;
}

.content-wrap .person-boxes .person-box .box-actions {
  margin-top: 1.25em;
  padding-top: 1.25em;
  width: 100%;
  border-top: 1px solid #ede8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-wrap .person-boxes .person-box .box-actions button {
  border: 0;
  background: none;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
}

.content-wrap .person-boxes .person-box .box-actions button svg {
  position: relative;
  top: 2px;
}

.content-wrap .person-boxes .person-box .box-actions button svg path,
.content-wrap .person-boxes .person-box .box-actions button svg circle {
  fill: black;
  transition: fill 0.15s ease;
}

.content-wrap .person-boxes .person-box .box-actions button:hover svg path,
.content-wrap .person-boxes .person-box .box-actions button:hover a,
.content-wrap .person-boxes .person-box .box-actions button:hover svg circle {
  fill: var(--title-color);
}

.content-wrap .person-boxes .person-box .box-actions a {
  color: black;
}
.content-wrap .person-boxes .person-box .box-actions a:hover {
  color: var(--title-color);
}
.content-wrap .person-boxes .person-box .box-bio a:hover .bio-name {
  color: var(--title-color);
}
.content-wrap .person-boxes .person-box .box-avatar a:hover {
  color: var(--title-color);
}
.content-wrap .person-boxes a:hover {
  color: var(--title-color);
}

#includeSidebar a:hover figcaption {
  color: var(--title-color);
}

h2,
h3,
h4 {
  text-align: center;
  margin: 0 0 24px;
  color: var(--title-color);
}
h1 {
  font-size: 45px;
  line-height: 100%;
  align-items: center;
  text-transform: uppercase;
  font-weight: 800;
  text-align: center;
  margin: 0 0 24px;
}
#membersList {
  color: black;
  line-height: 1.5em;
}
#btnGeoModal,
#btnTimeModal,
#btnGenreModal {
  background-color: var(--title-color);
  color: white;
}
#geoTitle,
#timeTitle,
#genreTitle {
  padding-top: 22px;
  margin-top: 90px;
}
p {
  /*font-family: 'Fira Sans';*/

  text-align: justify;
  text-justify: values;
  margin-left: 10%;
  margin-right: 10%;
  color: black;
}
#members {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}
.task-container {
  display: flex;
  justify-content: center;
}
.map-container {
  text-align: center;
  align-items: center;
  margin-left: 20px;
  margin-top: -30px;
}
.map-container p {
  text-align: center;
}

#headersContainer {
  background-image: url("../iimages/banner2.jpg");
  background-size: cover;
  height: 250px;
  width: 1200px;
  margin-bottom: 20px;
}
.h1-mainPage {
  color: white;
  text-shadow: -2px -2px 0 var(white), 2px -2px 0 var(white),
    -2px 2px 0 var(white), 2px 2px 0 var(white);
}
#HomePageTitle {
  padding-top: 22px;
  margin-top: 70px;
}

/* footer start */

#includeFooter {
  margin-top: 80px;
  height: 280px;
  width: 100%;
}
#F_container {
  overflow: hidden;
  height: 100%;
  background-color: #ced4da;
  font-size: 15px;
  line-height: 24px;
  color: black;
  display: grid;
  grid-template-columns: 40% 20% 40%;
  justify-items: center;
}
#F_container #down {
  grid-column: 1 / span 3;
  grid-row: 2;
  width: 100%;
  height: 100%;
  align-items: center;
  text-align: center;
}
#F_container #down .copyright-text {
  text-align: center;
}

#F_container #left {
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
  display: flex;
  flex-direction: column;
}
#F_container #right {
  grid-column: 3 / span1;
  grid-row: 1 / span 1;
  display: flex;
  flex-direction: column;
}
#F_container hr {
  border-top-color: #bbb;
  opacity: 0.5;
}

#F_container h6 {
  color: var(--title-color);
  font-size: 16px;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 2px;
  padding-top: 10px;
}
#F_container a {
  color: white;
}
#F_container a:hover {
  color: var(--title-color);
}
/* footer end */

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

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

.legend-text-histogram {
  margin-left: 10px;
  font-size: 11pt;
}
button:hover {
  color: var(--title-color);
}

/* card about us section  */
.cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.card {
  margin: 40px;
  position: relative;
  max-width: 250px;
  max-height: 350px;
  box-shadow: 0 40px 60px -6px black;
}

.card-title {
  display: block;
  text-align: center;
  color: #fff;
  background-color: var(--title-color);
  padding: 2%;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.card img {
  width: 100%;
  height: 100%;
  margin-top: -12px;
  object-fit: cover;
  display: block;
  position: relative;
}

.card-desc {
  text-align: initial;
  display: block;
  font-size: 1.2rem;
  position: absolute;
  height: 0;
  width: 100%;
  top: 0;
  margin-left: 0px;
  opacity: 0;
  padding: 18px 8%;
  background-color: white;
  overflow-y: scroll;
  transition: 0.8s ease;
}

.card:hover .card-desc {
  opacity: 1;
  height: 100%;
}

/* Sidebar new */

@import url(//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css);

@import url(https://fonts.googleapis.com/css?family=Titillium+Web:300);

.logo {
}

.settings {
  height: 73px;
  float: left;
  background: url(https://s3.postimg.org/bqfooag4z/startific.jpg);
  background-repeat: no-repeat;
  width: 250px;
  margin: 0px;
  text-align: center;
  font-size: 20px;
  font-family: "Strait", sans-serif;
}

/* ScrolBar  */
.scrollbar {
  height: 90%;
  width: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
}

.scrollbar:hover {
  height: 90%;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

/* Scrollbar Style */

#style-1::-webkit-scrollbar-track {
  border-radius: 2px;
}

#style-1::-webkit-scrollbar {
  width: 5px;
  background: #f5f5fa;
  border-right: 1px solid #ede8f0;
}

#style-1::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #bfbfbf;
}
/* Scrollbar End */

.fa-lg {
  font-size: 1em;
}
.fa {
  position: relative;
  display: table-cell;
  width: 55px;
  height: 36px;
  text-align: center;
  top: 12px;
  font-size: 20px;
}

.main-menu:hover,
nav.main-menu.expanded {
  width: 250px;
  overflow: hidden;
  opacity: 1;
}

.main-menu {
  background: #f5f5fa;
  border-right: 1px solid #ede8f0;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  width: 55px;
  overflow: hidden;
  -webkit-transition: width 0.2s linear;
  transition: width 0.2s linear;
  -webkit-transform: translateZ(0) scale(1, 1);
  box-shadow: 1px 0 15px rgba(0, 0, 0, 0.07);
  opacity: 1;
}

.main-menu > ul {
  margin: 7px 0;
}

.main-menu li {
  position: relative;
  display: block;
  width: 250px;
}

.main-menu li > a {
  position: relative;
  width: 255px;
  display: table;
  border-collapse: collapse;
  border-spacing: 0;
  color: black;
  font-size: 13px;
  text-decoration: none;
  -webkit-transform: translateZ(0) scale(1, 1);
  -webkit-transition: all 0.14s linear;
  transition: all 0.14s linear;
  font-family: "Robot Slab", sans-serif;
  border-top: 1px solid #f2f2f2;

  text-shadow: 1px 1px 1px #fff;
}

.main-menu .nav-icon {
  position: relative;
  display: table-cell;
  width: 55px;
  height: 36px;
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
}

.main-menu .nav-text {
  position: relative;
  display: table-cell;
  text-align: left;
  vertical-align: middle;
  width: 190px;
  font-family: "Roboto Slab", sans-serif;
}

.main-menu .share {
}

.main-menu .fb-like {
  left: 180px;
  position: absolute;
  top: 15px;
}

.main-menu > ul.logout {
  position: absolute;
  left: 0;
  bottom: 0;
}

.no-touch .scrollable.hover {
  overflow-y: hidden;
}

.no-touch .scrollable.hover:hover {
  overflow-y: auto;
  overflow: visible;
}

/* Logo Hover Property */

.settings:hover,
settings:focus {
  background: url(https://s17.postimg.org/74cl7s05b/logo_hover.jpg);
  -webkit-transition: all 0.2s ease-in-out, width 0, height 0, top 0, left 0;
  -moz-transition: all 0.2s ease-in-out, width 0, height 0, top 0, left 0;
  -o-transition: all 0.2s ease-in-out, width 0, height 0, top 0, left 0;
  transition: all 0.2s ease-in-out, width 0, height 0, top 0, left 0;
}

.settings:active,
settings:focus {
  background: url(https://s3.postimg.org/bqfooag4z/startific.jpg);
  -webkit-transition: all 0.1s ease-in-out, width 0, height 0, top 0, left 0;
  -moz-transition: all 0.1s ease-in-out, width 0, height 0, top 0, left 0;
  -o-transition: all 0.1s ease-in-out, width 0, height 0, top 0, left 0;
  transition: all 0.1s ease-in-out, width 0, height 0, top 0, left 0;
}

a:hover,
a:focus {
  text-decoration: none;
  border-left: 0px solid #f7f7f7;
}

nav {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

nav ul,
nav li {
  outline: 0;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

/* Darker element side menu Start*/

.darkerli {
  background-color: #ededed;
  text-transform: capitalize;
}

.darkerlishadow {
  background-color: #ededed;
  text-transform: capitalize;
  -webkit-box-shadow: inset 0px 5px 5px -4px rgba(50, 50, 50, 0.55);
  -moz-box-shadow: inset 0px 5px 5px -4px rgba(50, 50, 50, 0.55);
  box-shadow: inset 0px 5px 5px -4px rgba(50, 50, 50, 0.55);
}

.darkerlishadowdown {
  background-color: #ededed;
  text-transform: capitalize;
  -webkit-box-shadow: inset 0px -4px 5px -4px rgba(50, 50, 50, 0.55);
  -moz-box-shadow: inset 0px -4px 5px -4px rgba(50, 50, 50, 0.55);
  box-shadow: inset 0px -4px 5px -4px rgba(50, 50, 50, 0.55);
}

/* Darker element side menu End*/

.main-menu li:hover > a,
nav.main-menu li.active > a,
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus,
.no-touch .dashboard-page nav.dashboard-menu ul li:hover a,
.dashboard-page nav.dashboard-menu ul li.active a {
  color: whitesmoke;
  background-color: var(--title-color);
  text-shadow: 0px 0px 0px;
}
.area {
  float: left;
  background: #e2e2e2;
  width: 100%;
  height: 100%;
}
@font-face {
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 300;
  src: local("Titillium WebLight"), local("TitilliumWeb-Light"),
    url(http://themes.googleusercontent.com/static/fonts/titilliumweb/v2/anMUvcNT0H1YN4FII8wpr24bNCNEoFTpS2BTjF6FB5E.woff)
      format("woff");
}
.navbar-brand {
  padding: 14px 20px;
  font-size: 16px;
}
#logo {
  margin-left: -15px;
  width: 50px;
  height: 40px;
  border-radius: 80px;
}

/* New Button  */

.new-button {
  position: relative;
  padding: 5px 10px;
  border: none;
  background: none;
  cursor: pointer;

  font-family: "Source Code Pro";
  font-weight: 900;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--text-color);

  background-color: var(--btn-color);
  box-shadow: var(--shadow-color) 2px 2px 22px;
  border-radius: 4px;
  z-index: 0;
  overflow: hidden;
}
#TCU_genre1 {
  background-color: var(--btn-color2);
}

.new-button:focus {
  outline-color: transparent;
  box-shadow: var(--btn-color) 2px 2px 22px;
}
#TCU_genre1:focus {
  outline-color: transparent;
  box-shadow: var(--btn-color2) 2px 2px 22px;
}

.new-button .right::after,
.new-button::after {
  content: var(--content);
  display: block;
  position: absolute;
  white-space: nowrap;
  padding: 35px 31px;
  pointer-events: none;
}

.new-button::after {
  font-weight: 200;
  top: -30px;
  left: -20px;
}

.new-button .right,
.left {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.new-button .right {
  left: 66%;
}
.new-button .left {
  right: 66%;
}
.new-button .right::after {
  top: -30px;
  left: calc(-66% - 20px);

  background-color: var(--bg-color);
  color: transparent;
  transition: transform 0.4s ease-out;
  transform: translate(0, -90%) rotate(0deg);
}

.new-button:hover .right::after {
  transform: translate(0, -47%) rotate(0deg);
}

.new-button .right:hover::after {
  transform: translate(0, -50%) rotate(-7deg);
}

.new-button .left:hover ~ .right::after {
  transform: translate(0, -50%) rotate(7deg);
}

/* bubbles */
.new-button::before {
  content: "";
  pointer-events: none;
  opacity: 0.6;
  background: radial-gradient(
      circle at 20% 35%,
      transparent 0,
      transparent 2px,
      var(--text-color) 3px,
      var(--text-color) 4px,
      transparent 4px
    ),
    radial-gradient(
      circle at 75% 44%,
      transparent 0,
      transparent 2px,
      var(--text-color) 3px,
      var(--text-color) 4px,
      transparent 4px
    ),
    radial-gradient(
      circle at 46% 52%,
      transparent 0,
      transparent 4px,
      var(--text-color) 5px,
      var(--text-color) 6px,
      transparent 6px
    );

  width: 100%;
  height: 300%;
  top: 0;
  left: 0;
  position: absolute;
  animation: bubbles 5s linear infinite both;
}

@keyframes bubbles {
  from {
    transform: translate();
  }
  to {
    transform: translate(0, -66.666%);
  }
}

