body {
    text-align: center;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

.outer {
    display: flex;
    flex-direction: column;
    padding: 5px;
    border-radius: 5px;
    overflow: auto;
    min-height: 100vh;
    min-width: 90%;
    align-items: center;
    text-align: center;
    /* background-image: url("img/net.jpeg"); */
    /* background-color: lightgrey; */
    background: linear-gradient(135deg, #e1e4e3 0%, #a0a0a5 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-image: blur(8px); */
}

.inner {
    padding: 10px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    align-items: center;
    justify-content: center;
    min-height: max-content;
    display: flex;
    flex-direction: column;
    background-color: aquamarine;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.3);
    overflow: auto;
}

label {
    display: flex;
    justify-content: space-between;
}

input {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#loader {
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    /* background-color: bisque; */
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}

.loaderContent {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 70%;
    overflow: auto;
    text-align: center;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-bottom: 4px solid rgb(50, 230, 170);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
    margin-top: 5px;
    /* background: #fff; */
    padding: 20px;
    /* border-radius: 8px; */
    /* width: 300px; */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */
    /* text-align: center; */
}

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

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

.loader.active {
    visibility: visible;
    opacity: 1;
}

.guide {
    /* display: none; */
    /* flex-direction: column; */
    /* align-items: flex-start;
    justify-content: flex-start; */
    text-align: center;
    background-color: aquamarine;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.3);
    min-height: max-content;
    padding: 10px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-bottom: 20px;
    /* flex-wrap: wrap; */
}

@media (min-width: 768px) {

    .guide,
    .inner,
    h1,
    h3 {
        width: 50%;
    }
}

.guide ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* justify-content: flex-start; */
}

.guide ul li {
    list-style: decimal;
    text-align: justify;
}

.guide h4 {
    border-bottom: 1px solid;
}

strong {
    margin-top: 10px;
}

h1,
h3 {
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 5px;
    /* max-width: 90%; */
}

h1,
h3,
.guide,
.inner {
    width: 90%;
    max-width: 600px;
    /* margin: 0 auto; */
}

/* footer{
    color: #ffffff;
} */
/* .outer div{ */
/* box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.3); */
/* } */
/* ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
}

li {
    list-style: none;
    background: lightgray;
    padding: 10px;
} */
/* .info.alert {
    color: #ffffff;
    background-color: #da3d41;
    padding: 5px;
    border-radius: 5px;
} */

@keyframes blink {

    /* 0% { opacity: 1; }  */
    /* 0%, 3% { opacity: 1; }  */
    /* 13%, 37% { opacity: 0; } */
    0%,
    30% {
        opacity: 1;
    }

    45%,
    85% {
        opacity: 0;
    }

    65%,
    100% {
        opacity: 1;
    }
}

.error {
    color: #ffffff;
    background-color: #da3d41;
    padding: 5px;
    border-radius: 5px;
    animation: blink 1s steps(1, end) 1;
    /* max-width: 90%; */
}

@media (min-width:576px) {
    .wrap {
        width: 410px
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.alert-modal {
    /* background: #fff; */
    background-color: bisque;
    padding: 20px;
    border-radius: 8px;
    max-width: 70%;
    max-height: 70vh;
    overflow: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}

button {
    cursor: pointer;
    width: 40%;
    border-radius: 5px;
    padding: 5px;
}

#customOptions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 100%;
}

@media (min-width:576px) {
    #customOptions {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* gap: 10px; */
        column-gap: 50px;
        row-gap: 10px;
    }
}

.option {
    border: 1px solid #ccc;
    border-radius: 5px;
    justify-content: space-between;
    padding: 10px;
    margin-right: 5px;
    cursor: pointer;
    background-color: #fff;
    transition: background-color 0.2s ease;
    width: 100%;
}

.option:hover {
    background-color: #f0f0f0;
}

.option.selected {
    background-color: #ddd;
}

.cancel {
    margin-top: 10px;
}

.pay {
    background-color: aquamarine;
}

.modal-overlay1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.alert-modal1 {
    background-color: bisque;
    padding: 20px;
    border-radius: 8px;
    max-width: 70%;
    max-height: 70vh;
    overflow: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.modal-overlay1.active {
    visibility: visible;
    opacity: 1;
}

@keyframes drawTick {
    from {
        stroke-dashoffset: 60;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawExclamation {
    from {
        stroke-dashoffset: 30;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawX {
    from {
        stroke-dashoffset: 57;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.under-construction {
    margin-top: 25px;
    font-size: 14px;
    color: #b30000;
}

.under-construction p {
    margin: 0 0 20px;
    color: #666;
}

.modal-overlay2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.alert-modal2 {
    background-color: bisque;
    padding: 20px;
    border-radius: 8px;
    max-width: 70%;
    max-height: 70vh;
    overflow: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-family: Arial, sans-serif;
}

.modal-overlay2.active {
    visibility: visible;
    opacity: 1;
}

@media (min-width: 768px) {

    .alert-modal2 {
        width: 50%;
    }
}

.modal-overlay3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.alert-modal3 {
    background-color: bisque;
    padding: 20px;
    border-radius: 8px;
    max-width: 70%;
    max-height: 70vh;
    overflow: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.modal-overlay3.active {
    visibility: visible;
    opacity: 1;
}

.inline-loader {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    background-color: #f1f1f1;
    text-align: center;
    display: none;
    transition: all 0.3s ease;
}

.inlineSpinner {
    margin: 0 auto 10px;
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top-color: #4CAF50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.cancelB {
    background-color: lightgray;
}