body{
    margin: 0px;
}
#banner {
    position: relative;
    display: block;
    width: 466px;
    height: 58px;
    background: url('../images/ow-logo.svg') 360px 6px no-repeat;
    background-size: 67px 10px;
    overflow: hidden;
    border: #d9d9d9 1px solid;
}

#ad {
    display: flex;
    overflow: hidden;
    width: 466px;
    height: 58px;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #262626;
    font-family: Arial, sans-serif;
}
.icon-headline{
    width: 48px;
    height: 50px;
    object-fit: contain;
    margin: auto;
    margin-left: 8px;
    /* image-rendering: pixelated; */
}
.headline {
    font-size: 14px; 
    font-weight: 700; 
    color: #262626;  
    line-height: 17px;
    margin-top: 1px;
}
 
.ad-col{
    display: flex;
    flex-direction: column; 
    flex-grow: 1;
    margin-left: 8px;
}
 
.subheadline { 
    font-size: 10px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 10px;
    letter-spacing: 0.16px; 
    color: #262626; 
    margin: 1px 0px 2px;
}
 
form { 
    padding: 0;
    overflow:hidden; 
    display: flex;
    align-items: center;
}
label{ 
    width: 46px;
    font-size: 9px;
    line-height: 12px;
    color: #1f8a31;
    font-weight: bold; 
    margin-right: 4px;
    text-transform: uppercase;
}
.text_input {
    background: #FFFFFF;
    box-shadow: inset 0px 1px 3.5px 2.5px rgba(150, 158, 199, 0.34);
    border: solid 1px #b7b7b7;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 25px;
    padding: 0 5px;
    font-size: 11px;
    outline: none;
    border-radius: 3px;  
    letter-spacing: 0.26px;
    font-weight: 600;

    width: 202px;
    height: 24px;
}
/* .text_input#fullAddress {  
} */
.text_input#fullAddress:active,:focus{
    border-color: #1f2e64;
}
button {
    border: none;
    color: #fff;
    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: 134px;
    height: 24px; 
    cursor: pointer;
    margin-left: 8px;

    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%;
}

