@import url("../common/base.css?v=1");
@import url("../common/header.css?v=1");
@import url("../common/popup.css?v=1");

.wrapper {
    max-width: 1920px;
    min-width: 600px;
    margin: 0 auto;
}
.wrapper > div, .wrapper > section > div {
    width: 100%;
}

.delete-file-button.invisible {
    display: none;
}

.data-wrapper input[type="text"] {
    border-radius: 0;
}

.fullpub {
    font-family: initial;
    margin: 10px;
}

/* Images */
.flex-images-block {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.publ-image-item {
    position: relative;
    height: 150px;
}

.publ-image-item img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    cursor: pointer;
}

.publ-image-item > div:first-child {
    display: flex;
    gap: 0.2rem;
}

.publ-image-item > div:last-child {
    text-align: center;
}

.add-img-block {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 150px;
    height: 150px;
    margin-bottom: var(--content-margin);
    background: #eaeaea;
}

.add-img-block label {
    display: flex;
    align-items: center;
    justify-content: center; 
    width: 100%;
    height: 100%;
    font-size: 30pt;
    color: white;
    cursor: pointer;
}

#pictures > div:first-child {
    margin-bottom: 1rem;
}

.popup-content img {
    max-width: 100%;
}
   
/* Progress */
progress {
  display: inline-block;
  vertical-align: baseline;
}

.progress {
  height: 20px;
  width: 258px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
  background-color: #00a98f;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}