/*
Theme Name: Findme
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.wpcf7-spinner {
    display: none !important;
}
.wpcf7-response-output {
margin-top: 0 !important;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #28a745 !important;
    font-weight: bold;
    padding: 16px 20px !important;
    font-size: 16px;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.4s ease-out;
    position: fixed;
    bottom: 0;
    z-index: 9999;
    right: 0;
    left: auto;
    display: none;
}
.wpcf7-response-output.active {
    display: block;
}
.wpcf7 .wpcf7-not-valid-tip:after {
    display: none;
}
.wpcf7 .wpcf7-not-valid-tip {
    position: static;
    margin-top: 5px;
}
.wpcf7-form.invalid .wpcf7-response-output {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #dc3545 !important;
}
.zindex-99 {
    z-index: 99 !important;
}
.absolute-footer {
    background: #263b44;
    padding-block: 10px;
}
.copyright-footer p {
    margin: 0;
}
.copyright-footer {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}