.description-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #1e232d;
}

.restrictions {
  margin-top: 10px;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #696e78;
}

.restriction-list {
  padding-left: 20px;
}

.upload-panel {
  width: 100%;
  height: 290px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #7D6EFF;
  border-radius: 6px;
  transition: 0.3s;
}
.upload-panel.drop-allow {
  border: 2px solid #7D6EFF;
  box-shadow: 0 0 10px 0 #7D6EFF;
}
.upload-panel__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.upload-panel__text {
  max-width: 340px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #1e232d;
  text-align: center;
}
.upload-panel__upload-image-button {
  padding: 0;
  font-size: 14px;
  line-height: 22px;
  color: #7D6EFF;
}
.upload-panel__upload-image-button:hover {
  color: #8778FF;
}
.upload-panel__image-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upload-panel__close-button {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  line-height: 16px;
  outline: none;
  box-shadow: none;
  opacity: 0.6;
  transition: 0.3s;
}
.upload-panel__close-button:hover {
  opacity: 1;
}
.upload-panel__close-button:active,
.upload-panel__close-button:focus {
  outline: none;
  box-shadow: none;
}
.upload-panel__uploaded-image {
  max-width: 100%;
  max-height: 100%;
}

.result-panel {
  width: 100%;
  height: 290px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d2dce6;
  border-radius: 6px;
}
.result-panel__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #7d828c;
}
.result-panel__image-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-panel__module-info {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
.result-panel__modules-result-button {
  padding: 0;
  line-height: 24px;
  outline: none;
  box-shadow: none;
  opacity: 0.6;
  transition: 0.3s;
}
.result-panel__modules-result-button > img {
  width: 24px;
  height: 24px;
}
.result-panel__modules-result-button:hover {
  opacity: 1;
}
.result-panel__modules-result-button:active,
.result-panel__modules-result-button:focus {
  outline: none;
  box-shadow: none;
}
.result-panel__module-name {
}
.result-panel__result-image {
  max-width: 100%;
  max-height: 100%;
}

.own-module-info {
  margin-top: 40px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  background: #FFFFFF;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.06);
  
}

@media screen and (max-width: 768px) {
.own-module-info {
  flex-wrap: wrap;
  gap: 20px;
}
}
