
.ac-form{
    margin-inline:auto;
    width:420px;
    max-width:100%;
    padding:22px;
    box-sizing:border-box;
    background:#fff;
}
.ac-form-title{
    color:#8f6b6b;
    font-size:22px;
    line-height:1.2;
}
.ac-form-decoration{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin:12px 0 20px;
}
.ac-form-line{
    width:100px;
    height:1px;
    background:#c9b5b5;
}
.ac-form-decoration img{
    width:42px;
    height:42px;
    object-fit:contain;
}
.ac-form-flower{
    color:#8f6b6b;
    font-size:30px;
}
.ac-form-fields{
    display:flex;
    flex-direction:column;
    gap:16px;
}
.ac-field-wrap{
    display:flex;
    align-items:flex-start;
    min-height:54px;
    padding:0 16px;
    box-sizing:border-box;
    background:#e6d9d9;
    border-radius:7px;
}
.ac-field-icon{
    display:inline-flex;
    flex:0 0 auto;
    align-items:center;
    justify-content:center;
    width:26px;
    min-height:54px;
    color:#8e7e7e;
}
.ac-field-icon svg{
    width:1em;
    height:1em;
    fill:currentColor;
}
.ac-field{
    width:100%;
    min-width:0;
    border:0!important;
    outline:0!important;
    box-shadow:none!important;
    background:transparent!important;
    color:#8e7e7e;
    padding:15px 0 15px 4px!important;
    font:inherit;
}
textarea.ac-field{
    height:100%;
    min-height:160px;
    resize:vertical;
}
.ac-message-wrap{
    min-height:170px;
}
.ac-rating{
    display:flex;
    justify-content:center;
    gap:5px;
}
.ac-rating button{
    border:0;
    padding:0;
    background:transparent;
    color:#d6c4c4;
    font-size:25px;
    cursor:pointer;
}
.ac-rating button.active{
    color:#f5a000;
}
.ac-submit-wrap{
    text-align:center;
}
.ac-submit{
    border:0;
    border-radius:10px;
    padding:11px 20px;
    background:#9b7070;
    color:#fff;
    cursor:pointer;
}
.ac-submit[disabled]{opacity:.6;cursor:wait}
.ac-form-response{
    min-height:20px;
    text-align:center;
    font-size:13px;
}
.ac-form-response.success{color:#2f753e}
.ac-form-response.error{color:#a12f2f}
.ac-honeypot{
    position:absolute!important;
    left:-9999px!important;
    width:1px!important;
    height:1px!important;
    opacity:0!important;
}

.ac-dynamic-wrapper{
    padding:30px 8px;
    background:#ead7b6;
}
.ac-dynamic-carousel{
    --ac-cols:3;
    --ac-rows:2;
    --ac-gap:8px;
    position:relative;
}
.ac-dynamic-viewport{
    overflow:hidden;
    touch-action:pan-y;
}
.ac-dynamic-track{
    display:grid;
    grid-auto-flow:column;
    grid-template-rows:repeat(var(--ac-rows), minmax(0,1fr));
    grid-auto-columns:calc((100% - (var(--ac-gap) * (var(--ac-cols) - 1))) / var(--ac-cols));
    gap:var(--ac-gap);
    transition:transform .45s ease;
}
.ac-dynamic-card{
    min-height:260px;
    padding:20px;
    box-sizing:border-box;
    background:#fff;
    display:flex;
    flex-direction:column;
}
.ac-dynamic-stars{
    color:#f5a000;
    font-size:22px;
    letter-spacing:2px;
}
.ac-dynamic-text{
    margin-top:10px;
    color:#111;
    font-size:13px;
    line-height:1.25;
}
.ac-dynamic-author{
    margin-top:auto;
    padding-top:18px;
    color:#333;
    font-size:12px;
    text-align:right;
}
.ac-dynamic-photo{
    width:58px;
    height:58px;
    border-radius:50%;
    object-fit:cover;
    float:right;
}
.ac-dynamic-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:40px;
    height:40px;
    border:0;
    border-radius:50%;
    background:#fff;
    color:#777;
    box-shadow:0 3px 10px rgba(0,0,0,.2);
    z-index:5;
}
.ac-dynamic-prev{left:5px}
.ac-dynamic-next{right:5px}
.ac-dynamic-dots{
    display:flex;
    justify-content:center;
    gap:6px;
    margin-top:14px;
}
.ac-dynamic-dot{
    width:8px;
    height:8px;
    border:0;
    border-radius:50%;
    background:#ccb9b0;
}
.ac-dynamic-dot.active{background:#9d6f6f}
.ac-dynamic-empty{
    display:none;
    text-align:center;
    padding:25px;
}

@media(max-width:1024px){
    .ac-dynamic-carousel{--ac-cols:2;--ac-rows:2}
}
@media(max-width:767px){
    .ac-form{
        width:100%;
        padding:18px 14px;
    }
    .ac-form-line{width:70px}
    .ac-dynamic-carousel{--ac-cols:1;--ac-rows:1}
    .ac-dynamic-card{min-height:300px}
}
