/* 
    Document   : popup
    Created on : 17.01.2013, 0:02:35
    Author     : kirill
*/

.popup-cover { position: fixed; left: 0; right: 0; top: 0; bottom: 0; background: rgba(0, 0, 0, .3); -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; opacity: 0; z-index: 100; }
.popup-common { box-shadow: 0 0 40px rgba(0, 0, 0, .5); position: fixed; left: 50%; top: 50%; z-index: 200; background: #fff; padding: 30px 20px 20px; opacity: 0; -webkit-transform: scale(0); -moz-transform: scale(0); transform: scale(0); -webkit-transition: -webkit-transform .4s ease-in-out, opacity .4s ease-in-out; -moz-transition: -moz-transform .4s ease-in-out, opacity .4s ease-in-out; transition: transform .4s ease-in-out, opacity .4s ease-in-out; }
.popup-close { width: 16px; height: 16px; position: absolute; right: 5px; top: 5px; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; opacity: .4; -webkit-transition: all .5s ease-in-out; -moz-transition: all .5s ease-in-out; transition: all .5s ease-in-out; }
.popup-content { overflow-y: auto; max-height: 450px; padding: 0 10px 0 0; }
.popup-cover { position: fixed; left: 0; right: 0; top: 0; bottom: 0; background: rgba(0, 0, 0, .4); }
.popup-close:before { content: "×";  font-size: 17px; font-weight: bold; }
.popup-close:hover { opacity: .7; }

