.editor-pop {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,.7);
  width: 100%;
  height: 100%;
}

.editor-pop__wrapper {
  position: relative;
  width: 500px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width:968px) and (max-width:1400px) {
  .editor-pop__wrapper {
    width: 550px;
  }
}

@media screen and (min-width:768px) and (max-width:968px) {
  .editor-pop__wrapper {
    width: 500px;
  }
}

@media screen and (min-width:481px) and (max-width:767px){
  .editor-pop__wrapper {
    width: 400px;
  }
}

@media screen and (min-width:320px) and (max-width:480px){
  .editor-pop__wrapper {
    width: 280px;
  }
}

.editor-pop_container {
  position: relative;
}

.editor-pop__btn {
  position: absolute;
  right: -35px;
  top: -10px;
  font-size: 36px;
  font-weight: 300;
  color: #fff;
  cursor: pointer;
}

@media screen and (min-width:481px) and (max-width:767px){
  .editor-pop__btn {
    top: -35px;
  }
}

@media screen and (min-width:320px) and (max-width:480px){
  .editor-pop__btn {
    top: -50px;
    right: 15px;
  }
}

.editor-pop__inputcontainer {
  text-align: center;
  padding: 5px 0;
}

.editor-pop__label {
  font-size: 18px;
  color: #fff;
  margin-left: 5px;
}

.editor-pop__wrapper img{
	max-height:90vh!important;
	width:auto!important;
}