﻿.feedback-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1300;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feedback-content {

    background: white;
    padding: 20px;
    border-radius: 5px;
    width: 100%;
    max-width: 500px;
    position: relative;
}

.feedback-title {
    padding-bottom: 10px;
}

.form-group label {
    padding-bottom: 5px;
}

#feedbackForm {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.btn-feedback {
    transition: all 0.3s ease-in-out; 
    border: 1px white solid!important;
    background: none;
    width: 150px;
    color: white;
    padding: 10px 0px;
    border: none;
    outline: none;
}

.btn-feedback:hover {
    background: white;
    color: rgba(24, 90, 154,1);
 }