
.isNone {
  display: none !important;
}

.modal {
  display: none;
  opacity: 0;
  position: fixed;
  width: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #FFF;
}

.modalClose {
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 1020;
  font-size: 35px;
  line-height: 1;
  font-weight: bold;
}

.modalSearchCts {
  position: absolute;
  width: 100%;
  padding: 120px 5% 100px;
  font-weight: bold;
}

.modal.isOpen {
  display: block;
  opacity: 1;
  animation: scaleUp 0.2s linear;
}

.modal.isStatic {
  position: static;
}

.modal.isClose {
  display: block;
  animation: scaleDown 0.2s linear;
}
@keyframes scaleUp {
 0% {
 opacity: 0;
 transform: scale(0);
}
 100% {
 opacity: 1;
 transform: scale(1);
}
}
 @keyframes scaleDown {
 0% {
 opacity: 1;
 transform: scale(1);
}
 100% {
 opacity: 0;
 transform: scale(0);
}
}
