
.search-container {
    position: absolute;
    right: 20px;
    bottom: 0;
    height: 100%;
    z-index: 1
}

.search-container .search {
    position: absolute;
    right: -70px;
    bottom: 25%;
    width: 40px;
    height: 40px;
    background: 0 0;
    border-radius: 50%;
    transition: all 1s;
    z-index: 4;
    font-size: 9px
}

/*
.primary.scrolled .search-container .search {
	bottom:28%;	
}
*/

.search-container .search:hover {
    cursor: pointer;
}

.search-container .search::before {
    content: "";
    position: absolute;
    margin: auto;
    top: 22px;
    right: 0;
    bottom: 0;
    left: 22px;
    width: 12px;
    height: 2px;
    background: white;
    transform: rotate(45deg);
    transition: all .5s;
    zoom: .7
}

.search-container .search::after {
    content: "";
    position: absolute;
    margin: auto;
    top: -5px;
    right: 0;
    bottom: 0;
    left: -5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid white;
    transition: all .5s;
    zoom: .7;
}

.search-container input {
    font-family: Montserrat,sans-serif;
    position: absolute;
    right: -70px;
    bottom: 13%;
    width: 4px;
    height: 49px;
    outline: 0;
    border: none;
    background: #000!important;
    color: #fff!important;
    font-weight: 200;
    padding: 0 20px;
    border-radius: 3px;
    transition: all 1s;
    opacity: 0;
    z-index: 5;
    font-weight: 100;
    letter-spacing: .1em;
    font-size: 13px;
}

/*
.primary.scrolled .search-container input {
	    bottom: 25%;
}
*/

.search-container input:hover {
    cursor: pointer
}

.search-container input:focus {
    width: 280px;
    opacity: 1;
    cursor: text;
    font-weight: 500;
    font-size: 13px;
    background: #fff;
    padding: 12px;
    letter-spacing: 0;
    right: 0;
    color: white!important;
    font-weight: 200;
}

.search-container input:focus~.search {
    right: -45px;
    background: #11a9c0;
    z-index: 6;


}

.search-container input:focus~.search::before {
    top: 0;
    left: 0;
    width: 25px;
    background: #fff
}

.search-container input:focus~.search::after {
    top: 0;
    left: 0;
    width: 25px;
    height: 2px;
    border: none;
    background: #fff;
    border-radius: 0;
    transform: rotate(-45deg)
}