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

form {
    background-color:#90a4ae;
    background-image:url('img/104_01.png');
    background-position:0% 0%;
    background-repeat:repeat;
    background-size:cover;
    width:460px;
    height:460px;
    padding:122px 69px 31px 67px;
}

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

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

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

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

.label label {
    font-size:21px;
    font-weight:normal;
    color:#ffffff;
    line-height:2;
}

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

/* Only border|border-radius */
.field .border {
    border:0;
    border-top-left-radius:22px;
    border-bottom-left-radius:22px;
    border-top-right-radius:22px;
    border-bottom-right-radius:22px;
}

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

/* [ Input|select placeholder ] */
.field .block {
    font-size:23px;
    font-weight:normal;
    color:#b0bec5;
    background-color:#eceff1;
}

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

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

/* [ Nativ placeholder ] */
.field .placeholder.like-placeholder {
    font-family:Helvetica, sans-serif;
    font-size:23px;
    font-weight:normal;
    color:#b0bec5;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    font-family:Helvetica, sans-serif;
    font-size:23px;
    font-weight:normal;
    color:#b0bec5;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    font-family:Helvetica, sans-serif;
    font-size:23px;
    font-weight:normal;
    color:#b0bec5;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    font-family:Helvetica, sans-serif;
    font-size:23px;
    font-weight:normal;
    color:#b0bec5;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    font-family:Helvetica, sans-serif;
    font-size:23px;
    font-weight:normal;
    color:#b0bec5;
}

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

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

/* [ Drop List::select|phone ] */
.field .list {
    font-size:12px;
    font-weight:normal;
    line-height:1.4;
    color:#b0bec5;
    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:#546e7a;
}

.field .list .list-item .item-label.hover {
    color:#546e7a;
}

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

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

/* [ Radio|Checkbox text style ] */
.choose .list {
    font-size:12px;
    font-weight:normal;
    color:#ffffff;
    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:#546e7a;
}

.choose .list .list-item .item-label.hover {
    color:#546e7a;
}

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

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

.button {
    height:67px;
    border-radius:22px;
    background-color:#00b0ff;
}

.button span {
    font-family:Helvetica, sans-serif;
    font-size: 27px;
    font-weight:700;
    color:#ffffff;
}

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

.button.hover {
    background-color: #33c0ff;
}

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

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

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

/*------------------------------------*\
    INFORMATION TEXT
\*------------------------------------*/

.info p {
    font-family:Helvetica, sans-serif;
    font-size:11px;
    font-weight:normal;
    color:#cfd8dc;
    line-height:2;
}