#before-close-form, #one-million-client {
  font-family: 'Open Sans', sans-serif;
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#before-close-form .underlay,  #one-million-client .underlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  cursor: pointer;
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
}
#before-close-form .content,  #one-million-client .content {
  width: 600px;
  height: 430px;
  background-color: #f0f1f2;
  z-index: 1;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 4px;
  -webkit-animation: popin 0.3s;
  animation: popin 0.3s;
  
  padding: 0;
  font-size: 0.9em;
}
#before-close-form .content-title, #one-million-client .content-title {
  font-size: 18px;
  background-color: #252525;
  color: #fff;
  padding: 10px;
  margin: 0;
  border-radius: 4px 4px 0 0;
  text-align: center;
}

#one-million-client .content-title {
    background: #1b73b6;/*rgba(0, 0, 0, 0) repeating-linear-gradient(#1b73b6, #629fce, #1b73b6);*/
    border-radius: 0px;
}

#before-close-form h3, #one-million-client h3 {
  color: #fff;
  font-size: 15px;
  margin: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

#before-close-form p#info-wstepne, #one-million-client p#one-million-client-info-wstepne{
  background-color: white;
  font-weight: bold; 
  margin-top: 0px; 
}
#before-close-form p, #one-million-client p {
  color: #344a5f;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 10px;
  font-size: 16px;
}
#before-close-form .content-body, #one-million-client .content-body {
  width: 380px;
  margin: 15px auto 0;
  text-align: center;
}
#before-close-form .content-body input[type=text], #one-million-client .content-body input[type=text] {
  padding: 12px;
  font-size: 1.2em;
  width: 350px;
  border-radius: 4px;
  border: 1px solid #ccc;
  -webkit-font-smoothing: antialiased;
}
#before-close-form .content-body input.error, #one-million-client .content-body input.error {
    border: 1px solid red !important;
}
#before-close-form .content-body input[type=submit], #one-million-client .content-body input[type=submit] {
  text-transform: uppercase;
  font-weight: bold;
  padding: 12px;
  font-size: 1.1em;
  border-radius: 4px;
  color: #fff;
  background-color: #3e9b05;
  border: none;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  margin-top: 10px;
  width: 375px;
  height: 40px;
}

#one-million-client .content-body input[type=submit]
{
  background: rgba(0, 0, 0, 0) repeating-linear-gradient(#1b73b6, #629fce, #1b73b6);
}

#one-million-client .content-body .one-million-client-rules, #one-million-client span.one-million {
  color: #1b73b6;  
}

#before-close-form .content-body p, #one-million-client .content-body p {
  text-align: left;
  font-size: 14px;
  padding: 0px;
  margin: 5px;
  margin-left: 10px;     
}
#before-close-form .content-body label, #one-million-client .content-body label {
    font-size: 11px;
}
#before-close-form .content-body label.error, #one-million-client .content-body label.error {
    color: red;
    border: none;
    box-shadow: none; 
}
#before-close-form .content-footer, #one-million-client .content-footer {  
    position: absolute;
    right: -40px;
    width: 40px;
    text-align: right;
    top: 12px;    
    width: 40px;   
}
#before-close-form .content-footer p, #one-million-client .content-footer p {
  background-color: #3e9b05;  
  text-transform: capitalize;
  cursor: pointer;
  display: inline;
  padding: 12px 5px 12px;       
  color: white;
  font-weight: bold;
}    
#one-million-client .content-footer p
{
  background: black;
}
#kalkulator .content-body h2 {
  color: #1b73b6;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-webkit-keyframes popin {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-ms-keyframes popin {
  0% {
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes popin {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}           