
button:disabled,
button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

div.invalid-feedback{
    font-size: var(--x-small-text);
    font-style: italic;
    line-height: 1.313rem;
    color: var(--error-color);
}

.notice{
    background-color: #ffc107;
    color: #856404;
    border: 1px solid #ffc107;
}
.success{
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    background-color: #ffffff;
}
.alert-message {
    position: fixed;
    top: 15%;
    right: 15%;
    z-index: 1050;
    max-width: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 14px;
    padding: 15px 20px;
    width: 400px;
}
/* Close button inside the alert */
.alert-message .close {
    position: absolute;
    top: 5px;
    right: 8px;
    font-size: 18px;
    color: #856404;
    opacity: 0.8;
    cursor: pointer;
}

@media (max-width: 768px) {
    .alert-message {
        right: 10px !important;
        top: 10% !important;
        max-width: calc(100% - 20px);
        font-size: 13px;
    }
}
#forgot_thank_you, #update_password_thank, #signup-confirmation{
    display: none;
}

/* Style the input fields when there is an error */
.wpcf7-not-valid {
    border: 1px solid var(--error-color) !important; 
    background-color: #fff5f5; /* Light red background */
    border-radius: 5px; /* Rounded corners */
}

/* Style the error messages */
.wpcf7-response-output,
.wpcf7-not-valid-tip {    
    font-size: var(--x-small-text);
    font-style: italic;
    line-height: 1.313rem;
    color: var(--error-color) !important;
}

/* Ensure error messages do not overlap */
.wpcf7-not-valid-tip {
    display: block;
    font-style: italic;
}

/* Space out form fields */
.wpcf7-form-control {
    padding: 10px;
    font-size: 16px;
}

/* Hide the default Contact Form 7 message box */
.wpcf7-validation-errors {
    display: none !important;
}

.tribute-like-button {
    cursor: pointer;
    transition: color 0.3s ease;
}

/* remove first lable in fselect */
.fs-options > .fs-option:first-child {
    display: none !important;
}
.fs-label-wrap .fs-label {
    color: #8E8E93 !important;
}
.custom_alert.alert {
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom_alert.alert .close {
    opacity: 0.7;
    font-size: 20px;
}

.custom_alert.alert .close:hover {
    opacity: 1;
}

