/* Last updated September 25, 2024, 2022 ZA */ 

@charset "UTF-8";
/* CSS Document */


/*basic */
#padding {
  padding-right: 20px;
  padding-left: 20px;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: .625rem;
  display: block;
  width: 100%; 
  line-height:1.5;
}

h1 {
	color: #03475A;
  font-size: clamp(18pt, 2vw, 28pt)!important;
}

h2 {
	color: #03475A;
  font-size: clamp(18pt, 1.5vw, 26pt)!important;
}
h3 {
	color: #03475A;
  font-size: clamp(16pt, 1.2vw, 23pt)!important;
}
h4 {
	color: #03475A;
  font-size: clamp(14pt, 1vw, 19pt)!important;
}
h5 {
	color: #232323;
  font-size: clamp(13pt, .9vw, 15pt)!important;
}
h6 {
	color: #232323;
  font-size: clamp(12pt, .8vw, 13pt)!important;
}


small, .small {
  font-size: 10pt;
}
hr {
  display: block;
  clear: both;
  border: none;
  height: 1px;
  background: #dbdbdb;
  margin: 0;
  padding: 0;
}
/*COMMON ARTICLE CSS*/
.clr {
  clear: both;
}
.blue_bold {
  color: #03475A;
  font-weight: 600;
}
.red_bold {
  color: #510000;
  font-weight: 600;
}
/*CSS Button*/
.button {
  appearance: none;
  background-color: #03475A;
  border-radius: 15px;
  box-sizing: border-box;
  color: #FFFFFF!important;
  cursor: pointer;
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif;  
  font-size: 16px;
  font-weight: 600;
  line-height: 14pt;
  margin: 0;
  min-width: 0;
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}

.button:disabled {
  pointer-events: none;
}

.button:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
  background-color:#02323f;
}

.button:active {
  box-shadow: none;
  transform: translateY(0);
}


.subbutton {
  appearance: none;
  background-color: transparent;
  border: 2px solid #03475A!important;
  border-radius: 15px;
  box-sizing: border-box;
  color: #03475A!important;
  cursor: pointer;
  display: inline-block;
	font-family: 'Open Sans', sans-serif;
  font-size: 13pt;
  font-weight: 600;
  line-height: 14pt;
  margin: 0;
  min-width: 0;
  outline: none;
  padding: 6px 24px;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}

.subbutton:disabled {
  pointer-events: none;
}

.subbutton:hover { 
  background-color: #E2E5F0;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.subbutton:active {
  box-shadow: none;
  transform: translateY(0);
}


/* Image Wrap Styles */
img.img_left {
  float: left;
  margin-right: 10px;
}
img.img_right {
  float: right;
  margin-left: 10px;
}
img.img_center {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media only screen and (max-width: 400px) {
	img.img_left {
  float: none;
  display: block;
}
img.img_right {
 float: none;
  display: block;
}

}
/* LISTS DIVIDED INTO 4 PERFECTLY EVEN COLUMNS  */
#cols4 {
  -webkit-column-count: 4;
  /* Chrome, Safari, Opera */
  -moz-column-count: 4;
  /* Firefox */
  column-count: 4;
}
@media only screen and (max-width: 767px) {
  #cols4 {
    -webkit-column-count: 2;
    /* Chrome, Safari, Opera */
    -moz-column-count: 2;
    /* Firefox */
    column-count: 2;
  }
}
@media only screen and (max-width: 767px) {
  #cols4 {
    -webkit-column-count: 2;
    /* Chrome, Safari, Opera */
    -moz-column-count: 2;
    /* Firefox */
    column-count: 2;
  }
}
@media only screen and (max-width: 479px) {
  #cols4 {
    -webkit-column-count: 1;
    /* Chrome, Safari, Opera */
    -moz-column-count: 1;
    /* Firefox */
    column-count: 1;
  }
}
/** SORTABLE EXHIBITOR TABLE **/
#exhibitorTable {
  margin: 0 auto;
  font-size: 1.2em;
  margin-bottom: 15px;
  -webkit-column-break-inside: always;
  -moz-column-break-inside: always;
  column-break-inside: always;
}
#exhibitorTable thead {
  cursor: pointer;
  background: #e2e7e5;
}
#exhibitorTable thead tr th {
  font-weight: bold;
  padding: 5px 10px;
}
#exhibitorTable thead tr th span {
  padding-right: 20px;
  background-repeat: no-repeat;
  background-position: 100% 100%;
}
#exhibitorTable thead tr th.headerSortUp, #exhibitorTable thead tr th.headerSortDown {
  background: #b5b5b5;
}
#exhibitorTable thead tr th.headerSortUp span {
  background-image: url('https://www.enr.com/ext/resources/images/up-arrow.png');
}
#exhibitorTable thead tr th.headerSortDown span {
  background-image: url('https://www.enr.com/ext/resources/images/down-arrow.png');
}


