body{
  background-size: 1920px 1000px;
}

.show-customize{  
  &:hover{
    background: #c0392b;
  }
  
  &:active{
    transform: scale(0.9);
  }
}

.close-customize{
	float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
	font-family: system-ui;
}

.close-customize:not(:disabled):not(.disabled) {
    cursor: pointer;
}

button.close-customize{
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}

.modal-header-customize .close-customize {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}

.mask-customize{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 73, 94, 0.8);
  z-index: 99998;
  visibility: hidden;
  opacity: 0;
  transition: 0.7s;
}

.modal-customize{
	position: fixed;
	width: 70%;
	height: 70%;
	margin-top:15%;
	margin-left:15%;
	pointer-events: auto;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0,0,0,.2);
	border-radius: 1rem;	
	z-index: 99999;
	visibility: hidden;
	opacity: 0;
	transition: 0.5s ease-out;
	transform: translateY(-300px);
}

.modal-title-customize{
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: bold;
    font-family: system-ui;
    margin-top: 0;
}

.active-customize{
  visibility: visible;
  opacity: 1;
}

.active-customize + .modal-customize{
  visibility: visible;
  opacity: 1;
  transform: translateY(-150px);
}

.div-modal-header-customize{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 15px 10px 15px;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;	
	font-weight: bold;
}

.div-modal-body-customize{
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1rem;
	height: 85%;
	overflow-y: auto;
}

.div-modal-footer-customize{
	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;
	border-top: 1px solid #e9ecef;
	height: 8%;
}

.show-mask-customize{
   position: fixed !important;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   right: 0;
   bottom: 0;
   background: rgba(52, 73, 94, 0.8);   
   z-index: 100;
   visibility: hidden;
   transition: 0.7s;
}

.active-show-mask-customize{
  visibility: visible;
  opacity: 1;
}