<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Theme Name: BulldogAwards2017
Theme URI: https://bulldogawards.com
Description: A custom WP theme
Version: 1.0
Author: Agility PR Solutions
Author URI: https://bulldogawards.com
*/

/*
COLORS

Blue: #005594
Dark blue: #002f49 
Gold: #be7f2b 
Brown: #825628 
Dark brown: #664321 

Facebook: #3b5998
Google+: #dd4b39
Twitter: #00aced
RSS: #f60
YouTube: #bb0000
Instagram: #517fa4
Vimeo: #1ab7ea
Pinterest: #cb2027
Linkedin: #0077b5
Soundcloud: #f30 
*/

@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,400i,700,700i|Roboto:300,400,400i,500,500i,700,700i,900,900i|Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');

* {
  /*-webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;*/
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* =============================================================================
   Loading bar
   ========================================================================== */
body {
	overflow-x: hidden;
}
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #be7f2b;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

.mdform .hs_email label span {
	color: #fff;
}

.mdform .hs-error-msgs {
	list-style: none;
}
.mdform .hs-error-msgs li,
.mdform .hs-error-msgs li label{
	color: red;
}

.mdform .actions .hs-button.primary.large {
	background: #c5943d;
    color: #001a38;
    font-weight: bold;
	cursor: pointer;
}
.mdform .actions .hs-button.primary.large:hover,
.mdform .actions .hs-button.primary.large:focus {
	background: #000;
    color: #fff;
}
.mdform .actions input.hs-button.primary.large {
	background: #c5943d;
    color: #001a38;
    font-weight: bold;
	cursor: pointer;
}
.mdform .actions input.hs-button.primary.large:hover,
.mdform .actions input.hs-button.primary.large:focus {
	background: #000;
    color: #fff;
}
.mdform .hs_error_rollup {
	display: none;
}
/* =============================================================================
   Structure
   ========================================================================== */

article, aside, details, figcaption, figure, footer, header, hgroup, nav, main, section { display: block; }
audio[controls], canvas, video { display: inline-block; *display: inline; *zoom: 1; }

html {
  width: 100%;
  font-size: 100%;
  margin: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: none; /* disable webkit text size adjust (for iPhone) */
  overflow-y: scroll;
  overflow-x: hidden; /* prevents right-padding on edge of device screen */
}

body {
  font: 300 17px 'Roboto',helvetica,sans-serif;
  color: #4b5f6e;
  margin: 0;
  padding: 0;
  background: #fff;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(images/transp.png);
  z-index: 90;  
}

.search-panel {
  position: fixed;
  top: 33%;
  left: 0;
  width: 100%;
  height: auto;
  text-align: center;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 91;
	display: none;  
}

.search-panel.open {
  display: block;  
}

.search-panel div, .banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);	
}

.search-panel div {
  padding: 50px 80px;
  background: #be7f2b;
  border-radius: 4px;  
  box-shadow: 0 0 40px #888;
}

.footer-message {
  position: fixed;
  bottom: -300px;
  right: 50px;
  width: 350px;
  text-align: center;
  padding: 30px;
  background: #005594;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  z-index: 89;
}

.footer-message.active {
  bottom: 0;
}

nav.mobile-menu {
  display: none;
  background: #be7f2b;	
}

nav.main-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: #fff;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  z-index: 89;
}

nav.main-menu.sticky {
  height: 55px;
  box-shadow: 0 0 20px #ddd;
}

header {
  position: relative; 
  width: 100%;
  height: 565px;
  text-align: center;
  margin: 90px 0 0 0; 
  background: #222;
  z-index: 5;
}

header.home-header {
	/*height: calc(100vh - 90px);*/
	height: auto;
	/*background: url(/wp-content/uploads/2024/02/bg-big.gif) no-repeat; 
	background-size: cover;
	background-position: top center;*/
	display: flex;
	justify-content: center;
	align-items: center;
}
header.home-header .inside  {
	position: absolute;
}
header.home-header img {
	width: 100%;
}
header.page-header {
  height: auto;
  text-align: right;
  padding: 75px 0;
/*   background: #222 url(http://bulldogawards.com/wp-content/uploads/2023/02/bg-1812x414-01.png) no-repeat center center fixed;  */
	background: #fff;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.wrapper {
  width: 1140px;
  min-height: 500px;
  margin: 40px auto;
  overflow: hidden; 
  z-index: 5;
}

main {
  float: left;
  width: 790px;  
}

main.full-width {
  float: none;
  width: 100%;  
}

.home {
  width: 100%;
  margin: 0;
}

.home section {
  padding: 50px 0;
  overflow: hidden;
}

.home section.grey {
  background: #f5f5f5;
}

.home section.blue {
  background: #005594;
}

.home section.brown {
  background: #be7f2b;
}

.stories-archive article {
  margin: 0 0 30px 0;
  padding: 0 0 30px 0;
  border-bottom: 1px solid #e5e5e5;  
  overflow: hidden; 
}

.third, .half {
  float: left;
  width: 32%;
  margin: 0 2% 0 0;  	
}

.half {
  width: 48%;	
}

:last-of-type.third, :last-of-type.half {
  float: right;
  margin: 0;  
}

.winner_full {
	width: 100%;
}

.winner_full h2 {
	color: #be7f2b;
	text-align: center;
}

.winner_full a {
	color: #be7f2b;
}

.two-thirds {
  float: left;
  width: 63%;	
}

.one-third {
  width: 100%;
}

.centered {
  text-align: center;
}

.snippet {
  margin: 20px 0;
}

.snippet.awards-won {
  margin: 20px 0 40px 0;
}

.snippet.profile-simple {
  float: left;
  width: 32%;
  height: 200px;
  text-align: center;
  margin: 0 2% 0 0;   
}

:nth-of-type(3n).snippet.profile-simple {
  float: right;
  margin: 0;  
}

.award-bucket {
  width: 495px;
  text-align: center;
  margin: 20px auto 0 auto;
  padding: 30px;
  background: #f5f5f5;
  border-radius: 5px;
   -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  overflow: hidden;  
}

/*:hover.award-bucket {
  transform: scale(1.1);
  background: #fff;
  box-shadow: 0 0 30px #aaa;
}*/

.award-bucket .bucket-image {
  position: relative;
  display: block;
  width: 495px;
  height: 175px;
  margin: -30px 0 25px -30px;
  background: #404040;
  overflow: hidden;   
}

.award-bucket .bucket-image.pr-awards-bucket {
  background: #404040 url(images/bokeh.jpg) center no-repeat;
}

