@import url(https://fonts.googleapis.com/css?family=Open+Sans);

body{
    background: #f2f2f2;
    font-family: 'Open Sans', sans-serif;
}

.search {
   /* width: 100%;*/
    position: relative
}

.searchTerm {
    background: transparent;
    opacity: 0.5;
    float: left;
    width: 100%;
    border: 1px solid #ca4b27;
    padding: 5px;
    height: 33px;
    border-radius: 5px;
    outline: none;
    color: #ca4b27;
}

.searchTerm:focus{
    color: #ca4b27;
}

.searchButton {
    position: absolute;
    right: 0px;
    width: 40px;
    height: 36px;
    border: 0px solid #ca4b27;
    background: transparent;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
}

/*Resize the wrap to see the search bar change!*/
.wrap{
   /* width: 30%;*/
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(-50%, -50%);
}
@media (max-width:768px) {

    .wrap{

        position:absolute;
        top:43px;
        margin-top: 6px;
        left: 58%;


    }

    .searchTerm {
        padding: 0px;
    }

    .searchTerm:focus{
        color: #ca4b27;
    }

    .searchButton {

    }


}