
.ui{
    width: 70%;
    border-radius: 50%;
}
.cs{
    text-align: center; 
    /* margin-bottom: 40px; */
}
.faq-container {
    max-width: 90%;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(60 114 230 / 63%);
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 35px;
}

.faq-item {
    margin-bottom: 20px;
}

input[type="checkbox"] {
    display: none;
    
}

label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    /* font-weight: bold; */
    cursor: pointer;
    background-color: #e9e9e9;
    border-radius: 5px;
}

label:hover {
    background-color: #d4d4d4;
    font-weight: bold;
}

p {
    margin: 0;
    padding: 10px;
}
.none{
    display: none;
}

input[type="checkbox"]:checked + label + p {
    display: block;
    transition: max-height 0.5s ease-out;
}


.flag-circle {
    width: auto;
    height: auto;
    background-color: #fff; /* Set the background color to white */
    border: 5px solid;
    border-radius: 50%; /* Create a circular shape */
    border-image-slice: 1;
    border-image-source: conic-gradient(#ff9933, #ff9933 33.33%, #fff 0, #fff 66.66%, #128807 0); /* Circular border gradient */
    border-image-repeat: round;
}
.circle {
    width: 200px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #1d8f00, /* Red border */ 0 0 0 4px #ffffff, /* Green border */0 0 0 6px #ff7b00; /* Blue border */
}

.rating {
    unicode-bidi: bidi-override;
    direction: rtl;
    margin-top: -15px;
    margin-bottom: 10px;
    text-align: center;
}

.rating input {
    display: none;
}

.rating label {
    background-color: #fff;
    display: inline-block;
    padding: 5px;
    font-size: 40px;
    color: #888;
    cursor: pointer;
}

.rating label:before {
    content: '\2605';
}

.rating input:checked ~ label:before {
    content: '\2605';
    color: gold;
}

.rating label:hover:before,
.rating label:hover ~ label:before {
    content: '\2605';
    color: gold;
    
}
.white{
    color: rgba(255, 255, 255, 0.6);
}
.orange{
    background-color: #ff7b00;
}
.green{
    background-color: #05982f;
}
.blue{
    background-color: #01139a;
}
.feature-single:hover .org{
	background: #fecfa3!important;
	color: #fff;
}
.feature-single:hover .wht{
	background: #e5e5e5!important;
	color: #000;
}
.feature-single:hover .blu{
	background: #9aa3e7!important;
	color: #fff;
}
.feature-single:hover .grn{
	background: #95ffb3!important;
	color: #fff;
}

.border{
    border: 5px solid #131e25;
}