﻿.headerMain {
    display: flex;
    width: 1310px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}
.header {
    padding: 16px 0;
}
.header input#search {
    width: 291px;
    height: 40px;
    background: #FAFAFA;
    border-radius: 22px 22px 22px 22px;
    opacity: 1;
    border: 1px solid #00568E;
    padding: 10px 12px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 400;
    color: #B3B7C0;
    transition: all 0.3s;
}
.header input#search:hover {
    box-shadow: 0 0 5px #1a9df3;
}
.search {
    position: relative;
}

.search input.searchbtn {
    position: absolute;
    outline: none;
    border: none;
    width: 24px;
    background: url(/Content/Areas/Common/images/search.png) no-repeat center;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    cursor: pointer;
}


@media only screen and (max-width: 1280px){
.headerMain {
    width: 1100px;
}
}
@media only screen and (max-width: 768px){
.search {
    display: none;
}
.headerMain {
    width: 100%;
}
}
@media only screen and (max-width: 420px){
    .headerMain img {
        width: 100%;
    }
    .headerMain a {
        width: 74%;
    }
    
}
