body {
  font-family: 'Rubik', sans-serif;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
}
.floatclear {
    clear:both;
}
.coursebox {
}
.courselistitem {
	min-height: 50px;
	border: 1px solid #754595;
}
.coursedateleft {
	border: 1px solid #754595;
	min-height: 100px;
	}
.coursedateright {
	padding-top: .5rem;
	float: right;
}
.monthbox {
	text-align: center;
	background: #333333;
    color: white;
}
.daybox {
	text-align: center;
	padding: 1rem;
}
.modaltext {
	font-size: 1.2rem;
	line-height: 1.6rem;
}
.herohome {
	min-height: 200px;
	background: url(../images/mainbackgroundcrop.jpg) no-repeat center center;
	background-size:cover;
}
.top-bar.expanded {
	background: #efefef;
}
.quoteform input:checked + label {
  color: red;
}
.quoteform label {
	border: 1px solid black;
}
  input[value="1storey"] {
      background: url('/images/1storey.png') center bottom no-repeat;
      width: 100% !important;
      height: 100%;
      min-height: 100px;
      display: block !important;
      -webkit-appearance: none !important;
      border-radius: 10px;
      background-size:contain;
  }
  input[value="2storey"] {
      background: url('/images/2storey.png') center bottom no-repeat;
      width: 100% !important;
      height: 100%;
      min-height: 100px;
      display: block !important;
      -webkit-appearance: none !important;
      border-radius: 10px;
      background-size:contain;
  }
  input[value="3storey"] {
      background: url('/images/3storey.png') center bottom no-repeat;
      width: 100% !important;
      height: 100%;
      min-height: 100px;
      display: block !important;
      -webkit-appearance: none !important;
      border-radius: 10px;
      background-size:contain;
  }
  
  input[value="1storey"]:hover {
      border: 4px solid white;
  }
  
  input[value="2storey"]:hover {
      border: 4px solid white;
  }
  
  input[value="3storey"]:hover {
      border: 4px solid white;
  }
  
  /* @group progressbar */
  .progressmeter {
    margin-bottom: 2rem;
  }
  
  .progress-bar {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .progress-bar li {
    flex: 2;
    position: relative;
    padding: 0 0 14px 0;
    font-size: var(--font-size-default);
    line-height: 1.5;
    color: var(--color-green);
    font-weight: 600;
    white-space: nowrap;
    overflow: visible;
    min-width: 0;
    text-align: center;
    border-bottom: 2px solid var(--color-gray-disabled);
  }
  .progress-bar li:first-child,
  .progress-bar li:last-child {
    flex: 1;
  }
  .progress-bar li:last-child {
    text-align: right;
  }
  .progress-bar li:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--color-gray-disabled);
    border-radius: 50%;
    border: 4px solid var(--color-white);
    position: absolute;
    left: calc(50% - 6px);
    bottom: -9px;
    z-index: 3;
    transition: all .2s ease-in-out;
  }
  .progress-bar li:first-child:before {
    left: 0;
  }
  .progress-bar li:last-child:before {
    right: 0;
    left: auto;
  }
  .progress-bar span {
    transition: opacity .3s ease-in-out;
  }
  .progress-bar li:not(.is-active) span {
    opacity: 0;
  }
  .progress-bar .is-complete:not(:first-child):after,
  .progress-bar .is-active:not(:first-child):after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: -2px;
    left: -50%;
    z-index: 2;
    border-bottom: 2px solid var(--color-green);
  }
  .progress-bar li:last-child span {
    width: 200%;
    display: inline-block;
    position: absolute;
    left: -100%;
  }
  
  .progress-bar .is-complete:last-child:after,
  .progress-bar .is-active:last-child:after {
    width: 200%;
    left: -100%;
  }
  
  .progress-bar .is-complete:before {
    background-color: var(--color-green);
  }
  
  .progress-bar .is-active:before,
  .progress-bar li:hover:before,
  .progress-bar .is-hovered:before {
    background-color: var(--color-white);
    border-color: var(--color-green);
  }
  .progress-bar li:hover:before,
  .progress-bar .is-hovered:before {
    transform: scale(1.33);
  }
  
  .progress-bar li:hover span,
  .progress-bar li.is-hovered span {
    opacity: 1;
  }
  
  .progress-bar:hover li:not(:hover) span {
    opacity: 0;
  }
  
  .x-ray .progress-bar,
  .x-ray .progress-bar li {
    border: 1px dashed red;
  }
  
  .progress-bar .has-changes {
    opacity: 1 !important;
  }
  .progress-bar .has-changes:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: calc(50% - 4px);
    bottom: -20px;
    background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%208%208%22%3E%3Cpath%20fill%3D%22%23ed1c24%22%20d%3D%22M4%200l4%208H0z%22%2F%3E%3C%2Fsvg%3E');
  }
  
  :root {
    --color-white: #fff;
    --color-black: #333;
    --color-gray: #75787b;
    --color-gray-light: #bbb;
    --color-gray-disabled: #e8e8e8;
    --color-green: #53a318;
    --color-green-dark: #383;
    --font-size-small: .75rem;
    --font-size-default: .875rem;
  }
  .smalltext {
    font-size: .6rem;
  }
  

  button.lime, .button.lime {
    background-color: #89bb04;
    border-color: #6a9302;
    color: white; }
  button.lime:hover, .button.lime:hover {
    background-color: #6a9302;
    border-color: #6a9302;
    color: white; }

button.gold, .button.gold {
    background-color: #ffb400;
    border-color: #ffb400;
    color: white; }
  button.gold:hover, .button.gold:hover {
    background-color: #ffb400;
    border-color: #ffb400;
    color: white; }
    

.topnav {
  overflow: hidden;
  background-color: #000;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #1186C9;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

.footer {
  padding: 1rem;
  min-height: 300px;
  background-color: #5DC7EE;
  color: #fff;
}

.footer a {
  color: #fff;
}
.header {
  background-color: #5DC7EE;
  color: #fff;
}

.header a {
  color: #fff;
}
.header h5 { 
  margin-bottom: 0;
}