.blue-text {
  color: #4060AC;
}

.underline {
  text-decoration: underline;
}

/* image drop */
.image-drop-field {
  position: relative;
  text-align: center;
  vertical-align: middle;
}

.image-drop-field, .image-drop-area, .image-resize-area {
  height: 220px;
  width: 100%;
}

.image-rotate-area {
  text-align: center;
}

.image-rotate-area span {
	padding: 5px;
    cursor: pointer;
}

.image-drop-field .hasitems {
  z-index: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.image-drop-field .image-drop-area {
    display: block;
    border: 1px solid #E8E9E8;
    border-radius: .25rem;
    position: relative;
    background: #F2F3F2;
}

.image-drop-field .hasitems img.upload-img {
  max-width: 100%;
  max-height: 100%;
  padding: 3px;
}

.image-drop-field,
.image-drop-area,
.image-drop-field .hasitems {
  transition: all 0.3s;
}

.image-drop-field.loaded .image-drop-area {
  border-color: #F2F3F2 !important;
}

.image-drop-field .hasitems {
  opacity: 0;
  transform: translateY(100%);
}

.image-drop-field.loaded .hasitems {
  opacity: 1;
  transform: translateY(0);
}

.image-drop-field .image-drop-area input[type="file"] {
  height: 100%;
  width: 100%;
  position: absolute;
  display: block;
  z-index: 3;
  top: 0;
  left: 0;
  opacity: 0.000001;
}

.image-resize-area .resize-img {
    width: 100%;
    height: 100%;
}

.image-drop-field .noitems, .image-drop-field .hasitems .item-img {
	position: absolute;
    z-index: 0;
    top: 10%;
    left: 5%;
    text-align: center;
    font-size: 16px;
    padding-inline-start: unset;
    width: 90%;
    color: #A7A7A7;
    height: 80%;
    background: #FFFFFF;
    border-radius: 5px;
}


.image-drop-field .hasitems .item-text {
    position: absolute;
    z-index: 0;
    top: 90%;
    left: 5%;
    width: 90%;
    height: 10%;
    font-size: 14px;
}

.image-drop-field ul li {
  padding-top: 10px;
  text-align: center;
  list-style: none;
}

.image-drop-field .noitems .no-item-header {
	color: #CCCCCC;
    padding-top: 30px;
}


.image-drop-field .noitems .no-item-text {
	color: #222222;
}