/* REGISTRATION TABLE, 2 PRICE COLUMNS */
table.register {
  width: 100%;
  text-align: center;
}
table.register thead tr {
  background-color: #e7e7e7;
}
table.register tbody tr {
  background-color: #fff;
}
table.register td {
  padding: 3px;
  border-width: 1px 0px 1px 0px;
  border-color: #e1e1e1;
  border-style: solid;
  text-align: left;
}
table.register tr {
  padding: 2px;
  vertical-align: bottom;
}
table.register tbody td:nth-child(n+2) {
  color: #000;
  font-weight: 400;
  font-size: 1em;
}

/*  COLUMN SETUP  */
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
  width: 96%;
  float: left;
  margin: 0.5rem 2%;
}
@media only screen and (min-width: 45em) {
  /* 720px */
  .col-1 {
    width: 4.33%;
  }
  .col-2 {
    width: 12.66%;
  }
  .col-3 {
    width: 21%;
  }
  .col-4 {
    width: 29.33%;
  }
  .col-5 {
    width: 37.66%;
  }
  .col-6 {
    width: 46%;
  }
  .col-7 {
    width: 54.33%;
  }
  .col-8 {
    width: 62.66%;
  }
  .col-9 {
    width: 71%;
  }
  .col-10 {
    width: 79.33%;
  }
  .col-11 {
    width: 87.66%;
  }
  .col-12 {
    width: 96%;
  }
}


/*RESPONSIVE MAP */
.map-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
/* to the body element */
.noscroll { overflow: hidden; }
/* This is the page wide gray background. */
.modalBackground{
	display: none;
	z-index: 99999; 
	width: 100%; 
	height: 100%; 
	position: fixed; 
	top: 0; 
	left: 0;
	background-color: rgba(48,48,48, 0.8);
	overflow: scroll;
	text-align: center;
}



/* This contains all the modal content. */
.modalContent{
    font-family:'Open Sans', sans-serif;
	margin: 0px auto 40px auto;
	padding: 2%;
	max-width: 1170px;
	text-align: left;
	z-index: 9999;
	background-color: #ffffff;
	overflow: hidden;
	animation: modalZoomIn .25s;
}
@media only screen and (max-width: 700px){
    .modalContent{
        max-width: 90%;
    }
}

.modalContent h3 {
font-family:'Roboto', sans-serif;
}

.modalContent h5 {
font-family:'Roboto', sans-serif;
margin-top:25px;
font-weight:300;
}

/* This is the close icon. */
.modalClose{
  
	margin: 8px auto;
	padding: 5px 2px;
	width: 30px;
	font-size: 20px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.0;
	color: #ffffff;
	background-color: #000000;
	border: 1px solid #ffffff;
	border-radius: 50%;
	cursor: pointer;
	z-index:99999;
}

.modalClose:hover{
	background-color: #ffffff;
	color: #000000;
}



/* To open the modal with a zoom-in effect, add "animation: modalZoomIn .25s;" to the "modalContent" class. */
@keyframes modalZoomIn{
	from{
		transform: scale(0.75);
	}
	to{
		transform: scale(1.0);
	}
}



/* To open the modal with a fade-in effect, add "animation: modalFadeIn .25s;" to the "modalContent" class. */
@keyframes modalFadeIn{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}




