.global-modal-backdrop {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.43);
    z-index: 99998;
}

.global-modal-backdrop .global-modal-wrapper {
    width: auto;
    height: auto;
    min-width: 300px;
    max-width: 600px;
    min-height: 150px;
    background-color: #fff;
    z-index: 99999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

.global-modal-backdrop .global-modal-wrapper .global-modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: auto;
    padding: 12px;
    border-bottom: 1px solid #ECECEC;
}

.global-modal-backdrop .global-modal-wrapper .global-modal-header .global-modal-header-title {
    margin: 0;
}

.global-modal-backdrop .global-modal-wrapper .global-modal-header .global-modal-close-btn {
    font-weight: bold;
    font-size: 18px;
    text-transform: lowercase;
}

.global-modal-backdrop .global-modal-wrapper .global-modal-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 12px;
}

.global-modal-backdrop .global-modal-wrapper .global-modal-body .global-modal-body-content {
    text-align: left;
}

.global-modal-backdrop .global-modal-wrapper .global-modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 12px;
}

.global-modal-backdrop .global-modal-wrapper .global-modal-footer .global-modal-footer-btn {
    margin: 0 4px;
}