.caf-ext .flex {
    display: flex;
}

.caf-ext .jc-sb {
    justify-content: space-between;
}

.caf-ext .jc-c {
    justify-content: center;
}

.caf-ext .t-a-c {
    text-align: center;
}

@media only screen and (max-width: 600px) {
    .caf-ext .flex {
        display: flex;
        flex-direction: column;
    }
    .caf-ext .input {
        width: 100% !important;
    }
}

.caf-ext .caf-input {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    background: #fff;
    border: 1px solid #ff9d9e;
    font-size: 16px;
    color: rgba(103, 103, 103, 1);
    padding: 10px 30px;
    border-radius: 2px;
    transition: all 500ms ease;
}

.caf-ext textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
    background: #fff;
    border: 1px solid #ff9d9e;
    font-size: 16px;
    color: rgba(103, 103, 103, 1);
    padding: 10px 30px;
    transition: all 500ms ease;
    resize: none;
}

.caf-ext button {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    font-family: var(--title-font);
    color: #fff !important;
    background: red;
    text-align: center;
    padding: 18px 35px;
    z-index: 1;
    transition: all 500ms ease;
}

.caf-ext button:hover {
    color: red !important;
    background: white !important;
}

.caf-ext .input {
    width: 100%;
}

.mar-l {
    margin-left: 20px;
}

.mar-r {
    margin-right: 20px;
}

.mar-b {
    margin-bottom: 20px;
}

.mar-a {
    width: 49% !important
}

.caf-ext #step2 {
    display: none;
}

.caf-ext .notification {
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    margin: 10px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    position: relative;
}

.caf-ext .notification-error {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.caf-ext .notification-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.caf-ext .notification-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.caf-ext .notification-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}
