/* Form error start */
.ft-formerr-block {
    background-color: #fff6f6;
    color: #9f3a38;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
    box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
    padding: 10px 0;
    margin-bottom: 10px;
}

.ft-formerr-block>ul {
    margin: 0;
    text-align: left;
}

/* Form Error */

/* Form Success start */
.ft-formsuc-block {
    background-color: rgb(40 167 69 / 8%);
    color: #28a745;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 0 1px rgb(40 167 69 / 15%) inset;
    box-shadow: 0 0 0 1px rgb(40 167 69 / 15%) inset;
    padding: 10px 0;
    margin-bottom: 10px;
    line-height: 22px;
    text-align: center;
    position: relative;
}

.ft-fadein {
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.formsuc-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.2rem;
    padding: 0.7rem 1rem !important;
    color: #000;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Form Sucess end */