* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.display-none {
  display: none;
}

.display-flex {
  display: flex;
}

.mobile-popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 16px;
  overflow: auto;
  flex-direction: column;
  background: #fff;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.5s ease;
  z-index: 300;
}

.mobile-popup-container[data-visible="true"] {
  opacity: 1;
  transform: translateX(0%);
}

.mobile-popup-container[data-visible="onRight"] {
  opacity: 1;
  transform: translateX(100%);
}

.popup-image {
  height: 227px;
}

.popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 12px;
}

.popup-title {
  /* width: 259px; */
  font-style: normal;
  font-weight: 600;
  margin-top: 0;
  color: rgb(90 98 95);
  font-size: 25px;
  line-height: 80px;
}

.popup-tech {
  list-style-type: none;
  margin-bottom: 24px;
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
}

.popup-tech-li {
  text-align: center;
  background: #ebf0ee;
  border-radius: 4px;
  margin-left: 4px;
  margin-right: 4px;
  margin-top: 13px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.03em;
}

.popup-description {
  width: auto;
  font-family: "Inter", sans-serif;
  height: auto;
  font-style: normal;
  font-weight: 400;
  color: #344563;
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 31px;
}

.popup-buttons {
  display: flex;
  justify-content: flex-start;
  margin-top: 0;
  margin-bottom: 1rem;
}

.ml {
  margin-left: 12px;
}

.live-button {
  display: flex;
  background: #36b37f;
  border-radius: 4px;
  width: auto;
  height: auto;
  padding: 12px;
}

.live {
  text-decoration: none;
  margin-right: 16px;
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.03em;
  color: #fff;
}

.icon-image {
  display: flex;
  flex-direction: column;
}

.back-cross {
  display: flex;
  width: 40px;
  margin-bottom: 12px;
  height: 40px;
  border-radius: 8px;
  align-self: flex-end;
}

.cross-popup-icon {
  align-self: center;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 8px;
  background-color: #ebecf0;
  margin-bottom: 12px;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .popup-title {
    width: auto;
    height: auto;
  
  }

  .popup-buttons {
    /* position: absolute;
    right: 25px;
    bottom: 188px; */
    width: 300px;
  }

  .popup-image img {
    width: 100%;
    height: 100%;
    margin-bottom: 12px;
  }

  .mobile-popup-container {
    width: 54%;
    min-height: auto;
    height: auto;
    padding: 16px;
    overflow: auto;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 0 0 1000px rgb(0 0 0 / 40%);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    transition: all 1s ease;
    z-index: 300;
  }

  .mobile-popup-container[data-visible="true"] {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .mobile-popup-container[data-visible="onRight"] {
    opacity: 0;
    transform: translate(-1000%, -30%);
  }
}
