body {
    padding: 0;
    margin: 0;
    min-height: 100vh;
    width: 100%;
}

.content_icon-search-transition{
    position:fixed;
    width: 60px;
    height: 60px;
	bottom:120px;
	right:40px;
    
	background: white;
    
    box-sizing: border-box;
    border-radius: 25px;
    border: 4px solid white;
    padding: 5px;
}

.content_icon-search-transition input{
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;;
    height: 42.5px;
    line-height: 30px;
    outline: 0;
    border: 0;
    display: none;
    font-size: 1em;
    border-radius: 20px;
    padding: 0 20px;
}

.content_icon-search-transition .fa{
    box-sizing: border-box;
    padding: 10px;
    width: 52.5px;
    height: 52.5px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%;
    color: #236365;
    text-align: center;
    font-size: 1.8em;
    transition: all 1s;
}

.content_icon-search-transition:hover{
    width: 200px;
    cursor: pointer;
}

.content_icon-search-transition:hover input{
    display: block;
}

.content_icon-search-transition:hover .fa{
    background:   #236365 ;
    color: white;
}


@media (max-width: 1339px) {
    .content_icon-search-transition {
        background: #81e6d9;
        position: relative;
        bottom: 0px; 
        right: 0px;
        width: 200px;
        height: 50px;
        border-radius: 0px;
        border: 0px solid white;
    }

    .content_icon-search-transition .fa {
        border-radius: 0%;
        width: 50px;
        height: 50px;
    }
    .content_icon-search-transition input{
        display: block;
    }
}