.mysgi-modal {
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 1400;
    display: none;
    align-items: start;
    justify-content: center;
	cursor: pointer;
}
.mysgi-modal-wrapper {
    background-color: white;
	display: flex;
	flex-direction: column;
	width: 95%;
	max-width: 576px;
	border-radius: 8px;
	margin: 25vh auto auto auto;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	cursor: default;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}	
.mysgi-modal-content {
/*	min-height: 340px; */
	padding: 24px;
	overflow: auto;
	display: flex;
	flex-direction: column;
	/* align-items: center; */
    text-align: left;
	gap: 24px;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

.mysgi-modal-header { padding: 2px 16px; }

.mysgi-modal-body { padding: 2px 16px; }

.mysgi-modal-footer { padding: 2px 16px; }

/* The Close Button */
.modal-close {
    height: 32px;
    width: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
	float: right;
    border-radius: 8px;
    background-color: transparent;
	cursor: pointer;
}
.modal-close:hover {
    background-color: rgba(0, 0, 0, 0.06);
}
.modal-close:active {
    background-color: rgba(0, 0, 0, 0.08);
}

@media only screen and (max-width: 1135px) { 
	.mysgi-modal-wrapper {
		margin: auto;
	}
}

@media only screen and (max-width: 767px) {
	 .mysgi-modal .button-group-right button {
		margin-left: 0;
	}
}
/*
.modal-close {
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modal-close:hover,
.modal-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
*/
