.gastro-info{
  margin-bottom: 10px;
  font-size: 15px;
}

.easycenter{
  width: 100%;
  height: 100%;
  /*border-radius: 15px;*/
  background-color: #eee;
  position: relative;
  font-size: 15px;

}

.easycenter .title{
  position: absolute;
  left: 0;
  top: 0;
  height: 40px;
  padding: 10px 20px;
  /*border-radius: 15px;*/
  width: 100%;
  background-color: #cba61e;
  color: white;
  font-weight: bold;
}

.easycenter .files{
  position: relative;
  padding: 50px 20px 60px 20px;

}

.easycenter .file{
  padding: 4px;
}

.easycenter .files span{
  padding: 2px 10px;
  border-radius: 5px;
  background-color: #ddd;
  margin-left: 15px;
  cursor: pointer;

}

.easycenter .files span:hover{
  background-color: #cba61e;
  color: white;
  font-weight: bold;
}

.easycenter #uploadform{
  position: absolute;
  bottom: 0;
  right: 20px;
  height: 50px;
  cursor: pointer;
}


.file-selector {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.easycenter #uploadform label:hover{
  color: #cba61e;
  cursor: pointer;
}

.easycenter #uploadform button:hover{
  cursor: pointer;
}


/* ++++++++++++++++++++++++++++++++ Loading Screen ++++++++++++++++++++++++++ */

.easycenter .loading-screen{
	z-index: 1000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fffc;

}

.easycenter .loading-screen .dot{
	z-index: 1000;
  position: absolute;
  top: 50%;
	margin-top: -8px;
	width: 16px;
	height: 16px;
	border-radius: 8px;
  background-color: #cba61e;
 left: 50%;

}

.easycenter .loading-screen #one.dot {
  margin-left: -24px;
  animation: blinker1 1s linear infinite;
}
.easycenter .loading-screen #two.dot {
  animation: blinker2 1s linear infinite;
}
.easycenter .loading-screen #three.dot {
  margin-left: 24px;
  animation: blinker3 1s linear infinite;
}

@keyframes blinker1 {
  0% { opacity: 1.0; }
	33%{ opacity: 0.0; }
	66%{ opacity: 0.0; }
}

@keyframes blinker2 {
  0% { opacity: 0.0; }
	33%{ opacity: 1.0; }
	66%{ opacity: 0.0; }
}

@keyframes blinker3 {
  0% { opacity: 0.0; }
	33%{ opacity: 0.0; }
	66%{ opacity: 1.0; }
}


#infotext-upload{
  display: none;
}

@media only screen and (max-width: 775px) { /*Phone */
	.easycenter .loading-screen{
    display: block !important;
	}
  .easycenter  .dot{
    display: none !important;
  }
  .easycenter  #infotext-upload{
    display: block;
  }
}
