a {
all: unset;
cursor: pointer;
display: inline-block;
}
#preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
background-color: #3f693f67;
}
#loader {
position: relative;
width: 60px;
height: 60px;
}

#loader::before,
#loader::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
border-radius: 50%;
border: 5px solid transparent;
border-top-color: #ffffff;
transform-origin: center;
animation: spin 1.2s linear infinite;
}

#loader::before {
width: 60px;
height: 60px;
margin: -30px 0 0 -30px;
animation-duration: 1.2s;
}

#loader::after {
width: 40px;
height: 40px;
margin: -20px 0 0 -20px;
border-top-color: #d1e7d1;
animation-duration: 0.8s;
animation-direction: reverse;
}

@keyframes spin {
0% {
  transform: rotate(0deg);
}
100% {
  transform: rotate(360deg);
}
}

body {
margin: 0;
font-family: "primary-font";
background: #fff;
color: #000;
}

.container {
max-width: 500px;
margin: auto;
}

.swiper {
width: 100%;
height: 33vh;
max-height: 220px;
border-radius: 0 0 20px 20px;
}

.swiper-slide {
width: 100%;
height: 100%;
}

.swiper-slide img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
border-radius: 0 0 20px 20px;
}

.content {
padding: 15px;
text-align: justify;
font-size: 14px;
line-height: 1.8;
}
.logo {
display: block;
width: 40px;
margin-top: 10px;
margin-bottom: 10px;
}

.card {
margin: 15px;
border-radius: 15px;
overflow: hidden;
position: relative;
height: 120px;
display: flex;
align-items: flex-end;
justify-content: center;
color: white;
font-weight: bold;
font-size: 16px;
text-align: center;
}
.card img {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
}
.card span {
z-index: 1;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
padding: 0 5px 14px;
}

@media (min-width: 600px) {
.card {
  height: 150px;
  font-size: 18px;
}
.content {
  font-size: 15px;
}
}


body {
margin: 0;
font-family: "primary-font";
background: #fff;
color: #000;
}
.container {
max-width: 500px;
margin: auto;
padding: 0;
padding-bottom: 80px;
}
.swiper {
width: 100%;
height: 33vh;
max-height: 220px;
border-radius: 0 0 20px 20px;
}
.swiper-slide {
width: 100%;
height: 100%;
}
.swiper-slide img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
border-radius: 0 0 20px 20px;
}
.content {
text-align: justify;
font-size: 14px;
line-height: 1.8;
margin-bottom: 15px;
}
.content p {
font-size: 12px;
margin-bottom: 0;
margin-top: 0;
}
@media (min-width: 600px) {
.card {
  height: 150px;
  font-size: 18px;
}
.content {
  font-size: 15px;
}
}
label {
display: block;
margin-top: 5px;
margin-bottom: 5px;
font-size: 14px;
}
input[type="text"],
input[type="tel"] {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 10px;
font-size: 14px;
direction: ltr;
box-sizing: border-box;
font-family: "primary-font";
}
.amount-hint {
font-size: 12px;
color: #666;
margin-top: 5px;
min-height: 18px;
font-family: "primary-font";
}
.pay-btn {
position: fixed;
bottom: 15px;
left: 50%;
transform: translateX(-50%);
max-width: 500px;
width: calc(100% - 30px);
padding: 12px;
background: #3f693f;
color: white;
border: none;
border-radius: 25px;
font-size: 16px;
cursor: pointer;
z-index: 100;
width: 90%;
font-family: "primary-font";
}
.pay-btn:hover {
background: #345634;
}
.pay-btn:disabled {
background: #999;
cursor: not-allowed;
}
a {
all: unset;
cursor: pointer;
display: inline-block;
}

.error-text {
    color: red;
    font-size: 12px;
}