 
body{
    margin: 0px;
}
#banner {
    position: relative;
    display: block;
    width: 318px;
    height: 48px;
    background: url(../images/ow-logo.svg) 243px 3px no-repeat;
    background-size: 67px 16px;
    overflow: hidden;
    border: #d9d9d9 1px solid;
}

#ad {
    display: flex;
    overflow: hidden;
    width: 318px;
    height: 48px;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #262626;
}
#ad *{
    font-family: Arial, sans-serif;
}
.headline {
    font-size: 12px; 
    font-weight: 700;
    padding-left: 5px;
    color: #1f2e64;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 54px;
    line-height: 16px;
}
.icon-headline{ 
    width: 38px;
    height: 39px;
    object-fit: contain;
    margin-top: 6px;
    margin:auto 0px auto 19px;
    margin-left: 6px;
}
 
.ad-col{
    display: flex;
    flex-direction: column; 
    flex-grow: 1;
    margin-left: 6px;
}
 
.subheadline { 
    font-size: 12px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 10px;
    letter-spacing: 0.16px; 
    color: #262626; 
    margin: 6px 0px 7px;
}
 
form { 
    padding: 0;
    overflow:hidden; 
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}
label{
    width: 100%;
    font-size: 10px;
    color: #3a3949;
    font-weight: normal;
    margin: 1px 0px 2px;
}
.text_input {
    
    box-shadow: inset 0px 0px 3.5px 1.5px rgba(150, 158, 199, 0.34);
    border-radius: 2px;
    border: solid 1px #b7b7b7;
    background-color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 25px;
    padding: 0 5px;
    font-size: 10px;
    outline: none;
    letter-spacing: 0.26px;
    font-weight: 600;
    width: 130px;
    height: 20px; 
    margin-right: 2px;
}
/* .text_input#fullAddress {  
} */
.text_input#fullAddress:active,:focus{
    border-color: #1f2e64;
}
button {
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 15px;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
    border-radius: 3px;
} 
.button {
    width: 124px;
    height: 20px; 
    cursor: pointer;
    margin-left: 5px;

    position: relative;
    overflow: hidden;
    background-image: linear-gradient(-75deg, #179C2F 0%, #208732 100%);
    z-index: 1;
}
.button:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-image: linear-gradient(-75deg, #1B722B 0%, #208732 100%);
    transition: all .3s;
    z-index: -1;
}
.button:hover:before {
    width: 100%;
}


