.addintional-chargies-body {
    padding: 32px 32px;
    max-height: 620px;
    overflow: auto;
    position: relative;
}

.closebtn-cross {
    position: absolute;
    top: 12px;
    right: 20px;
}

.exp-modal-btn {
    height: 40px;
    padding: 12px 42px 12px 42px;
    gap: 0px;
    opacity: 0px;
    border: 1px solid #2a9fe8;
    color: #ffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    border-radius: 4px;
    background-color: #2a9fe8;
}

/* .chargies-modal-order-btn:hover {
      color: #71bff0;
      border: 1px solid #71bff0;
      background-color: transparent !important;
  
  } */

.exp-modal-btn:hover {
    background-color: #2a9fe8bc;
}

.rate-hdr {
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.012em;
    text-align: left;
    color: #0c1529;
}

.form-label-inquirys {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.01em;
    text-align: left;
    color: #344054;
    margin-bottom: 6px;
}

.mb-24 {
    margin-bottom: 24px;
}

.chargies-footer-stion {
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

.comman-input-field-inq {
    height: 40px;
    border: 1px solid #d0d5dd;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.01em;
    color: #667085 !important;
    border-radius: 4px !important;
    background-size: 16px 9px;
}

/* ------rating-emojies--end--css------ */
.rating-container {
    margin-bottom: 14px;
}

.rating-container h2 {
    font-size: 18px;
    margin-bottom: 20px;
}

.emojis {
    display: flex;
    max-width: 300px;
    gap: 8px;
}

.emoji svg {
    opacity: 0.4;
    transition: all 0.1s ease-in;
}

.emoji {
    position: relative;
    /* font-size: 40px; */
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.emoji:hover svg {
    fill: #efa22f;
    transform: scale(1.2);
    opacity: 1;
}

.emoji:hover .stooltip {
    opacity: 1;
    visibility: visible;
}

.img-feed1 {
    background-image: url("/assets/images/new-icon/emo1.webp");
    object-fit: contain;
    background-repeat: no-repeat;
    background-size: contain;
    width: 28px;
    height: 28px;
    display: inline-block;
}

.img-feed1:hover {
    background-image: url("/assets/images/new-icon/active-emo1.webp");
    transform: scale(1.1);
}

.selected .img-feed1 {
    background-image: url("/assets/images/new-icon/active-emo1.webp");
    transform: scale(1.1);
}

.img-feed2 {
    background-image: url("/assets/images/new-icon/emo5.webp");
    object-fit: contain;
    background-repeat: no-repeat;
    background-size: contain;
    width: 28px;
    height: 28px;
    display: inline-block;
}

.img-feed2:hover {
    background-image: url("/assets/images/new-icon/active-emo-3.webp");
    transform: scale(1.1);
}

.selected .img-feed2 {
    background-image: url("/assets/images/new-icon/active-emo-3.webp");
    transform: scale(1.1);
}

.img-feed3 {
    background-image: url("/assets/images/new-icon/emo3.webp");
    object-fit: contain;
    background-repeat: no-repeat;
    background-size: contain;
    width: 28px;
    height: 28px;
    display: inline-block;
}

.img-feed3:hover {
    background-image: url("/assets/images/new-icon/active-emo-5.webp");
    transform: scale(1.1);
}

.selected .img-feed3 {
    background-image: url("/assets/images/new-icon/active-emo-5.webp");
    transform: scale(1.1);
}

.img-feed4 {
    background-image: url("/assets/images/new-icon/emo4.webp");
    object-fit: contain;
    background-repeat: no-repeat;
    background-size: contain;
    width: 28px;
    height: 28px;
    display: inline-block;
}

.img-feed4:hover {
    background-image: url("/assets/images/new-icon/active-emo2.webp");
    transform: scale(1.1);
}

.selected .img-feed4 {
    background-image: url("/assets/images/new-icon/active-emo2.webp");
    transform: scale(1.1);
}

.img-feed5 {
    background-image: url("/assets/images/new-icon/emo2.webp");
    object-fit: contain;
    background-repeat: no-repeat;
    background-size: contain;
    width: 28px;
    height: 28px;
    display: inline-block;
}

.img-feed5:hover {
    background-image: url("/assets/images/new-icon/active-emo-4.webp");
    transform: scale(1.1);
}

.selected .img-feed5 {
    background-image: url("/assets/images/new-icon/active-emo-4.webp");
    transform: scale(1.1);
}

.rate-icon-img {
    margin-right: 10px;
    height: 36px;
    width: 36px;
}

.phone-car-detail {
    height: 40px;
    border: 1px solid #d0d5dd;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.01em;
    color: #667085 !important;
    border-radius: 4px !important;
    background-size: 16px 9px;
}

.form-label-inquirys {
    padding-top: 2px;
}

/* sTooltip styling */
.stooltip {
    position: absolute;
    bottom: 41px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: #555;
    padding: 2px 4px 2px 4px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    border: 1px solid #555;
    z-index: 1;
}

.stooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.stooltip:hover {
    bottom: 41px;
    left: 40%;
}

.star-fill-modal {
    fill: #cbd5e1;
}

@media screen and (max-width: 425px) {
    .addintional-chargies-body {
        padding: 32px 16px;
    }
}

/* ------rating-emojies--start--css------ */

/* 
  @media screen and (max-width: 425px) {
      .form-label-inquirys {
          font-size: 12px;
      }
      .comman-input-field-inq {
          font-size: 10px;
      }
  
  } */
