#floater {
	display: none;
	font-size: 13px;
    width: 665px;
    max-width: 100%;
    padding: 20px;
    position: fixed;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -226px;
    box-shadow: 0px 0px 9px 4px rgba(187, 186, 186, 0.1);
    color: white;
    overflow-y: auto;
    max-height: 100vh;
    font-family: 'Open Sans', sans-serif;
    background-size: cover;
	box-shadow: 1px 1px 15px 5px rgba(0,0,0,0.3);
	z-index: 9999;
    background-position: center center;
}

#floater h1 {
    font-family: Helvetica, Arial, sans-serif; 
    font-weight: 800;
	margin-top: 10px; 
    font-size: 26px;
    color: white;
    text-transform: uppercase;
    text-shadow: 1px 4px 8px rgba(0, 0, 0, 0.5);
}

#floater textarea {
    resize: none;
}

#floater label {
    font-weight: normal;
    width: calc(100% - 20px);
}

#floater .text-center {
    text-align: center;
}
#floater .no-margin {
	margin: 0 !Important;
}
#floater .top-20 {
    margin-top: 10px !important;
}
#floater-email {
	margin-top: 33px;
}

#floater .top-15 {
    margin-top: 15px;
}

#floater .bottom-20 {
    margin-bottom: 20px;
}
#floater .bottom-10 {
    margin-bottom: 10px;
}
#floater .form-control {
    border-radius: 0;
    border: none;
    outline: none;
}

#floater .form-control:focus {
    outline: none;
    box-shadow: none;
	color: #9b2626;
}

#floater #floater-description {
    background-color: rgba(0, 0, 0, 0.35);
    padding: 15px;
	color: white;
}
#floater #ebook-description {
	 color: #730f0f;
	font-weight: bold;
}
#floater .form-group.check {
    background-color: rgba(0, 0, 0, 0.35);
    padding: 5px;
    font-size: 11px;
}

#floater .form-group.check input {
    vertical-align: top;
}

#floater #ebook-cover img {
    margin-top: 20px;
    max-height:  160px;
}

#floater #ebook-title h2 {
    font-size: 13px;
    margin-bottom: 0px;
    margin-top: 10px;
	color: white;
}

#floater #ebook-title h5 {
	margin-top: 5px;
	font-size: 12px;
    font-weight: bold;
	color: white;
}

#floater .btn-primary {
    width: 150px;
    background: rgb(234, 0, 0);
	border-color: rgb(234, 0, 0);
    border-radius: 0;
}

#floater .ico-info {
    display: inline-block;
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 13px;
    border: 1px solid white;
    border-radius: 20px;
    font-style: normal;
    font-size: 12px;
    margin-left: 5px;
    top: 2px;
    position: relative;
}

#floater .ico-info:hover {
    cursor: pointer;
}

#floater .info-popup {
    display: none;
    position: absolute;
    background-color: white;
    width: 100%;
    color: #004182;
    left: 0;
    margin-top: 15px;
    padding: 10px;
    z-index: 99;
}

#floater .has-error .form-control {
    border: 1px solid #ea0000 !important;
    color: #ea0000;
}

#floater #floater-msg {
    background-color: rgba(0, 0, 0, 0.35);
    color: #ea0000;
    font-size: 13px;
}

#floater #floater-msg div {
    padding: 15px;
}

#floater .has-error:after {
    content: 'Pole jest wymagane';
    color: #ea0000;
    background-color: rgba(0, 0, 0, 0.35);
    padding: 3px 5px;
    display: block;
    font-size: 12px;
    margin-top: 2px;
}

#floater .has-error.email-error:after {
    content: 'Email jest nieprawidłowy';
}
#floater-close { 
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	font-size: 20px;
    padding: 5px 10px;
    background-color: rgba(0,0,0, 0.35);
    z-index: 9999;
}
#floater #floater-close:hover {
	cursor: pointer;
}
#ribbon {
	display: none;
	position: fixed;
    bottom: 0;
    right: 0;
    padding: 10px 20px;
    color: white;
    background-color: #0085fe;
    font-size: 14px;
}
#ribbon:hover {
	cursor: pointer;
}
#ribbon p {
	margin: 0;
}
#floater .floater-white {
	background-color: rgba(255,255,255, 0.5);
	margin: 0;
}

#floater .black-bg {
	background-color: rgba(0,0,0, 0.35);
	padding: 20px;
}

#floater #osw_regulamin a{
    color: white;
    text-decoration: underline;
}
#floater .floater-loader {
	display: none;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.5);
}
#floater .floater-loader div{
  border: 6px solid rgba(236, 236, 236, 0.82);
  border-radius: 50%;
  border-top: 6px solid #007bd9;
  width: 40px;
  height: 40px;
  -webkit-animation: floater-spin 1s linear infinite;
  animation: floater-spin 1s linear infinite;
  margin-left: auto;
    margin-right: auto;
    top: 50%;
    position: absolute;
    margin-top: -20px;
    left: 0;
    right: 0;
}

@-webkit-keyframes floater-spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes floater-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}