@charset "utf-8";
/* CSS Document */


.row {
    margin-top: 2px;
}
.row span {
    position: relative;
    display: inline-block;
    margin: 11px 15px;
}
.textbox {
    display: inline-block;
    width: 215px;
    padding: 10px 0 10px 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #377D6A;
    background: #efefef;
    border: 0;
    border-radius: 3px;
    outline: 0;
    text-indent: 60px;
    transition: all .3s ease-in-out;
    border: solid 1px #ccc;
}
.textbox::-webkit-input-placeholder {
    color: #efefef;
    text-indent: 0;
    font-weight: 300;
}
.textbox + label {
    display: inline-block;
    position: absolute;
    top: 8px;
    left: 0;
    bottom: 8px;
    padding: 1px 15px;
    color: #032429;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(19, 74, 70, 0);
    transition: all .3s ease-in-out;
    border-radius: 3px;
    background: rgba(122, 184, 147, 0);
}
.textbox + label:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 100%;
    left: 50%;
    margin-left: -3px;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid rgba(122, 184, 147, 0);
    transition: all .3s ease-in-out;
}
.textbox:focus,
.textbox:active {
    color: #377D6A;
    text-indent: 0;
    background: #fff;
}
.textbox:focus::-webkit-input-placeholder,
.textbox:active::-webkit-input-placeholder {
    color: #aaa;
}
.textbox:focus + label,
.balloon:active + label {
    color: #fff;
    text-shadow: 0 1px 0 rgba(19, 74, 70, 0.4);
    background: #10b19c;
    transform: translateY(-40px);
}
.textbox:focus + label:after,
.textbox:active + label:after {
    border-top: 4px solid #10b19c;
}


.submit-but{width:34px;height:37px;background:transparent;border:1px solid #333333;border-radius:5px;background-color:#FFFFFF;background-image:url(../images/icons/search.png);background-repeat:no-repeat;margin-top:13px;margin-left:-5px;cursor:pointer;}