.popup { position: absolute; top: 0; right: 20px; display: none; z-index: 500; min-width: 300px; max-width: 600px; padding: 10px; border-radius: 0 0 6px 6px; border: 1px solid #ccc; border-top: none; box-shadow: 0 2px 4px #ddd; background: #f7f7f7; } .popup input[type=text] { width: 100%; padding: 5px; box-sizing: border-box; display: block; margin-top: 10px; } .popup input[type=text], #users input[type=text] { outline: none; } .popup button { padding: 5px; font-size: 14px; } .popup a { text-decoration: none } .popup h1 { font-size: 1.4rem; margin-bottom: 10px; } .popup h2 { opacity: .7; margin: 10px 0; font-size: 1.2rem; } .popup p { margin: 5px 0; } .popup select { background: #fff; padding: 2px; height: 24px; border-radius: 3px; border: 1px solid #ccc; outline: none; width: 120px; } /* Mobile devices */ @media only screen and (max-width: 720px) { .popup { border-radius: 0; top: auto; left: 0; bottom: 0; right: 0; max-height: 80vh; max-width: none; border-radius: 6px 6px 0 0; border: 1px solid #ccc; border-bottom: none; box-shadow: 0 -2px 4px #ddd; } }