body {
    margin: 0;
    padding: 0;
}
webpushrpromptconatiner .button-approve {
    line-height: 25px !important;
    white-space: normal !important;
}
webpushrpromptconatiner>wppromptbox4 {
    position: absolute !important;    
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    width: auto !important;
}
webpushrpromptconatiner cookieinfo, webpushrpromptconatiner .button-deny {
    display: none !important;
}
.DivWin {
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 22px 24px 20px;
    display: none;
    min-width: 250px;
    text-align: center;
}
p {
    text-align: center;
    margin: 30px 0 30px;
    font-size: 1.5em;
    font-weight: bold;
}
#NotifyOK p {
    color: #73AF55;
}
#NotifyError p {
    color: #D06079;
}
#NotifyWait p {
    color: #3f51b5;
}
button {
    max-width: 400px;
    line-height: 25px;
    background: #1165f1;
    color: #fff;
    border: none;
    font-size: 15px;
    padding: 10px 10px;
    cursor: pointer;
    margin-top: 15px;
    border-radius: 5px;    
}
svg {
    width: 100px;
    display: block;
    margin: 40px auto 0;
}
.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}
.path.circle {
    -webkit-animation: dash 0.9s ease-in-out;
    animation: dash 0.9s ease-in-out;
}
.path.line {
    stroke-dashoffset: 1000;
    -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
    animation: dash 0.9s 0.35s ease-in-out forwards;
}
.path.check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check 0.9s 0.35s ease-in-out forwards;
    animation: dash-check 0.9s 0.35s ease-in-out forwards;
}
svg .rotar {
    animation-duration: 3s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-name: hourglass-rotation;
    transform-origin: 50% 50%;
}
svg .blink {
    animation-duration: 1s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-name: blinker;
}
@keyframes hourglass-rotation {
    50%{transform: rotate(0);}
    100%{transform: rotate(180deg);}
}
@keyframes blinker {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
@-webkit-keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }
    100% {
        stroke-dashoffset: 900;
    }
}
@keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }
    100% {
        stroke-dashoffset: 900;
    }
}
body.MessageBox .DivWin svg {
    display: none;
}
body.MessageBox .DivWin {
    display: block !important;
}
body.MessageBox.OK .DivWin svg#SvgOK {
    display: block !important;
}
body.MessageBox.ERR .DivWin svg#SvgError {
    display: block !important;
}
body.MessageBox.WAIT .DivWin svg#SvgWait {
    display: block !important;
}
body.MessageBox.OK .DivWin {
    color: #73AF55;
}
body.MessageBox.ERR .DivWin {
    color: #D06079;
}
body.MessageBox h1 {font-size: 130%}
body.MessageBox h2 {font-size: 115%}