header {
    position: relative;
    width: 100%;
    height: 150px;
    background: linear-gradient(90deg, #240f0c, #631f1e, #b44641, #631f1e, #240f0c);
}

.humburger{
    font-size: 24px;
    float: right;
    cursor: pointer;
}

.humburger-line{
    background-color: #f9f9f9;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
}

.humburger-line:before,
.humburger-line:after {
    background-color: #f9f9f9;
    display: block;
    content: '';
    position: absolute;
    transition: all .3s;
    width: 100%;
    height: 100%;
}

.humburger-line:before {
    top: 7px;
}

.humburger-line:after {
    top: -7px;
}

li a {
    display: block;
    color: white;
    padding: 13px 16px;
    text-decoration: none;
}

li a:hover {
    background-color: #631f1e;
    color: white;
}

.search-box{
    padding: 0;
    border: 1px solid #333;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    width: 250px;
    height: 40px;
    background-color: white;
    position: relative;
}

.search-icon{
    height: 40px;
    width: 20px;
    position: absolute;
    top: 0px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-input{
    margin: 0;
    padding: 0;
}
.search-input input#search{
    margin-left: 60px;
    height: 38px;
    width: 125px;
    background: white;
    border: none;
    font-size: 10pt;
    float: left;
    color: #333;
}

.search-input input#search:focus, .search-container input#search:active{
    outline:none;
}

.search-box:hover .icon{
    color: #0c63e4;
    transform:rotate(90deg) scale(1.5);
    transition: 0.5s;
}

#search-list{
    min-width: 250px;
    max-height: 320px;
    position: absolute;
    display: none;
    z-index: 99999;
    background-color: white;
    box-shadow: 0 6px 10px 0 rgba(0,0,0,0.14), 0 1px 18px 0 rgba(0,0,0,0.12), 0 3px 5px 0 rgba(0,0,0,0.20);
    overflow: auto;
}

.close{
    margin: 0;
    padding: 0;
    width: 250px;
    height: 14px;
}
.close i{
    display: block;
    height: 10px;
    width: auto;
    padding: 2px;
    cursor: pointer;
}

#centered{
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
}

.searched-items img{
    max-height: 50px;
    max-width: 50px;
    display: inline-block;
    margin-left: 20px;
    margin-right: 20px;
}

.searched-item-row{
    margin: 0;
    padding: 5px;
}

.searched-items a{
    text-decoration: none;
    font-family: Montserrat-Regular;
    font-size: 11px;
    color: black;
    /*
    margin-left: 20px;
     */

}

.header-phones{
    position: relative;
    height: 50px;
    width: 250px;
    color: #ffffff;
}

.header-phones a{
    margin-left: 40px;
    color: #ffffff;
    text-decoration: none;
    font-family: "Arial Black";
    transition: 0.5s;
}

.phone-icon-wrap{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.icon{
    display: block;
    margin: auto;
    transition: 0.5s;
}

.phone-icon{
    font-size: 2em;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.header-phones:hover .phone-icon{
    color: lightgreen;
    transform:rotate(135deg) scale(1.5);
}

.header-phones a:hover{
    color: lightgreen;
    transition: 0.5s;
}

#toggler{
    display: none;
}

@media screen and (min-width: 920px) {

    #logo{
        height: 130px;
        width: 130px;
        display: block;
        position: absolute;
        top: 10px;
        left: calc(50% - 65px);
    }

    .search-box-wrap{
        padding: 0;
        margin: 0;
        width: 250px;
        height: 40px;
        position: absolute;
        top: 55px;
        left: 50px;
    }

    .header-phones-wrap{
        padding: 0;
        margin: 0;
        width: 250px;
        height: 40px;
        position: absolute;
        top: 50px;
        right: 50px;
    }

    ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: #240f0c;
        width: 100%;
    }

    li {
        float: left;
        margin: 0;
        padding: 0;
    }

    li a {
        text-align: center;
    }

    li span {
        display: none;
    }

    .humburger {
        display: none;
    }

    .menu {
        display: block;
        overflow: hidden;
        height: 100%;
        transition: all .5s;
    }
}

@media screen and (max-width: 919px){
    #logo{
        height: 130px;
        width: 130px;
        display: block;
        position: absolute;
        top: 10px;
        left: 10px;
    }

    .header-phones-wrap{
        padding: 0;
        margin: 0;
        width: 250px;
        height: 40px;
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .search-box-wrap{
        padding: 0;
        margin: 0;
        width: 250px;
        height: 40px;
        position: absolute;
        bottom: 10px;
        right: 10px;
    }

    ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: #240f0c;
        width: 100%;
    }

    li {
        margin: 0;
        padding: 0;
    }

    li span {
        display: block;
        color: white;
        text-align: left;
        padding: 13px 16px;
        text-decoration: none;
    }

    li a {
        text-align: left;
    }

    .menu {
        display: none;
        height: 0px;
        overflow: hidden;
        transition: all .5s;
    }

    .humburger{
        display: block;
        padding: 25px;
    }

    #toggler:checked ~ .menu {
        display: block;
        overflow: hidden;
        height: 100%;
        transition: all .5s;
    }

    #toggler:checked ~ .humburger .humburger-line {
        background-color: transparent;
    }

    #toggler:checked ~ .humburger .humburger-line::before {
        transform: rotate(45deg);
        top: 0;
    }

    #toggler:checked ~ .humburger .humburger-line::after {
        transform: rotate(-45deg);
        top: 0;
    }

}