﻿#modal {
 position: fixed;
 display:none;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgb(0,0,0,0.85);
 z-index:3;
 overflow-y:scroll;
}

#modal::-webkit-scrollbar {
    display: none;
}

#modal_window {
 top:20px;
 margin-right:auto;
 margin-left:auto;
 min-height:10vh;
 margin-top:10vh;
 margin-bottom:10vh;
 height:auto !Important;
 background:#fff;
 background-color: #ffffff;
 color:#000;
 font-size:14px;
 border-style:solid;
 border-width:1px;
 -webkit-border-radius: 3px;
 -moz-border-radius: 3px;
 border-radius: 3px;
 -webkit-box-shadow: 0px 0px 5px 0px rgba(255,255,255,1);
 -moz-box-shadow: 0px 0px 5px 0px rgba(255,255,255,1);
 box-shadow: 0px 0px 5px 0px rgba(255,255,255,1);
 border-color:#fff;
}

#modal_top {
 font-weight:bold;
 width:100%;
 cursor: grab;
 padding-top:5px;
 padding-bottom:5px;
 background-color: #456991;
 -webkit-border-top-left-radius: 3px;
 -webkit-border-top-right-radius: 3px;
 -moz-border-radius-topleft: 3px;
 -moz-border-radius-topright: 3px;
 border-top-left-radius: 3px;
 border-top-right-radius: 3px;
}

#modal_title {
 float:left;
 color:#fff;
 font-size:15px;
 line-height: 40px;
 margin-left:15px;
 text-transform:uppercase;
 -webkit-border-top-left-radius: 3px;
 -webkit-border-top-right-radius: 3px;
 -moz-border-radius-topleft: 3px;
 -moz-border-radius-topright: 3px;
 border-top-left-radius: 3px;
 border-top-right-radius: 3px;
}
 
#modal_close {
 cursor:pointer;
 float:right;
 background: #f69292;
 font-weight: normal;
 color: #454545;
 padding:5px;
 line-height:10px;
 font-weight:bold;
 margin-top: 8px;
 margin-right:10px;
 -webkit-border-radius: 15px;
 -moz-border-radius: 15px;
 border-radius: 15px;
}

#modal_close:hover {
 background:#ff0000;
 color:#fff;
 transition: all .2s ease-in-out;
}

#modal_content {
 font-size:13px;
 padding:15px;
 overflow:hidden;
 overflow-y: auto;
}
 
 
.modal_button {
 background-color: #113256;
 border-radius: 2px;
 border: 1px solid #ffffff;
 display: inline-block;
 cursor: pointer;
 color: #ffffff;
 font-family: Arial;
 font-size: 16px;
 font-weight: bold;
 padding: 4px 35px;
 text-decoration: none;
 text-shadow: 0px 1px 0px #3d768a;
 border-radius: 3px;
}


.modal_button:hover {
 background-color:#17606b;
}

#modal_buttons {
 margin-top:15px;
 text-align:center;
}

#modal_buttons .gomb {
 margin-left:10px;
}

#modal_buttons .gomb i {
 font-size:15px;
}

#login_button {
 background-color:#42577d;
}

#login_button:hover {
 background-color:#12274c;
}