/*subscribe-mmodal*/

.subscribe-mmodal {
    opacity: 0;
	visibility: hidden;
    display: flex;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    transition: all 500ms ease-in-out;
    background-color: transparent;
}

/* Modal Content/Box */
.subscribe-mmodal-content {
	margin: auto;
  background-color: #bf360c;
  padding: 16px;
  width: 90%;
  max-width: 600px;
  max-height: 110vh;
  overflow-y: auto;
  border-radius: 10px;
  box-sizing: border-box;
}
/* The Close Button */
.subscribe-mmodal-close {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
}
.subscribe-mmodal-close:hover,
.subscribe-mmodal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.subscribe-mmodal.is-active{
	visibility: visible;
	opacity: 1;
}