/*------------------------------------*\
    FORM
\*------------------------------------*/

form {
    background-image:url('img/bg.jpg');
    background-position:50% 0%;
    background-repeat:repeat;
    background-color:#fff;
    width:460px;
    height:460px;
    padding:134px 99px 20px;
}

/*------------------------------------*\
    FONT
\*------------------------------------*/
.label label,
.field .block,
.field .list,
.choose .list,
.button span,
.info p { 
    font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
}

/*------------------------------------*\
    CONTAINER OFFSET
\*------------------------------------*/

/* [ label|input group offset ] */
[data-editable="custom"] {
    padding:15px 7px;
}

/*------------------------------------*\
    LABEL
\*------------------------------------*/

.label label { 
    font-size:15px;
    font-weight:normal;
    color:#82848b;
    line-height:1.4;
}

/*------------------------------------*\
    BORDER - input, select list, select placeholder
\*------------------------------------*/

/* Only border|border-radius */ 
.field .border {
    border:1px solid #cccccc;
}

/*------------------------------------*\
    INPUT/PLACEHOLDER
\*------------------------------------*/

/* [ Input|select placeholder ] */
.field .block {
    font-size:15px;
    font-weight:normal;
    color:#464a55;
    background-color:#fff;
}

/* [ Input|select|textarea padding ] */
.field .padding {
    padding-top:15px;
    padding-bottom:15px;
    padding-left:11px;
    padding-right:11px;
}

.label-position-left .label,
.label-position-right .label {
    padding-top: 15px; /* Only padding-top */
}

/* [ Nativ placeholder ] */
.field .placeholder.like-placeholder {
    font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif; 
    font-size:15px;
    font-weight:normal;
    color:#555;
}

input::-webkit-input-placeholder, 
textarea::-webkit-input-placeholder { 
    font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif; 
    font-size:15px;
    font-weight:normal;
    color:#555;
}

input:-moz-placeholder, 
textarea:-moz-placeholder { 
    font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif; 
    font-size:15px;
    font-weight:normal;
    color:#555;
}

input::-moz-placeholder, 
textarea::-moz-placeholder { 
    font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif; 
    font-size:15px;
    font-weight:normal;
    color:#555;
}

input:-ms-input-placeholder, 
textarea:-ms-input-placeholder { 
    font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif; 
    font-size:15px;
    font-weight:normal;
    color:#555;
}

/*------------------------------------*\
    DROPDOWN SELECT LIST
\*------------------------------------*/

/* [ List block - that same padding like .field .padding ] */
.list-item label {
    padding-left:11px;
    padding-right:11px;
}

/* [ Drop List::select|phone ] */
.field .list {
    font-size:15px;
    font-weight:normal;
    line-height:1.4;
    color:#262626;
    background-color:#fff;
}

/* [ Drop list text background::select|phone ] */
.field .list .list-item .item-label {}

/* [ Hover text background|color - :hover and .hover add two times -> editor required] */
.field .list .list-item:hover .item-label {
    color:#00afec;
}

.field .list .list-item .item-label.hover {
    color:#00afec;
}
 
/* [ Selected text background|color ] */
.field .list-item .item-label.selected,
.field .list-item input:checked + .item-label {
    color:#00afec;
}

/*------------------------------------*\
    RADIO/CHECKBOX
\*------------------------------------*/

/* [ Radio|Checkbox text style ] */
.choose .list {
    font-size:15px;
    font-weight:normal;
    color:#262626;
    line-height:1.4;
}

/* [ Item background - background on text in <li> ] */
.choose .list .list-item .item-label {}

/* :hover and .hover add two times -> editor required */
.choose .list .list-item:hover .item-label {
    color:#00afec;
}

.choose .list .list-item .item-label.hover {
    color:#00afec;
}

/* [ Selected ] */
.choose .list-item .item-label.selected,
.choose .list-item input:checked + .item-label {
    color:#00afec;
}

/*------------------------------------*\
    BUTTON
\*------------------------------------*/

.button {
    height:55px;
    background-color:#81d040;
}

.button span {
    font-size:22px;
    font-weight:bold;
    color:#fff;
}

/* :hover and .hover add two times -> editor required */
.button:hover {
    background-color: #8cdc4a;
}

.button.hover {
    background-color: #8cdc4a;
}

/*------------------------------------*\
    FIELD ICO
\*------------------------------------*/

.field-icon .field-icon-sign::after {
    padding-right:11px; /* that same padding like .field .padding */
}

.field-icon.select.open .field-icon-sign::after {
    padding-left:11px; /* that same padding like .field .padding */
    padding-right:0; /* clear right because transform rotate */
}

/*------------------------------------*\
    INFORMATION TEXT
\*------------------------------------*/
 
.info p {
    font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
    font-size:12px;
    font-weight:normal;
    font-style:italic;
    color:#464a55;
    line-height:2;
}