#content h2 {
    margin: 0.6em;
}

.largeImage {
    display: block;
    margin: 2em auto;
    height: 6em;
}

.spin {
    animation: spin 1.5s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.enlargeSize {
    font-size: 120%;
}

.enlargeSize .btn img {
    height: 1.3em;
}

@media (orientation: landscape) {
    .enlargeSize {
        font-size: 190%;
    }
}

#verifyDetailsScreen input:disabled,
#verifyDetailsScreen select:disabled,
#verifyDetailsScreen option {
    color: black;
    border: none;
    background: transparent;
    appearance: none;
    font-size: 100%;
    text-align: right;
    opacity: 1;
    padding: 0;
}

#verifyDetailsScreen label {
    display: block;
}

#verifyDetailsScreen>div {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    align-items: center;
    justify-content: center;
    width: 95%;
    margin: 1em auto;
}

#verifyDetailsScreen table {
    border: 1px solid black;
    width: 23em;
    border-collapse: collapse;
}

#verifyDetailsScreen table td {
    height: 1.5em;
    width: 45%;
    border-top: 1px solid #b9b9b9;
}

#verifyDetailsScreen table th {
    height: 2em;
    background-color: var(--projColor);
}

#verifyDetailsScreen tr>td:nth-child(2) {
    text-align: right;
}

input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    display: block !important;
    font-family: inherit;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.cardContainer {
    display: flex;
    /* gap: 3em; */
    justify-content: center;
    align-items: center;
    margin: 2em 0;
}

.choiceCard {
    width: 25em;
    /* height: 21.5em; */
    height: 20em;
    border-radius: 1em;
    padding: 2em;
    /* box-sizing: border-box; */
    border: 3px solid var(--secColor);
    background: hsl(0deg 0% 95%);
    transition: 0.3s;
    box-shadow: 0px 1px 9px 3px #67676712;
    user-select: none;
    cursor: pointer;
    margin: 1em 2em;
}

.choiceCard h4 {
    margin: 0;
}

.choiceCard img {
    height: 7em;
}

.choiceCard:hover {
    background: var(--secColor);
    border: 1px solid #000000;
    box-shadow: 0px 11px 9px 3px #5a5a5a3b;
    transform: translate(0px, -14px);
}

@media (orientation: portrait) {
    .choiceCard img {
        display: none;
    }

    .choiceCard {
        /* height: 15em; */
        height: 12em;
        width: 19em;

        background: var(--secColor);
        border: 1px solid #000000;
        /* box-shadow: 0px 11px 9px 3px #5a5a5a3b; */
        /* transform: translate(0px, -14px); */
    }

    .cardContainer {
        flex-direction: column;
        font-size: 90%;
    }
}

#serviceExplenation {
    width: 95%;
    margin: 0 auto;
}

ul {
    /* width: max-content; */
    width: fit-content;
    margin: 0 auto;
    text-align: right;
    line-height: 1.5em;
}

#payWithPaypal {
    width: clamp(20rem, 45%, 90vw);
    margin: 0 auto;
}

.radioContainer {
    /* display: flex; */
    display: grid;
    flex-direction: column;
    align-items: center;
    width: clamp(20rem, 50%, 100%);
    margin: 0 auto;
}

.radio-wrapper {
    display: flex;
    background: white;
    min-width: 16em;
    height: 3em;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%),
        0 3px 1px -2px rgb(0 0 0 / 20%),
        0 1px 5px 0 rgb(0 0 0 / 12%);
    margin: 0.3em;
    cursor: pointer;
}

.radio-wrapper:hover {
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%),
        0 3px 1px -2px rgb(0 0 0 / 20%),
        0 1px 5px 0 rgb(0 0 0 / 12%),
        0 2px 2px 0 rgb(0 0 0 / 14%),
        0 3px 1px -2px rgb(0 0 0 / 20%),
        0 1px 5px 0 rgb(0 0 0 / 12%);
}

.radio-wrapper input {
    display: none;
}

.radio-price {
    padding: 0em 0.5em;
    font-size: 115%;
    font-weight: bold;
}

.radio-space {
    width: 2em;
    height: 100%;
    display: block;
    border-left: 1px #c4c4c4 solid;
}

.radio-wrapper input[type="radio"]:checked~.radio-space {
    background: radial-gradient(rgb(0 196 255) 19%, rgba(0, 0, 0, 0) 100%);
    background-color: #3eb3ff;
    background-blend-mode: screen;
    transition: 0.4s background;
}

.radio-wrapper:has(input[type="radio"]:checked) {
    border-bottom-right-radius: 1em;
    border-top-left-radius: 1em;
    border-radius: 5em;
}

.radio-wrapper:checked {
    border-radius: 5em;
}

#serviceWarn {
    width: 80%;
    padding: 1em;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}