/* The Modal (background) */
.subscribe-mmodal {
  opacity: 0;
  visibility: hidden;
  display: flex;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  transition: all 500ms ease-in-out;
  background-color: #aaaaaaa1;
}

/* Modal Content/Box */
.subscribe-mmodal-content {
  margin: auto;
  background-color: #fefefe;
  border-radius: 10px;
  padding: 20px;
  width: 344px;
  height: 310px;
  display: flex;
  flex-direction: column;
}

/* Modal header */
.subscribe-mmodal-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.img-location-container{
  width: 33%;
}

.img-location-container img{
  width: 50%;
}

.modal-header-text {
  width: 33%;
  font-size: 0.9rem;
  text-align: center;
}

.mmodal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.formPC {
  width: 100%;
}

.labelPC {
  text-align: left;
  color: #6c499b;
  width: 100%;
  margin-bottom: 10px;
  font-weight: 500;
}

.inputPC {
  background: #F6F3F9;
  border: none;
  width: 100%;
  margin-bottom: 1rem;
}

/* The Close Button */
.subscribe-mmodal-close {
  width: 33%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
  transition: all 300ms ease-in-out;
}

.subscribe-mmodal-close:hover,
.subscribe-mmodal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.subscribe-mmodal.is-active {
  visibility: visible;
  opacity: 1;
}