.apod{
    width: 260px;
    box-sizing: border-box;
    border: 2px solid #cccfff;
    border-radius: 0px;
    font-size: 16px;
    background-color: white;
    background-image: url('searchicon.png');
    background-position: 10px 10px; 
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
	margin-bottom:20px
}

/* When the input field gets focus, change its width to 100% */
.apod:focus {
    width: 100%;
}
@media (max-width:768px) {
	.apod:focus {
    width: 100%;
}

	
}