I'm having a problem where I'm doing a responsive display where the desktop is getting over @MEDIA SCREEN and the cell phone is not catching the responsive.
.portfolio-modal .close-modal {
position: absolute;
right: 25px;
width: 180px;
top: 5px;
height: 75px;
background-color: transparent;
cursor: pointer;
}
@media (max-width: 479px){
.portfolio-modal .close-modal {
width: 50px;
}
}