.feedback-card {
    background: rgba(0,0,0,.85);
   
    box-shadow: 0 20px 40px rgba(214,51,132,.1);
    text-align: center;
   animation: fadeIn 0.5s ease-out;  
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    display: none;
    padding: 40px;
    box-sizing: border-box;
}
.feedback-card, 
.feedback-card *, 
.feedback-card ::after, 
.feedback-card ::before {
    box-sizing: border-box !important;
}
.feedback-card.active {
    display: flex;
    align-items: center;
    justify-content: center
}

.feedback-card .feedback-card-inner {
    max-width: 400px;
    padding: 40px 20px 20px;
    border-radius: 30px;
    background-color: #fff
}

.feedback-card .logo-placeholder {
    width: 110px;
    height: 130px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #d63384;
}
.feedback-card .logo-placeholder img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}
.bg-black {
    background-color: #000;
}
.w-75 {
    width: 75% !important;
}
.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}
.py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
}
.mb-5 {
    margin-bottom: 3rem !important;
}
.rounded-10 {
    border-radius: 10px;
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}
[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button;
}
.text-white {
    color: #fff;
}
.text-uppercase {
    text-transform: uppercase !important;
}
.feedback-card h2 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 22px
}

.feedback-card p {
    color: #777;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5
}

.feedback-card .stars-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    direction: rtl
}

.feedback-card .star {
    font-size: 40px;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.2s ease
}

.star.active {
    color: #ffbc00;
    text-shadow: 0 0 10px rgba(255,188,0,.4)
}

.star:hover,.stars-container:has(.star:nth-child(2):hover) .star:nth-child(-n+1),.stars-container:has(.star:nth-child(3):hover) .star:nth-child(-n+2),.stars-container:has(.star:nth-child(4):hover) .star:nth-child(-n+3),.stars-container:has(.star:nth-child(5):hover) .star:nth-child(-n+4) {
    color: #ffbc00
}

.feedback-card .step {
    display: none
}

.feedback-card .step.active {
    display: block;
    animation: slideIn 0.4s ease-out
}

.feedback-card input {
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 15px;
    background: #fafafa
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.mb-3 {
    margin-bottom: 1rem !important;
}

.feedback-card textarea {
    width: 100%;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 15px;
    background: #fafafa
}

.feedback-card .btn-submit {
    background: #ffbc00;
    ;color: #000;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s
}

.feedback-card .btn-submit:active {
    transform: scale(.95)
}

.feedback-card .spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ffbc00;
    ;border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@media (max-width: 767px) {
    .feedback-card {
        padding:40px 20px
    }

    .feedback-card .feedback-card-inner {
        padding: 20px 20px 0
    }
} 
 @media (min-width: 768px) {
    .mb-md-4 {
        margin-bottom: 1.5rem !important;
    }
}