#yumit-pay-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.yumit-pay-modal__child {
  background-color: transparent;
  padding: 10px;
  width: 1vh;
  height: 1vh;
  border-radius: 100%;
  border: none;
  opacity: 1;
  transition: background-color 1s ease-out;
  transition: height .2s ease-out;
  transition: width .2s ease-out;
  transition: border-radius .1s ease-out;
  transition: opacity .1s ease-out;
}

.yumit-pay-modal__animation {
  background-color: white;
  width: 45%;
  height: 85%;
  border-radius: 0px;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, .1);
  border-left-color: transparent;
  width: 36px;
  height: 36px;

  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


@media screen and (max-width: 540px) {
  .yumit-pay-modal__child {
    width: 100%;
    height: 100%;
  }

  .yumit-pay-modal__child {
    padding: 0%;
  }

  .yumit-pay-modal__animation {
    border-radius: 0px;
  }
}

@media screen and (min-width: 768px) and (max-width: 720px) {
  .yumit-pay-modal__child {
    width: 80%;
    height: 80%;
  }

  .yumit-pay-modal__child {
    padding: 0%;
  }

  .yumit-pay-modal__animation {
    border-radius: 30px;
  }
}

@media screen and (min-width: 720px) {
  .yumit-pay-modal__child {
    width: 53%;
    height: 90%;
  }

  .yumit-pay-modal__animation {
    border-radius: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .yumit-pay-modal__child {
    width: 80%;
    height: 90%;
    max-width: 77vw;
  }

  .yumit-pay-modal__animation {
    border-radius: 30px;
  }
}

@media screen and (min-width: 1440px) {
  .yumit-pay-modal__child {
    width: 80%;
    height: 90%;
    max-width: 55vw;
  }

  .yumit-pay-modal__animation {
    border-radius: 30px;
  }
}

@media screen and (min-width: 1920px) and (max-width: 4000px) {
  .yumit-pay-modal__child {
    width: 80%;
    height: 90%;
    max-width: 45vw;
  }

  .yumit-pay-modal__animation {
    border-radius: 30px;
  }
}

div.spinner {
  width: 10vw;
  height: 10vw;
}