#ch-form {
    margin: 20px 0;
}

.chabok-form-maker .chabok-field-row label {
    width: 100%;
    display: block;
}
.chabok-form-maker .chabok-field-row {
    margin-bottom: 20px;
}
.chabok-form-maker .chabok-field-row input[type="tel"]::placeholder {
    text-align: right;
}
.chabok-form-maker .chabok-field-row input,
.chabok-form-maker .chabok-field-row select,
.chabok-form-maker .chabok-field-row textarea {
    width: 100%;
}
.chabok-form-maker .chabok-field-row select {
    padding: 10px;
}

.chabok-form-maker-col-5,
.chabok-form-maker-col-10,
.chabok-form-maker-col-15,
.chabok-form-maker-col-20,
.chabok-form-maker-col-25,
.chabok-form-maker-col-30,
.chabok-form-maker-col-35,
.chabok-form-maker-col-40,
.chabok-form-maker-col-45,
.chabok-form-maker-col-50,
.chabok-form-maker-col-55,
.chabok-form-maker-col-60,
.chabok-form-maker-col-65,
.chabok-form-maker-col-70,
.chabok-form-maker-col-75,
.chabok-form-maker-col-80,
.chabok-form-maker-col-85,
.chabok-form-maker-col-90,
.chabok-form-maker-col-95,
.chabok-form-maker-col-100 {
    float: right;
    padding:0 10px;
}
.chabok-field-row h2 {
    font-size: 19px;
}
.chabok-form-maker-col-5 {
    width: 5%;
}
.chabok-form-maker-col-10 {
    width:10%;
}
.chabok-form-maker-col-15 {
    width: 15%;
}
.chabok-form-maker-col-20 {
    width: 20%;
}
.chabok-form-maker-col-25 {
    width: 25%;
}
.chabok-form-maker-col-30 {
    width: 30%;
}
.chabok-form-maker-col-35 {
    width: 35%;
}
.chabok-form-maker-col-40 {
    width: 40%;
}
.chabok-form-maker-col-45 {
    width: 45%;
}
.chabok-form-maker-col-50 {
    width: 50%;
}
.chabok-form-maker-col-55 {
    width: 55%;
}
.chabok-form-maker-col-60 {
    width: 60%;
}
.chabok-form-maker-col-65 {
    width: 65%;
}
.chabok-form-maker-col-70 {
    width: 70%;
}
.chabok-form-maker-col-75 {
    width: 75%;
}
.chabok-form-maker-col-80 {
    width: 80%;
}
.chabok-form-maker-col-85 {
    width: 85%;
}
.chabok-form-maker-col-90 {
    width: 90%;
}
.chabok-form-maker-col-95 {
    width: 95%;
}
.chabok-form-maker-col-100 {
    width: 100%;
}
.chabok-form-maker-padder {
    padding:0 10px;
}

.chabok-field-row {
    position: relative;
}
.chabok-field-row .error-help {
    position: absolute;
    right: 0;
    bottom: -17px;
    top: auto;
    font-size: 12px;
    color: red;
}
.chabok-field-row.chabok-error input,
.chabok-field-row.chabok-error textarea {
    border-color: red;
}
.chabok-message.error {
    padding: 10px;
    background: #ffe4e4;
    border-radius: 10px;
    float: right;
    width: 100%;
}
.chabok-message.success {
    padding: 10px;
    background: #e4ffe8;
    border-radius: 10px;
    float: right;
    width: 100%;
}
button.chabok-loading::before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    background: #fff;
    right: 10px;
    border-radius: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    animation: changeColorBtn infinite 2s;
}
@keyframes changeColorBtn {
    0%  {
        opacity: 1;
        background:#fff;
    }
    20% {
        opacity: 0;
    }
    40% {
        opacity: 1;
        background:rgb(187, 255, 0);
    }
    60% {
        opacity: 0;
    }
    80% {
        opacity: 1;
        background:blue;
    }
    100% {
        opacity: 0;
    }
    
}

@media screen and (max-width:922px) {
    .chabok-form-maker-col-5,
    .chabok-form-maker-col-10,
    .chabok-form-maker-col-15,
    .chabok-form-maker-col-20,
    .chabok-form-maker-col-25,
    .chabok-form-maker-col-30,
    .chabok-form-maker-col-35,
    .chabok-form-maker-col-40,
    .chabok-form-maker-col-45,
    .chabok-form-maker-col-50,
    .chabok-form-maker-col-55,
    .chabok-form-maker-col-60,
    .chabok-form-maker-col-65,
    .chabok-form-maker-col-70,
    .chabok-form-maker-col-75,
    .chabok-form-maker-col-80,
    .chabok-form-maker-col-85,
    .chabok-form-maker-col-90,
    .chabok-form-maker-col-95,
    .chabok-form-maker-col-100 {
        width:100%;
    }
}
