body {
    font-family: "Roboto", sans-serif;
}

.checkout-form label {
    font-size: 12;
    font-weight: 700;
}

.checkout-form input {
    font-size: 14px;
    padding: 5px;
    font-weight: 400;
}

.ui-menu {
    z-index: 3500 !important;
}

.order-details label {
    font-size: 12px;
    font-weight: 700;
}

.order-details div {
    font-size: 14px;
    padding: 5px !important;
}

/* rating */
.rating-css div {
    color: #ffe400;
    font-size: 30px;
    font-family: sans-serif;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 0;
}
.rating-css input {
    display: none;
}
.rating-css input + label {
    font-size: 60px;
    text-shadow: 1px 1px 0 #8f8420;
    cursor: pointer;
}
.rating-css input:checked + label ~ label {
    color: #ffffff;
}
.rating-css label:active {
    transform: scale(0.8);
    transition: 0.3s ease;
}

/* End of Star Rating */

.checked {
    color: #ffd900;
}

.input {
    display: flex;
    border: 1px solid silver;
    border-radius: 5px;
    padding: 5px;
    gap: 10px;
    max-height: 44px;
}
.input input {
    border: none;
    max-height: 34px;
}

.input .arrows {
    height: 34px;
}
.input .arrows a {
    display: block;
    width: 100%;
    height: 50%;
}

.input i {
    color: black;
    transition: 0.4s;
}
.input i:hover {
    color: red;
}

.add-btn {
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: 700;
    padding: 5px;
    border: none;
    outline: none;
    color: white;
    border-radius: 5px;
    background-color: #f15412;
    text-align: center !important;
    padding-right: 5px !important;
}

.wish-list {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid silver;
    border-radius: 5px;
    transition: 0.4s;
}
.wish-list:hover {
    bottom: 10px;
    background: #037190;
    color: white;
    cursor: pointer;
}

.btn-cart {
    background-color: #037190 !important;
    color: #fff !important;
    padding: 12px 30px !important;
    padding-top: 12px !important;
    padding-right: 30px !important;
    padding-bottom: 12px !important;
    padding-left: 30px !important;
}

body {
    font-family: "Cairo", sans-serif;
}

.mainfont {
    font-family: "Cairo", sans-serif;
}




.welcome {
    color: red;
}
.accordion {
    /* margin: 60px auto; */
    width: 250px;
}
.accordion li {
    list-style: none;
    width: 100%;
    margin: 20px;
    margin-left: -50px;
    padding: 10px;
    border-radius: 8px;
    background: #e3edf7;
    box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
        -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
    text-align: center;
}

.accordion li label {
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

label::before {
    content: "+";
    margin-right: 10px;
    font-size: 24px;
    font-weight: 600;
}

input[type="radio"] {
    display: none;
}

.accordion .content {
    color: #555;
    padding: 0 10px;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
}

.accordion input[type="radio"]:checked + label + .content {
    max-height: 400px;
    padding: 10px 10px 20px;
}

.accordion input[type="radio"]:checked + label::before {
    content: "-";
}
