@charset "utf-8";
/* CSS Document */



/* form */
.fcform__main input,
.fcform__main select,
.fcform__main textarea {
    display: block;
    padding: 0.6em 1em;
    color: #303030;
    font: inherit;
    line-height: 1.4;
    background: #fff;
    border-radius:4px;
    width: 100%;
    border: 1px solid #ddd;
    appearance: none;
    -webkit-appearance: none;
}

.fcform__main input::placeholder,
.fcform__main select::placeholder,
.fcform__main textarea::placeholder {
    opacity: 1;
    color: #CFCFCF;
    line-height: 1.8;
}

.fcform__main input:-ms-input-placeholder,
.fcform__main select:-ms-input-placeholder,
.fcform__main textarea:-ms-input-placeholder {
    color: #CFCFCF;
    line-height: 1.8;
}

.fcform__main input::-ms-input-placeholder,
.fcform__main select::-ms-input-placeholder,
.fcform__main textarea::-ms-input-placeholder {
    color: #CFCFCF;
    line-height: 1.8;
}

.fcform__main select {
    padding: 3.5px 10px;
    min-width: 70px;
    position: relative;
    top: 1px;
}

.fcform__main .i-dropdown {
    position: relative;
}

.fcform__main .i-dropdown.i-arrow:before,
.fcform__main .i-dropdown.i-arrow:after {
    content: "";
    pointer-events: none;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    position: absolute;
    top: 0;
    right: 7px;
    bottom: 0;
    z-index: 2;
}

.fcform__main .i-dropdown.i-arrow:before {
    border-bottom: 5px solid #000;
    transform: translateY(-4px);
}

.fcform__main .i-dropdown.i-arrow:after {
    border-top: 5px solid #000;
    transform: translateY(4px);
}

.fcform__main .i-dropdown select {
    padding-right: 25px;
}

.fcform__main select:disabled {
    font-style: italic;
    color: #a3a3a3;
    background-color: #F4F4F4;
    cursor: not-allowed;
}

.fcform__main select option[value=""] {
    color: #909090;
    font-style: italic;
}

.fcform__main .choice-date select option:disabled {
    font-style: italic;
}

.fcform__main textarea {
    min-height: 100px;
    resize: vertical;
}

.fcform__main textarea.auto-resize {
    resize: none;
    overflow: hidden;
}

.fcform__main input[type="radio"],
.fcform__main input[type="checkbox"] {
    display: inline-block;
    width: auto;
}

.fcform__main input[type="number"] {
    /* direction: rtl; */
    display: inline-block;
    width: 100px;
}


.caption--askerisk {
    padding: 6px;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    background: #a3ba60;
    border-radius: 3px;
    margin-right: 0.8em;
    display: inline-block;
}
.caption--nini {
	padding: 6px;
	color: #404040;
	font-size: 12px;
	line-height: 1;
	background: #FFF;
	border: 1px solid rgba(89,89,89,1.00);
	border-radius: 3px;
	margin-right: 0.8em;
	display: inline-block;
}

.fc-form .form-row {
	position: relative;
}
.form-row {
    padding-bottom: 2em;
}
.fc-form .form-value {
	position: relative;
}

.form-caption {
    padding-bottom: 0.6em;
}

.form-caption.vtop {
    padding-top: 5px;
}

@media only screen and (max-width: 768px) {
    .caption--askerisk {
        font-size: 10px;
    }
    .form-caption{
        padding-bottom: 0.4em;
    }
}

.form-button {
    margin: 6% auto 0;
    text-align: center;
}

.form-button button {
    cursor: pointer;
    display: inline-block;
    background: none;
    border: none;
    position: relative;
}

.form-button button:hover {
    text-decoration: underline;
}

.form-button button[type="submit"] {
}

.form-button button[type="submit"]:before {

}

.form-button button[type="submit"]:hover {

}

.fc-form [class^="error"] {
    position: static;
    font-weight: 500;
}

.form-button .form-block + .form-block {
    margin-top: 20px;
}


.i-custom {
    cursor: pointer;
    display: inline-block;
    margin: 0 10px;
    position: relative;
}

.i-custom + .i-custom {
}

.i-custom input {
    opacity: 0;
    position: absolute;
}

.i-custom > span {
    padding-left: 30px;
    position: relative;
    display: inline-block;
}

.i-custom > span:before {
    background: #FEFEFE;
    width: 24px;
    height: 24px;
    border: 1px solid #ddd;
    left: 0;
}

.i-custom > span:after {
    opacity: 0;
    background: #ddd;
    width: 24px;
    height: 24px;
    left: 4px;
    transform: scale(0);
}
.i-custom input[type="radio"] ~ span:before,
.i-custom input[type="radio"] ~ span:after {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    transition: all .3s ease;
    border-radius: 100%;
}

.i-custom input[type="checkbox"] ~ span:before {
    content: "";
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0;
}

.i-custom input[type="checkbox"] ~ span:after {
    content: "";
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s ease;
    background: url('../img/check-on.png') no-repeat center / contain;
}

.i-custom input:checked ~ span:after {
    opacity: 1;
    transform: scale(1);
}

.error{
	color:#F00;
}




