/* Global */
html, body
{
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: SSThin, "SansSerif", "Arial";
  text-rendering: optimizeLegibility !important;
}

body
{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

*
{
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  -ms-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

.clearafter:after
{
  content: "";
  display: block;
  clear: both;
  line-height: 0;
}

.noScroll
{
  overflow: hidden;
}

input, textarea, #addContest .languageAvailable
{
  font-size: 15px;
  font-family: SSThin;
  padding-left: 10px;
  padding-right: 10px;
  outline: none;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #000;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #000;
}
:-moz-placeholder { /* Firefox 18- */
  color: #000;
}

textarea
{
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Fonts */
@font-face
{
  font-family: 'SSUltraThin';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/SourceSansPro-ExtraLight.woff') format('woff');
}

@font-face
{
  font-family: 'SSThin';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/SourceSansPro-Light.woff') format('woff');
}

@font-face
{
  font-family: 'SSRegular';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/SourceSansPro-Regular.woff') format('woff');
}

h1, h2, h3, h4, p
{
  margin: 0;
  padding: 0;
}

h1
{
  font-family: SSUltraThin;
  margin-bottom: 30px;
}

a
{
  color: #0074af;
  text-decoration: none;
}

a:hover, a:visited
{
  color: #0074af;
  text-decoration: underline;
}

p
{
  max-width: 1060px;
  line-height: 23px;
}


/* Layout */
.body
{
  min-height: 100%;
  position: relative;
}

.bar
{
  position: fixed;
  left: 0;
  background-color: #17334c;
  width: 80px;
  height: 100%;
  z-index: 10;
}

.bar ul, .bar li, ol
{
  margin: 0;
  padding: 0;
}

.bar ul
{
  position: absolute;
  width: 100%;
  top: 25px;
  list-style: none;
}

.bar li
{
  width: 100%;
  height: 50px;
}

.bar li a
{
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 50px;
  opacity: 0.4;
  transition: .1s ease-out; -moz-transition: .1s ease-out; -ms-transition: .1s ease-out; -o-transition: .1s ease-out; -webkit-transition: .1s ease-out;
}

.bar li a:hover, .bar li a.selected
{
  opacity: 1;
  transition: .1s ease-out; -moz-transition: .1s ease-out; -ms-transition: .1s ease-out; -o-transition: .1s ease-out; -webkit-transition: .1s ease-out;
}

.bar li a .icon
{
  display: inline-block;
  background: url("../images/navigation_sprite.png") no-repeat;
  width: 20px;
}

.bar li.open
{
  background-color: #fff;
}

.bar li a .icon.home
{
  height: 21px;
}

.bar li a .icon.add
{
  height: 20px;
  background-position: 0 -21px;
}

.bar li a .icon.contact
{
  height: 14px;
  background-position: 0 -41px;
}

.bar li a .icon.tips
{
  height: 20px;
  background-position: 0 -55px;
}

.bar li a .icon.tags
{
  height: 18px;
  margin-top: 17px;
  background-position: 0 -75px;
}

.bar li.open a .icon.tags
{
  background-position: -20px -75px;
}

.tagsMenu
{
  visibility: hidden;
  background-color: #fff;
  position: absolute;
  left: 80px;
  width: 250px;
  padding: 30px;
  overflow-y: auto;
  max-height: 800px;
  -webkit-box-shadow: 0 10px 20px 5px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 10px 20px 5px rgba(0,0,0,0.1);
  box-shadow: 0 10px 20px 5px rgba(0,0,0,0.1);
}

.tagsMenu.open
{
  visibility: visible;
}

.tagsMenu .tag
{
  text-transform: capitalize;
  margin-bottom: 10px;
}

.tagsMenu .tag:hover
{
  cursor: default;
}

.tagsMenu .tag:last-child
{
  margin-bottom: 0;
}

.content
{
  height: 100%;
  width: 100%;
  padding-left: 80px; /* Should be width of the navigation bar */
  padding-bottom: 150px; /* Should be the height of the footer element */
  position: relative;
}

.content .inner
{
  width: 100%;
  padding: 50px 100px;
}

.header
{
  position: relative;
  width: 100%;
  height: 90px;
}

.header.frontpage
{
  height: 600px;
  background: url('../images/header_background.jpg') no-repeat center center;
  background-size: cover;
}

.header.frontpage *
{
  color: #fff !important;
}

.frontpage_header_container
{
  width: 600px;
  position: absolute;
  left: 100px;
  bottom: 100px;
}

.frontpage_header_container .text_link
{
  margin-left: 20px;
}

.frontpage_header_container h1
{
  font-size: 40px;
}

.frontpage_header_container p, .spotlight .text p
{
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 50px;
}

.spotlight
{
  display: none;
  width: 420px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: rgba(0,0,0,0.5);
}

.spotlight .icon
{
  width: 80px;
  height: 59px;
  background: url('../images/spotlight.png') no-repeat;
  position: absolute;
  left: 170px;
  top: 150px;
}

.spotlight .text
{
  text-align: center;
  position: absolute;
  top: 240px;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}

.spotlight .text p
{
  margin-top: 25px;
}

.logo
{
  width: 174px;
  height: 30px;
  position: absolute;
  top: 30px;
  left: 30px;
  display: block;
}

.logo.nl
{
  background: url('../images/logo_sprite.png') no-repeat 0 -30px;
}

.logo.international
{
  background: url('../images/logo_sprite_int.png') no-repeat 0 -30px;
}

.frontpage .logo
{
  background-position: 0 0;
}

/* Footer */

.footer
{
  width: 100%;
  height: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-left: 80px; /* Same width as .bar */
  text-align: left;
  position: absolute;
  bottom: 0;
}

.footer .links a
{
  color: #000;
  margin-right: 20px;
}

.footer .links, .footer .copyright
{
  padding-left: 100px;
}

.footer .copyright
{
  margin-top: 10px;
  margin-bottom: 10px;
  color: #8d8d8d;
}

.footer .copyright a
{
  color: #8d8d8d;
}

.footer .language
{
  display: inline;
  position: relative;
  cursor: pointer;
}

.footer .language .current
{
  display: inline;
}

.footer .language .current:after
{
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  position: absolute;
  right: -15px;
  top: 8px;
}

.footer .language.open .current:after
{
  border-top: 0;
  border-bottom: 5px solid #000;
}

.footer .language.open  .picker
{
  display: block;
  -webkit-animation: fadeIn .5s 1; /* Safari 4+ */
  -moz-animation:    fadeIn .5s 1; /* Fx 5+ */
  -o-animation:      fadeIn .5s 1; /* Opera 12+ */
  animation:         fadeIn .5s 1; /* IE 10+, Fx 29 */

}

.footer .language .picker
{
  cursor: default;
  display: none;
  position: absolute;
  bottom: 30px;
  left: 0;
  padding: 25px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 2px 0 rgba(0,0,0,0.4);
  -moz-box-shadow: 0 0 2px 0 rgba(0,0,0,0.4);
  box-shadow: 0 0 2px 0 rgba(0,0,0,0.4);
}

.footer .language .picker ul, .footer .language .picker li
{
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer .language .picker li:hover
{
  cursor: pointer;
  text-decoration: underline;
}

.footer .language .picker li.selected:before
{
  content: "";
  background: url("../images/check.png") no-repeat;
  width: 11px;
  height: 8px;
  position: absolute;
  left: -16px;
  top: 7px;
}

.footer .language .picker li
{
  position: relative;
  margin-bottom: 10px;
}

.footer .language .picker li:last-child
{
  margin-bottom: 0;
}

.picker:after
{
  content: "";
  background: url("../images/language_menu_arrow-down.png") no-repeat;
  width: 10px;
  height: 6px;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.footer .social
{
  float: right;
  text-align: right;
  height: 40px;
  padding-right: 100px;
}

.footer .social a
{
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url("../images/social_sprite.png") no-repeat;
  margin-left: 10px;
}

.footer .social a.twitter
{
  background-position: 0 0;
  margin-left: 0;
}

.footer .social a.facebook
{
  background-position: -40px 0;
}

.footer .social a.linkedin
{
  background-position: -80px 0;
}

/* Contest overview */
.backToTop
{
  width: 40px;
  height: 40px;
  background: url("../images/top.png") no-repeat;
  margin: 0 auto;
  margin-top: 30px;
  position: relative;
}

.backToTop:hover
{
  cursor: pointer;
  opacity: 0.9;
}

.filter
{
  position: absolute;
  right: 0;
  top: -70px;
  width: 200px;
  text-align: right;
}

.filter .selector
{
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-right: 15px;
}

.filter .selector:after
{
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  position: absolute;
  right: 0;
  top: 9px;
}

.filter li, .dropdown li
{
  position: relative;
  padding-left: 50px !important;
}

.filter li.checked:before, .dropdown li.checked:before
{
  content: "";
  background: url('../images/check.png') no-repeat;
  width: 11px;
  height: 8px;
  position: absolute;
  left: 25px;
  top: 22px;
}

.filter li.checked:hover:before, .dropdown li.checked:hover:before
{
  background: url('../images/check_white.png') no-repeat;
}

/* Overview */

.contests
{
  position: relative;
  width: 100%;
}

.contest_row
{
  width: 100%;
  height: 70px;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.contest_row.new, .contest_row.pay, .contest_row.tip
{
  overflow: visible;
}

.contest_row.new .specialIcon, .contest_row.tip .specialIcon
{
  width: 36px;
  height: 37px;
  display: inline-block;
  position: absolute;
  left: -50px;
  top: 13px;
  -webkit-animation: bounce 1s infinite; /* Safari 4+ */
  -moz-animation:    bounce 1s infinite; /* Fx 5+ */
  -o-animation:      bounce 1s infinite; /* Opera 12+ */
  animation:         bounce 1s infinite; /* IE 10+, Fx 29+ */
}

.contest_row.new .specialIcon:hover, .contest_row.tip .specialIcon:hover
{
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

.contest_row.new .specialIcon
{
  background: url('../images/new.png') no-repeat;
}

.contest_row.tip .specialIcon
{
  background: url('../images/tip.png') no-repeat;
}

.contest_row.pay .specialIcon
{
  content: "";
  background: url('../images/pay_to_enter.png') no-repeat;
  width: 36px;
  height: 37px;
  display: inline-block;
  position: absolute;
  left: -50px;
  top: 13px;
}

.contest_row.new .left, .contest_row.pay .left, .contest_row.tip
{
  background-color: transparent;
}

@-webkit-keyframes bounce
{
  0% {  transform: scale(1);  }
  50% {  transform: scale(0.9);  }
  100% {  transform: scale(1);  }
}
@-moz-keyframes bounce
{
  0% {  transform: scale(1);  }
  50% {  transform: scale(0.9);  }
  100% {  transform: scale(1);  }
}
@-o-keyframes bounce
{
  0% {  transform: scale(1);  }
  50% {  transform: scale(0.9);  }
  100% {  transform: scale(1);  }
}
@keyframes bounce
{
  0% {  transform: scale(1);  }
  50% {  transform: scale(0.9);  }
  100% {  transform: scale(1);  }
}

.contest_row:last-child
{
  margin-bottom: 0;
}

.contest_row .left
{
  width: 175px;
  position: absolute;
  background-color: #fff;
}

.contest_row .middle
{
  overflow: hidden;
  margin-left:195px;
  margin-right: 640px;
}

.contest_row .right
{
  width: 675px;
  position: absolute;
  right: 0;
  top: 0;
}

.contest_row .contest_info
{
  width: 100%;
  height: 50px;
  margin-left: 12px;
  margin-top: 12px;
}

.contest_row .contest_info h3, .contest_row .contest_info p
{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contest_row .contest_info p
{
  font-style: italic;
}

.contest_row .contest_prizes
{
  margin-left: 20px;
  padding-left: 35px;
  height: 70px;
  line-height: 70px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: url('../images/prizes.png') no-repeat center left;
}

.contest_row .contest_dates, .contest_row .contest_enter, .contest_row .contest_more, .contest_row .contest_language
{
  float: right;
  height: 70px;
  line-height: 70px;
}

.contest_row .contest_language
{
  padding-left: 20px;
  color: #8d8d8d;
  /*right: 485px;*/
  text-align: right;
}

.contest_row .contest_language span:after
{
  content: " / ";
}

.contest_row .contest_language span:last-child:after
{
  content: "";
}

.contest_row .contest_dates
{
  width: 200px;
  text-align: center;
  right:285px;
  color: #8d8d8d;
  font-size: 15px;
}

.contest_row .contest_enter
{
  /*right: 70px;*/
  width: 215px;
  text-align: center;
}

.contest_row .contest_enter .button
{
  width: 100%;
}

.button
{
  font-size: 13px;
  height: 45px;
  line-height: 45px;
  border: 1px solid #000;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  color: #000 !important;
  display: inline-block;
  transition: .1s ease-out; -moz-transition: .1s ease-out; -ms-transition: .1s ease-out; -o-transition: .1s ease-out; -webkit-transition: .1s ease-out;
}

.text_link
{
  height: 45px;
  line-height: 45px;
}

.frontpage .button
{
  border-color: #fff !important;
}

.contest_details .button
{
  float: left;
}

.button:hover, .contest_row .contest_more:hover
{
  cursor: pointer;
  opacity: 0.5;
  text-decoration: none;
  transition: .1s ease-out; -moz-transition: .1s ease-out; -ms-transition: .1s ease-out; -o-transition: .1s ease-out; -webkit-transition: .1s ease-out;
}

.contest_row .contest_more
{
  width: 70px;
  /*position: absolute;*/
  display: block;
  background: url('../images/more.png') no-repeat center center;
  /*right: 0;*/
  float: right;
}

.contest_details p
{
  margin-top: 5px;
  margin-bottom: 5px;
}

.contest_details .runtime
{
  color: #8d8d8d;
  font-size: 15px;
}

.contest_details .prizes ol
{
  padding-left: 20px;
}

.contest_details .prizes ol li
{
  margin-bottom: 5px;
}

.contest_details .prizes ol li:last-child
{
  margin-bottom: 0;
}

.contest_details h3
{
  margin-top: 30px;
  margin-bottom: 10px;
}

.contest_details .tags span
{
  padding: 5px;
  background-color: #dcf3ff;
  border-radius: 3px;
  margin-right: 2px;
  text-transform: capitalize;
}

.contest_details .tags span:last-child
{
  margin-right: 0;
}

.contest_options
{
  margin-top: 30px;
}

/* Social media buttons */
.share
{
  width: 45px;
  height: 45px;
  margin-left: 5px;
  float: left;
  background-size: cover !important;
  opacity: 1;
  transition: .1s ease-out; -moz-transition: .1s ease-out; -ms-transition: .1s ease-out; -o-transition: .1s ease-out; -webkit-transition: .1s ease-out;
}

.share:hover
{
  cursor: pointer;
  opacity: 0.8;
  transition: .1s ease-out; -moz-transition: .1s ease-out; -ms-transition: .1s ease-out; -o-transition: .1s ease-out; -webkit-transition: .1s ease-out;
}

.share.facebook
{
  background: url('../images/social_facebook_256.png') no-repeat;
}

.share.twitter
{
  background: url('../images/social_twitter_256.png') no-repeat;
}

.share.pinterest
{
  background: url('../images/social_pinterest_256.png') no-repeat;
}

/* Add contest / Contact */
#contact, #contactSent
{
  margin-top: 50px;
}

.contactTable
{
  margin-bottom: 30px;
}

#addContestForm, #contactForm
{
  width: 600px;
  margin-top: 30px;
  margin-bottom: 30px;
}

#addContestForm h2, #contactForm h2
{
  margin-top: 50px;
  margin-bottom: 25px;
}

#addContestForm .button, #contactForm .button
{
  margin-top: 30px;
}

#contestAdded, #contactSent
{
  margin-bottom: 30px;
  display: none;
}

.input_row, .text_row
{
  width: 100%;
  margin-bottom: 10px;
  position: relative;
}

.label
{
  width: 120px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}

.input_row input, .text_row textarea, #addContest .languageAvailable
{
  border: 1px solid #dbdbdb;
}

.input_row input[type=text], .text_row textarea, #addContest .languageAvailable
{
  width: 480px;
  max-width: 480px;
}

.text_row textarea
{
  height: 120px;
  max-height: 120px;
}

.input_row input[type=text], #addContest .languageAvailable
{
  height: 40px;
}

.input_row input[type=text], .input_row input[name=start_day], .input_row input[name=end_day], .text_row textarea, #addContest .button, #contact .button, #addContest .languageAvailable
{
  margin-left: 120px;
}

.date input[name=start_day], .date input[name=start_month], .date input[name=start_year],
.date input[name=end_day], .date input[name=end_month], .date input[name=end_year]
{
  width: 153.33px;
}

.date input[name=start_month], .date input[name=start_year],
.date input[name=end_month], .date input[name=end_year]
{
  margin-left: 10px;
}

.input_row input[type=radio]
{
  display: none;
}

.input_row input[type=radio] + label
{
  margin-left: 30px;
}

.input_row input[type=radio] + label span
{
  display:inline-block;
  width:20px;
  height:20px;
  border-radius: 50%;
  border: 1px solid #dbdbdb;
  margin:-1px 4px 0 0;
  vertical-align:middle;
  background-color: #fff;
  cursor:pointer;
}

.input_row input[type=radio]:checked + label span:after
{
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000;
  margin-left: 5px;
  margin-top: 5px;
  -webkit-animation: fadeIn .5s 1; /* Safari 4+ */
  -moz-animation:    fadeIn .5s 1; /* Fx 5+ */
  -o-animation:      fadeIn .5s 1; /* Opera 12+ */
  animation:         fadeIn .5s 1; /* IE 10+, Fx 29+ */
}

@-webkit-keyframes fadeIn
{
  0% {  opacity: 0;  }
  100% {  opacity: 1;  }
}
@-moz-keyframes fadeIn
{
  0% {  opacity: 0;  }
  100% {  opacity: 1;  }
}
@-o-keyframes fadeIn
{
  0% {  opacity: 0;  }
  100% {  opacity: 1;  }
}
@keyframes fadeIn
{
  0% {  opacity: 0;  }
  100% {  opacity: 1;  }
}

@-webkit-keyframes fadeOut
{
  0% {  opacity: 1;  }
  100% {  opacity: 0;  }
}
@-moz-keyframes fadeOut
{
  0% {  opacity: 1;  }
  100% {  opacity: 0;  }
}
@-o-keyframes fadeOut
{
  0% {  opacity: 1;  }
  100% {  opacity: 0;  }
}
@keyframes fadeOut
{
  0% {  opacity: 1;  }
  100% {  opacity: 0;  }
}

.morePrizes
{
  width: 20px;
  height: 20px;
  border: 1px solid #4d4d4d;
  border-radius: 50%;
  background: url('../images/plus.png') no-repeat center center;
  position: absolute;
  right: -30px;
  top: 10px;
  cursor: pointer;
  display: none;
}

.prizes .input_row:last-child .morePrizes
{
  display: block;
}
.prizes .input_row.new
{
  -webkit-animation: fadeIn .5s 1; /* Safari 4+ */
  -moz-animation:    fadeIn .5s 1; /* Fx 5+ */
  -o-animation:      fadeIn .5s 1; /* Opera 12+ */
  animation:         fadeIn .5s 1; /* IE 10+, Fx 29+ */
}

.organizer_info
{
  display: none;
  -webkit-animation: fadeIn .5s 1; /* Safari 4+ */
  -moz-animation:    fadeIn .5s 1; /* Fx 5+ */
  -o-animation:      fadeIn .5s 1; /* Opera 12+ */
  animation:         fadeIn .5s 1; /* IE 10+, Fx 29+ */
}

.languages
{
  visibility: hidden;
  opacity: 0;
  margin-top: 2px;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  overflow-y: scroll;
  position: absolute;
  z-index: 10;
  -webkit-box-shadow: 0 10px 20px 5px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 10px 20px 5px rgba(0,0,0,0.1);
  box-shadow: 0 10px 20px 5px rgba(0,0,0,0.1);
  transition: .1s ease-out; -moz-transition: .1s ease-out; -ms-transition: .1s ease-out; -o-transition: .1s ease-out; -webkit-transition: .1s ease-out;
}

.dropdown .languages
{
  width: 480px;
  margin-left: 120px;
  overflow: hidden;
}

.filter .languages
{
  text-align: left;
  width: 300px;
  right: 0;
  top: 22px;
  overflow: hidden;
}

.dropdown.open .languages, .filter.open .languages
{
  visibility: visible;
  height: auto;
  opacity: 1;
  transition: .1s ease-out; -moz-transition: .1s ease-out; -ms-transition: .1s ease-out; -o-transition: .1s ease-out; -webkit-transition: .1s ease-out;
}

.dropdown:after
{
  pointer-events: none;
  content: "";
  position: absolute;
  right: 10px;
  top: 19px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
}

.dropdown.open:after, .filter.open .selector:after
{
  border-top: 0;
  border-bottom: 5px solid #000;
}

#addContest .dropdown .languageAvailable
{
  line-height: 40px;
}

#addContest .dropdown .languageAvailable:hover
{
  cursor: pointer;
}

.languageAvailable span
{
  margin-right: 5px;
}

.languageAvailable span:after
{
  content: ",";
}

.languageAvailable span:last-child:after
{
  content: "";
}

.filter .languageAvailable span
{
  text-transform: uppercase;
  font-size: 14px;
}

.languages
{
  padding-top: 10px;
  padding-bottom: 10px;
}

.languages ul, .countries li
{
  margin: 0;
  padding: 0;
  list-style: none;
}

.languages li
{
  padding: 15px 20px;
  transition: .1s ease-out; -moz-transition: .1s ease-out; -ms-transition: .1s ease-out; -o-transition: .1s ease-out; -webkit-transition: .1s ease-out;
}

.languages li:hover
{
  cursor: pointer;
  color: #fff;
  background-color: #0074af;
  transition: .1s ease-out; -moz-transition: .1s ease-out; -ms-transition: .1s ease-out; -o-transition: .1s ease-out; -webkit-transition: .1s ease-out;
}

.checkbox {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  float: left;
  margin-right: 10px;
}

#addContest .checkbox
{
  float: none !important;
  display: inline-block;
  position: absolute;
  left: 120px;
}

.checkbox label {
  cursor: pointer;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  background-color: #fff;
}

.checkbox label:after {
  filter: alpha(opacity=0);
  opacity: 0;
  content: '';
  position: absolute;
  width: 11px;
  height: 8px;
  background: url("../images/check.png") no-repeat;
  margin-top: 5px;
  margin-left: 3px;
}

.input_row .info
{
  position: absolute;
  left: 150px;
  top: 3px;
  font-style: italic;
  font-size: 12px;
}

.languages li:hover .checkbox label:after, .tag:hover .checkbox label:after, #addContest .checkbox label:after
{
  opacity: 0.3;
}

#addContest .checkbox:hover label:after
{
  opacity: 1;
}

.checkbox input[type=checkbox]:checked + label:after, .tag.checked input[type=checkbox] + label:after, #addContest .checkbox input[type=checkbox]:checked + label:after
{
  opacity: 1;
}

/* Tips & Tricks */
.tipsntricks
{
  width: 1060px;
  margin-top: 50px;
  counter-reset: counter;
}

.tipsntricks li
{
  position: relative;
  list-style-type: none;
}

.tipsntricks li:before
{
  width: 20px;
  color: #ccc;
  /*content: counter(counter) ".";*/
  counter-increment: counter;
  position: absolute;
  left: -35px;
  text-align: right;
  top: 0;
  font-size: 18px;
}

.tipsntricks h2
{
  margin-bottom: 5px;
  font-weight: bold;
}

.tipsntricks h3
{
  margin-top: 30px;
  margin-bottom: 3px;
  font-weight: 100;
}

.tipsntricks p
{
  margin-bottom: 30px;
}

.tipsntricks .column_left
{
  float: left;
}

.tipsntricks .column_right
{
  float: right;
}

.tipsntricks .column
{
  width: 480px;
  padding-top: 30px;
  border-top: 1px solid #dbdbdb;
}

/* Facebook page */
.blue_box
{
  padding: 60px 60px 60px 230px;
  background-color: #15324d !important;
  color: #fff !important;
  max-width: 1060px;
}

.blue_box h1
{
  margin-bottom: 15px;
}

.blue_box .button
{
  margin-top: 25px;
  border-color: #fff;
  color: #fff !important;
}

.blue_box.facebook
{
  background: url("/skin/images/facebook_thumbsup.png") no-repeat;
  background-position: 60px center;
}

.contest_box
{
  max-width: 1060px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.contest_box .prize_box
{
  width: 35%;
  float: left;
}

.prize_box
{
  text-align: center;
  margin-top: 22px;
}

.prize_box .starting_from, .prize_box .per_month
{
  font-size: 23px;
}

.prize_box .starting_from
{
  text-align: left;
  text-indent: 100px;
}

.prize_box .prize
{
  font-size: 82px;
  margin-top: -20px;
}

.prize_box .per_month
{
  margin-top: -15px;
  text-align: right;
  padding-right:85px;
}

.contest_box .perks
{
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  width: 65%;
  float: right;
}

.contest_box .perks h2
{
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 15px;
}

.contest_box .perks div span:after
{
  content: "•";
  margin-left: 10px;
  margin-right: 10px;
  display: inline-block;
}

.contest_box .perks div span:last-child:after
{
  content: "";
  margin-right: 0;
}

.functions, .contact
{
  max-width: 1060px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact p
{
  margin-bottom: 15px;
}

.functions
{
  border-top: 1px solid #8d8d8d;
  border-bottom: 1px solid #8d8d8d;
}

.functions h2, .contact h2
{
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 30px;
}

.functions .perk
{
  width: 33.33333%;
  margin-bottom: 30px;
  float: left;
  padding-right: 45px;
  padding-left: 77px;
  position: relative;
}

.functions .perk:nth-child(3n)
{
  padding-right: 15px;
}

.functions .perk h3
{
  font-size: 24px;
  font-weight: normal;
}

.functions .perk .perk_icon
{
  width: 57px;
  height: 57px;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center top !important;
  background-repeat: no-repeat;
}

.functions .perk .perk_icon.moderation
{
  background-image: url("/skin/images/contest_perk_1.png");
}

.functions .perk .perk_icon.publish
{
  background-image: url("/skin/images/contest_perk_2.png");
}

.functions .perk .perk_icon.results
{
  background-image: url("/skin/images/contest_perk_3.png");
}

.functions .perk .perk_icon.forms
{
  background-image: url("/skin/images/contest_perk_4.png");
}

.functions .perk .perk_icon.entry_limits
{
  background-image: url("/skin/images/contest_perk_5.png");
}

.functions .perk .perk_icon.vote_limits
{
  background-image: url("/skin/images/contest_perk_6.png");
}

.functions .perk .perk_icon.data
{
  background-image: url("/skin/images/contest_perk_7.png");
}

@media screen and (max-width: 1160px)
{
  /* Facebook page */
  .contest_box .perks, .contest_box .prize_box
  {
    width: 100%;
    float: none;
  }

  .contest_box .prize_box
  {
    margin-bottom: 50px;
  }

  .functions .perk
  {
    padding-right: 30px;
    padding-left: 50px;
  }

  .functions .perk .perk_icon
  {
    width: 30px;
    height: 30px;
    background-size: cover;
  }

  @media screen and (max-width: 900px)
  {
    .functions .perk
    {
      width: 100%;
      float: none;
    }

    .functions .perk .perk_icon
    {
      margin-top: 10px;
    }
  }
}