#title {
	font-family: 'Alegreya Sans SC', sans-serif;
	color: white;
	  -webkit-text-stroke: 2px black; 
    font-size: 90px;
    xtext-shadow: -1px -1px 0px #000, 1px -1px 0px #000, -1px 1px 0px #000, 1px 1px 0px #000;
}

#title #beta {
	-webkit-text-stroke: 0;
	background-color: red;
	font-size: 20px;
	padding-left: 5px;
	padding-right: 5px;
	/* border: blue 1px solid;*/
	border-radius: 4px;
  xtext-shadow: 0 0 0;
}

#init {
	opacity: 0.7;

	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	/* background: black url(graphics/loader.gif) no-repeat scroll center center;*/
	background: black;
	z-index:1000;
	display: none;
}

#init div {
	margin: 0 auto;
	width: 50%;
	text-align: center;
	color: lightgrey;
}

@media screen and (max-width: 450px) {
	#title {
		font-size: 60px;
	}
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .text-right-sm {
        text-align: right;
    }
}

#wrongbrowser {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
}

#wrongbrowser div
{
  background: gray;
  color: red;
  opacity: 0.9;
  text-align: center;
  width: 400px;
  height: auto;
  padding: 100px 0;
  border: 1px solid black;
}

#wrongbrowser div a
{
  color: black;
}

#message {
            color: black;
            float: left;
            margin-left: 25px;
            margin-top:  25px;
            z-index: 2;
            position:absolute;
            font-weight: bold;
            /* width:1000PX; */
            background-color: rgba(0,0,0,0.5);
            display: none;
        }

.panel-group .panel-heading {
    cursor: pointer;
    display: block;
}

.alertrow {
	border: 1px solid transparent; 
	border-radius: 4px;
	margin-left: 0px !important; 
	margin-right: 0px !important; 
	margin-bottom: 20px;
	padding: 15px;
}

.vcenter {
    display: flex;
    align-items: center;
}

.row.vbottom {
	display: table;
}

.row.vbottom div {
	float: none;
    display: table-cell;
    vertical-align: bottom;
}

ul { 
    display:table; 
    margin:0 auto;
    text-align: left;
}
li {
}

.scrollable-menu {
    height: auto;
    max-height: 200px;
    overflow-x: hidden;
}

.flexcontainer {
  display: flex;
  flex-wrap: wrap;
}

.flexitem {
  padding-left: 15px;
}

#showing_div_img {
	margin: 0 auto;
	width: 100px;
	height: 100px;
}

#showing_img {
	max-width: 100px;
	max-height: 100px;
}

.gly-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}