$("button").click(function(){
$(".wrapper").addClass("blur");
$(".jq").show();
$(".modal").addClass("show-m");
$("ul").removeClass("show");
});
$(".jq").click(function(){
$(".wrapper").removeClass("blur");
$(".jq").hide();
$(".modal").removeClass("show-m");
});
$(".modal-btn").click(function(){
$("ul").toggleClass("show");
});@media (min-width:768px)
{
.container
{
width: 750px;
}
}@media (min-width:768px)
{
.container
{
width: 100%;
}
}