.left {
    width: 100%;
    text-align: left; 
}
 .centered {
    width: 100%;
    text-align: center;
}
.right {
    width: 100%;
    text-align: right; 
}
.centered h4,
.right h4,
.left h4  {
    font-weight: bold;
}

input[type=checkbox]{
    display:none;
}
.wybmv-subtitle {
    margin-bottom: 40px;
}
.wybmv-modal-button {
    font-size: 18px !important;
    padding: 10px 30px;
    text-decoration: none !important;
    border: none !important;
    border-radius: 5px;
    transition: all 350ms;
}
.wybmv-modal-button:hover {
    color: #fff !important;
    background-color: #000000c4 !important;
}
.wybmv-image-wrapper {
    display: flex;
    justify-content: center;
}
.wybmv-button {
    height: fit-content;
    width: auto;
    padding: 15px 40px;
    display: inline-block;
    cursor: pointer;
    margin: 0 7.5px;
    border-radius: 5px;
    font-size: 20px;
    line-height: 1em;
    text-transform: uppercase;
    transition: all .25s ease-in-out;
    border: none;
}

.wybmv-button:hover {
    transform: 	scale(1.1,1.1);
}

.answer--yes, .answer--no {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    visibility: hidden;
    opacity: 0;
    transition: opacity .5s ease-in-out;
}
.wybmv-popup .wybmv-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1500;
    display: none;
    backdrop-filter: blur(5px);
}

.wybmv-popup .wybmv-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #fff;
    height: fit-content;
    z-index: 1501;
    text-align: center;
    padding: 40px;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}
.wybmv-popup .close-btn {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: #222;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
}

.wybmv-popup.active .wybmv-overlay {
    display: block;
}

.wybmv-popup.active .wybmv-content {
    transition: all 300ms ease-in-out;
    transform: translate(-50%, -50%) scale(1);
}

.wybmv-popup img {
    margin-bottom: 20px;
    height: 165px;
}
.wybmv-yes-content, .wybmv-no-content {
    display: none;
}
.wybmv-content-section {
    display: none;
}
.active-content {
    display: block;
}

@media only screen and (max-width: 600px) {
  .wybmv-content.wybmv-modal-width {
    width: 90% !important;
  }
  .wybmv-button {
    margin-bottom: 20px;
  }
}