button.register{
    width:230px;
    height:70px;
    background: linear-gradient(to left top, #03475A 50%, #035c75 50%);
    border-style: none;
    color:#fff;
    font-size: 30px;
    letter-spacing: 3px;
    font-family: 'Open Sans Condensed';
    font-weight: 600;
    outline: none;
    cursor: pointer;
    position: relative;
    padding: 0px;
    overflow: hidden;
    transition: all .5s;
    box-shadow: 0px 2px 2px rgba(0,0,0,.2);
}
button.register span{
    position: absolute;
    display: block;
}
button.register span:nth-child(1){
    height: 3px;
    width:200px;
    top:0px;
    left:-200px;
    background: linear-gradient(to right, rgba(0,0,0,0), #D8121B);
    border-top-right-radius: 1px;
    border-bottom-right-radius: 1px;
    animation: span1 2s linear infinite;
    animation-delay: 1s;
}

@keyframes span1{
    0%{
        left:-200px
    }
    100%{
        left:200px;
    }
}
button.register span:nth-child(2){
    height: 70px;
    width: 3px;
    top:-70px;
    right:0px;
    background: linear-gradient(to bottom, rgba(0,0,0,0), #D8121B);
    border-bottom-left-radius: 1px;
    border-bottom-right-radius: 1px;
    animation: span2 2s linear infinite;
    animation-delay: 2s;
}
@keyframes span2{
    0%{
        top:-70px;
    }
    100%{
        top:70px;
    }
}
button.register span:nth-child(3){
    height:3px;
    width:200px;
    right:-200px;
    bottom: 0px;
    background: linear-gradient(to left, rgba(0,0,0,0), #D8121B);
    border-top-left-radius: 1px;
    border-bottom-left-radius: 1px;
    animation: span3 2s linear infinite;
    animation-delay: 3s;
}
@keyframes span3{
    0%{
        right:-200px;
    }
    100%{
        right: 200px;
    }
}

button.register span:nth-child(4){
    height:70px;
    width:3px;
    bottom:-70px;
    left:0px;
    background: linear-gradient(to top, rgba(0,0,0,0), #D8121B);
    border-top-right-radius: 1px;
    border-top-left-radius: 1px;
    animation: span4 2s linear infinite;
    animation-delay: 4s;
}
@keyframes span4{
    0%{
        bottom: -70px;
    }
    100%{
        bottom:70px;
    }
}

button.register:hover{
    transition: all .5s;
    transform: rotate(-1deg) scale(1.1);
    box-shadow: 0px 3px 5px rgba(0,0,0,.4);
}
button.register:hover span{
    animation-play-state: paused;
}



/*PAST WINNERS BOXES*/
 .past-winners {
      display: flex;
      flex-wrap: wrap;
    }


.event-box {
  flex: 0 0 354px; 
  align-items: stretch;
  display:inline-block;
  border: 1px solid;
  padding: 10px;
  box-shadow: 5px 10px #b3b3b3;
  text-align:center;
  margin:0 2% 2% 0;
}

.event-box h4 {font-family:"Oswald","Open Sans Condensed",sans-serif;
  font-size:27pt;
  text-align:center;
  text-transform:uppercase;
  color:#03475A;
  margin:10px 0;
  }
  
  
.event-box h4 img {
      width: 35px;
      height: 35px;
      margin-top:-5px;
      margin-right:5px;
  }



#event-list {
background:url(https://www.enr.com/ext/resources/events/rbp/award-fade.jpg) no-repeat center #ffffff;
	min-height:450px
}
#sponsors {text-align:center; margin:0 auto;}
#sponsors h4 {color:#03475A;  text-align:center}
#sponsors h5 {color:#03475A;  text-align:center}
#sponsors section {text-align:left}
#sponsors img{margin:10px;}

#city-sponsor {text-align:center;}
#city-sponsor h5:not(:first-of-type) {margin-top:30px; }
#city-sponsor img {margin:1% 1% 4% 1%; max-width:150px; max-height:90px;}
#city-sponsor section {text-align:left;}

#awards {text-align:center;margin-bottom:20px}
#awards h3 {margin-top:15px}

#awards a {font-size:13pt}



/* REGISTRATION TABLE */
.regrow {
  display: table;
  table-layout: fixed;
  width: 99%; 
  margin:25px auto 5px auto;
  font-size:1.1em;
font-weight:bold;

}
.regrow div {
  display: table-cell;
  text-align:center;
  padding:5px;
}

.regrow small {font-size:11pt;
font-weight:normal;
}

#head {
margin-top:5px;
border-bottom: #03475A;
}

#head div {
font-size:13pt;
font-weight:bold;
color:#231F20;
}

#head div:not(:first-of-type) {
color: #3b4044;
font-size:11pt;
border-left:#fff 2px solid;
}

#head small {font-size:9.5pt;
font-weight:normal;
line-height:9pt!important;}


.regprice {
margin-top:0px;
border-bottom:#e1e1e1 1px solid;
}

.regprice div {
font-size:1.2em;
font-weight:normal;
border-left:1px solid #e1e1e1;
}

.regprice div:first-of-type {
font-size:1.25em;
font-weight:bold;
color:#6B0107;
border-left:none;
}

.platinum {color:#8c8e84}

.gold {color:#967724}

.silver {color:#70737a}

.bronze {color:#B57947}
