.pay-body {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pay-main {
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 20px;
  position: relative;
}

.pay-main .pay-close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 5px;
  margin: 5px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #dedede;
}

.pay-main .pay-info {
  padding-top: 30px;
}

.pay-info .info-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 30px;
  margin-bottom: 20px;
}

.pay-info .info-line img {
  height: 40px;
}

.pay-list .pay-item {
  display: flex;
  justify-content: center;
  margin: 10px 0;
  width: 100%;
}

.pay-list .pay-item img {
  display: flex;
  width: 100%;
  justify-content: center;
}
.pay-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999999999999;
}
.pay-loading::after {
  content: "";
  border: 16px solid #353535;
  /* Light grey */
  border-top: 16px solid #ffffff;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

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

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

.new-content-box {
  width: 100%;
  padding: 5px 20px 60px 10px;
  box-sizing: border-box;
  background-color: #bababa;
}
.card-row {
  width: 100%;
  background-color: #88d9ff;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
}
.card-title{
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  text-align:left;
  margin-bottom: 15px;
}
#mySelect {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
  border: 1px solid #dedede;
  padding: 0 10px;
  box-sizing: border-box;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold!important;
  color:#005381!important;
}

#mySelect option {
  font-size: 18px!important;

}

.submit-btn-box {
  width: 100%;
  display: flex;
  align-items: center;
  juctify-content: center;
}
#my-btn {
  width: 100%;
  height: 41px;
  line-height: 41px;
  background: linear-gradient(90deg, #f4c973, #f8dc9f);
  border-radius: 8px;
  font-size: 25px;
  font-family: Rubik;
  font-weight: bold;
  color: #000000;
  text-align: center;
  display: inline-block;
  cursor: pointer;
}


@media all and (orientation: landscape) {
	.new-content-box{
    padding: 5px 30px 60px 30px;!important;
	}
}



