.countdown {
    display: flex;
    font-family: Arial, sans-serif;
    justify-content: center;
}

.countdown-item {
    text-align: center;
    margin: 0 10px;
}

.circle {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    /* background-color: #000000; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
            radial-gradient(closest-side, white 79%, transparent 80% 100%),
            conic-gradient(hotpink 100%, pink 0);
}

.countdown-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: bold;
    color: hotpink; /* Orange color */
}

.countdown-label {
    display: block;
    font-size: 0.8rem;
    color: hotpink;
    margin-top: 5px;
}


#container-faq {
    list-style:none;    
    font-family:arial;
    font-size:20px;
}

#container-faq li {
    margin:10px;
    border-bottom:1px solid #ccc;
    position:relative;
    cursor:pointer;
}

#container-faq h3 {
    margin:0;
    font-size:24px;
}

#container-faq span {
    position:absolute;
    right:5px; top:0;
    color:#000;
    font-size:18px;
}

#container-faq .panel {
    margin:5px 0;
    display:none;
} 


.package-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.package-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.package-price {
    font-size: 1.2em;
    color: #b8860b;
    margin-bottom: 10px;
}
.package-description {
    margin-bottom: 20px;
}


.step-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.step-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.step-description {
    margin-bottom: 10px;
}
.step-number {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 10px;
}


.leaderboard-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.leaderboard-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.leaderboard-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}
.leaderboard-item:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}
.leaderboard-rank {
    font-size: 1.2em;
    font-weight: bold;
    margin-right: 10px;
}
.leaderboard-time {
    font-size: 1em;
    color: #6c757d;
}


label.radio {
    cursor: pointer;
}

label.radio input {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    pointer-events: none;
}

label.radio span {
    padding: 4px 0px;
    border: 1px solid red;
    display: inline-block;
    color: red;
    width: 100px;
    text-align: center;
    border-radius: 3px;
    margin-top: 7px;
    text-transform: uppercase;
}

label.radio input:checked + span,
label.radio span:hover {
    border-color: red;
    background-color: red;
    color: #fff;
}

.ans {
    margin-left: 36px !important;
}

/* .btn:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

.btn:active {
    outline: 0 !important;
    box-shadow: none !important;
} */

/* Hide the arrows for input[type="number"] on Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide the arrows for input[type="number"] on Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

#my_centered_buttons { display: flex; justify-content: center; }