
.popup_overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}
.popup_overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup_overlay .popup {
    width: 30%;
    min-height: 190px;
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    position: relative;
    transition: all 5s ease-in-out;
}

.popup_overlay .popup .g-recaptcha>div {
    margin: auto;
}

.popup_overlay .popup.lg {
    width: 50%;
}

.popup_overlay .popup .close {
    position: absolute;
    top: 5px;
    right: 12px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #000000;
}

.popup_overlay .popup .close:hover {
    color: #858585;
}

.popup_overlay .popup .content {
    text-align: center;
    min-height: 190px;
    overflow: auto;
}

.popup_overlay .popup.lg .content {
    overflow: visible;
}


.popup_overlay .popup.lg .content h3 {
    margin-top: 0;
}

.popup_overlay .popup.lg .content select,
.popup_overlay .popup.lg .content #ms-list-1 {
    margin-bottom: 10px;
}

.popup_overlay .popup .content .popup_button {
    padding: 5px 15px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.popup_overlay .popup .content .popup_button.delete {
    color: #FFFFFF;
    background-color: #d41010;
}

.popup_overlay .popup .content .popup_button.delete:hover {
    background-color: #b30808;
}

.popup_overlay .popup .content .popup_button.cancel {
    background-color: #8a8a8a;
}

.popup_overlay .popup .content .popup_button.info {
    height: 31px;
    border: none;
    background-color: #014a8f;
    color: #FFFFFF;
}

.popup_overlay .popup .content .ms-options {
    width: 100%;
}

.popup_overlay .popup .content input {
    width: 80%;
    height: 25px;
    margin-bottom: 15px;
}


.popup_overlay .popup.lg .content input {
    width: 100%;
    height: 40px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.popup_overlay .popup.lg .content .ms-options-wrap > .ms-options > ul input[type="checkbox"] {
    height: 20px;
    position: relative;
}

.popup_button {
    width: fit-content;
    line-height: 25px;
    font-size: 1rem !important;
    margin: auto;
    padding: 8px 15px !important;
    border: none;
    background-color: #014a8f;
    color: #FFFFFF !important;
}

@media screen and (max-width: 700px){
    .popup_overlay .popup{
      width: 70%;
    }
  }