body
{
    background-color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    color: #888; /* bababa */
}

#top
{
    border-bottom: solid #bebebe 1px;
    background-color: #ffffff;
    /* h, v, blur dist, spread, color */
    box-shadow: 0 1px 1px 0 #dedede;
    z-index: 1000;
    position: relative;
}

.logo
{
    height: 90px;
}

.logo img
{
    margin-top: 32px;
    max-width: 352px;
    width: 100%;
}

.form-section
{
    background-color: #f8f8f8;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.form-section.nogap
{
    margin-bottom: 0;
}

.form-section > .container > .title
{
    font-weight: 600;
    color: #949494;
    font-size: 18px;
    line-height: 18px;
    margin-top: 28px;
    margin-bottom: 30px;
}

.field
{
    border: solid #d4d4d4 1px;
    background-color: #ffffff;
    height: 54px;
    margin-bottom: 25px;
    position: relative;
}

.field > .title
{
    position: absolute;
    font-size: 9px;
    line-height: 9px;
    margin-left: 10px;
    margin-top: 8px;
    height: 9px;
}

.field input,
.field select
{
    background: none;
    outline: none;
    border: none;
    width: 100%;
    height: 100%;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}

.field select
{
    background: none !important;
    /* background-color: #ffffff; */
    padding-right: 0px;
    text-align-last: center; /* chrome */
}

.field select option
{
    text-align: left;
    color: #888;
}

select::-ms-value
{
    background: transparent;
    color: #888;
}


.add-more
{
    height: 54px;
    margin-bottom: 24px;
    background-color: #b2b2b2;
    color: #ffffff;
    line-height: 54px;
    display: block;
    background-image: url('img/icon-addmore-37x25.svg');
    background-repeat: no-repeat;
    background-position: 15px 15px;
    padding-left: 70px;
}

.add-more:hover,
.add-more:active,
.add-more:link
{
    text-decoration: none;
    color: #ffffff;
}

.separator
{
    border-top: solid #d8d8d8 1px;
    margin-top: 10px;
    height: 35px;
}

.address-check > label,
.preferred-check > label
{
    font-weight: 300;
    color: #000000;
    font-size: 12px;
}

.address-check
{
    margin-top: 20px;
    margin-bottom: 20px;
}

.field.active
{
    border-color: #f29400;
}

.field.active .title,
.field.active input,
.field.active select
{
    color: #f29400;
}

.field.active select::-ms-value
{
    color: #f29400;
}

.valid-flag
{
    display: none;
    position: absolute;
    right: 5px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-image: url('img/icon-ok-input-12x12.svg');
}
.valid-flag.dropdown-flag
{
    right: 25px;
}

.field.valid .valid-flag
{
    display: block;
}

.form-submit-section
{
    height: 199px;
    background-image: url('img/bottombg.png');
    background-positon: center top;
}

.form-submit-button
{
    /* h, v, blur dist, spread, color */
    box-shadow: 2px 2px 1px 0 #aeaeae;
    background: none;
    border: none;
    background-color: #8000f3;
    width: 100%;
    height: 52px;
    margin-top: 71px;
    color: #ffffff;
    font-weight: 600;
    background-image: url('img/icon-send-35x30.svg');
    background-repeat: no-repeat;
    background-position: 14px center;
    text-align: left;
    padding-left: 80px;
    outline: none;
}

.col-centered
{
    float: none;
    margin-left: auto;
    margin-right: auto;
}

.habitat
{
    margin-top: 20px;
}

@media (max-width: 767px) /* xs: phone */
{
}

@media (min-width: 768px) /* sm: tablet */
{
    #top
    {
        top: 0;
        position: fixed;
        width: 100%;
        height: 90px;
    }

    #content
    {
        margin-top: 90px;
    }
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #888;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    #888;
    opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #888;
    opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color:    #888;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
