/* edit as descirbed: https://github.com/loadingio/css-spinner/ */

.root {
  width: 50%;
}

@media only screen and (max-width: 600px) {
  .root {
    width: 90%;
  }
}

.sadFace {
  font-size: 7em;
  color: #3e64ff;
}

.lds-heart {
  display: inline-block;
  position: relative;
  width: 150px;
  height: 150px;
  transform: rotate(45deg);
  transform-origin: 75px 75px;
  /*margin-top: 10%; */
}

.lds-heart div {
  top: 60px;
  left: 60px;
  position: absolute;
  width: 60px;
  height: 60px;
  background: #3e64ff;
  animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.lds-heart div:after,
.lds-heart div:before {
  content: " ";
  position: absolute;
  display: block;
  width: 60px;
  height: 60px;
  background: #3e64ff;
}

.lds-heart div:before {
  left: -45px;
  border-radius: 50% 0 0 50%;
}

.lds-heart div:after {
  top: -45px;
  border-radius: 50% 50% 0 0;
}

@keyframes lds-heart {
  0% {
    transform: scale(0.95);
  }
  5% {
    transform: scale(1.1);
  }
  39% {
    transform: scale(0.85);
  }
  45% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.9);
  }
}

@import url(https://fonts.googleapis.com/css?family=Open+Sans:700,300);
.frame {
  position: absolute;
  /* top: 50%; 
    left: 50%; */
  width: 100%;
  height: 100%;
  /* margin-top: -200px;
    margin-left: -200px; */
  border-radius: 2px;
  box-shadow: 4px 8px 16px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: linear-gradient(to top right, #5edfff 0%, #ecfcff 100%);
  color: #333;
  font-family: "Open Sans", Helvetica, sans-serif;
}

.popup {
  position: absolute;
  /* top: 50%; 
    left: 50%; */
  width: 100%;
  height: 100%;
  border-radius: 2px;
  overflow: hidden;
  background: #ecfcff;
  color: #333;
  font-family: "Open Sans", Helvetica, sans-serif;
  z-index: 2;
}

.PopupCenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  border-radius: 3px;
  box-shadow: 8px 10px 15px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
}

.uploadInfo {
  margin-top: -30px;
}

.uploadDescription {
}

.centertwo {
  min-height: 480px;
  /* width: 450px; */
  border-radius: 3px;
  box-shadow: 8px 10px 15px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  position: relative;
}

.containerLoading {
  margin: 10% 10% 0% 10%;
  width: 80%;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  border-radius: 3px;
  box-shadow: 8px 10px 15px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
}

@media only screen and (max-width: 600px) {
  .centertwo {
    min-width: 90%;
    height: 50%;
  }
  .PopupCenter {
    width: 90%;
    height: 50%;
  }
}

.title {
  width: 100%;
  border-bottom: 1px solid #999;
  text-align: center;
  position: absolute;
  text-align: center;
  top: 10px;
}

h1 {
  font-size: 16px;
  font-weight: 300;
  color: #666;
}

.dropzone {
  width: 320px;
  height: 180px;
  border: 1px dashed #999;
  border-radius: 3px;
  text-align: center;
  background: url(../media/cloud-upload-alt-solid.svg);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
}

@media only screen and (max-width: 600px) {
  .dropzone {
    width: 250px;
  }
}

.upload-icon {
  margin: 20px;
}

.upload-input {
  position: relative;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.btntwo {
  width: 100%;
  height: 40px;
  background: #3e64ff;
  color: #fff;
  border-radius: 3px;
  border: 0;
  box-shadow: 0 3px 0 0 #5edfff;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  cursor: pointer;
}

.btntwo:disabled {
  display: block;
  width: 100%;
  height: 40px;
  background: grey;
  color: #fff;
  border-radius: 3px;
  border: 0;
  box-shadow: 0 3px 0 0 #5edfff;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  cursor: not-allowed;
}

.btn:disabled {
  cursor: not-allowed;
}

.btntwo:hover:enabled {
  background: #3e64ff;
  box-shadow: 0 3px 0 0 #5edfff;
}

body {
  margin: 0;
}

.sampleH1 {
  color: #2c3e50;
}
