@import url(https://fonts.googleapis.com/css?family=Roboto:900,400);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css);

.container {
  position: fixed;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  background-color: #2d2d337a;
  backdrop-filter: blur(5px);
  visibility: hidden;
  /*  background: inherit;*/
  /*
  display: flex;
  align-content: stretch;
  justify-content: center;
  overflow: auto;
  z-index: 1;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
*/
  height: 100%;
  z-index: 1;
  overflow: auto;
}

.container-header {
  position: relative;
  top: 0;
  width: 100%;
  height: 60px;
  background-color: #5b7da2;
}

.container-header > p {
  position: absolute;
  left: 5px;
  color: black;
  top: 10px;
  font-size: 20px;
  /*font-weight: bold;*/
  line-height: 38px;

  font-family: "Francois One", sans-serif;
}

.container-body {
  display: flex;
  align-content: stretch;
  justify-content: center;

  z-index: 1;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
}
.container-close {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 50px;
  width: 50px;
  background-image: url(../images/next.svg);
  background-repeat: no-repeat;
  background-size: 43%;
  /*background-color: #f3ededeb;*/
  /*border-radius: 5px;*/

  background-position: right;
  overflow: hidden;
  line-height: 49px;
  /*font-weight: bold;*/
  /*text-indent: 4px;*/
  color: black;
  cursor: pointer;
  font-family: "Francois One", sans-serif;

  border-style: dashed;
  border-right-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
  padding-left: 10px;
}

/*picture css*/

#head {
  background: #fff;
  padding: 0.5em 0;
}
#content {
  margin-top: 20px;
  margin-bottom: 10px;
  margin-left: 20px;
  margin-right: 20px;
  left: 0;
  right: 0;
  text-align: center;
  border-radius: 20px;
}
.text-center {
  text-align: center;
}
.bg-image {
  background-position: top center;
  background-size: cover;
}
.bg-image.aspect-square:before {
  content: "";
  display: block;
  padding-top: 100%;
}
[data-droppable] * {
  pointer-events: none;
}
.panel {
  background: #f0f0f0;
  color: #454547;
  margin: 0 auto;
  min-width: 250px;
  width: 21.333%;
  border-radius: 20px;
  overflow: hidden;
}
.panel-head {
  background-color: #5b7da2;
  color: #fff;
  font-variant: small-caps;
  margin: 0;
  padding: 0 1em 0.2em;
}
.panel-content {
  padding: 2em 1em;
}
.image-select {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.image-select input[type="file"] {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  top: 0;
  cursor: pointer;
  display: block;
  opacity: 0;
  z-index: 15;
}
.image-select__message:after {
  position: absolute;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  bottom: 0;
  color: #fff;
  content: "Browse image...";
  display: block;
  font-weight: bold;
  height: 3em;
  line-height: 3em;
  opacity: 0;
  padding: 0 1em;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(100%);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  z-index: 5;
}
.image-select:hover .image-select__message:after {
  opacity: 1;
  transform: translateY(0);
}
.image-select__icon {
  bottom: 0em;
  color: #676464;
  position: absolute;
  right: 0em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 10;
}
.image-select:hover .image-select__icon {
  transform: scale(0.8, 0.8);
}
.file-hover {
  position: relative;
}
.file-hover:before {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
  z-index: 30;
}
.file-hover:after {
  font-family: FontAwesome;
  animation: 1.5s bounce infinite;
  color: #fff;
  content: "\f0ee";
  font-size: 5em;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  z-index: 35;
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(25%);
  }
  100% {
    transform: translateY(0);
  }
}
