/* 
	Author: Mariusz Adamiec
*/

@import url(../fonts/font.css);
@import url(../fonts/font-icomoon.css);

* { margin: 0; padding: 0; box-sizing: border-box; }
img { height: auto; max-width: 100%; font-size: 11px;}
input[type="submit"]:hover { cursor: pointer; }
.clear { clear: both; }
.center{text-align: center;}
.margin-l20{margin-left: 20px;}

body { font-family: 'Open Sans', Arial, Tahoma sans-serif; 
       font-size: 14px; font-weight: normal; 
       color: #666666;
}

a { color: #269fdc; }
a:hover { text-decoration: none; }

#frame { width: 100%; overflow: hidden; }
#menu-trigger { display: none; }

/* Float */
.float-left { float: left; }
.float-right { float: right; }
.float-none { float: none; }

/* Text align */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.vertical { vertical-align: middle; }

/* Colors */
.white { color: #fff; }
.blue { color: #269fdc;}

/* Display options */
.display-none { display: none !important;}
.hidden { display: none; }
.block { display: block; }
.display-ib { display: inline-block; }

/* Positions */
.absolute { position: absolute; }
.relative { position: relative; }
.fixed { position: fixed; }

/* Default columns, containers */
.content-wrapper { position: relative; max-width: 980px; margin: auto; padding: 0px 20px; overflow: hidden; }
.max-wrapper { width: 100%; overflow: hidden; }
.col-4 { position: relative; overflow: hidden; float: left; margin-bottom: 30px; max-height: 220px; max-width: 220px; }

/* Default margin sizes */
.m-r10 { margin-right: 10px; }
.m-r15 { margin-right: 15px; }
.m-r20 { margin-right: 20px; }
.m-l10 { margin-left: 10px; }
.m-l15 { margin-left: 15px; }
.m-l20 { margin-left: 20px }
.m-t10 { margin-top: 10px; }
.m-t15 { margin-top: 15px; }
.m-t20 { margin-top: 20px; }
.m-t50 { margin-top: 50px; }
.m-b10 { margin-bottom: 10px; }
.m-b15 { margin-bottom: 15px; }
.m-b20 { margin-bottom: 20px; }
.m-r38 { margin-right: 38px; }
.margin-b20 { margin-bottom: 20px; }
.margin-r20 { margin-right: 20px; }

/* Default padding sizes */
.p-5 { padding: 5px; }
.p-10 { padding: 10px; }
.p-tb20 { padding: 20px 0px; }
.p-t25 { padding-top: 25px; } 

/* Default fonts in current project (change if needed) */
.main-font { font-family: 'Open Sans'; }
.second-font { font-family: 'Open Sans Condensed' }

/* Text sizes for current project */
.text-size { font-size: 14px; }
.text-menu { font-size: 16px; }
h1 { font-size: 40px; }
h2 { font-size:  26px; }
h3 { font-size: 22px; }

/* Text weight */
.bold { font-weight: 700; }
.regular { font-weight: 400; }
.light { font-weight: 300; }

/* Text colors */
.text-color { color: #747a7d; }
.header-color { color: #666666;}
.active-color { color: #4dc1f0 !important; }

/* Other default settings for current project */
.last-li-element { border-bottom: 1px solid #ccc; }
.separator { display: inline-block; margin-left: 10px; font-size: 12px;}
.login-position, .register-position { display: none; overflow: hidden; }
.overflow { overflow: hidden;}
.no-type { list-style-type: none; }
.no-border { border: none; }
.no-margin { margin-right: 0px !important; }
.radius { border-radius: 5px; }
#frame a { text-decoration: none; }
.odd-even:nth-child(odd) { background: #fff; }
.odd-even:nth-child(even) { background: #e8e8e8; }
select { -webkit-appearance: none; -moz-appearance: none; }
select:focus, input:focus{ outline: 0; }

::-webkit-input-placeholder {  } /* WebKit browsers */
:-moz-placeholder {  } /* Mozilla Firefox 4 to 18 */
::-moz-placeholder {  } /* Mozilla Firefox 19+ */
:-ms-input-placeholder {  } /* Internet Explorer 10+ */

.rotate-180deg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* END OF DEFAULTS */


/* CV LIGHTBOX GALLERY */
.cv-lightbox-gallery { 
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.cv-lightbox-gallery .col-1 { 
	width: 32%;
	display: flex;
	flex-direction: column;
}
.cv-lightbox-gallery .col-1 img { 
	width: 80%;
	display: block;
	margin: 15px auto;
	border: 2px solid #269fdc;
	box-shadow: 5px 5px 10px #ccc;
}
.cv-lightbox-gallery .col-1 p {
	font-weight: 700;
	text-align: center;
}
/* END CV LIGHTBOX GALLERY */


/* ACCOUNT MENU */
ul#account-menu { position: absolute; right: 20px; top: 14px; list-style-type: none; }
ul#account-menu li { display: inline-block; height: 28px; line-height: 25px; font-size: 14px; }
ul#account-menu li a { color: #747a7d; display: block;width: 100%; height: 100%; padding: 0px 18px; }
ul#account-menu li.special { border: 1px solid #269fdc; border-radius: 1px; }
ul#account-menu li.special a { color: #269fdc; text-align: center; }
/* END ACCOUNT MENU */

#menu-trigger, #user-menu-icon { display: none; }

#top { min-height: 80px; width: 100%; padding-bottom: 12px; z-index: 999; }
.top-shadow { 
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow:    0px 5px 5px 0px rgba(0, 0, 0, 0.09);
  box-shadow:         0px 5px 5px 0px rgba(0, 0, 0, 0.09);
}
#logo { margin-top: 27px; }
ul#menu { float: right; margin-top: 54px; }
ul#menu li { display: inline-block; padding-left: 20px; }
ul#menu li a { font-size: 16px; color: #747a7d; }

#create-cv-section { margin-bottom: 50px; min-height: 622px; background: url('../images/top-bg.jpg') no-repeat center top; }
#cv { width: 542px; margin-top: 56px; padding-bottom: 55px; }
#cv h1 { text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.4); }
#cv .image { margin: 24px auto 0px; min-height: 400px; }
#cv .image img { left: 135px; }
#cv .image .step { display: block; }
#cv .image #step1 { left: 10px; top: 138px; }
#cv .image #step2 { left: 402px; top: 8px; }
#cv .image #step3 { left: 402px; top: 238px; }
#cv #create-cv { left: 112px; bottom: 8px; }

.items-list { overflow: hidden; margin: 50px auto; }
.items-list .single-item { width: 300px; float: left; height: auto; position:relative;}
html .items-list .fixed-height { height: 470px; margin-bottom: 20px; }


/* Modify 12.07.22 */
.items-list .single-item .item-image { text-align: center; }
.items-list .single-item .item-image img { margin: 10px 0 0; border-radius: 50%; max-width: 150px; height: 150px;}

.items-list .single-item h2, .items-list .single-item h3 { padding: 25px 0px; }

/* Modify 12.07.22 */
.items-list .single-item h2.small-font, .items-list .single-item h3.small-font { padding: 25px 15px 15px 15px; font-size: 16px !important; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Modify 12.07.22 */
.items-list .single-item .item-short-text { font-family: 'Open Sans'; font-size: 14px;  line-height: 22px; padding: 0px 15px; margin-bottom: 30px; display: -webkit-box; -webkit-line-clamp: 8; -webkit-box-orient: vertical; overflow: hidden; }


.items-list .single-item .item-more-btn { display: block; width: 130px; margin: auto; text-align: center; border: 1px solid #269fdc; border-radius: 1px; color: #269fdc; padding: 0px 18px; line-height: 26px;  }

#our-services { background: #f2f2f2; padding-top: 60px; }
#advices { padding-top: 60px; }
#advices .items-list .single-item { background: #f2f2f2; padding-bottom: 25px; }

/* Modify 12.07.22 */
#advices .items-list .single-item .item-more-btn { border-color: #515151; color: #515151; position: absolute; bottom: 25px; left: 27%; }

#footer { max-width: 100%; position: relative; text-align: left; }
#footer > .content-wrapper { border-top: 1px solid #c8c8c8; }
#footer .content { padding-bottom: 22px;} 
#footer #ue { padding: 60px 0px 0px 0px; text-align: center; width: 100%; background: #fff; margin: auto;}
#footer #ue img { width: 540px; }
#footer ul { text-align: center; list-style: none; padding-top: 70px; margin-bottom: 20px; }
#footer ul li { display: inline; white-space: pre; font-size: 14px; line-height: 25px; font-weight: 300; padding: 0px 5px; }
#footer ul li a { text-decoration: none; font-size: 14px; color: #515151; font-weight: 400; font-family: 'Open Sans'; }

#footer #footer-credits { background: #F2F2F2; }
#footer #footer-credits #copyrights { float: left; padding: 15px 0; font-size: 14px; color: #515151; font-weight: 400; font-family: 'Open Sans'; }
#footer #footer-credits #realization { float: right; padding: 15px 0; font-size: 14px; color: #515151; font-weight: 400; font-family: 'Open Sans';}
#footer #footer-credits #realization a { text-decoration: none;  color: #515151; }
#footer #footer-credits .content-wrapper {display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;}

/* ANIMATION SECTION */
.cv-creator {
    -webkit-animation-name: cv-creator;
    -moz-animation-name: cv-creator;
    -o-animation-name: cv-creator;
    -ms-animation-name: cv-creator;
    animation-name: cv-creator;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
    -ms-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    -ms-animation-duration: 1s;
    animation-duration: 1s;
}
@-webkit-keyframes cv-creator{
0% {-webkit-transform:scale(0.0); opacity:0;}
65% {-webkit-transform:scale(1.0);}
100% {-webkit-transform:scale(1.0); opacity:1;}
}
@-moz-keyframes cv-creator{
0% {-moz-transform:scale(0.0); opacity:0;}
65% {-moz-transform:scale(1.0);}
100% {-moz-transform:scale(1.0); opacity:1;}
}
@-o-keyframes cv-creator{
0% {-o-transform:scale(0.0); opacity:0;}
65% {-o-transform:scale(1.2);}
100% {-o-transform:scale(1.0); opacity:1;}
}
@-ms-keyframes cv-creator{
0% {-ms-transform:scale(0.0); opacity:0;}
65% {-ms-transform:scale(1.2);}
100% {-ms-transform:scale(1.0); opacity:1;}
}
@keyframes cv-creator{
0% {transform:scale(0.0); opacity:0;}
65% {transform:scale(1.0);}
100% {transform:scale(1.0); opacity:1;}
}

/* CV SLIDER SECTION */
#cv-slider { position: relative; max-height: 395px; margin-bottom: 30px; }
#cv-slider .slider-arrow { display: block; width: 16px; height: 28px; position: absolute; background: url('../images/slider-arrow.png') no-repeat center top; }
#cv-slider .left-arrow-slider { top: 150px; left: 0px; display: none; }
#cv-slider .right-arrow-slider { top: 150px; right: 0px; }
.templates-outter { width: 820px; margin: auto; overflow: hidden;}
.templates-wrapper { margin: auto; overflow: hidden; position: relative; left: 0px; }
.single-template { float: left; }
.single-template a img, #template-preview a img { 
  width: 248px;
  border: 1px solid #dfdfdf;
  -webkit-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.14);
  -moz-box-shadow:    2px 2px 3px 0px rgba(0, 0, 0, 0.14);
  box-shadow:         2px 2px 3px 0px rgba(0, 0, 0, 0.14);
}
.single-template .choose-template { 
  display: block;
  width: 150px;
  margin: 20px auto;
  text-align: center;
  border: 1px solid #269fdc;
  border-radius: 1px;
  color: #269fdc;
  padding: 0px 18px;
  line-height: 26px;
}

/*#creator-section { background: #f2f2f2; margin-top: -12px; padding-bottom: 50px; }*/
#creator-section { background: #fff; padding-bottom: 0; }
#creator-section h1 { margin-top: 0; }
#creator-section #candidate-data .register-creator-form{padding-bottom: 55px;}
#creator-section #candidate-data .register-creator-form #save-email{float: right;}

.creator-steps { overflow: hidden; margin: 38px auto; }
.single-step { width: 320px; height: 37px; background: url(../images/step-sprite.png) no-repeat 0px -8px; float: left;}
.single-step a { font-size: 20px; display: block; width: 100%; height: 100%; padding-left: 12px; line-height: 35px; color: #fff; }
.single-step a span.step-number {font-size: 20px;line-height: 35px;color: #fff;}
.single-step a span.step-text {font-size: 16px; padding-left: 38px; }

.active-step { }
.active-step a span.step-text {color:#fff;}
.next-step { background-position: 0px -56px; }
.last-step { background-position: 0px -104px; width: 300px; }
.ready-step { background-position: 0px -152px; }
.ready-color { color: #9a9a9a;}
.last-ready-step { background-position: 0px -200px; width: 300px;}

#cv-template { background: #fff; }
#candidate-data { background: #fff; padding-top: 55px; }
#cv-template h2 { margin: 40px auto; }

#step-line { width: 16px; min-height: 20px; float: left; margin-right: 20px;}
#step-line .infnt-line { width: 1px; height: 100%; background: #269fdc; left: 7px; top: 10px;}
.circle { width: 14px; height: 14px; border-radius: 50%; background: #269fdc; top: 4px; }

form .form-group { margin-bottom: 20px; width: 305px; position: relative;}
form .form-group-max { width: 100%; }
form .form-group label, form .form-group-checkbox label { width: 100px; text-align: right; display: inline-block; font-family: 'Open Sans'; font-size: 14px; color: #747a7d; line-height: 27px; }
form .form-group input, .form-group select { border: 1px solid #c0c0c0; width: 190px; height: 34px; border-radius: 3px; }
form .form-group textarea { resize: none; width: 516px; border: 1px solid #c0c0c0; border-radius: 3px; float: right; padding: 5px;}
form .form-group-checkbox { width: auto; margin-bottom: 20px; position: relative;}
form .form-group-checkbox input {margin-left: 15px;}
#data-forms { width: 630px; float: left; }
#data-forms form input, select, textarea { font-family: 'Open Sans'; color: #747a7d; padding: 0px 10px; }
#data-forms form { margin-top: 20px;  overflow: hidden; }
#data-forms form input, #data-forms select { width: 190px; height: 30px; float: right; }
form input[type="checkbox"] { width: auto !important; }
#data-forms form select { background: url(../images/select.png) no-repeat right center; }
#data-forms form input.calendar-icon { background: url(../images/calendar.png) no-repeat right center; }
#data-forms form input[type="submit"] { background: #269fdc; border: none; font-size: 18px; font-family: 'Open Sans Condensed'; color: #fff; }
#data-forms .form-group-max input, #data-forms .form-group-max select { width: 516px; }
.move-forward { background: #269fdc; border: none; border-radius: 3px; font-size: 18px; font-family: 'Open Sans Condensed'; color: #fff; display: block; width: 220px; margin: 20px auto; text-align: center; padding: 10px; font-weight: bold;}
form .form-group.save-changes { width: 100%; text-align: right; overflow: hidden; }
.save-changes { width: 100%; text-align: right; overflow: hidden; }
#template-preview { width: 240px; float: right; }

.form-group2 {
  display: block;
  width: 130px;
  height: 30px;
  margin: auto;
  text-align: center;
  border: 1px solid #269fdc;
  border-radius: 1px;
  color: #269fdc;
  padding: 0px 18px;
  line-height: 26px;
  overflow: hidden;
}
.form-group2 p {
  top: 1px;
  left: 20px;
}
.form-group2 input { 
  opacity: 0;
  position: relative;
  left: 50px;
  top: -27px;
}
.form-header { overflow: hidden; }
.edit-btn { border: 1px solid #5F6769; border-radius: 3px; background: #FFFFFF; padding: 1px 20px; color: #5F6769; height: 30px; }
.edit-btn:hover { cursor: pointer; }
.edit-span:hover { cursor: pointer; }

#login-section {background: #f2f2f2;}

.register-form {
  width: 500px;
  border-radius: 5px;
  padding: 15px 20px;
  margin: 60px auto;
  background: #fff;
}
.register-form h3 {
  font-family: 'Open Sans';
    font-size: 22px;
    color: #585858;
    text-align: center;
}

.register-form form.user-register {
  width: 100%;
    margin: 10px 0;
    position: relative;
}

.register-form form.user-register fieldset {
  border: none;
}

#user-register-form fieldset div {
  position: relative;
}

.register-form form.user-register input[type="password"], .register-form form.user-register input {
  width: 100%;
    height: 40px;
    padding: 10px;
    background: #fff;
    border: 1px solid #d0d0d0;
    margin: 5px 0;
}

.register-form form.user-register input[type="checkbox"] {
  width: 20px;
    height: 20px;
    position: absolute;
    left: 0px;
    top: 0px;
    padding: 0;
    margin: 0;
}

.register-form form.user-register input[type="submit"] {
  height: 34px;
  width: 100%;
  border-radius: 3px;
  border: 1px solid #269FDC;
  background: #269FDC;
  padding: 4px;
  display: block;
  margin: auto;
  color: #fff;
  font-family: 'Open Sans';
  font-weight: bold;
}

.register-form form.user-register p {text-align:center;margin: 10px 0px;}

.social-login-title p {text-align: center;margin: 10px 0px;}

#register-form { }
#register-form a {     
  height: 34px;
  width: 83px;
  border-radius: 3px;
  border: 1px solid #269FDC;
  background: #269FDC;
  padding: 5px 20px;
  display: block;
  float: right;
  text-align: center; 
}
#register-form a:hover {cursor: pointer; }
#register-form input[type="submit"] { 
  height: 34px;
  width: 83px;
  border-radius: 3px;
  border: 1px solid #269FDC;
  background: #269FDC;
  padding: 4px;
  display: block;
  margin: auto;
}
/*#register-form .form-group { margin: 20px auto; width: 390px; }*/


#register-form .form-group {display: flex; justify-content: center; width: 100%; padding: 10px; margin-bottom: 0}


#register-form .form-group label { padding-right: 10px; }
#register-form .accept-terms label {  width: 100%; max-width: 650px; text-align: left;  padding-left: 20px}

#register-form .accept-terms label a {height: unset; width: unset; display: inline; border: none; padding: 0; float: unset; background: none;}

.user-data { border-bottom: 1px solid #c0c0c0; padding: 20px 0px; }
.user-data .user-position { color: #747a7d; font-weight: bold; overflow: hidden; }
.user-data .user-position span { font-weight: lighter; }
.user-data .job-dates { padding: 10px 0; }
.user-data .job-tasks { padding-bottom: 10px; }
.a-btn { display: block; border-radius: 3px; background: #FFFFFF; padding: 4px !important; width: 75px; height: 30px; text-align: center; }
.a-btn:hover { cursor: pointer; }
/*.user-data*/ .delete-btn { border: 1px solid #F74646;  color: #F74646; }
/*.user-data */.change-btn { border: 1px solid #269FDC;  color: #269FDC; }
.user-language { overflow: hidden; padding: 10px 0px; border-bottom: 1px solid #c0c0c0; }
.user-language .user-lang-item { float: left; }
.user-language .user-lang-item span {  }

.offer-list { width: 980px; margin: 20px auto; border: 1px solid #d2d2d2; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; }
.offer-list .offer {width: 100%; min-height: 80px; height: auto !important; border-bottom: 1px solid #d0d0d0; padding: 20px; position: relative; display: flex; justify-content: space-between; align-items: center; -webkit-display: flex; -webkit-justify-content: space-between; -webkit-align-items: center; }
.offer-list .offer:last-child {border-bottom: 0;}
.offer-list .offer .logo { width: 80px; height: auto; display: flex; justify-content: center; align-items: stretch; -webkit-display: flex; -webkit-justify-content: center; -webkit-align-items: stretch;  }
.offer-list .offer .details {  width: calc(100% - 80px); position: relative; min-height: 80px; padding: 0 0 0 20px; }
.offer-list .offer .title a { color: #183b73; font-weight: 600; text-decoration: none; font-size: 18px; }
.offer-list .offer .employer a { color: #363636; font-weight: 400; text-decoration: none; font-size: 14px; }
.offer-list .offer p.pay { margin-top: 5px; padding: 2px 6px; margin-bottom: 8px; min-width: 100px; background: #e1e1e1; display: inline-block; color: #545454; border-radius: 4px; font-size: 12px; }
.offer-list .offer .date {position: absolute; right: 0px; bottom: 0; font-size: 13px; font-weight: 300; color: #bcbcc4;}
.offer-list .offer p.localization { font-size: 13px; color: #bcbcc4; white-space: nowrap; }
.offer-list .offer .icon-fav { position: absolute; right: 15px; top: 0; display: block; width: 32px; height: 32px; }
.offer-list .offer .icon-fav span { display: none; }
.all-job-offers { width: 1164px; margin: 20px auto; text-align: center; }

label.agreement {display: flex; padding: 10px 0}
label.agreement p {padding-left: 10px;}
.action-block.user-panel-action-block {display: flex;justify-content: center;padding-top: 20px;}

/* RWD STARTS HERE */
@media screen and (max-width: 1000px ) {
  .items-list .single-item { width: 31.9448%; }
  .items-list .m-r20 { margin-right: 2%; }
  .single-step { background: none; width: 33.33%; text-align: center; }
  .last-step { width: 33.33%; text-align: center; }
  .single-step, .last-step { height: 37px; }
  .single-step a span.step-number { color: #747a7d; font-size: 18px; }
  .active-step a span.step-text { color: #269FDC; }
  .single-step a span.step-text { padding-left: 18px; }
  .active-step a span.step-number { color: #fff; border-radius: 50%; width: 34px; height: 34px; display: inline-block; background: #269FDC; text-align: center;}
  #template-preview { float: none; margin: 20px auto; }
  #summary > p {text-align: center;}
  #data-forms { margin-left: 50px; }
  
  .offers-header { margin-bottom: 15px; font-size: 20px;}
  .offer-list { width: calc(100% - 20px); margin: 0 auto; box-sizing: border-box; }
  .offer-list * {box-sizing: border-box;}
  .offer-list .offer { width: 100%; }
}
@media screen and (max-width: 900px ) {
  #create-cv-section { background: #666; }
  #cv { width: 100%; }
  #cv h1 { text-align: center; }
  #cv #create-cv { display: block; position: static; margin: auto; width: 301px; }
  #cv .image img#step0 { position: static; margin: auto; display: block; }
  #step1, #step2, #step3 { display: none !important; }
  .separator { display: none; }
  #footer ul li { padding: 0px 10px; }

  #top.content-wrapper { padding: 0px; }
  #logo { float: none; display: block; margin-left: 20px; width: 100px; }
  #menu-trigger, #user-menu-icon { display: block; width: 44px; height: 36px; position: absolute; top: 0px; border: 1px solid #f2f2f2; box-sizing: content-box; padding: 21px; }
  #menu-trigger {  right: 0px; background: url(../images/menu-trigger.png) no-repeat center center; } 
  #user-menu-icon { right: 87px; background: url(../images/user-trigger.png) no-repeat center center;}
  ul#menu { float: none; position: relative; margin-top: 8px; }
  ul#menu li { display: block; padding-left: 0px; }
  ul#account-menu { position: relative; right: 0px; top: 8px; margin-bottom: 7px; }
  ul#account-menu li.special { border: none; padding: 0px; }
  ul#account-menu li.special a { color: #fff; background: #269fdc; }
  ul#account-menu li { width: 100%; height: auto; padding: 0px; }
  ul#account-menu li a { font-size: 16px; }
  ul#menu li a , ul#account-menu li a { display: block; text-align: center; padding: 10px 0px; border-top: 1px solid #F2F2F2; }
  ul#menu li a:hover { background: #F2F2F2; }
}
@media screen and (max-width: 780px ) {
  #data-forms { margin-left: 0px; width: calc(100% - 36px); }
  form .form-group { float: none; width: 100%; overflow: hidden; margin-bottom: 10px; }
  #data-forms form input, #data-forms select { width: 100%; float: none; padding-left: 10px; }
  #data-forms .form-group-max input, #data-forms .form-group-max select { width: 100%; }
  form .form-group textarea { width: 100%; float: none; padding: 5px 10px; }
  .edit-btn { width: 100%; margin: 20px 0; }
  #template-preview > h4 { display: none; }
  #data-forms form input[type="checkbox"] { height: auto; }
}
@media screen and (max-width: 750px ) {
  .items-list .single-item { width: 100%; margin-bottom: 60px; }
  h1 { font-size: 34px; }
  #advices .items-list .single-item { width: 300px; float: none; margin: 30px auto; }
  #footer #ue { padding: 0px; }
  .single-step a span.step-text { font-size: 13px; }
}
@media screen and (max-width: 599px ) {
  .single-step, .last-step { width: 100%; }
  .active-step a span.step-number { color: #269FDC; display: inline; background: none;}
  /* CV LIGHTBOX GALLERY */
  .cv-lightbox-gallery .col-1 {
	  width: 100%;
  }
  
  /* END CV LIGHTBOX GALLERY */
}
@media screen and (max-width: 520px ) {
  #cv #create-cv { width: 250px; }
  #footer ul li { display: block; padding: 5px; }
  #footer #footer-credits #copyrights, #footer #footer-credits #realization { float: none; text-align: center; }
  .offers-header {padding: 0 10px; font-size: 18px;}
  .offer-list .offer {padding: 10px;}
  .offer-list .offer .logo {display: none;}
  .offer-list .offer .details {padding: 0; width: 100%;}
  .offer-list .offer .details .title {max-width: 80%; }
  .offer-list .offer .title a {font-size: 15px;}
}
@media screen and (max-width: 370px ) {
  #cv #create-cv { width: 220px; }
}


/* Added */
/*#subpage { width: 980px; margin: 12px auto 0px auto; padding: 30px 0px; text-align: left; position: relative; border-top: 1px solid #afafaf; } */
#subpage { width: 980px; margin: 0px auto; padding: 30px 0px; text-align: left; position: relative; } 
html>body #subpage, html>body #subpage .left-1 { overflow: hidden; }
#subpage.no-subpage-border { border-top: 0px; margin-top: 0px; }

#subpage .left-13 { width: 260px; float: left; }
#subpage .left-13-offer { width: 260px; float: left; }
#subpage .right-23 { width: 700px; float: right; }
#subpage .right-23-offer { width: 700px; float: right; }

#subpage .left-1 { width: 980px; float: left; }


/* Lewe editable */
.left-editable {background-color: #fff; padding: 20px 10px; }

.left-editable p, .left-editable ul, .left-editable ol, .left-editable blockquote { line-height: 21px; font-size: 14px; }
.left-editable ul, .left-editable ol {  list-style-position: outside; margin-left: 20px; margin-top: 16px; margin-bottom: 16px; }
.left-editable ul { list-style-image: url('../images/li-bullet.png'); }
.left-editable ol ul { margin-top: 6px; margin-bottom: 6px; }

.left-editable ul.submenu { list-style: none; width: 240px; margin-left: 0px; border-top: 1px solid #d8d8d8; }
.left-editable ul.submenu li a { width: 240px; height: auto; line-height: 21px; display: block; margin-bottom: 1px; background-color: #fff; border-bottom: 1px solid #d8d8d8; padding: 8px 0px 8px 10px; font-size: 14px; color: #444444; }
.left-editable ul.submenu li a:hover, .left-editable ul.submenu li a.active { text-decoration: none; background-color: #269fdc; color: #fff;  }

.left-editable ul.submenu li ul { list-style: none; width: 220px; margin-left: 10px; margin-top: 0px; margin-bottom: 0px; }
.left-editable ul.submenu ul li a { width: 220px; height: auto; line-height: 21px; display: block; margin-bottom: 1px; background-color: #fff; border-bottom: 1px solid #d8d8d8; padding: 4px 0px 4px 10px; font-size: 14px; color: #444444; }
.left-editable ul.submenu ul li a:hover, .left-editable ul.submenu ul li a.active { text-decoration: none; background-color: #269fdc; color: #444444; }

.left-editable blockquote { color: #444444; padding: 10px 10px 10px 10px; background: #e8e8e8; border-left: 4px solid #269fdc; font-style: italic; }

#frame .left-editable h1, #frame .left-editable h2, #frame .left-editable h3, #frame .left-editable h4, #frame .left-editable h5, #frame .left-editable h6 { font-size: 20px; font-family: "Open Sans Condensed"; font-weight: bold; margin: 0; margin-bottom: 6px; color: #3b3b3b; }
#frame .left-editable h1 { font-size: 22px; }
#frame .left-editable h2 { font-size: 18px; }
#frame .left-editable h3 { font-size: 16px; }
#frame .left-editable h4 { font-size: 14px; }
#frame .left-editable h5 { font-size: 13px; }
#frame .left-editable h6 { font-size: 12px; }

.left-editable table, .left-editable tr, .left-editable td { border-spacing: 0; border-collapse: collapse; border: none; }
.left-editable table { width: 100%; margin: 16px 0px 16px 0px; }
.left-editable table thead tr { background: #f0f0f0;  }
.left-editable table thead td { width: auto; text-align: center; font-size: 14px; color: #269fdc; border: 1px solid #d8d8d8; padding: 8px 4px 8px 4px; } 
.left-editable table tbody tr { background: #fff; }
.left-editable table tbody tr.alt { background: none; }
.left-editable table tbody tr td { padding: 6px 6px; text-align: center; border: 1px solid #d8d8d8; }
.left-editable table tbody tr td.small { font-size: 10px; }
.left-editable table tfoot tr { background-color: none; }
.left-editable table tfoot tr td { padding: 8px 0px; }
.left-editable table tbody tr.choose th, .left-editable table tbody tr.choose td { background: #202020; color: #fff; padding: 4px 0px; }
.left-editable table tfoot tr td { padding: 8px 8px; text-align: center; border: 1px solid #d8d8d8; }
.left-editable table tfoot tr.grey { background: #f0f0f0; }
.left-editable table tfoot tr td.align-right { text-align: right; }
.left-editable table tr td.align-left { text-align: left; }

.right-23 .editable { background-color: #fff; padding: 20px;border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; }

.editable h1, .editable h2, .editable h3, .editable h4, .editable h5, .editable h6 { margin-bottom: 6px; color: #666666; font-weight: 700;  }
.editable h1 span, .editable h2 span, .editable h3 span, .editable h4 span, .editable h5 span, .editable h6 span { font-weight: 200; color: #7c7c7c; }

.editable h1 { font-size: 26px; }
.editable h1 span { font-size: 22px; }
.editable h2 { font-size: 24px; }
.editable h2 span { font-size: 20px; }
.editable h3 { font-size: 22px; }
.editable h3 span { font-size: 18px; }
.editable h4 { font-size: 20px; }
.editable h4 span { font-size: 16px; }
.editable h5 { font-size: 18px; }
.editable h5 span { font-size: 14px; }
.editable h6 { font-size: 16px; }

.editable h1.header, .editable h2.header, .editable h3.header, .editable h4.header, 
.editable h5.header, .editable h6.header { font-size: 16px; border-bottom: 1px solid #dfdfdf; padding-bottom: 14px; margin-bottom: 16px; text-transform: uppercase; }
.editable h4.header { margin-top: 20px; }

.pagination { width: 100%; padding-top: 20px; font-weight: 600; }
html>body .pagination { overflow: hidden; text-align: center;}

.pagination p span, .pagination p a { width: 40px; color: #737373; background: #fff; text-align: center; height: 28px; line-height: 28px; border: 1px solid #d2d2d2;  box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; -khtml-border-radius: 3px; display: inline-block; *display:inline; *zoom:1; margin-right: 3px; }
.pagination p span.current, .pagination p span.active { background: #269fdc; border-color: #269fdc; color: #fff; }
.pagination p a:hover { background: #269fdc; border-color: #269fdc; color: #fff; text-decoration: none; }
.pagination p a.next, .pagination p a.prev { width: auto !important; padding-left: 10px; padding-right: 10px; }

.left-1 .editable { padding: 20px; background: #fff;border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; }
.left-23 .editable { padding: 20px; background: #fff; }


.editable h1.grey, .editable h2.grey, .editable h3.grey, .editable h4.grey, .editable h5.grey, .editable h6.grey { color: #7f7f7f; }

.editable .header { font-weight: 700; font-size: 26px; text-transform: uppercase; margin-bottom: 20px; }
.editable .header-article { font-weight: 700; font-size: 26px; margin-bottom: 20px; padding-bottom: 6px;  }

.editable p.details { font-size: 11px; font-style: italic; margin-bottom: 16px; }
.editable p.details a { color: #767676; }

.editable p { line-height: 21px; }
.editable ul, .editable ol, .editable table, .editable blockquote { line-height: 21px; }
.editable blockquote { margin: 16px; color: #999; border-left: 4px solid #269fdc; padding-left: 1em; font-style: italic; }

.editable ol { padding-bottom: 26px; list-style-position: inside; }
.editable ol li { margin-top: 12px; }
.editable ul { list-style: none; padding-bottom: 26px; }
.editable ul li { margin-top: 12px; background: url('../images/arrow-right-li.png') no-repeat left 6px; padding-left: 20px; }

.editable ul.polish-aplha { list-style: none; }
.editable ul.polish-aplha li { display: inline; background: none; padding: 4px; }

/*.editable table {*border-collapse: collapse; border-spacing: 0;width: 100%;}
.editable table  {border: solid #ccc 1px;}
.editable tbody tr:nth-child(even) {background: #f5f5f5;}
.editable table tr:hover, .editable tbody tr:nth-child(even):hover {background: #ffeac7;-o-transition: all 0.1s ease-in-out; -webkit-transition: all 0.1s ease-in-out; -moz-transition: all 0.1s ease-in-out; -ms-transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out;}    
.editable table td, .editable table th {border-left: 1px solid #ccc;border-top: 1px solid #ccc;padding: 10px;text-align: left;}
.editable table th, .editable table thead td {background: #f0f0f0; font-weight: 600;border-top: none;}
.editable table td:first-child, .editable table th:first-child {border-left: none;}*/

span.float-left { float: left; padding-right: 30px; padding-bottom: 4px; padding-top: 0px; }
span.float-right { float: right; padding-left: 30px; padding-bottom: 4px; padding-top: 0px; }

.gallery-slider { margin-bottom: 20px; width: 660px; position: relative; }
html>body .gallery-slider, html>body .gallery-slider .controls { overflow: hidden; }

.gallery-slider .current-photo { width: 660px; height: 440px; line-height: 440px; text-align: center; background: url('../images/loader.gif') no-repeat center center; }
.gallery-slider .current-photo img { vertical-align: middle; }

.gallery-slider .gs-controls { width: 660px; height: 90px; margin-top: 10px; position: relative; }
.gallery-slider .gs-controls a.prev { position: absolute; left: 10px; top: 0px; width: 36px; height: 90px; display: block; background: url('../images/arrows-gallery.png') no-repeat -72px center; }
.gallery-slider .gs-controls a.prev:hover { background-position: -108px center; }
.gallery-slider .gs-controls a.next { position: absolute; right: 15px; top: 0px; width: 36px; height: 90px; display: block; background: url('../images/arrows-gallery.png') no-repeat 0px center; }
.gallery-slider .gs-controls a.next:hover { background-position:-36px center; }
.gallery-slider .gs-controls .thumbs-box { width: 512px; height: 90px; position: absolute; left: 73px; top: 0px; overflow: hidden; } 
.gallery-slider .gs-controls .thumbs-box .all-thumbs { position: absolute; left: 0px; top: 0px; width: 99999px; height: 90px; }
.gallery-slider .gs-controls .thumbs-box .all-thumbs a { width: 120px; height: 90px; line-height: 90px; margin: 0px 8px 0px 0px; padding: 0; float: left; display: block; text-align: center;
                                                         -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";  /* IE 8 */
                                                         filter: alpha(opacity=70); /* IE 5-7 */
                                                         -moz-opacity: 0.7; /* Netscape */
                                                         -khtml-opacity: 0.7; /* Safari 1.x */
                                                         opacity: 0.7; /* Good browsers */
}

.gallery-slider .gs-controls .thumbs-box .all-thumbs a.active { 
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";  /* IE 8 */
    filter: alpha(opacity=100); /* IE 5-7 */
    -moz-opacity: 1.0; /* Netscape */
    -khtml-opacity: 1.0; /* Safari 1.x */
    opacity: 1.0; /* Good browsers */
}

.article-parts { width: 660px; padding-top: 20px; }
html>body .article-parts { overflow: hidden; }

.article-parts p span, .article-parts p a { width: 28px; color: #626262; text-align: center; height: 28px; line-height: 28px; border: 1px solid #dbdbdb; display: inline-block; *display:inline; *zoom:1; margin-right: 4px; }
.article-parts p span { background: #269fdc; border-color: #269fdc; color: #fff; }
.article-parts p a:hover { background: #269fdc; border-color: #269fdc; color: #fff; text-decoration: none; }
.article-parts p a.next { width: auto !important; padding-left: 10px; padding-right: 10px; }

.gallery-standard { width: 660px; }
html>body .gallery-standard { overflow: hidden; }

.gallery-standard .row { width: 200px; height: 200px; line-height: 200px; float: left; margin-right: 20px; margin-bottom: 20px; text-align: center; }
.gallery-standard .row img { vertical-align: middle; }
html .gallery-standard .odd { margin-right: 0px; }


#guides h2.main-font a { color: #3d3d3d; }

.left-13 .apply-box { padding: 20px 20px 30px 20px; width: 200px; background: #fff; margin-bottom: 20px; }
.left-13 .apply-box p.header { font-size: 18px; font-weight: 600; color: #363636; text-align: center; margin-bottom: 20px; }
.left-13 .apply-box p a { padding: 10px 44px; font-size: 20px; background: #17396f; font-weight: 300; color: #fff; text-align: center; }
.left-13 .apply-box p a:hover { text-decoration: none; background: #244d8d; }

.left-13 .notification-submit-box { padding: 20px 20px 20px 20px; width: 200px; background: #c7ddff; margin-bottom: 20px; text-align: center; }
.left-13 .notification-submit-box p .glicon { font-size: 72px; }
.left-13 .notification-submit-box p { padding-bottom: 10px; color: #363636; font-size: 16px; font-weight: 400; }
.left-13 .notification-submit-box p.submit { margin-top: 20px; }
.left-13 .notification-submit-box p.submit a { padding: 10px 44px; font-size: 20px; background: #d8000b; font-weight: 300; color: #fff; text-align: center; }
.left-13 .notification-submit-box p.submit a:hover { text-decoration: none; background: #e9252f; }

.left-13 .recommended-articles { width: 240px; position: relative; background-color: #fff; padding: 20px 0px; }
#frame .left-13 .recommended-articles h2 { font-size: 20px; font-family: "Open Sans Condensed"; font-weight: bold; margin: 0; margin-bottom: 10px;  }
.left-13 .recommended-articles .article { width: 100%; position: relative; border-bottom: 1px solid #d0d0d0; padding: 10px 0; }
#frame .left-13 .recommended-articles .article h3 { font-size: 18px;  font-family: "Open Sans Condensed"; font-weight: normal; margin: 5px 0px; }
#frame  .left-13 .recommended-articles .article h3 a { text-decoration: none; }
.left-13 .recommended-articles .article p { padding: 10px 0; font-size: 13px; position: relative; font-weight: 200; }
.left-13 .recommended-articles .article p span { 
    position: absolute; 
    right: 2px; 
    bottom: 0; 
    display: block;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ1JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 65%, rgba(255,255,255,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(65%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 65%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 65%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 65%,rgba(255,255,255,1) 100%); /* IE10+ */
    background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 65%,rgba(255,255,255,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-8 */
    width: 50px;
    text-align: right;
}

#newsletter-art { float: left; width: 260px; min-height: 250px; margin-bottom: 30px; background: #091b38; text-align: center; }
#newsletter-art p { color: #fff; font-weight: 300; font-size: 14px; }
#newsletter-art p.title { text-transform: uppercase; font-weight: 700; font-size: 16px; padding-top: 30px; }
#newsletter-art p.regulamin { color: #818181; font-weight: 300; font-size: 12px; padding: 10px 0; }
#newsletter-art small { color: #818181; font-size: 12px; }
#newsletter-art small a { color: #818181; }

#newsletter-art form  { width: 260px; margin: 20px 0px 10px 0px; }
#newsletter-art form input[type=text] { width: 200px; border: 1px solid #269fdc; background: #fff; padding: 10px 10px; font-size: 16px; font-weight: 300; }
#newsletter-art form input[type=submit] { margin-top: 10px; font-size: 16px; font-weight: 600; padding: 6px 20px; background: #d8000b; cursor: pointer; text-align: center; color: #fff; } 
#newsletter-art form input[type=button] { margin-top: 10px; font-size: 16px; font-weight: 600; padding: 6px 20px; background: #d8000b; cursor: pointer; text-align: center; color: #fff; }
#newsletter-art .newsletter-error-info { color: red; }
#newsletter-art .newsletter-info { display: inline-block; color: #fff; font-size: 13px; }

#simple-search { width: 100%; height: 100px; background: #ececec; position: relative; }
#simple-search form { width: 980px; height: 100px; position: relative; margin: 0 auto; text-align: left; }

#simple-search form #phrase {width: 860px; line-height: 50px; height: 50px; padding: 0px 100px 0px 20px; background: #fff; border: none; color: #9b9a9a; font-size: 16px; position: absolute; left: 0px; top: 25px; }
#simple-search form #simple-search-submit { border: none; position: absolute; right: 0px; top: 25px; width: 80px; height: 50px; cursor: pointer; background: url('../images/simple-search.png') no-repeat 0px 0px; }
#simple-search form #simple-search-submit:hover { background-position: 0px -50px; }


/* Start Data Table */
.data-table { clear: both; width: 100%; }

div.dataTables_info { float: left; }
div.dataTables_paginate { float: right; }
div.dataTables_length { padding: 6px; display: inline-block; max-width: 200px; float: left; }
div.dataTables_filter { padding: 6px; display: inline-block; max-width: 300px; float: right; }
div.dataTables_paginate { padding: 0; }
div.dataTables_info { padding: 10px 0; width: 100%; text-align: right; }

/* Self clearing - */
div.dataTables_wrapper:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
html[xmlns] .dataTables_wrapper { display: block; }
* html .dataTables_wrapper { height: 1%; }

div.dataTables_wrapper a.paginate_button,
div.dataTables_wrapper a.paginate_active, div.dataTables_wrapper .dataTables_paginate .current {
    display: inline-block;
    margin-left: 2px;
    cursor: pointer;
    *cursor: hand;
    text-decoration: none; color: #626262; padding: 6px 8px; 
    background: #fff; /* Old browsers */
    border: 1px solid #dbdbdb;    
}

div.dataTables_wrapper a.paginate_active, html div.dataTables_wrapper .dataTables_paginate .current {
    background: #0563fb; /* Old browsers */
    background: -moz-linear-gradient(top,  #0563fb 0%, #1c3d75 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0563fb), color-stop(100%,#1c3d75)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #0563fb 0%,#1c3d75 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #0563fb 0%,#1c3d75 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #0563fb 0%,#1c3d75 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #0563fb 0%,#1c3d75 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0563fb', endColorstr='#1c3d75',GradientType=0 ); /* IE6-9 */
    border: 1px solid #257850;
    color: #fff;
}

div.dataTables_wrapper a.paginate_button_disabled, div.dataTables_wrapper a.paginate_button_disabled:hover { color: #3d6672; background: #ececec; }
div.dataTables_wrapper a.paginate_button:hover {
    background: #0563fb; /* Old browsers */
    background: -moz-linear-gradient(top,  #0563fb 0%, #1c3d75 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0563fb), color-stop(100%,#1c3d75)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #0563fb 0%,#1c3d75 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #0563fb 0%,#1c3d75 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #0563fb 0%,#1c3d75 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #0563fb 0%,#1c3d75 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0563fb', endColorstr='#1c3d75',GradientType=0 ); /* IE6-9 */
    border: 1px solid #257850;
    color: #fff;
}
div.dataTables_paginate span>a {width: 15px; text-align: center; }

/* formularze */
div.dataTables_length select, div.dataTables_filter input { 	
    display: inline-block; *display:inline; *zoom:1;  border: 1px solid #dbdbdb; font-size: 12px; font-family: 'Open Sans', arial, sans-serif; font-weight: 400; 
    padding: 5px 5px 5px 5px;
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top,  #ffffff 0%, #eef0f2 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#eef0f2)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ffffff 0%,#eef0f2 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #ffffff 0%,#eef0f2 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #ffffff 0%,#eef0f2 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #ffffff 0%,#eef0f2 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eef0f2',GradientType=0 ); /* IE6-9 */
}

/* End Data Table */
#choosed-filters-options { max-width: 100%; padding: 10px 0px; margin-top: 10px; text-align: left; }
#choosed-filters-options span { font-size: 12px; margin-right: 4px; margin-bottom: 2px; padding: 1px 5px; background: #5e7395; color: #fff; display: inline-block; *display:inline; *zoom:1;   }
#choosed-filters-options span a { font-size: 14px; padding: 2px; color: #269fdc; text-decoration: none; }

#filters-box ul { list-style: none; }
#results-content  ul#joboffer-filters li p.see-more-filter a { background: none; border: 0; width: 100%; text-align: center; padding: 10px 0px; font-size: 13px; }
#results-content  ul#joboffer-filters li p.see-more-filter a:hover { color: #269fdc; }

#results-content .invitation {
    margin: 30px 0px; 
    min-height: 108px; 
    background: #8f8f8f url('../images/invitation-icon2.png') no-repeat 20px 32px; 
    position: relative;
    padding-left: 100px;
    max-width: 100%;
    
}
#results-content .invitation a.action { position: absolute; right: 0px; top: 0px; width: 140px; height: 108px; background: #d8000b; text-decoration: none; display: block; text-align: center; line-height: 108px; color: #fff; font-size: 18px; font-weight: 600; text-transform: uppercase; }
#results-content .invitation h3 {padding: 20px 0 0 0; color: #fff; font-weight: 600; font-size: 18px; }
#results-content .invitation h3.szkolenia {padding: 0; position: absolute; left: 88px; top: 43px; color: #fff; font-weight: 600; font-size: 18px; }
#results-content .invitation p {padding: 0; color: #fff; font-weight: 400; font-size: 14px; }
#results-content .invitation form#subscribe-form { width: 100%; position: relative; }
#results-content .invitation form#subscribe-form input[type=text] { border: none; padding: 5px; height: 30px; width: 70%; background-color: #fff; margin-top: 20px; margin-bottom: 20px; }
#results-content .invitation form#subscribe-form button[type=submit].auth { 
    color: #fff; 
    display: inline-block; 
    font-size: 16px;  
    text-transform: uppercase; 
    text-align: center; 
    min-height: 40px;  
    padding: 0 10px;
    background-color: #269fdc;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    margin-right: -140px;
    margin-top: -66px;
    min-height: 108px;
    border: none;
}
#results-content .invitation form#subscribe-form button[type=submit].unauth { 
    color: #fff; 
    display: inline-block; 
    font-size: 16px; 
    position: absolute; 
    right: 20px; 
    top: 14px; 
    text-transform: uppercase; 
    text-align: center; 
    min-height: 40px;  
    padding: 0 10px;
    background-color: #269fdc;
    cursor: pointer;
    border: none;
}
#results-content .invitation form#subscribe-form button[type=submit]:hover { background-color: #ff9409; }
#results-content .invitation form#subscribe-form .warning { display: inline-block; }
#results-content .invitation form#subscribe-form .warning .error { background-color: #D8000B; color: #fff; text-shadow: 1px 1px #269fdc; padding: 7px; margin-bottom: 20px;  }

.offer-details { background: #fff; padding: 0px; margin-bottom: 30px; min-height: 170px; border: 1px solid #d2d2d2;  box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; }
html>body .offer-details { overflow: hidden; }
.offer-details .left-13 ul { list-style: none; padding-left: 20px; padding-top: 20px; padding-bottom: 20px; }
.offer-details .left-13 ul li { margin: 6px 0px 2px 0px; min-height: 36px; height: auto !important; height: 36px; }
.offer-details .left-13 ul li a { padding: 7px 0px 7px 47px; }

a.icon-fav, .icon-fav { background: url('../images/sprite-icons-32.png') no-repeat 0px 0px; }
a.icon-see, .icon-see { background: url('../images/sprite-icons-32.png') no-repeat 0px -96px; }
a.icon-email, .icon-email { background: url('../images/sprite-icons-32.png') no-repeat 0px -192px; }
a.icon-note, .icon-note { background: url('../images/sprite-icons-32.png') no-repeat 0px -288px; }
a.icon-position, .icon-position { background: url('../images/sprite-icons-32.png') no-repeat 0px -384px; }
a.icon-clock, .icon-clock { background: url('../images/sprite-icons-32.png') no-repeat 0px -480px; }

.offer-details .right-23 h1 { color: #363636; font-weight: 600; font-size: 28px; margin-left: 20px; margin-top: 20px; }
.offer-details .right-23 p.employer { margin-left: 20px; padding-top: 4px; }
.offer-details .right-23 p.employer, .offer-details .right-23 p.employer a { font-weight: 400; font-size: 18px; } 

.offer-details .right-23 .extra-details { width: 660px; margin-left: 20px; margin-top: 16px; padding-top: 24px; background: url('../images/rozporek.png') repeat-x center top; position: relative; }
.offer-details .right-23 .extra-details span { padding: 7px 30px 7px 40px; }
.offer-details .right-23 .extra-details span#clock { padding: 7px 0 7px 0; }
.offer-details .right-23 .extra-details span.clock_info{ padding: 7px 0 7px 0; }


.left-13-offer .apply-box { padding: 20px 20px 30px 20px; width: 240px; border: 1px solid #e0e0e0; background: #fff; margin-bottom: 20px; }
.left-13-offer .apply-box p.header { font-size: 18px; font-weight: 600; color: #363636; text-align: center; margin-bottom: 20px; }
.left-13-offer .apply-box p a { padding: 10px 44px; font-size: 20px; background: #17396f; font-weight: 300; color: #fff; text-align: center; }
.left-13-offer .apply-box p a:hover { text-decoration: none; background: #244d8d; }

.left-13-offer .apply-box .offer-apply-input-line .offer-apply-select-location { width: 100%; border: 1px solid #d0d0d0; padding: 5px; }
.left-13-offer .apply-box .offer-apply-input-line input { border: 0; background: #269fdc; color: #fff; font-size: 18px; font-weight: 700; width: 100%; margin-top: 20px; padding: 10px; cursor: pointer; }

.left-13-offer .notification-submit-box { padding: 20px 20px 20px 20px; width: 240px; background: #e0e0e0; margin-bottom: 20px; text-align: center; }
.left-13-offer .notification-submit-box p .glicon { font-size: 72px; }
.left-13-offer .notification-submit-box p { padding-bottom: 10px; color: #363636; font-size: 16px; font-weight: 400; }
.left-13-offer .notification-submit-box p.submit { margin-top: 20px; }
.left-13-offer .notification-submit-box p.submit a { padding: 10px 44px; font-size: 20px; background: #d8000b; font-weight: 300; color: #fff; text-align: center; }
.left-13-offer .notification-submit-box p.submit a:hover { text-decoration: none; background: #e9252f; }
.left-13-offer .notification-submit-box #subscribe-form-viewoffer div input { padding: 0 10px; width: 178px; height: 30px; border: 1px solid #98B0D3; }
.left-13-offer .notification-submit-box #subscribe-form-viewoffer .warning p { padding-top: 10px; color: red; font-size: 12px; }
.left-13-offer .notification-submit-box #subscribe-form-viewoffer button { border: 0; padding: 10px 15px; margin-top: 10px; color: #fff; background: #269fdc; width: 100%; font-size: 16px; font-weight: 200; cursor: pointer; }

#subscribe-form-viewoffer-rwd div input { padding: 0 10px; width: 70%; height: 30px; border: 1px solid #98B0D3; }
#subscribe-form-viewoffer-rwd .warning p { padding-top: 10px; color: red; font-size: 12px; }
#subscribe-form-viewoffer-rwd button { padding: 10px 15px; margin-top: 10px; color: #fff; background: #193C76; width: 70%; font-size: 16px; font-weight: 200; cursor: pointer; }

.left-13-offer .check-out-salary {width: 240px; padding: 20px; background-color: #32B2A3; color: #ffffff; }
.left-13-offer .check-out-salary h3 { text-align: center; font-size: 32px; }
.left-13-offer .check-out-salary p.subtext { font-size: 18px; text-align: center; margin-bottom: 20px; }

.left-13-offer .visit-cv-pl { width: 240px; padding: 20px; background-color: #20407D; color: #ffffff; }
.left-13-offer .visit-cv-pl h3 { font-size: 32px; color:#ffffff; }
.left-13-offer .visit-cv-pl p.subtext { font-size: 12px; margin: 20px 0; }
.left-13-offer .visit-cv-pl a.more {color: #fff; border: 1px solid #fff; display: inline-block; width: 100%; height: 40px; line-height: 40px; }
.left-13-offer .visit-cv-pl a.more:hover { text-decoration: none; background: #fff; color: #464646; }

.right-23-offer .notification-footer-box {display: none;}

.jobtitle-intro { max-width: 240px; padding: 20px; background: #fff; margin-bottom: 20px; }
.jobtitle-intro h3 { font-size: 14px; padding-bottom: 10px; }

.services_info{width: 100%; margin: 20px 0; border: 1px solid #D0D0D0; padding: 10px; display: none;}



@media screen and (max-width: 1000px) {
    #subpage {  width: auto; max-width: 980px; margin: 10px;}
}

@media screen and (max-width: 639px) {
.left-13 .recommended-articles, #newsletter-art  { display: none; }

    #subpage .header-info h4{padding: 10px;}
    #subpage .right-23{width: 100%;}
    #subpage .left-13{width: 100%;}
    #subpage .left-13 #filters-box{width: 100%; margin-bottom: 40px;}
    /* podstrona */
    .left-editable ul.submenu{width: 100%;}
    .left-editable ul.submenu li a{width: auto;}
    .left-editable ul.submenu li ul{width: auto;}
    .left-editable ul.submenu ul li a{width: auto;}
}

@media screen and (max-width: 359px) {
    #subpage .header-info h3{font-size: 13px;}   
    #subpage .header-info h5{font-size: 24px;}
    #subpage .left-1 .editable .pagination{text-align: center;}
    #subpage .left-1 .editable .pagination .next{margin-top: 20px;}
}

/* Cube Interactive Password */
.password-strength {  display: block; width: 40%; height: 15px; line-height: 15px !important; display: block; font-size: 10px; margin-top: 10px; }
.password-strength span { line-height: 15px !important; padding-left: 4px; }
.password-strength-0 { width: 100%; background: #cccccc; }
.password-strength-1 { width: 20%; background: #ff0000; }
.password-strength-2 { width: 40%; background: #ff5f5f; }
.password-strength-3 { width: 60%; background: #56e500; }
.password-strength-4 { width: 80%; background: #4dcd00; }
.password-strength-5 { width: 100%; background: green; color: #ffffff; }

/* CONTACT FORM */
#contact-form { width: 100%; max-width: 980px; margin: 20px auto; }
#contact-form form { width: 100%; }
#contact-form form input[type=text], #contact-form form select, #contact-form form textarea { font-family: 'Open Sans', Arial; margin-top: 10px; background-color: #fff; border: 1px solid #d2d2d2;  box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; line-height: 26px; font-size: 14px; width: 90%; padding: 6px 10px; }
#contact-form form textarea { font-family: 'Open Sans', Arial; height: 100px; line-height: 20px; }
#contact-form form select {-webkit-appearance: menulist; -moz-appearance: menulist;}
#contact-form form  .CIF-Error { font-size: 12px; padding-bottom: 4px; }
#contact-form form input[type=submit] { padding: 10px 20px; margin-top: 30px; background: #269FDC;
    border: none;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    color: #fff;
    font-family: 'Open Sans';}

/* ORDER FORM FILE */
#order-form-file { width: 100%; max-width: 980px; margin: 20px auto; }
#order-form-file form { width: 100%; }
#order-form-file form input[type=text], #order-form-file form select, #order-form-file form textarea { font-family: 'Open Sans', Arial; margin-top: 10px; background-color: #fff; border: 1px solid #d2d2d2;  box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; line-height: 26px; font-size: 14px; width: 100%; padding: 6px 10px; }
#order-form-file form textarea { font-family: 'Open Sans', Arial; height: 100px; line-height: 20px; }
#order-form-file form select {-webkit-appearance: menulist; -moz-appearance: menulist;}
#order-form-file form  .CIF-Error { font-size: 12px; padding-bottom: 4px; }
#order-form-file form input[type=submit] { padding: 10px 20px; margin-top: 30px; background: #269FDC;
    border: none;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    color: #fff;
    font-family: 'Open Sans';}


/* ORDER FORM */
#order-form { width: 100%; max-width: 980px; margin: 20px auto; }
#order-form form { width: 100%; }
#order-form form input[type=text], #order-form form select, #order-form form textarea { font-family: 'Open Sans', Arial; margin-top: 10px; background-color: #fff; border: 1px solid #d2d2d2;  box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; line-height: 26px; font-size: 14px; width: 100%; padding: 6px 10px; }
#order-form form textarea { font-family: 'Open Sans', Arial; height: 100px; line-height: 20px; }
#order-form form select {-webkit-appearance: menulist; -moz-appearance: menulist;}
#order-form form  .CIF-Error { font-size: 12px; padding-bottom: 4px; }
#order-form form input[type=submit] { padding: 10px 20px; margin-top: 30px; background: #269FDC;
    border: none;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    color: #fff;
    font-family: 'Open Sans';}

/* Cube Interactive Forms */
.CIF-Error { color: #ff0000; display: none; position: absolute; top: 30px; font-size: 12px; right: 50px;}
.CIF-ErrorField { border-color: #ff0000 !important; }
.CIF-Loader { display: none; }
.CIF-Ajax-Ok { display: none; }
.CIF-Ajax-Error { display: none; color: #ff0000; }

.CIF-Modal-Loader { display: none; position: fixed; width: 100%; height: 100%; background: url('../images/cif-modal.png'); z-index: 99999; }
.CIF-Modal-Loader div { width: 100%; height: 100%; background: url('../images/loader.gif') no-repeat center center; }

form.ci-form .CIF-Loader, form.ci-form .CIF-Ajax-Ok {  }
form.ci-form .CIF-Ajax-Ok { font-size: 16px; font-family: 'Open Sans', Arial, sans-serif; color: #77a01f; font-weight: 600; padding-top: 10px; }


/* Panel kanydata - informacje ogólne konta */
html>body #subpage .right-23 .general-info-candidate { overflow: hidden; }
#subpage .right-23 .general-info-candidate { width: 100%; position: relative; }
#subpage .right-23 .general-info-candidate h1.name { font-size: 26px; font-weight: 700;  }
#subpage .right-23 .general-info-candidate p.position { font-size: 16px; color: #464646;  }
#subpage .right-23 .general-info-candidate p.position span { font-size: 14px; color: #939393; margin-left: 50px;  }
.general-info-candidate .avatar { width: 106px; position: relative; float: left; }
.general-info-candidate .avatar img { border-radius: 50%; border: 2px solid #269FDC; }

.general-info-candidate .gen-info { width: 534px; float: left; position: relative; }
.general-info-candidate p.edit-menu { padding: 10px; margin-top: 20px; }

#subpage .left-1 { width: 980px; float: left; }

.header-info { width: 980px; }
.header-info h1, .header-info h3, .header-info h5 { font-weight: 600; font-size: 42px; color: #363636; text-align: center; }
.header-info h2, .header-info h4, .header-info h6 { font-weight: 300; font-size: 18px; color: #363636; text-align: center;  }

/* Formualrz Edycji Kandydata */

.candidate-form .btn-red {float: none;position: initial;color: #fff; cursor: pointer; font-size: 14px;text-decoration: none; }
.exp-form-close, .exp-form-add-close, .edu-form-close, .edu-form-add-close, .lang-form-close, .lang-form-add-close, .interest-form-close, .general-form-close { float: right; font-size: 21px; cursor: pointer; color: #F00; position: relative; right: 20px; top: 20px;}

form.standard {  }
form.standard legend { display: block; width: 100%; font-size: 16px; font-family: 'Open Sans', arial, sans-serif; font-weight: 300; border-bottom: 1px solid #dbdbdb; padding-top: 20px; padding-bottom: 10px; line-height: 22px; color: #000;}
form.standard legend.no-border { border: 0; }
form.standard p.legend { display: block; width: 100%; font-size: 14px; font-family: 'Open Sans', arial, sans-serif; font-weight: 300; padding-bottom: 10px !important; line-height: 18px; color: #000; }
form.standard p.legend small { font-size: 11px; font-weight: 400; padding-left: 10px; }

form.standard fieldset {border: none; border-bottom: 1px solid #d8d8d8; }
form.standard fieldset.no-border { border: 0 !important; }
form.standard fieldset div { border-bottom: 1px solid #dbdbdb; border-left: 1px solid #dbdbdb; border-right: 1px solid #dbdbdb; padding: 12px 0px;}
form.standard fieldset div label { display: inline-block; *display:inline; *zoom:1; width: 25%; min-width: 120px; text-align: right; vertical-align: top; line-height: 26px; }
form.standard fieldset div label span { padding-right: 10px; font-size: 12px; font-family: 'Open Sans', arial, sans-serif; font-weight: 400; }
form.standard fieldset div label span.b, form.standard fieldset div label span b { font-weight: 600; }

form.standard fieldset div input, form.standard fieldset div select, form.standard fieldset div textarea { 
    display: inline-block; *display:inline; *zoom:1;  border: 1px solid #dbdbdb; font-size: 12px; font-family: 'Open Sans', arial, sans-serif; font-weight: 400;
    padding: 5px 5px 5px 5px;
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top,  #ffffff 0%, #eef0f2 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#eef0f2)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ffffff 0%,#eef0f2 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #ffffff 0%,#eef0f2 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #ffffff 0%,#eef0f2 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #ffffff 0%,#eef0f2 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eef0f2',GradientType=0 ); /* IE6-9 */
}

form.standard fieldset div .long { width: 90%; }
form.standard fieldset div .medium { width: 70%; }
form.standard fieldset div .normal { width: 60%; }
form.standard fieldset div .short { width: 40%; }
form.standard fieldset div .very-short { width: 20%; }

form.standard fieldset div p { padding: 0px 20px; line-height: 21px; }
form.standard fieldset div.action-block { background: #eef0f2; padding:20px;}

/* Bardziej elegancko.. */
form.standard fieldset div.control-group { border-bottom: 1px solid #dbdbdb; border-left: 1px solid #dbdbdb; border-right: 1px solid #dbdbdb; padding: 12px 0px; }
form.standard fieldset div.control-group.no-border { border: 0 !important; }
form.standard fieldset div.control-group div { border: none; padding: 0px; } /* reset powyzsze */
form.standard fieldset div.control-group .label { padding: 0; margin: 0; display: inline-block; *display:inline; *zoom:1; width: 25%; min-width: 120px; text-align: right; vertical-align: top;  }
form.standard fieldset div.control-group .label span, form.standard fieldset div.control-group .label p { padding: 0; margin: 0; padding-right: 10px; line-height: 28px; font-size: 12px; font-family: 'Open Sans', arial, sans-serif; font-weight: 400; }
form.standard fieldset div.controls { font-size: 12px; width: 61%; padding: 0; margin: 0; display: inline-block; *display:inline; *zoom:1; vertical-align: top; }
form.standard fieldset div.controls.w100 { width: 100%; }
form.standard fieldset div.controls p { padding: 0; line-height: 28px; } /* reset */
form.standard fieldset div.controls p.info { padding-top: 6px; }
form.standard fieldset div.controls p.inline { display: inline-block; *display:inline; *zoom:1; }

html form.standard fieldset div.control-group .label-25 { width: 25%; }
html form.standard fieldset div.control-group .label-50 { width: 50%; }
html form.standard fieldset div.control-group .label-75 { width: 75%; }
html form.standard fieldset div.controls-25 { width: 20%; }
html form.standard fieldset div.controls-50 { width: 45%; }
html form.standard fieldset div.controls-75 { width: 70%; }

form.standard fieldset div input[type="checkbox"] { vertical-align: middle; }
form.standard fieldset div span.radio-label, form.standard fieldset div span.check-label { margin-right: 16px; }

html form.standard fieldset div.only-controls { width: 94%; margin-left: 20px; }
html>body form.standard fieldset div.only-controls { overflow: hidden; }

html form.standard fieldset div.only-controls .option-box { float: left; display: inline-block; *display:inline; *zoom:1; margin-right: 10px; padding: 4px 4px; }
html form.standard fieldset div.only-controls .option-box-fixed-region { width: 170px !important; }

html form.standard fieldset div.full-control { width: 100%; padding: 0px; }
html form.standard fieldset div.clear-inside div { border: none; padding: 0px; }

html form.standard fieldset div .fieldset-25 { margin-right: 10px; margin-bottom: 20px; width: 23%; float: left; }
html form.standard fieldset div .fieldset-30 { margin-right: 10px; margin-bottom: 20px; width: 28%; float: left; }
html form.standard fieldset div .fieldset-50 { margin-right: 10px; margin-bottom: 20px; width: 48%; float: left; }
html form.standard fieldset div .fieldset-70 { margin-right: 10px; margin-bottom: 20px; width: 68%; float: left; }
html form.standard fieldset div .fieldset-100 { margin-right: 10px; margin-bottom: 20px; width: 98%; float: left; }

form.standard fieldset div .data-block { display: inline-block; *display:inline; *zoom:1; vertical-align: top; line-height: 26px; }

/* Ogólne dla formularzy - d�?ugo�?ci */
form .i100, .in-table-form .i100 { width: 100%; }
form .i95, .in-table-form .i95 { width: 95%; }
form .i90, .in-table-form .i90 { width: 90%; }
form .i85, .in-table-form .i85 { width: 85%; }
form .i80, .in-table-form .i80 { width: 80%; }
form .i75, .in-table-form .i75 { width: 75%; }
form .i70, .in-table-form .i70 { width: 70%; }
form .i65, .in-table-form .i65 { width: 65%; }
form .i60, .in-table-form .i60 { width: 60%; }
form .i55, .in-table-form .i55 { width: 55%; }
form .i50, .in-table-form .i50 { width: 50%; }
form .i45, .in-table-form .i45 { width: 45%; }
form .i40, .in-table-form .i40 { width: 40%; }
form .i38, .in-table-form .i38 { width: 38%; }
form .i35, .in-table-form .i35 { width: 35%; }
form .i30, .in-table-form .i30 { width: 30%; }
form .i25, .in-table-form .i25 { width: 25%; }
form .i20, .in-table-form .i20 { width: 20%; }
form .i15, .in-table-form .i15 { width: 15%; }
form .i10, .in-table-form .i10 { width: 10%; }
form .i5, .in-table-form .i5 { width: 5%; }
form .price, .in-table-form .price  { width: 70px; text-align: right; }
form .pos, .in-table-form .pos  { min-width: 30px; width: 30px !important; text-align: center; }

form .datepicker, form .monthpicker, .in-table-form .datepicker, .in-table-form .monthpicker { min-width: 90px !important; background: url('../images/calendar-icon.png') no-repeat right center; }
form .timepicker, .in-table-form .timepicker { min-width: 70px !important; background: url('../images/icon-timepicker.png') no-repeat right center; }
form.standard fieldset div input.datepicker, form.standard fieldset div select.datepicker,
form.standard fieldset div input.monthpicker, form.standard fieldset div select.monthpicker,
form.filters input.datepicker, form.filters select.monthpicker, form.filters input.monthpicker, form.filters select.datepicker,
form.inline-form input.datepicker, form.inline-form select.monthpicker, form.inline-form input.monthpicker, form.inline-form select.datepicker,
.in-table-form input.datepicker, .in-table-form select.monthpicker, .in-table-form input.monthpicker, .in-table-form select.datepicker
{
    background: #ffffff; /* Old browsers */
    background: url('../images/calendar-icon.png') no-repeat right center, -moz-linear-gradient(top,  #ffffff 0%, #eef0f2 100%); /* FF3.6+ */
    background: url('../images/calendar-icon.png') no-repeat right center, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#eef0f2)); /* Chrome,Safari4+ */
    background: url('../images/calendar-icon.png') no-repeat right center, -webkit-linear-gradient(top,  #ffffff 0%,#eef0f2 100%); /* Chrome10+,Safari5.1+ */
    background: url('../images/calendar-icon.png') no-repeat right center, -o-linear-gradient(top,  #ffffff 0%,#eef0f2 100%); /* Opera 11.10+ */
    background: url('../images/calendar-icon.png') no-repeat right center, -ms-linear-gradient(top,  #ffffff 0%,#eef0f2 100%); /* IE10+ */
    background: url('../images/calendar-icon.png') no-repeat right center, linear-gradient(to bottom,  #ffffff 0%,#eef0f2 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eef0f2',GradientType=0 ); /* IE6-9 */
}

form.standard fieldset div input.timepicker, form.standard fieldset div select.timepicker,
form.filters input.timepicker, form.filters select.timepicker, form.inline-form input.timepicker, form.inline-form select.timepicker,
.in-table-form input.timepicker, .in-table-form select.timepicker, .in-table-form input.timepicker, .in-table-form select.timepicker
{
    background: #ffffff; /* Old browsers */
    background: url('../images/icon-timepicker.png') no-repeat right center, -moz-linear-gradient(top,  #ffffff 0%, #eef0f2 100%); /* FF3.6+ */
    background: url('../images/icon-timepicker.png') no-repeat right center, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#eef0f2)); /* Chrome,Safari4+ */
    background: url('../images/icon-timepicker.png') no-repeat right center, -webkit-linear-gradient(top,  #ffffff 0%,#eef0f2 100%); /* Chrome10+,Safari5.1+ */
    background: url('../images/icon-timepicker.png') no-repeat right center, -o-linear-gradient(top,  #ffffff 0%,#eef0f2 100%); /* Opera 11.10+ */
    background: url('../images/icon-timepicker.png') no-repeat right center, -ms-linear-gradient(top,  #ffffff 0%,#eef0f2 100%); /* IE10+ */
    background: url('../images/icon-timepicker.png') no-repeat right center, linear-gradient(to bottom,  #ffffff 0%,#eef0f2 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eef0f2',GradientType=0 ); /* IE6-9 */
}

html>body .landing-box, .register-form, .register-form-employer,  .landing-frame-inside { overflow: hidden; }

.landing-frame { width: 100%; position: relative; }
.landing-frame-inside { padding: 20px 0; position: relative; width: 980px; margin: 0 auto; }


.landing-box { width: 980px; position: relative; margin: 0 auto; padding: 20px 0; }
.landing-box .box13 { float: left; width: 300px; background-color: none; margin-right: 40px; padding-bottom: 40px; padding-top: 40px; position: relative; }
.landing-box .box13-last { float: left; width: 300px; background-color: none; padding-bottom: 40px; padding-top: 40px; position: relative; }
.landing-box .box13 p.icon, .box13-last p.icon { line-height: 36px; font-size: 36px; color: #18396e; text-align: center;  }
.landing-box .box13 p.icon span, .box13-last p.icon span { font-size: 36px; color: #18396e; text-align: center;  }
.landing-box .box13 p.info, .box13-last p.info { font-size: 16px; font-weight: 300; color: #363636; text-align: center; margin-top: 5px; }
.landing-box .box13 p.numb, .box13-last p.numb { font-size: 24px; font-weight: 700; color: #18396e; text-align: center; margin-top: 5px; }

html>body .landing-box-register { overflow: hidden; }
.landing-frame-inside h1 { color: #fff; }
.landing-frame-inside .box13 { float: left; width: 300px; background-color: none; margin-right: 40px; padding-bottom: 40px; padding-top: 40px; position: relative; }
.landing-frame-inside .box13-last { float: left; width: 300px; background-color: none; padding-bottom: 40px; padding-top: 40px; position: relative; }
.landing-frame-inside .box13 p { color: #fff; text-align: center; }
.landing-frame-inside .box13 p span { font-size: 42px; color: #fff; text-align: center; }
.landing-frame-inside .box13-last p { color: #fff; text-align: center; }
.landing-frame-inside .box13-last p span { font-size: 42px; color: #fff; text-align: center; }
.landing-frame-inside .register-form { width: 500px; position: relative; padding: 20px; margin: 0 auto; }
.landing-frame-inside .register-form-employer { width: 800px; position: relative; padding: 20px; margin: 0 auto; }

/* Plugin CI Multi Checker */
.ci-multi-checker { position: relative; }
.ci-mc-toggler { position: absolute; top: 22px; right: 36px; font-size: 11px; z-index: 99; }

.ci-multi-checker .ci-multi-checker-container {  border: 1px solid #dbdbdb; height: 200px; overflow: auto; }
html .ci-multi-checker .ci-multi-checker-showall { height: auto !important; overflow: hidden; }

.ci-multi-checker-container ul.parent { list-style: none; margin-left: 5px; }
.ci-multi-checker-container ul.parent li { background: none; padding-left: 0; padding-top: 5px; margin-top: 0; }
.ci-multi-checker-container ul.parent ul { list-style: none; margin-left: 20px; background: none; padding-bottom: 0; }
.ci-multi-checker-container .ci-mc-close { display: none; }
/*cennik*/
.pricelist-table-style-new{
    width: 100%;
    height: 29px;
    padding-left: 25px;
    text-align:left;
}
.pricelist-table-style-new th{
    cursor:pointer;
    text-align:left;
    color:#45ACE1;
    font-weight:300;
        
}
.pricelist-table-style-new tr{
    width:100%;
}
.pricelist-table-style-new td{
    border-bottom: 1px solid #C1E3F5;
    padding-top:2px;
    padding-bottom:2px;
    /*display:none;*/
    vertical-align: middle;
}

.pricelist-table-style-new td.button-basket{
    text-align:right
}

.pricelist-table-style-new td:first-child{
    width: 550px;
}
.clickable-h3-tag{
    /*cursor:pointer;*/
    font-size:18px;
    font-weight:300;
}
.left-arrow-blue::before{
    width:15px;
    height:15px;
    background: url(../images/left-arrow-blue.png) no-repeat center center;
    display:inline-block;
    content: " ";
    margin:0 5px;        
}
.margintop20{
    margin-top:20px;
}
#info-style-box-new{
    border: 1px solid #ccc;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#269fdc+0,2d95e5+100 */
    background: #269fdc; /* Old browsers */
    background: -moz-linear-gradient(-45deg,  #269fdc 0%, #2d95e5 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#269fdc), color-stop(100%,#2d95e5)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(-45deg,  #269fdc 0%,#2d95e5 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(-45deg,  #269fdc 0%,#2d95e5 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(-45deg,  #269fdc 0%,#2d95e5 100%); /* IE10+ */
    background: linear-gradient(135deg,  #269fdc 0%,#2d95e5 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#269fdc', endColorstr='#2d95e5',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    text-align:center;
    border-radius: 5px;
    padding: 15px 35px;
    color:#FFF;
    
}
.button-info {
    border:1px solid #fff;
    background: none;  
    border-radius: 0px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 56px;
    text-decoration: none;
    vertical-align: middle;
}
.button-info:hover {
    border:1px solid #fff;
    background: #FFF none repeat scroll 0 0;    
    color: #269fdc;
}
/*
.buyme-style-new{
    padding:3px 15px;
    border-radius:2px;
    background: none;
    border:1px solid #269fdc;
    color:#269fdc;
    font-size:11px;
    margin-left:20px;
    vertical-align:middle; 
    cursor:pointer;
}
*/
.buyme-style-new {
    padding: 2px 15px;
    border-radius: 2px;
    background: none;
    border: 1px solid #269fdc;
    color:#269fdc;
    font-size: 11px;
    margin-left: 20px;
    vertical-align: middle;
    cursor: pointer;
    margin-bottom: 2px;
    display: inline-block;
}
.buyme-style-new:hover{
    background: #269fdc;
    color:#FFF;
    
}

.buyme-style-new1{
    padding:3px 15px;
    border-radius:2px;
    background: none;
    border:1px solid #269fdc;
    color:#269fdc;
    font-size:11px;
    margin-left:20px;
    vertical-align:middle; 
    cursor:pointer;
}
.buyme-style-new1:hover{
    background: #269fdc;
    color:#FFF;
    
}


.consultant-wrapper{
    overflow:hidden;
    margin-top: 10px;
}
.consultant {
    display: inline-block;
    
}
.consultant-data{
    display: inline-block;
    text-align: left;
    font-weight:300;
    vertical-align: top;
    margin: 20px 10px;
    
}
.info-bottom-service{
    font-weight:300;
}
#overlay-mask { display: none; width: 100%; height: 100%; position: fixed; left: 0px; top: 0px; background: url('../images/overlay-mask.png'); z-index: 9; }
html body div.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable div.ui-dialog-titlebar.ui-widget-header.ui-corner-all.ui-helper-clearfix {background:none; color:#fff;border:none;}
html body div.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable div.ui-dialog-titlebar.ui-widget-header.ui-corner-all.ui-helper-clearfix button.ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-icon-only.ui-dialog-titlebar-close {margin-top:2px; margin-right:5px; margin-bottom:3px;}
html body div.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable div.ui-dialog-titlebar.ui-widget-header.ui-corner-all.ui-helper-clearfix button.ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-icon-only.ui-dialog-titlebar-close span.ui-button-icon-primary.ui-icon.ui-icon-closethick {filter:grayscale(100%);}
html body div.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable div.ui-dialog-titlebar.ui-widget-header.ui-corner-all.ui-helper-clearfix button.ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-icon-only.ui-dialog-titlebar-close {border:none;z-index: 99;width:30px;height:30px;}
html body div.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable {width:500px; background: none; background-color: #FFF; text-align:center; color: #FFF;}
/*html body div.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable p {color: #FFF;}*/
html body div.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable.ui-resizable div#dialog.ui-dialog-content.ui-widget-content a button.edit-btn:hover {
    background: #269fdc;
    color:#FFF;
}

#button-small-window-redirect {padding:7px 10px; margin-bottom: 20px; border-radius:5px; background: none; border: 1px solid #269fdc; color:#269fdc; font-size:11px; margin-left:20px; vertical-align:middle; cursor:pointer; text-decoration: none; font-size: 16px; font-weight: 300; display: inline-block;-webkit-transition: all 0.1s ease-in-out; -moz-transition: all 0.1s ease-in-out; -ms-transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out;}
#button-small-window-redirect:hover { background: #269fdc; color: #fff;}

.small-in-pricelist {color: #269fdc; font-size: 12px; }


/*koniec cennik*/
/* Komunikaty */
.notification-box { width: 100%; margin: 0px; text-align: center; }
.notification { margin: 0 auto; min-width: 320px; position: relative;  text-align: left;  }
.notification a.close-notification { position: absolute; right: 32px; top: 16px; }
.notification p { padding: 16px 30px; line-height: 20px; font-size: 14px; font-family: 'Open Sans', Arial, sans-serif; font-weight: normal; text-align: center; }
.notification p b, .notification p strong { font-weight: 600; }

.notify-ok {
             background: #cfeba1; /* Old browsers */
             background-image: url('../../assets/backend/images/notify-ok-bg.png');
             background: url('../../assets/backend/images/notify-ok-bg.png') no-repeat 30px center, -moz-linear-gradient(top,  #cfeba1 0%, #bfe388 100%); /* FF3.6+ */
             background: url('../../assets/backend/images/notify-ok-bg.png') no-repeat 30px center, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cfeba1), color-stop(100%,#bfe388)); /* Chrome,Safari4+ */
             background: url('../../assets/backend/images/notify-ok-bg.png') no-repeat 30px center, -webkit-linear-gradient(top,  #cfeba1 0%,#bfe388 100%); /* Chrome10+,Safari5.1+ */
             background: url('../../assets/backend/images/notify-ok-bg.png') no-repeat 30px center, -o-linear-gradient(top,  #cfeba1 0%,#bfe388 100%); /* Opera 11.10+ */
             background: url('../../assets/backend/images/notify-ok-bg.png') no-repeat 30px center, -ms-linear-gradient(top,  #cfeba1 0%,#bfe388 100%); /* IE10+ */
             background: url('../../assets/backend/images/notify-ok-bg.png') no-repeat 30px center, linear-gradient(to bottom,  #cfeba1 0%,#bfe388 100%); /* W3C */
             filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cfeba1', endColorstr='#bfe388',GradientType=0 ); /* IE6-9 */
}
.notify-ok p { color: #4d6f14; }

.notify-attention {
                    margin-top: 0;
                    background: #fff6db; /* Old browsers */
                    background-image: url('../images/notify-attention-bg.png');
                    background: url('../../assets/backend/images/notify-attention-bg.png') no-repeat 30px center, -moz-linear-gradient(top,  #fff6db 0%, #ffeebe 100%); /* FF3.6+ */
                    background: url('../../assets/backend/images/notify-attention-bg.png') no-repeat 30px center, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff6db), color-stop(100%,#ffeebe)); /* Chrome,Safari4+ */
                    background: url('../../assets/backend/images/notify-attention-bg.png') no-repeat 30px center, -webkit-linear-gradient(top,  #fff6db 0%,#ffeebe 100%); /* Chrome10+,Safari5.1+ */
                    background: url('../../assets/backend/images/notify-attention-bg.png') no-repeat 30px center, -o-linear-gradient(top,  #fff6db 0%,#ffeebe 100%); /* Opera 11.10+ */
                    background: url('../../assets/backend/images/notify-attention-bg.png') no-repeat 30px center, -ms-linear-gradient(top,  #fff6db 0%,#ffeebe 100%); /* IE10+ */
                    background: url('../../assets/backend/images/notify-attention-bg.png') no-repeat 30px center, linear-gradient(to bottom,  #fff6db 0%,#ffeebe 100%); /* W3C */
                    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff6db', endColorstr='#ffeebe',GradientType=0 ); /* IE6-9 */
}
.notify-attention p { color: #a47625; padding: 15px 60px;}

.notify-info {
               background: #def1ff; /* Old browsers */
               background:  -moz-linear-gradient(top,  #def1ff 0%, #c3e3ff 100%); /* FF3.6+ */
               background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#def1ff), color-stop(100%,#c3e3ff)); /* Chrome,Safari4+ */
               background: -webkit-linear-gradient(top,  #def1ff 0%,#c3e3ff 100%); /* Chrome10+,Safari5.1+ */
               background: -o-linear-gradient(top,  #def1ff 0%,#c3e3ff 100%); /* Opera 11.10+ */
               background:  -ms-linear-gradient(top,  #def1ff 0%,#c3e3ff 100%); /* IE10+ */
               background: linear-gradient(to bottom,  #def1ff 0%,#c3e3ff 100%); /* W3C */
               filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#def1ff', endColorstr='#c3e3ff',GradientType=0 ); /* IE6-9 */
}
.notify-info p { color: #346997; }

.notify-error {
	background: #ffacab; /* Old browsers */
	background-image: url('../images/notify-error-bg.png');
	background: url('../images/notify-error-bg.png') no-repeat 30px center, -moz-linear-gradient(top,  #ffacab 0%, #ff7877 100%); /* FF3.6+ */
	background: url('../images/notify-error-bg.png') no-repeat 30px center, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffacab), color-stop(100%,#ff7877)); /* Chrome,Safari4+ */
	background: url('../images/notify-error-bg.png') no-repeat 30px center, -webkit-linear-gradient(top,  #ffacab 0%,#ff7877 100%); /* Chrome10+,Safari5.1+ */
	background: url('../images/notify-error-bg.png') no-repeat 30px center, -o-linear-gradient(top,  #ffacab 0%,#ff7877 100%); /* Opera 11.10+ */
	background: url('../images/notify-error-bg.png') no-repeat 30px center, -ms-linear-gradient(top,  #ffacab 0%,#ff7877 100%); /* IE10+ */
	background: url('../images/notify-error-bg.png') no-repeat 30px center, linear-gradient(to bottom,  #ffacab 0%,#ff7877 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffacab', endColorstr='#ff7877',GradientType=0 ); /* IE6-9 */
}
.notify-error p { color: #82333b; }
.notify-error ul { margin-left: 100px; padding: 20px 0; }

.btn { border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px;  	
       background: #269FDC; 
       /*background: -moz-linear-gradient(top,  #183c70 0%, #122c56 100%); 
       background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#183c70), color-stop(100%,#122c56)); 
       background: -webkit-linear-gradient(top, #183c70 0%,#122c56 100%); 
       background: -o-linear-gradient(top, #183c70 0%,#122c56 100%); 
       background: -ms-linear-gradient(top, #183c70 0%,#122c56 100%); 
       background: linear-gradient(to bottom, #183c70 0%,#122c56 100%);
       filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#183c70', endColorstr='#122c56',GradientType=0 );*/ 	
       color: #fff; cursor: pointer; display: inline-block; font-size: 14px; font-weight: 400; padding: 4px 16px; text-decoration: none; vertical-align: middle; 
       text-decoration: none;
       border: 1px solid #4084EA;
}
.btn:hover { background: #1E7AA9; color: #fff; text-decoration: none; }

.btn-grey { border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; 
            border: 1px solid #d0d0d0; 	
            background: #ffffff; /* Old browsers */
            /* IE9 SVG, needs conditional override of 'filter' to 'none' */
            background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlNWU1ZTUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
            background: -moz-linear-gradient(top,  #ffffff 0%, #e5e5e5 100%); /* FF3.6+ */
            background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */
            background: -webkit-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%); /* Chrome10+,Safari5.1+ */
            background: -o-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%); /* Opera 11.10+ */
            background: -ms-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%); /* IE10+ */
            background: linear-gradient(to bottom,  #ffffff 0%,#e5e5e5 100%); /* W3C */
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-8 */
            cursor: pointer; display: inline-block; font-size: 14px; font-weight: 400; padding: 4px 16px; text-decoration: none; vertical-align: middle; 
            text-decoration: none;
}
.btn-grey:hover { background: #e5e5e5; text-decoration: none; }

.btn-red { border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px;
           border: 1px solid #ea4440;
           background: #eb716e; /* Old browsers */
           color: #fff; cursor: pointer; display: inline-block; font-size: 14px; font-weight: 400; padding: 4px 16px; text-decoration: none; vertical-align: middle;
           text-decoration: none; }

.btn-red:hover { background: #ea4440; color: #fff; text-decoration: none; }

.glicon {
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-decoration: none !important;
}

a:hover .glicon { text-decoration: none; }

.gl-office:before {
    content: "\e66e";
}
.gl-file:before {
    content: "\e648";
}
.gl-profile:before {
    content: "\e649";
}
.gl-file2:before {
    content: "\e64a";
}
.gl-file3:before {
    content: "\e64b";
}
.gl-copy:before {
    content: "\e64c";
}
.gl-copy2:before {
    content: "\e64d";
}
.gl-copy3:before {
    content: "\e64e";
}
.gl-paste:before {
    content: "\e64f";
}
.gl-paste2:before {
    content: "\e650";
}
.gl-paste3:before {
    content: "\e651";
}
.gl-coin:before {
    content: "\e647";
}
.gl-phone:before {
    content: "\e66f";
}
.gl-location:before {
    content: "\e652";
}
.gl-location2:before {
    content: "\e653";
}
.gl-compass:before {
    content: "\e670";
}
.gl-map:before {
    content: "\e671";
}
.gl-history:before {
    content: "\e654";
}
.gl-alarm:before {
    content: "\e655";
}
.gl-alarm2:before {
    content: "\e656";
}
.gl-bell:before {
    content: "\e657";
}
.gl-stopwatch:before {
    content: "\e658";
}
.gl-disk:before {
    content: "\e687";
}
.gl-bubbles:before {
    content: "\e659";
}
.gl-bubbles2:before {
    content: "\e65a";
}
.gl-user:before {
    content: "\e65b";
}
.gl-search:before {
    content: "\e646";
}
.gl-key:before {
    content: "\e672";
}
.gl-key2:before {
    content: "\e673";
}
.gl-lock:before {
    content: "\e674";
}
.gl-unlocked:before {
    content: "\e675";
}
.gl-cog:before {
    content: "\e676";
}
.gl-cogs:before {
    content: "\e677";
}
.gl-cog2:before {
    content: "\e678";
}
.gl-stats:before {
    content: "\e679";
}
.gl-bars:before {
    content: "\e67a";
}
.gl-signup:before {
    content: "\e688";
}
.gl-eye:before {
    content: "\e67b";
}
.gl-eye-blocked:before {
    content: "\e67c";
}
.gl-eye2:before {
    content: "\e67d";
}
.gl-loop:before {
    content: "\e67e";
}
.gl-code:before {
    content: "\e67f";
}
.gl-mail:before {
    content: "\e680";
}
.gl-mail2:before {
    content: "\e681";
}
.gl-mail3:before {
    content: "\e682";
}
.gl-mail4:before {
    content: "\e683";
}
.gl-libreoffice:before {
    content: "\e65c";
}
.gl-file-pdf:before {
    content: "\e65d";
}
.gl-file-openoffice:before {
    content: "\e65e";
}
.gl-file-word:before {
    content: "\e65f";
}
.gl-file-excel:before {
    content: "\e660";
}
.gl-file-zip:before {
    content: "\e661";
}
.gl-file-powerpoint:before {
    content: "\e662";
}
.gl-file-xml:before {
    content: "\e663";
}
.gl-file-css:before {
    content: "\e664";
}
.gl-key3:before {
    content: "\e665";
}
.gl-search2:before {
    content: "\e666";
}
.gl-mail5:before {
    content: "\e667";
}
.gl-note:before {
    content: "\e668";
}
.gl-banknote:before {
    content: "\e669";
}
.gl-data:before {
    content: "\e66a";
}
.gl-megaphone:before {
    content: "\e66b";
}
.gl-study:before {
    content: "\e66c";
}
.gl-calendar:before {
    content: "\e66d";
}
.gl-phone2:before {
    content: "\e600";
}
.gl-mobile:before {
    content: "\e601";
}
.gl-mouse:before {
    content: "\e684";
}
.gl-mail22:before {
    content: "\e602";
}
.gl-pencil:before {
    content: "\e603";
}
.gl-paperclip:before {
    content: "\e604";
}
.gl-reply:before {
    content: "\e605";
}
.gl-forward:before {
    content: "\e606";
}
.gl-user2:before {
    content: "\e607";
}
.gl-users:before {
    content: "\e608";
}
.gl-user-add:before {
    content: "\e609";
}
.gl-location3:before {
    content: "\e60a";
}
.gl-map2:before {
    content: "\e685";
}
.gl-compass2:before {
    content: "\e60b";
}
.gl-heart:before {
    content: "\e60c";
}
.gl-heart2:before {
    content: "\e60d";
}
.gl-star:before {
    content: "\e60e";
}
.gl-star2:before {
    content: "\e60f";
}
.gl-thumbsup:before {
    content: "\e610";
}
.gl-thumbsdown:before {
    content: "\e611";
}
.gl-chat:before {
    content: "\e612";
}
.gl-quote:before {
    content: "\e613";
}
.gl-house:before {
    content: "\e614";
}
.gl-search22:before {
    content: "\e615";
}
.gl-printer:before {
    content: "\e616";
}
.gl-bell2:before {
    content: "\e617";
}
.gl-cog22:before {
    content: "\e618";
}
.gl-tag:before {
    content: "\e619";
}
.gl-new:before {
    content: "\e61a";
}
.gl-graduation:before {
    content: "\e61b";
}
.gl-eye3:before {
    content: "\e61c";
}
.gl-clock:before {
    content: "\e61d";
}
.gl-calendar2:before {
    content: "\e61e";
}
.gl-briefcase:before {
    content: "\e61f";
}
.gl-gauge:before {
    content: "\e620";
}
.gl-key22:before {
    content: "\e621";
}
.gl-suitcase:before {
    content: "\e622";
}
.gl-earth:before {
    content: "\e623";
}
.gl-progress-3:before {
    content: "\e624";
}
.gl-progress-2:before {
    content: "\e625";
}
.gl-brogress-1:before {
    content: "\e626";
}
.gl-progress-0:before {
    content: "\e627";
}
.gl-clipboard:before {
    content: "\e628";
}
.gl-cart:before {
    content: "\e629";
}
.gl-pie:before {
    content: "\e62a";
}
.gl-bars2:before {
    content: "\e62b";
}
.gl-lock2:before {
    content: "\e62c";
}
.gl-lock-open:before {
    content: "\e62d";
}
.gl-checkmark:before {
    content: "\e62e";
}
.gl-cross:before {
    content: "\e62f";
}
.gl-minus:before {
    content: "\e630";
}
.gl-plus:before {
    content: "\e631";
}
.gl-cross2:before {
    content: "\e632";
}
.gl-info:before {
    content: "\e633";
}
.gl-warning:before {
    content: "\e634";
}
.gl-cycle:before {
    content: "\e635";
}
.gl-cw:before {
    content: "\e636";
}
.gl-ccw:before {
    content: "\e637";
}
.gl-history2:before {
    content: "\e638";
}
.gl-text:before {
    content: "\e686";
}
.gl-trash:before {
    content: "\e639";
}
.gl-arrow-left:before {
    content: "\e63a";
}
.gl-arrow-down:before {
    content: "\e63b";
}
.gl-arrow-up:before {
    content: "\e63c";
}
.gl-arrow-left2:before {
    content: "\e63d";
}
.gl-arrow-down2:before {
    content: "\e63e";
}
.gl-arrow-up2:before {
    content: "\e63f";
}
.gl-arrow-right:before {
    content: "\e640";
}
.gl-ellipsis:before {
    content: "\e641";
}
.gl-twitter:before {
    content: "\e642";
}
.gl-facebook:before {
    content: "\e643";
}
.gl-googleplus:before {
    content: "\e644";
}
.gl-linkedin:before {
    content: "\e645";
}

/* JS Style */
.c-menu { display: none; }
.candidate-menu { background-color: #269FDC; width: 100%; color: #fff; font-size: 16px; font-weight: 700; position: relative; }
.candidate-menu:hover {cursor:pointer;}
.candidate-menu p { padding: 10px; }
.candidate-menu span { position: absolute; top: 5px; right: 5px; font-size: 32px; font-weight: 700; }
.c-menu .editable #interest p{padding: 10px 0;}


@media screen and (max-width: 980px ) {
  #subpage .left-13 { width: 100%; float: none; margin-bottom: 30px; }
  .left-editable { box-sizing: border-box; overflow: hidden; }
  .left-editable ul.submenu { width: 100%; border: none;} 
  .left-editable ul.submenu li { float: left; width: 180px; }
  .left-editable ul.submenu li a { width: 100%; text-align: center; padding: 10px 0; border: none;}
  .left-editable h2 { text-align: center; }
  #subpage .right-23 { width: 100%; }
}

@media screen and (max-width: 720px ) {
  .left-editable ul.submenu li { float: none; width: 100%; }
}

.error-still-working{left: 0; min-width: 330px;}

@media screen and (max-width: 768px) {
    #pricelist .pricelist-table-style-new {padding-left: 0;}
    #pricelist .editable h2 {font-size: 20px; }
    #pricelist .editable h2 span {font-size: 18px;}
}
@media screen and (max-width: 520px) {
    #pricelist .editable h2 {font-size: 18px; }
    #pricelist .editable h2 span {font-size: 16px;}
}
@media screen and (max-width: 420px) {
    #pricelist .editable h2 {font-size: 16px; }
    #pricelist .editable h2 span {font-size: 14px;}
    #pricelist .editable h3 {font-size: 14px}
}