.award-bucket .bucket-image.stars-bucket {
  background: #404040 url(images/single-star-bokeh.jpg) center no-repeat;
}

.sharing {
  margin: 40px 0;
  padding: 40px 0 0 0;
  border-top: 1px solid #e5e5e5;  
}

.paginate {
  text-align: center;
  margin: 50px 0;	
}

.paginate.no-top-margin {
  margin: 0 0 50px 0;	
}

.hidden-stuff {
  display: none;
}

.judge-bio {
  margin: 0 0 40px 0;  
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
  clear: both;
}

:last-of-type.judge-bio {
  margin: 0;  
  border-bottom: none;
}

#the-final-countdown {
  position: relative;
  top: auto;
  left: auto;  
}

.sidebar {
  float: right;
  width: 310px;  
}

.sidebar section {
  margin: 0 0 40px 0;
  overflow: hidden;
}

.sidebar section.signup-side {
  padding: 30px;
  background: #001a38;	
  border-radius: 4px;
  text-align:center;
}

.bottom {
  width: 100%;
  text-align: center; 
  min-height: 150px;
  padding: 50px 0;
  background: #f5f5f5;	
  /*background-image:
    linear-gradient(
      #be7f2b, #825529
    );*/
  overflow: hidden;
}

footer {
  width: 100%;
  padding: 50px 0;
  background: #181818;
  /*background-image:
    linear-gradient(
      #353535, #000
    );*/
  overflow: hidden;
  clear: both;
  z-index: 5;
}

footer section {
  float: left;
  width: 32%;
  margin: 0 2% 0 0;  
}

footer section:last-of-type {
  float: right;
  margin: 0;  
}

.inside {
  position: relative;
  width: 1140px;
  margin: 0 auto;
}

.inside_1 {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
}

.home-header .inside {
	padding: 50px 0 50px 0;
	-webkit-animation: fadein 3s; /* Safari, Chrome and Opera &gt; 12.1 */
	-moz-animation: fadein 3s; /* Firefox &lt; 16 */
	-ms-animation: fadein 3s; /* Internet Explorer */
	-o-animation: fadein 3s; /* Opera &lt; 12.1 */
	animation: fadein 3s;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.reasons-to-enter-black {
		padding: 50px 0;
		background-color: #23211d;
		color: #fff;		
}
	
.reasons-to-enter-black a {
		color: #be7f2b;		
}

.reasons-to-enter-black .inside_1 .winner_full li a {
		color: #be7f2b;		
}

.reasons-to-enter-black .inside_1 .winner_full li a hover {
		color: #fff;		
}

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Firefox &lt; 16 */
@-moz-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Safari, Chrome and Opera &gt; 12.1 */
@-webkit-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Opera &lt; 12.1 */
@-o-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.cookie-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  font-size: 0.85em;
  line-height: 50px;
  color: #fff;
  text-align: center;
  padding: 0 30px;  
  background: #005594;
  z-index: 7;
}



/* =============================================================================
   Menus
   ========================================================================== */

nav.main-menu .icon-search, nav.main-menu .icon-menu {
  float: right;
  font-size: 1.2em;
  line-height: 88px;
  color: #005594;
  margin: 0 0 0 27px;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;	
  cursor: pointer;
} 

nav.main-menu .icon-menu {
  display: none; 
  font-size: 1.85em;
  margin: 0 -10px 0 0;
}

nav.main-menu.sticky .icon-search {
  font-size: 0.9em;
  line-height: 53px;
}   

nav.main-menu :hover.icon-search, nav.main-menu :hover.icon-menu {
  color: #be7f2b;	
} 

.close, .close-menu {
  position: absolute;
  top: 5px;
  right: 20px;
  font: 300 3em 'Roboto',helvetica,sans-serif;
  color: #fff;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  cursor: pointer;  
}

.close-menu {
  top: 0px;
  font-size: 2.65em; 
}

:hover.close, :hover.close-menu {
  color: #664221;	
}

.close-message {  
  position: absolute;
  top: -18px;
  right: -15px;
  display: block;
  width: 40px;
  height: 40px;
  font: 100 2.15em 'Roboto',helvetica,sans-serif;
  line-height: 40px;
  color: #fff;
  background: #222;
  border-radius: 50%;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  cursor: pointer;
}

:hover.close-message {  
  background: #666;
}

.close-alert {
  position: absolute;
  top: 0;
  right: 15px;
  font: 300 2.15em 'Open Sans',helvetica,sans-serif;
  line-height: 50px;
  color: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  cursor: pointer;  
}

:hover.close-alert {
  color: #999;	
}
   
nav.main-menu ul {
  float: right; 
  margin: 0;
  padding: 0;
  list-style: none;  
}

