#sizeModalBtn{
position: fixed;
bottom: 35px;
right: 19px;
z-index: 110;
cursor: pointer;
}

#sizeModalBtn a{
display: block;
}

#sizeModalBtn img{
display: block;
}

#sizeModalOverlay{
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,.75);
z-index: 9999;


}

#sizeModal{
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: min(900px,90vw);
max-height: 80vh;
background: #fff;
padding: 30px;
overflow: auto;
box-sizing: border-box;


}

#sizeModalClose{
position: absolute;
top: 10px;
right: 15px;
font-size: 28px;
line-height: 1;
cursor: pointer;

}

#sizeModal h3{
margin: 0 0 20px;
font-size: 20px;
}

#sizeModal table{
width: 100% !important;
}

@media screen and (max-width:768px){
#sizeModal{
    width: 95vw;
    max-height: 85vh;
    padding: 20px 15px;
}

}
