﻿.search-form {
    float: right;
    position: relative;
}

.search-submit {
    display: none;
}

.search-icon, .search-label {
    width: 40px;
    height: 40px;
    background: #009bff;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: 0 1px #429eff, 0 8px 10px rgba(0, 0, 0, 0.5);
}

.search-label {
    cursor: pointer;
    background: #429eff;
    box-shadow: 0 1px #429eff, 0 8px 10px rgba(0, 0, 0, 0.5);
}

.search-icon:after, .search-label:after {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid white;
    border-radius: 50%;
    position: absolute;
    top: 9px;
    left: 10px;
}

.search-icon:before, .search-label:before {
    content: '';
    height: 8px;
    width: 2px;
    background: white;
    transform: rotate(-35deg);
    position: absolute;
    top: 24px;
    left: 26px;
}

.search-box {
    -webkit-appearance: none;
    width: 0;
    height: 40px;
    position: absolute;
    top: 0;
    right: 40px;
    padding: 0;
    opacity: 0;
    border: none;
    outline: none;
    box-shadow: 0 1px #bbb, 0 8px 10px rgba(0, 0, 0, 0.5);
}