nav.main-menu li {
  position: relative;
  float: left;
  display: block;
  font: 400 1em 'Roboto Condensed',helvetica,sans-serif;
  line-height: 90px;
  margin: 0 0 0 23px;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

nav.main-menu.sticky li {
  font-size: 0.9em;
  line-height: 55px;
}

nav.main-menu li a {
  color: #4b5f6e;
  text-decoration: none;
}

nav.main-menu li a:hover, nav.main-menu li:hover &gt; a {
  color: #be7f2b;
}

nav.main-menu ul ul {
  position: absolute;
  top: 70px;
  left: 0;  
  display: none;
  width: 225px;
  padding: 10px 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  z-index: 96;
}

nav.main-menu.sticky ul ul {
  top: 50px;
  left: 0;  
}

nav.main-menu ul li:hover &gt; ul {
  display: block;
}

nav.main-menu ul ul li {
  float: none;
  display: block;  
  font-size: 1em;
  line-height: 1.2em;
  margin: 0;
  padding: 7px 15px;
}

nav.main-menu.sticky ul ul li {
  font-size: 1em;
  line-height: 1.2em;
}

nav.main-menu ul ul li a {
  float: none;  
}

nav.main-menu ul ul li:hover &gt; a {
  color: #be7f2b;	
}

nav.main-menu ul ul li a:hover {
  float: none;  
  color: #be7f2b;
}

nav.mobile-menu ul {
  margin: 0;
  padding: 30px;
  list-style: none;
}

nav.mobile-menu li a {
  display: block;
  font-size: 1.1em;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  margin: 0 0 12px 0;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;	
}

nav.mobile-menu ul ul {
  padding: 0 0 10px 30px;
}

nav.mobile-menu ul ul li a {
  font-size: 0.95em; 
}

nav.mobile-menu li a:hover {
  color: #664321;
}

.sharing span {
  display: block;
  font: 400 1em 'Roboto Condensed',helvetica,sans-serif;  
  color: #222;
  margin: 0 0 15px 0;
}

.sharing a i {
  display: inline-block;
  width: 45px;
  height: 45px;
  font-size: 0.95em;
  line-height: 45px;
  color: #fff; 
  text-align: center;
  margin: 0 5px 0 0;
  background: #be7f2b;
  border-radius: 50%;  
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;	
}

.sharing a i.icon-twitter {
  font-size: 0.85em;
  background: #00aced;
}

.sharing a i.icon-facebook {
  background: #3b5998;
}

.sharing a i.icon-linkedin {
  background: #0077b5;
}

.sharing a i.icon-pinterest {
  background: #cb2027;
}

.sharing a i.icon-gplus {
  background: #dd4b39; 	
}

.sharing a:hover i {
  color: #fff; 
  background: #282828;
  border-radius: 50%;  
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.paginate a {
  display: inline-block;
  font: 400 0.95em 'Roboto Condensed',helvetica,sans-serif;
  color: #fff;  
  text-decoration: none;
  margin: 0 20px;
  padding: 12px 35px;
  background: #be7f2b;
  border-radius: 100px;
   -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.paginate a:hover {
  background: #222;
}

footer .about a i {
  display: inline-block;
  width: 45px;
  height: 45px;
  font-size: 0.95em;
  line-height: 45px;
  color: #fff; 
  text-align: center;
  margin: 0 5px 0 0;
  background: #be7f2b;
  border-radius: 50%;  
   -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

footer .about a i.icon-twitter {
  font-size: 0.85em;
}

footer .about a:hover i {
  color: #be7f2b; 
  background: #fff;
  border-radius: 50%;  
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}


/* =============================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font: 300 2.95em 'Roboto Condensed',helvetica,sans-serif;	
  line-height: 1.1em;
  color: #222;
  margin: 0 0 40px 0;
}

h1 span {
  display: block;
  font-size: 0.8em;
  color: #005594;
}

header h1 {
  color: #001a38;  
  color: #ffffff;  
  font-family: "Poppins",sans-serif;
  font-size: 2.75em;
  font-weight: 600;
  margin: 0 auto 25px;
  display: block;
}

h2, h3, h4, h5, h6 {
  font-size: 1.85em;	
  font-weight: 400;
  line-height: 1.2em;
  margin: 40px 0 10px 0;
}

.normal-page h2:after, .stories-post h2:after {
  display: block;
  width: 30px;
  content: ''; 
  margin: 15px 0 0 0;
  border-bottom: 4px solid #be7f2b; 
} 

.home h2 {
  font-size: 2.5em;
  font-weight: 300;
  margin: 0 0 25px 0;  
}

.third h2, .half h2, .home h3 {
  font-size: 1.95em;
  font-weight: 300;
  margin: 0 0 10px 0;	
}  

.winners-page h2 {
  font-size: 2.15em;
  font-weight: 300;  
}

.stories-archive h2 {
  font-size: 1.75em;
  margin: 0;	
}

.search-page h2 {
  font-size: 1.5em;
  margin: 0 0 30px 0;
  padding: 0 0 30px 0;
  border-bottom: 1px solid #e5e5e5;  
}

.search-page h2:first-of-type {
  margin: 40px 0 30px 0;  
}

.search-page h2:last-of-type {
  border-bottom: none;  
}

.winners-all h2 {
  font-size: 1.3em; 
  margin: 0 0 20px 0;  
}

.winners-all h2:first-of-type {
  margin: 40px 0 20px 0;  
}

.judge-bio h2 {
  margin: 0 0 4px 0;  
}

.sidebar h2 {
  font-size: 1.35em;	
  font-weight: 400;
  line-height: 1em;
  letter-spacing: -0.5px;
  margin: 0 0 15px 0;
  padding: 0 0 10px 0;
  border-bottom: 2px solid #be7f2b;
}  

.sidebar section.signup-side h2 {
  font-size: 1.3em;	
  color: #fff;
  padding: 0;
  border-bottom: 0;	
}   
   
.search-panel h2 {
  font-size: 2em;
  font-weight: 300;
  color: #fff;
  margin: 0 0 15px 0;  
}

.bottom h2, {
  font-size: 1.5em;	
  font-weight: 400;
  line-height: 1em;
  color: #484848;
  margin: 0 0 15px 0;
}  


footer h2 {
  font-size: 1.5em;	
  font-weight: 400;
  line-height: 1em;
  color: #fff;
  margin: 0 0 15px 0;
} 

.bottom h2 {
  font-size: 2.15em;
  font-weight: 300;
}  

h3, h4, h5, h6 {
  font-size: 1.4em;
  font-weight: 400;  
  margin: 30px 0 6px 0;
} 

h4 span {
  color: #005594;
}

.home h4 {
  font-size: 2.1em;
} 

header h4 {
  font-size: 1.75em;
  color: #fff;  
  text-shadow: 0 0 30px #000;
  margin: 0;
}

h4 span.toggle-action {
  display: inline-block;
  font: 500 0.6em 'Roboto',helvetica,sans-serif;
  text-transform: uppercase; 
  margin: 0 0 0 12px;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  cursor: pointer;   
}

h4 span.toggle-action:hover {
  color: #be7f2b;
}

h4 span.toggle-action.live {
  color: #999;
}

.normal-page h3 {  
  margin: 30px 0 4px 0;
}

.overview-page h3:before {
  display: inline-block;
  content: '\00BB';
  font-size: 1.2em;
  color: #be7f2b;
  margin: 0 5px 0 0;  
}

.snippet h3 {
  font-size: 1.6em;
  line-height: 1.1em;
  margin: 0 0 10px 0;	
}

.snippet.awards-won h3 {
  font-size: 1.4em;
}

.snippet.profile-simple h3 {
  font-size: 1.2em;
  margin: 0;	
}

h2 a, h3 a {
  font-weight: 400;
  color: #005594;
  text-decoration: none;  
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

h2 a:hover, h3 a:hover {
  color: #be7f2b;
  text-decoration: none;  
}

article ul, .home ul {
  margin: 0 0 30px 20px;
  padding: 0;
  list-style: square;  
}

.home ul {
  margin: -20px 0 30px 20px;
}

article ol {
  margin: 0 0 30px 20px;
  padding: 0;
}

article li, .home li {
  line-height: 1.7em;
  padding: 5px 0;  
}

p {
  line-height: 1.7em;
  margin: 0 0 30px 0;  
}

header p {
	font-family: "Poppins",sans-serif;
	font-size: 1em;
	line-height: 1.5em;
	color: #4b5f6e;  
	color: #ffffff;  
	margin: 0 0 20px 0;
	width: 85%;
}

header .actions {
	margin-top: 20px;
}
header .actions a {
	font-family: "Poppins",sans-serif;
	font-size: 1em;
	color: #fff;
	text-decoration: none;
	border: 1px solid #fff;
	padding: 7px 20px;
	border-radius: 15px;
}

header .actions a:hover,
header .actions a:focus {
	background: #fff;
	color: #2c353e;
}

header p.second-line {
  /*margin: -40px 0 25px 0;*/  
  margin: 0;
}

.home p {
  font-size: 0.95em;
  line-height: 1.5em;  
}

.home p.status {
  font: 400 1.3em 'Roboto Condensed',helvetica,sans-serif;
  color: #005594;
  margin: -8px 0 8px 0;  
}

p.award-category {
  font-size: 0.95em;
  font-weight: 400;
  line-height: 1.3em;
  margin: 0 0 5px 0;  
}

p.award-category:last-of-type {
  margin: 0 0 15px 0;  
}

.one-third p {
  font-size: 1.1em;
  margin: 0 0 20px 0;  
}

.one-third p strong {
  color: #be7f2b;  
}

.one-third p:last-of-type {
  font-size: 0.9em;
  line-height: 1.3em;
  margin: 0;  
}

p.subtitle {
  font: 400 1.55em 'Roboto Condensed',helvetica,sans-serif;		
  line-height: 1.3em;
  color: #be7f2b;
  margin: -25px 0 30px 0;
}

p.fyi {
  font: 400 1.65em 'Roboto Condensed',helvetica,sans-serif;		
  line-height: 1.5em;
  color: #be7f2b;
  margin: -20px 0 20px 0;
}

p.fyi span {
  color: #222;	
}

p.author-name {
  font-weight: 400;
  margin: 60px 0 20px 0;
}

p.bigger {
  font-size: 1.1em;	
}

.home p.bigger {
  font-weight: 400;
  margin: 0;
}

.judge-bio p.judge-title {
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.2em;
  color: #be7f2b;
  margin: 0 0 10px 0;
}

.hidden-stuff {
  color: #333;
  padding: 10px 0 0 0; 
}

.sidebar section p {
  font-size: 1.3em;
  line-height: 1.4em;
  margin: 0;  
}

.sidebar section.signup-side p {
  color: #fff;
  margin: 0 0 20px 0;  
}

.sidebar section.side-quote p:first-of-type {
  margin: 0 0 5px 0;  
}

.sidebar section.basic-widget p {
  margin: 0 0 10px 0;	
}

.sidebar section.basic-widget p:last-of-type {
  margin: 0;	
}

.bottom p {
  font-size: 1.15em;
  line-height: 1.5em;
  color: #be7f2b;
  margin: 0 0 20px 0; 
}

footer p {
  font-size: 0.93em;
  line-height: 1.4em;
  color: #aaa;
  margin: 0 0 20px 0; 
}

footer p.copyright {
  font: 400 0.8em 'Roboto Condensed',helvetica,sans-serif;	
  line-height: 1em;
  letter-spacing: 1px;
  color: #777;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.footer-message p {
  font: 400 1.15em 'Roboto Condensed',helvetica,sans-serif;		
  line-height: 1.3em;
  color: #fff;
  margin: 0 0 20px 0;
}

#hide-forever {
  display: block;
  font: 400 0.8em 'Roboto Condensed',helvetica,sans-serif;		
  color: #90c0dd;
  margin: 20px 0 0 0;
  cursor: pointer;
}

:hover#hide-forever {
  color: #fff;
}

address {
  font-style: normal;
}

p a, article li a, .home li a, address a {
  font-weight: 400;
  color: #005594;
  text-decoration: underline;  
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

p.judge-title a {
  text-decoration: none;   
}

p a:hover, article li a:hover, .home li a:hover, address a:hover {
  color: #be7f2b;
  text-decoration: underline;  
}

.bottom p a {
  color: #484848;
  text-decoration: none;
  padding: 0 0 2px 0;
  border-bottom: 1px solid #fff;
}

.bottom p a:hover {
  color: #222;
  text-decoration: none;
  padding: 0 0 2px 0;
  border-bottom: 1px solid #222;
}

footer p a {
  color: #be7f2b;
  text-decoration: none;  
}

footer p a:hover {
  color: #fff;
  text-decoration: underline;  
}

footer p.copyright a {
  color: #777;
}

footer p.copyright a:hover {
  color: #fff;
  text-decoration: none;
}

footer ul {
  margin: 0;
  padding: 0;
  list-style: none;  
}

footer li a {
  display: block;
  font-size: 0.95em;
  line-height: 1.3em;
  color: #be7f2b;
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid #333;  
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

footer li:first-of-type a {
  padding: 4px 0 15px 0;
}

footer li:last-of-type a {
  padding: 15px 0 0 0;
  border-bottom: none;  
}

footer li a:hover {
  color: #fff;
}

.cpt-title, .award-title {
  display: block;
  font: 500 1.3em 'Roboto Condensed',helvetica,sans-serif; 
  color: #be7f2b;
  margin: 0 0 10px 0;
}

.award-title {
  font-size: 1.05em;
  margin: 0 0 5px 0;
}

.prize-level {
  display: inline-block;
  height: 40px;
  font: 500 0.9em 'Roboto Condensed',helvetica,sans-serif; 
  line-height: 40px;
  text-transform: uppercase;   
  margin: 0;
  padding: 0 12px 0 0;
  background: #f0f0f0;
}

.prize-level.circle-prize {
  display: block;
  width: 125px;
  margin: -13px 0 5px 0;
}

.prize-level i {
  float: left;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  margin: 0 12px 0 0;
  background: #fecb2e;
}

.prize-level.circle-prize i {
  margin: 0 17px 0 0;
}

.prize-level.grand-prize {
  color: #fff;
  background: #178ccb;
}

.prize-level.gold {
  color: #fff;
  background: #bc9b6a;
}

.prize-level.silver {
  color: #fff;
  background: #aaa;
}

.prize-level.bronze {
  color: #fff;
  background: #f97200;
}

a i.profile-link {
  display: inline-block;
  width: 42px;
  height: 42px;
  font-size: 0.9em;
  line-height: 42px;
  color: #fff; 
  text-align: center;
  margin: 0 5px 40px 0;
  background: #be7f2b;
  border-radius: 50%;  
   -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;	
}

a i.icon-twitter.profile-link {
  font-size: 0.8em;
  background: #00aced;
}

a i.icon-facebook.profile-link {
  background: #3b5998;
}

a i.icon-linkedin.profile-link {
  background: #0077b5;
}

a:hover i.profile-link {
  background: #222;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}


/* =============================================================================
   Misc
   ========================================================================== */

.syotimer__body {
  display: block;
  width: 100%;
  margin: 0; 
}

.syotimer__body {
  display: block;
  width: 100%;
  margin: 30px auto 35px auto; 
}

.syotimer-cell {
  display: inline-block;
  width: 110px;
  height: auto;
  font-size: 2.5em;
  font-weight: 400;
  color: #fff;
  text-align: center;  
  text-shadow: 2px 2px 2px #111;
  margin: 0 5px;
  padding:  18px 0 20px 0;
  background: #fff;
  background-image:
    linear-gradient(
      #404040, #101010
    );
  border: 1px solid #444;
  border-radius: 4px;
  box-shadow: 0 0 10px #000;
}

.syotimer-cell__unit {
  display: block;
  font-size: 0.4em;  
  margin: -3px auto 0 auto;
}

.rounded-icon {
  display: block;	
  width: 220px;
  height: 220px;
  font-size: 4.5em;
  font-weight: 700;
  line-height: 220px;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  background: url(images/badge-blank.png) center no-repeat;
}   
   
.button a {
  display: inline-block;
  font: 400 0.95em 'Roboto Condensed',helvetica,sans-serif;
  color: #fff;  
  text-decoration: none;
  margin: 20px 15px 40px 0;
  padding: 12px 35px;
  background: #be7f2b;
  border-radius: 100px;
   -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.reasons-to-enter .button a {
  margin: 0 15px 0 0;	
}

.centered .button a {
  margin: 0 7px;
}

.winners-page .button a {
  margin: 20px 15px 10px 0;	
}
   
.button a i {
  margin: 0 4px 0 -5px;
} 
   
.button.higher a {
  margin: -20px 15px 30px 0;
}

.button.bigger a {
  font: 400 1.25em 'Roboto Condensed',helvetica,sans-serif;
  color: #fff;  
  text-decoration: none;
  text-align: center;
  margin: 20px 0;
  padding: 15px 40px;
  background: #005594;
}

.button.home-bigger a {
  font: 400 1.2em 'Roboto Condensed',helvetica,sans-serif;
  margin: -20px auto 0 auto;
  padding: 15px 40px;
}

.button a:hover {
  color: #fff; 
  background: #222;
} 

header .button a {
  font-size: 1em;
  font-family: "marine",sans-serif;
  font-weight: bold;
  margin: 0 10px;
  padding: 5px 20px;
  background: #be7f2b;
} 

.button.blue a {
  background: #484848;
} 

.button.blue a:hover {
  color: #fff;
  background: #222;
}

header .button.blue a:hover {
  color: #005594;
  background: #fff;
}  

.button.small a {
  font-size: 0.9em;
  margin: -20px 10px 40px 0;
  padding: 10px 25px;
}

.sidebar section .button a {
  font-size: 0.85em;
  margin: 15px 0 0 0;
  padding: 8px 20px;
}

.sidebar section.signup-side .button a {
  background: #c6953d;
  color: #001a38;
  font-size: 1.1em;
  margin: 0;
  padding: 10px 25px 10px 23px;
}

.sidebar section.signup-side .button a:hover {
/*   color: #be7f2b; */
  background: #fff;	
}

.bottom .button a {
  font-size: 1.05em;
  margin: 0;
  background: #222;
}  

header .button a:hover, .bottom .button a:hover {
  color: #be7f2b; 
  background: #fff;
}   

footer .button a, .footer-message .button a {
  background: #be7f2b;
}

.footer-message .button a {
  margin: 0;	
}

footer .button a i {
  font-size: 0.85em;
  margin: 0 7px 0 0;  
}

footer .button a:hover, .footer-message .button a:hover {
  color: #be7f2b;
  background: #fff;
}

hr {
  display: block;
  height: 1px;
  margin: 40px 0;
  padding: 0;
  background: #fff;
  border: 0;
  border-top: 1px solid #e5e5e5;
  clear: both;
}

main hr {
  margin: 20px 0;  	
}

main.winners-page hr {
  margin: 20px 0 40px 0;  	
}

footer hr {
  background: none;
  border-top: 1px solid #333;
}

blockquote {
  width: 85%;
  font: 400 1.3em 'Roboto Condensed',helvetica,sans-serif;
  color: #005594;
  margin: 40px auto;
}

blockquote span {
  display: block;
  font-size: 0.8em;
  font-style: normal;
  margin: 10px 0 0 0;
}

blockquote p {
  line-height: 1.5em;
  margin: 0;
}

blockquote a {
  display: block;
  font-size: 0.95em;
  font-style: normal;
  margin: 8px 0 0 0;
}

abbr[title] { border-bottom: 1px dotted; }

dfn { font-style: italic; }

mark { background: #ff0; color: #333; font-style: italic; font-weight: bold; }

/*pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; font-size: 1em; }

pre {
  width: 100%;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 40px auto;
  padding: 5px 20px;
  background: #333;
  border-left: 8px solid #bbb;
}

code {
  font: 400 0.8em 'courier new', monospace;
  color: #fff;
  margin: 0;
  padding: 0;
}*/

pre {
  margin: 40px auto;
}

q { quotes: none; }
q:before, q:after { content: ""; content: none; }

small { font-size: 85%; }

sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }

p strong, p b, ul li strong, ul li b {
  font-weight: 500;
  color: #333;
}

header p strong, .footer-message p strong {
  color: #fff;
}

br.clearfix {
  clear: both;
}


/* =============================================================================
   Images
   ========================================================================== */

img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9; /* ie8 */
  margin: 40px auto;
  border: 0;
}

a img {
  border: 0;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

nav.main-menu img {
  float: left;
  width: 300px;/*prev 225px*/
  margin: 10px 0 0 0;  
}

nav.main-menu.sticky img {
  width: 200px;/*prev 145px*/
  margin: 2px 0 0 0;  
}

header img {
  margin: 0;  
  /*-webkit-animation:linear infinite alternate;
  -webkit-animation-name: run;
  -webkit-animation-duration: 3s;*/
}

@-webkit-keyframes run {
  0% { transform: scale(1);}
  50%{ transform: scale(1.15);}
  100%{ transform: scale(1);}
}

figure {
  width: 100%;
  margin: 40px auto;  
}

figure img {
  margin: 0 auto;	
}

.gallery figure {
  position: relative; 
  float: left;
  width: 32%;
  height: 300px;
  text-align: center; 
  margin: 0 2% 50px 0;  
}

.gallery figure:nth-of-type(3n) {
  float: right;
  margin: 0 0 50px 0;  
}

.gallery figure img {
  position: relative;
  width: 100%;
  margin: 0 auto 15px auto;
  z-index: 4;
}

.featured-image {
  float: right;
  width: 250px;
  height: auto; 
  margin: 0 0 40px 30px;
  overflow: hidden;  
}

.stories-archive article .featured-image {
  width: 150px;
  height: 150px;
  margin: 0 0 20px 20px;  
}

.featured-image img {
  width: 250px;
  height: auto; 
  margin: 0;
}

figcaption {
  display: block;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.3em;
  color: #777;  
  text-align: center;
  margin: 15px 0 0 0;
}

.gallery figcaption {
  font: 400 1.1em 'Roboto Condensed',helvetica,sans-serif;
  line-height: 1.3em;
}

.gallery figcaption a {
  color: #005594;  
  text-decoration: none;
}

.gallery figcaption a:hover {
  color: #be7f2b;  
}

.third img, .half img {
  max-width: 200px;
  margin: 0 auto 15px auto;
  border-radius: 50%;  
}

.third a:hover img, .half a:hover img {
  /*-webkit-transform: rotate(-12deg);
  -moz-transform: rotate(-12deg);
  -o-transform: rotate(-12deg);
  -ms-transform: rotate(-12deg);
  transform: rotate(-12deg);*/
}

.right, .alignright {
  float: right;
  margin: 0 0 20px 30px;
}

.alignright {
  max-width: 350px;	
}

.right.round {
  max-width: 200px;
  margin: 15px 0 30px 30px;
  border-radius: 50%;
}

.home .right {
  margin: -40px 0 0 50px;
  border-radius: 4px;
}

.two-thirds img {
  float: right;
  max-width: 300px;
  margin: -70px 0 -12px 10px;
}

.snippet img {
  float: right;
  width: 150px;
  margin: 0 0 40px 20px;
  padding: 8px;
  border: 1px solid #e5e5e5;
  border-radius: 0;  
}

.snippet.profile-simple img {
  float: none;
  width: 125px;
  margin: 0 auto 10px auto;
}

.snippet a:hover img {
  border: 1px solid #be7f2b;
}

img.profile-pic {
  float: right;
  max-width: 250px;
  margin: 0 0 40px 20px;
  padding: 8px;
  border: 1px solid #e5e5e5;
  border-radius: 0;  
}

.gallery-pic {
  display: inline-block;
  width: 172px;
  margin: 0 20px 20px 0;  
}

.sidebar section.signup-side img {
  float: right;
  width: 105px;
  margin: -20px -15px 0 -5px;  
}

.one-third img.right, .sidebar section img.right {
  float: right;
  width: 100px;
  margin: 10px 0 10px 0; 
  border-radius: 50%;  
}

.one-third img.right {
  width: 100px;
  margin: 0px 0 0 25px; 
}

.judge-bio img {
  float: right;
  width: 225px;
  height: 225px;
  margin: -20px 0 20px 20px;
  border-radius: 50%;  
}

footer .about img {
  float: right;
  width: 130px;
  margin: -20px 0 20px -5px;  
}

.wp-caption {
  width: 100% !important;
}

p.wp-caption-text {
  display: block;
  width: 50%;
  font-size: 0.85em;
  font-weight: 400;
  text-align: center;
  color: #888;
  margin: -15px auto 30px auto;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

.dont-wait {
  width: 150px;
  margin: -25px auto 0 auto;  
}


/* =============================================================================
   Video embeds
   ========================================================================== */

div.vid {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin: 40px 0; /* this is optional */
  clear: both;
}

.right-vid {
  float: right;
  width: 500px;
  margin: -20px 0 0 40px;  
}

.home .vid {
  margin: 0;	
}

.sidebar .vid {
  margin: 0 0 10px 0;	
}

div.vid iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* =============================================================================
   Forms
   ========================================================================== */

form, fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.search-panel form {
  position: relative;
  display: block;
  height: 55px;
  overflow: hidden;
}

.search-panel i.icon-search {
  position: absolute;
  top: 13px;
  left: 0;
  font-size: 1.35em;
  color: #664221;  
}

.search-panel input {
  position: relative;
  display: block;
  width: 650px;
  height: 55px;
  font: 300 1.2em 'Roboto Condensed',helvetica,sans-serif;	
  color: #fff;
  margin: 0;
  padding: 0 0 0 35px;
  background: none;
  border: none;
  border-bottom: 2px solid #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.search-panel input:focus {
  border-bottom: 2px solid #664221;
  outline: none;
}

.search-panel ::-webkit-input-placeholder {
   color: #fff;
}

.search-panel :-moz-placeholder { /* Firefox 18- */
   color: #fff;  
}

.search-panel ::-moz-placeholder {  /* Firefox 19+ */
   color: #fff;  
}

.search-panel :-ms-input-placeholder {  
   color: #fff;  
}

main form {
  margin: 50px 0;	 
}

main form.winner-search {
  margin: 40px 0 0 0;	
}

main label {
  display: block;
  font: 400 1.2em 'Roboto Condensed',helvetica,sans-serif;
  color: #222;
  margin: 0 0 8px 0;
}

main input[type=text], main input[type=email], main input[type=tel], main textarea {
  display: block;
  width: 50%;
  font: 400 1em 'Roboto',helvetica,sans-serif;
  color: #222;
  margin: 0 0 30px 0;
  padding: 11px;
  background: #fbfbfb;
  border: 1px solid #e5e5e5;  
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

main form.winner-search input[type=text] {
  margin: 0;
  padding: 11px 11px 11px 33px;  
  background: #fbfbfb url(images/search.png) left no-repeat;
}

main input[type=text]:focus, main input[type=email]:focus, main input[type=tel]:focus, main textarea:focus {
  width: 80%;
  background: #fff;
  border: 1px solid #999;
  outline: none;
}

main form.winner-search input[type=text]:focus {
  background: #fff url(images/search.png) left no-repeat;
}

main textarea {
  width: 100%;
  min-height: 150px; 
  margin: 0 0 20px 0;
}

main textarea:focus {
  width: 100%;
}

main input[type=submit] {
  display: inline-block;
  font: 400 0.95em 'Roboto Condensed',helvetica,sans-serif;
  color: #fff;  
  text-decoration: none;
  margin: 20px 15px 40px 0;
  padding: 11px 32px;
  background: #be7f2b;
  border: 0;
  border-radius: 100px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;  
  cursor: pointer;
}

main form.winner-search input[type=submit] {
  margin: 20px 0 10px 0;	
}

main input[type=submit]:hover {
  background: #222;	
}


span.wpcf7-not-valid-tip {
  color: #d00 !important;
  font-size: 0.85em !important;
  display: block !important;
  margin: -5px 0 19px 0 !important;
}

div.wpcf7-validation-errors {
  font-size: 0.85em !important;
  font-weight: 400 !important;
  color: #fff !important;
  text-align: center !important;
  padding: 12px !important;
  background: #c00 !important;
  border: 1px solid #c00 !important;
  border-radius: 4px;
}

div.wpcf7-mail-sent-ok {
  width: 85%;
  font-size: 0.85em !important;
  font-weight: 400 !important;
  color: #fff !important;
  background: none !important;
  text-align: center !important;
  margin: 40px auto !important;
  display: block !important;
  background: #34bf49 !important; 
  border: 1px solid #34bf49 !important;
  padding: 12px !important;
  border-radius: 4px;
  clear: both;
}

.screen-reader-response {
  font-size: 0.9em !important;
  font-weight: 700 !important;
  color: #000 !important;
}

.screen-reader-response ul li {
  padding: 0 !important;
}


/* =============================================================================
   
   ========================================================================== */
@media only screen
and (max-width : 1140px) {
	
.wrapper, .inside {
  width: 920px;
}

main {
  width: 610px;  
}

.award-bucket {
  width: 450px;
}

.award-bucket .bucket-image {
  width: 450px;
}

.sidebar {
  width: 270px;  
}

.two-thirds img {
  max-width: 200px;
}

}/* end media query */
 

/* =============================================================================
   
   ========================================================================== */
@media only screen
and (max-width : 920px) {

.search-panel div {
  padding: 40px 60px;
}
	
.wrapper, .inside {
  width: 720px;
}

main, .sidebar {
  float: none;
  width: 100%;  
}

main {
  margin: 0 0 40px 0;
  border-bottom: 5px solid #eee;  
}

.two-thirds {
  width: 55%;	
}

.one-third {
  width: 40%;
}

.award-bucket {
  width: 325px;
}

.award-bucket .bucket-image {
  width: 325px;
}

footer section, footer section:last-of-type {
  float: none;
  width: 100%;
  margin: 0 0 40px 0;
}

footer section:last-of-type {
  margin: 0;
}

nav.main-menu li {
  margin: 0 0 0 18px;
}

header h1 {
  font-size: 2.7em; 	
}


nav.main-menu img {
  width: 160px;
  margin: 20px 0 0 0;  
}



.judge-bio img {
  width: 175px;
  height: 175px;
  margin: -10px 0 20px 20px; 
}


}/* end media query */ 


/* =============================================================================
   
   ========================================================================== */
@media only screen
and (max-width : 720px) {

body {
  font-size: 16px; 	
}

.search-panel div {
  padding: 20px 30px 30px 30px;
}

nav.main-menu {
  position: relative;
  height: 55px;
}

nav.main-menu.sticky {
  position: relative;
  left: auto;
  top: auto; 
  height: 55px;
  box-shadow: none;
}

header {
  margin: 0;
}


.wrapper, .inside {
  width: 90%;
}

.footer-message.active {
  bottom: -999px;
}

.third, .half {
  float: none;
  width: 100%;
  margin: 0 0 30px 0;  	
  overflow: hidden;
}

.half {
  float: none;
  width: 100%;
  margin: 0 0 30px 0;  
}

:last-of-type.third, :last-of-type.half {
  float: none;
  margin: 0 0 30px 0;  
}

.two-thirds {
  float: none;
  width: 100%;
  margin: 0 0 30px 0;  
}

.one-third {
  float: none;
  width: 100%;
  padding: 0;
  border: 0;
}

.award-bucket {
  width: 300px;
  padding: 25px;
}


.award-bucket .bucket-image {
  width: 300px;
  height: 150px;
  margin: -25px 0 20px -25px;
}

nav.main-menu .icon-search, nav.main-menu .icon-menu {
  line-height: 55px;
} 

nav.main-menu.sticky .icon-search {
  font-size: 1.2em;
  line-height: 55px;
}  

nav.main-menu .icon-menu {
  display: block;	
}

.close {
  top: 2px;
  right: 10px;
  font-size: 2.2em;
}

nav.main-menu ul {
  position: absolute;
  top: -999px;
  right: -999px;
  width: 1px;
  height: 1px;
}

h1 {
  font-size: 2.25em;
  font-weight: 400;  
}

h2 {
  font-size: 1.65em; 	
}

.home h2 {
  font-size: 1.75em;	
  font-weight: 400; 
}

.bottom h2 {
  font-size: 1.75em;
} 

footer h2 {
  font-size: 1.4em;
} 

.third h2, .half h2, .home h3 {
  font-size: 1.75em;
  font-weight: 400;
}

.overview-page h3:before {
  display: none; 
}

h3 span.toggle-action {
  display: block;
  margin: 8px 0 0 0;
}

p.fyi {
  font-size: 1.2em; 
  margin: 0 0 30px 0;	
}

.bottom p {
  font-size: 1em; 	
}

header .button a {
  font-size: 0.9em; 
  margin: 0 5px;  
}

#simple_timer {
  display: none;  
}

nav.main-menu img, nav.main-menu.sticky img {
  width: 120px;
  margin: 7px 0 0 0;  
}

.featured-image {
  width: 150px; 
  margin: 0 0 30px 20px; 
}

.featured-image img {
  width: 150px; 
}

.right.round {
  max-width: 150px;
}

.two-thirds img {
  max-width: 175px;
  margin: 0 0 30px 30px;
}

.judge-bio img {
  width: 125px;
  height: 125px;
  margin: 0 0 10px 10px;
}

.search-panel input {
  width: 500px;
  height: 55px;
  font-size: 1.05em;
}

}/* end media query */ 


/* =============================================================================
   
   ========================================================================== */
@media only screen
and (max-width : 650px) {

header.home-header {
  height: auto;  
}

header.page-header {
  padding: 50px 0;
}

.snippet.profile-simple, :nth-of-type(3n).snippet.profile-simple {
  float: none;
  width: 100%;
  height: auto;
  margin: 0 0 30px 0;
  overflow: hidden; 
}


nav.main-menu .icon-search {
  display: none;	
}

footer .about a i {
  width: 40px;
  height: 40px;
  font-size: 0.95em;
  line-height: 40px;
}

header h1 {
  font-size: 2.15em;
  margin: 0 0 10px 0;  
}

.stories-archive h2 {
  font-size: 1.4em;
}



.centered .button a {
  display: block;
  width: 200px;
  margin: 0 auto 10px auto;  
}

.reasons-to-enter .button a {
	text-align: center;
	display: block;
  width: 200px;
  margin: 0 auto 10px auto;  
}
	


.featured-image {
  width: 125px;  
}

.featured-image img {
  width: 125px; 
}

.snippet img {
  width: 120px;
}

.third img, .half img {
  max-width: 150px;
}

.right, .right .round, .alignright {
  max-width: 150px;	
}

img.profile-pic {
  max-width: 200px;
}

.two-thirds img {
  max-width: 150px;
  margin: 0 0 10px 20px;
}

footer .about img {
  width: 100px; 
}

main input[type=text], main input[type=email], main input[type=tel], main textarea {
  width: 100%;
}

main input[type=text]:focus, main input[type=email]:focus, main input[type=tel]:focus, main textarea:focus {
  width: 100%;
}

}/* end media query */ 



/* =============================================================================
   
   ========================================================================== */
@media only screen
and (max-width : 520px) {

header.home-header {
  /*background: #222 url(http://bulldogawards.com/wp-content/uploads/2023/02/bg-scaled.jpg) no-repeat; 
  -webkit-background-size: none;
  -moz-background-size: none;
  -o-background-size: none;
  background-size: none;*/
}

header.page-header {
  padding: 50px 0;
}

nav.mobile-menu ul {
  padding: 40px 25px;
}

nav.mobile-menu li a {
  font-size: 1em;
}

nav.mobile-menu ul ul {
  padding: 0 0 10px 25px;
}

.sharing a i {
  width: 40px;
  height: 40px;
  line-height: 40px;	
  margin: 0 2px 0 0;
}

header h1 {
  font-size: 1.5em;
}

.stories-archive h2 {
  font-size: 1.35em;
}

.one-third p {
  font-size: 1em;
}

.judge-bio p.judge-title {
  font-size: 1.05em;  
}


.winners-page .button a {
  margin: 20px 10px 0 0;
}

.bottom .button a {
  padding: 10px 20px;	
}

.featured-image {
  float: none;
  width: 100%;
  margin: 0 0 30px 0;  
}

.featured-image img {
  width: auto;
  margin: 0 auto;  
}

.stories-archive article .featured-image {
  float: right; 
  width: 60px;
  height: 60px;
  margin: 0 0 10px 10px;  
}

.snippet img {
  width: 100px;
  padding: 6px;
}

.right, .right.round, .alignright {
  max-width: 150px;	
  margin: 0 0 20px 20px;
}

.gallery-pic {
  float: none;
  display: block; 
  width: 200px;
  margin: 10px auto;
}

.judge-bio img {
  width: 115px;
  height: 115px;
  margin: 30px 0 10px 10px;
}

.sidebar section.signup-side img {
  width: 85px;
  margin: -15px -15px 0 -5px;
}

}/* end media query */ 


/* =============================================================================
   
   ========================================================================== */
@media only screen
and (max-width : 480px) {

header.page-header {
  padding: 30px 0;
}

.award-bucket {
  width: 275px;
  margin: 10px auto;
  padding: 20px;
}

.award-bucket .bucket-image {
  width: 275px;
  height: 130px;
  margin: -20px 0 20px -20px;
}

h1 {
  font-size: 1.75em; 	
}

h2 {
  font-size: 1.4em; 	
}

.stories-archive h2 {
  font-size: 1.2em;
}

.bottom h2 {
  font-size: 1.35em; 	
  font-weight: 400;
}

.bottom p {
  font-size: 0.9em;	
}

.right, .right.round, .alignright {
  float: none;
  max-width: 200px;	
  margin: 0 auto 20px auto;
}

.alignright {
  max-width: 100%;	
}

.snippet img {
  float: none;
  display: inline-block;
  width: 150px;
  margin: 0 0 15px 0;
  padding: 5px;
}

img.profile-pic {
  float: none;
  max-width: 100%;
  margin: 0 auto 15px auto;
  padding: 5px;
}

.two-thirds img {
  float: none;
  max-width: 100%;
  margin: 20px auto;
}

.gallery figure {
  float: none;
  width: 100%;
  margin: 0 0 50px 0;  
}

.gallery figure:nth-of-type(3n) {
  float: none;
}

.gallery-pic { 
  width: 150px;
}

}/* end media query */ 

.cookie-alert {
	background: #303030cf;
}

/* =============================================================================
   HS SUBSCRIBE FORM
   ========================================================================== */

input.hs-button.primary.large {
    display: inline-block;
    font: 400 0.95em 'Roboto Condensed',helvetica,sans-serif;
    color: #fff;
    text-decoration: none;
    margin: 20px 0 40px 0;
    padding: 12px 35px;
    background: #484848;
    border-radius: 100px;
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    -ms-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    border: none;
}
.hs-button.primary.large {
    display: inline-block;
    font: 400 0.95em 'Roboto Condensed',helvetica,sans-serif;
    color: #fff;
    text-decoration: none;
    margin: 20px 0 40px 0;
    padding: 12px 35px;
    background: #484848;
    border-radius: 100px;
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    -ms-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    border: none;
}

input.hs-button.primary.large:hover {
    color: #fff;
    background: #222;
}

.hs-input {
    padding: 10px;
    margin-top: 12px;
}

label#label-email-5db05716-897a-4b13-a561-d5ae788e4f45 {
color: #FFFFFF;
}


.winner-category-box {
	padding: 10px 0 20px;
	border-top: 1px solid #e5e5e5;
	margin-bottom: 20px;
}

.winner-box {
	padding-bottom: 0px;
	display: flex;
	column-gap: 40px;
	margin-top: 30px;
}

.winner-box .winner-logo {
	min-width: 20%;
	max-width: 20%;
}

.winner-box h3 {
	font-weight: 400;
    color: #005594;
	margin-top: 10px;
}
.winner-box h4 {
	margin: 0;
}
.winner-box img {
	margin: 0;
}

.winner-box p {
	margin-bottom: 0px;
}
.winner-category-box .cat-sub-title {
	margin-top: 20px;
	margin-bottom: 10px;
	font-size: 24px;
}

.winner-box .prize-level.circle-prize {
	display: block;
    width: 125px;
    margin: 5px 0 5px 0;
}</pre></body></html>