/*
 * Easy Z modal
 * doc: http://markusslima.github.io/easy-z-modal/
 * github: https://github.com/markusslima/easy-z-modal
 *
 * Copyright (c) 2015 Markus Vinicius da Silva Lima
 * Version 0.1.3
 * Licensed under the MIT license.
 */
.ezmodal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90000;
    background: rgba(0,0,0,.6);
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
}

.ezmodal-container {
    background: #fff;
    padding: 0;
    font-size: 14px;
    position: fixed;
    top: 30%;
    left: 50%;
    z-index: 90001;
    border-radius: 7px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(50, 50, 50, 0.8);
       -moz-box-shadow: 0px 0px 15px 0px rgba(50, 50, 50, 0.8);
            box-shadow: 0px 0px 15px 0px rgba(50, 50, 50, 0.8);
    -webkit-transform: translateY(-50%) translateX(-50%); 
        -ms-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
    min-width: 80px;
}

.ezmodal .ezmodal-close {
    position: absolute;
    top: 9px;
    right: 20px;
    font-weight: bold;
    font-family: Verdana;
    font-size: 18px;
    text-shadow: 1px 1px 1px rgba(250,250,250,1);
    cursor: pointer;
    color: #838383;
}

.ezmodal .ezmodal-close:hover {
    color: #535353;
}

.ezmodal .ezmodal-header {
    font-size: 24px;
    padding: 10px;
    border-bottom: 1px solid #e3e3e3;
    text-align: center;
    border-radius: 7px 7px 0 0;
    line-height: 32px;
    color: #646464;
}

.ezmodal .ezmodal-content {
    padding: 20px;
}

.ezmodal .ezmodal-footer {
    padding: 10px 20px;
    background: #efefef;
    border-top: 1px solid #e3e3e3;
    text-align: right;
    border-radius: 0 0 7px 7px;
}

/* kbp */
.ezmodal button {
    margin: 3px;
    /*padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    background-color: #7898C2;
    color: white;*/
}

.ezmodal button:focus {
    outline: 0;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#e4f1fd), to(#c1daf2));
    background: linear-gradient(#e4f1fd, #c1daf2);
}

/*.ezmodal button.active {
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgb(193, 218, 242)), to(rgb(109, 169, 235)));
    background: linear-gradient(rgb(193, 218, 242), rgb(109, 169, 235));
}*/