.loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .2);
    align-items: center;
    justify-content: center;
    z-index: 999;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    display: none;
}

.empty {
    width: 100%;
    display: none;
    text-align: center;
    font-size: 22px;
}

.loader::before {
    content: "";
    width: 60px;
    height: 60px;
    border: 5px solid #03a550;
    border-radius: 50%;
    border-bottom-color: rgba(0, 0, 0, 0);
    animation: .5s linear infinite loader;
}

@keyframes loader {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}


.ac-popup-close {
    float: right;
    cursor: pointer;
    top: -20px;
    right: -20px;
    position: relative;
    padding: 4px 8PX;
    border-radius: 50%;
    background: gray;
    color: white;
}


.ac-popup-container {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #00000065;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.ac-popup {
    position: absolute;
    border-radius: 15px;
    background: #fff;
    max-width: 70%;
    width: 100%;
    z-index: 200;
}

@media (max-width: 767px) {
    .ac-popup {
        max-width: 95%;
    }
}

.popup-content {
    display: none;
    position: absolute;
    top: 40px;
    left: 10%;
    right: auto;
    padding: 15px;
    width: 80%;
    border-radius: 15px;
    background: rgb(204, 204, 204);
    z-index: 200;
}

.ac-popup-post-content {
    height: min(25vw, 150px);
    overflow-y: auto;
}

.ac-submit-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ac-submit-form input[type="text"],
.ac-submit-form input[type="email"] {
    width: 100%;
}

.corector-info {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.ac-popup-title {
    margin-top: unset;
    font-size: clamp(20px, 1vw, 14px);
}

/* ===[Start Popup Style]=== */
.addFeedback {
    background: #03a550;
    border: 1px solid transparent;
    color: #fff;
    border-radius: 8px;
    transition: .2s all;
    padding: 0.6em 1em 1em;
}

.addFeedback:hover,
.addFeedback:active,
.addFeedback:focus {
    background: #02793b;
}

/* _Start Popup Container_ */
.ac-popup-container .ac-popup {
    display: flex;
    flex-direction: column;
    padding: 1rem 0.5rem;
    height: 90%;
    max-height: 850px;
}

.ac-popup-container .ac-popup .ac-popup-holder {
    overflow-y: auto;
    padding: 1.5rem 1.75rem;
}

@media (max-width: 767px) {
    .ac-popup-container .ac-popup .ac-popup-holder {
        padding: 1.5rem 0.25rem;
    }
}
/* _End Popup Container_ */

/* _Start Popup Title_ */
.ac-popup-container .ac-popup-title {
    color: #03a550;
    margin: 0.5rem 0 1rem;
    display: flex;
    font-weight: bold;
}
/* _End Popup Title_ */

/* _Start Popup inputs & Buttons Style */
.ac-popup-container .corrector-info-holder {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    grid-gap: 0.45rem;
}
.ac-popup-container input:not([type="checkbox"]):not([type="button"]),
.ac-popup-container textarea {
    outline: none;
    border: 1px solid #ececec !important;
    border-radius: 8px;
}

.ac-popup-container input.submitFeedback {
    background: #03a550;
    color: #fff;
    border-radius: 8px;
    border: 1px solid transparent !important;
    padding: 0.75rem 1rem;
    line-height: normal;
    margin: 1rem 0 0;
    transition: .2s all;
}

.ac-popup-container input.submitFeedback:hover {
    background: #02793b;
}

.mce-container-body button:hover {
    background: inherit;
    color: inherit;
}
/* _End Popup inputs & Buttons Style */

/* _Start Popup Close Button_ */
.ac-popup-container .ac-popup-controls .ac-popup-close {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
}

.ac-popup-container .ac-popup-close {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #231F20;
    transition: .2s all;
    line-height: normal;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
}

.ac-popup-container .ac-popup-close:hover {
    background: #c70202;
}
/* _End Popup Close Button_ */

/* ===[End Popup Style]=== */
