.vm-logo-upload {
}

.vm-logo-upload label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
}

.vm-logo-upload input {
}

.vm-product-logo-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  display: none;
}

.vm-product-logo-preview.is-active {
  display: flex;
}

.vm-product-logo-preview-bg {
  background-color: rgba(0, 0, 0, .8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.vm-product-image {
  font-size: 0;
  line-height: 1;
  margin: auto;
  position: relative;
  z-index: 20;
}

.vm-product-text {
  padding: 40px;
  color: #54595f;
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
}

.vm-product-subtitle {
  font-family: "Roboto", "sans-serif";
  font-size: 19px;
  line-height: 29px;
  font-weight: 400;
  color: #7a7a7a;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.vm-product-subtitle span {
  color: var(--e-global-color-accent);
  font-size: 20px;
  line-height: 29px;
  font-weight: 700;
  margin-right: 5px;
  align-items: center;
}

.vm-product-title {
  font-size: 31px;
  line-height: 43px;
  font-weight: 700;
  font-family: "Manrope", Sans-serif;
  color: var(--e-global-color-accent);
  margin: 0 0 20px;
}

.vm-product-description {
  margin-bottom: 30px;
}

.vm-product-image,
.vm-product-image img {
  width: 100%;
  height: auto;
}

.vm-product-upload-zone {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  background-color: #41B79B;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.vm-product-upload-zone.is-active {
  display: flex;
}

.vm-product-upload-zone:hover {
  background-color: #37a387;
}

.vm-product-upload-zone input[type="file"] {
  display: none;
}

.vm-product-upload-zone .vm-product-icon {
  width: 40px;
  height: auto;
  color: white;
  margin-bottom: 10px;
}

.vm-product-upload-zone-text {
  font-size: 18px;
  line-height: 26px;
  color: white;
  text-align: center;
}

button.vm-product-close svg {
  color: black;
  width: 40px;
  height: auto;
}

button.vm-product-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  z-index: 30;
}

button.vm-product-close:active,
button.vm-product-close:hover {
  background-color: transparent;
}

.vm-product-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 25px solid var(--e-global-color-accent);
  z-index: 10;
  position: relative;
  background-color: #fff;
  width: calc(100% - 40px);
  max-width: 1280px;
  max-height: calc(100% - 40px);
  overflow: auto;
}

.vm-product-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 10px;
}

.vm-logo {
  position: absolute;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .vm-product-wrapper {
    grid-template-columns: 1fr;
    border: 10px solid var(--e-global-color-accent);
  }

  .vm-product-text {
    padding: 20px;
  }  
}