.customModalContainer {
  position: fixed;
  height: 100vh;
  opacity: 0;
  display: block;
  visibility: hidden;
  overflow-y: hidden;
  z-index: 1000;
  padding: 50px 8px;
  background-color: rgba(0, 0, 0, 0.8);
  inset: 0;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.customModalContainer.show {
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
}
.customModal {
  counter-reset: headings;
  max-width: 1100px;
  position: relative;
  transform: translate(-50%);
  top: 5%;
  left: 50%;
  padding: 22px 8px 40px 16px;
  border-radius: 10px;
  width: 100%;
  background-color: #f6f4f4;
}
.customModalHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
 
.customModal button.closeBtn {
    border: none;
    position: absolute;
    outline: none;
    top: -50px;
    transform: translateX(-50%);
    left: 50%;
    background: transparent;
    cursor: pointer;
}

.customModal button.closeBtn svg {
  width: 40px;
  height: 40px;
}
.customModal button.closeBtn svg path{
    stroke:#fff;
}
.customModalBody {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 400px;
  justify-content: center;
  row-gap:20px;
}   
.modal_wrap_btn {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  width: 100%;
  margin: 0 auto;
}
.mb-20 {
  margin-bottom: 20px;
}
.mt-20 {
  margin-top: 40px;
}
 
 

@media screen and (min-width: 768px) {
.customModal button.closeBtn {
  border: none;
  position: absolute;
  outline: none;
  top: 20px; 
  right:20px;
  left:unset;
  transform: unset;
  background: transparent;
  cursor: pointer;
}
.customModal button.closeBtn svg {
  width: 20px;
  height: 20px;
}
.customModal button.closeBtn svg path{
    stroke:#000;
}
}
@media screen and (min-width: 1024px) {
	.customModalBody{
		row-gap:40px;
		align-items: unset;
		justify-content: unset;
		height:unset;
	}
  .customModalHeader button svg {
    width: 50px;
    height: 50px;
  }
  .customModal {
    row-gap: 100px;
    padding: 40px 30px;
  } 
}

/*modal*/
.mt-10{
    margin-top:10px;
}