

.toggle-style {
  padding: 7px 20px;
  cursor: pointer;
  float: right;
  font-size: 12px;
  background: #2196F3;
  color: #ffffff !important;
  box-shadow: 0px 10px 20px -10px #1376c5;
  border-radius: 25px;
  text-transform: uppercase;
}
.toggle-style:hover {
  background: #3498db;
  text-decoration: none;
  color: #fff;
}
.toggle-style:active {
  padding: 7px 20px;
  float: right;
  font-size: 12px;
  background: #2196F3;
  color: #ffffff;
  box-shadow: 0px 10px 20px -10px #1376c5;
  border-radius: 25px;
  text-transform: uppercase;
}

.overlay {
  display: none;
  position: absolute;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: center;
}
.overlay--active {
  display: flex;
}

.modal {
  width: 100%;
  max-width: 500px;
  background: white;
  display: flex;
  flex-flow: column;
  border-radius: 0.5rem;
  overflow: hidden;
  margin: 1rem;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.02), 0 6.7px 5.3px rgba(0, 0, 0, 0.028), 0 12.5px 10px rgba(0, 0, 0, 0.035), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07);
}
.modal__image {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.modal__image > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal__content {
  padding: 1rem;
}
.modal__content h2 {
  margin: 0;
  padding: 0;
}
.modal__content p {
  line-height: 1.76;
}