.sign-in {
    margin: 0 auto !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*-----*/

.login-notifi-box {
    background-color: #fff;
    width: 420px;
    min-height: 110px;
    margin: 0 auto !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 25px 15px;
    border-radius: 15px;
    display: none;
    ;
}

.login-notifi1, .login-notifi2, .login-notifi3, .login-notifi4 {
    height: 100vh;
    background: rgb(0 0 0 / 60%);
    display: none;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    position: relative;
    z-index: 9;
}

.notifi-grid {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-rows: 1fr;
    grid-template-areas:
        ". .";
}

.notifi-box-grid {
    display: grid;
    grid-template-columns: 1fr 16px;
    grid-template-rows: 1fr auto;
    gap: 0px 0px;
    grid-template-areas:
        "notifi-title notifi-close"
        "notifi-content notifi-close";
}

.notifi-box-grid-2 {
    display: grid;
    grid-template-columns: 1fr 16px;
    grid-template-rows: 1fr auto auto auto;
    gap: 0px 0px;
    grid-template-areas:
        "notifi-title notifi-close"
        "notifi-content notifi-close"
        "line notifi-close"
        "notifi-btns notifi-close";
}

.notifi-box-grid-2 .line {
    grid-area: line;
    height: 1px;
    background: #d8d8d8;
    width: 100%;
    margin: 25px 0 30px 0;
}

.notifi-title {
    grid-area: notifi-title;
    font-size: 19px;
    font-weight: 700;
    height: 36px;
    line-height: 36px;
}

.notifi-close {
    grid-area: notifi-close;
}

.notifi-close button {
    border: 0;
    background-color: transparent;
    padding: 0;
    margin: 0;
    outline: 0;
}

.notifi-close button:hover {
    opacity: .75;
}

.notifi-close button:active {
    opacity: .5;
}

.notifi-content {
    grid-area: notifi-content;
    font-size: 14px;
    padding: 10px 0;
    color: #7c7c7c;
}

.notifi-btns {
    grid-area: notifi-btns;
}

button.close-notifi-2 {
    background-color: #ff7300;
    border: 0;
    outline: 0;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border-radius: 8px;
    line-height: 20px;
    margin-bottom: 10px;
    width: 100%;
}

button.close-notifi-3 {
    background-color: rgb(255 115 0 / 0.15);
    border: 0;
    outline: 0;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #ff7300;
    border-radius: 8px;
    line-height: 20px;
    margin-bottom: 10px;
    width: 100%;
}

button.close-notifi-2:hover,
button.close-notifi-3:hover {
    opacity: .75;
}

button.close-notifi-2:active,
button.close-notifi-3:active {
    opacity: .5;
}

.notifi-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0px 10px;
    grid-template-areas:
        ". .";
}

.notifi-btns img {
    max-width: 90px;
    margin: 0 auto;
    display: block;
}



section.alert div p, div.green p, div.orange p, div.red p, section.alert div h2, div.green h2, div.orange h2, div.red h2 {
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
	margin: 2px 10px 0 0;
	color: #fff;
}
section.alert div h2, div.green h2, div.orange h2, div.red h2 {
    font-size: 22px;
}

.check-new+label {
	width: 27px;
	height: 27px;
	background: url('../img/chbx_off.png') no-repeat;
	padding: 0;
	border: 0;
	display: inline-block;
	vertical-align: bottom;
        cursor: pointer;
}
.check-new+label:hover {
	background-position: left bottom;
}

.check-new:checked+label {
	background-position: right top;
        background: url('../img/chbx_on.png') no-repeat;
}				

.check-new:checked+label:hover {
	background-position: right bottom;
}

.check-new+label+label {
	line-height: 28px;
}

.login-bg {
    padding: 20px 20px 20px 20px;
    width: 390px;
    /*background-color: #373737*/;
    background-color: #373737;
    border: 3px solid #FFF;
    opacity: 0.9;
    filter: alpha(opacity=90); /* For IE8 and earlier */
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
    
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    
    position: relative;
}
.login-div {
    width: 140px;
    height: 127x;
    border: 4px solid #373737;
    clear: both;
    margin-left: 90px;
    
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    
    -webkit-transition: border-color 0.6s;
    -moz-transition: border-color 0.6s;
    -ms-transition: border-color 0.6s;
    -o-transition: border-color 0.6s;
    transition: border-color 0.6s;
}
.login-div:hover {
    border: 4px solid #efefef;
    
    -webkit-transition: border-color 1.4s;
    -moz-transition: border-color 1.4s;
    -ms-transition: border-color 1.4s;
    -o-transition: border-color 1.4s;
    transition: border-color 1.4s;
}
.login-btn-new {
    width: 140px;
    height: 127px;
}

.lost-pwd-new {
    font-family: Pontano Sans;
    text-transform: none;
    letter-spacing: 3px;
    color: #efefef !important;
}
.sign-in-bg2 {
    background: url('../img/logowanie-bg.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.main-bg2 {
    background: url('../img/main-bg.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.select-lang{
    position: absolute;
    right: 10px;
    top: 5px;
}
.select-lang a{
    margin-left: 5px;
}

.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
        font-size: 11px !important;
}
body .ui-tooltip {
	border-width: 2px;
}

.modal-dialog {
    background: none repeat scroll 0 0 #ffffff;
    display: table;
    float: none;
    margin: 30px auto;
    width: 400px;
    
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border: 4px solid #FFF;
    
    overflow: hidden;
    
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}

.modal-content {
    border: medium none;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    box-shadow: none;
}

.btn {    
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
}