/*############################################
[Name] @ [Company] [DD/MM/YYYY]
############################################*/
/*##### LESS VARS #####*/
/*##### LESS ELEMENTS #####*/
/*##### RESET #####*/
* {
  padding: 0;
  margin: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  overflow-y: scroll;
}
img {
  border: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
/*##### PLUGINS #####*/
/*##### ALERTS #####*/
.genie-alert {
  position: relative;
  display: block;
  padding: 7px 14px;
  margin: 10px 10px;
  min-height: 36px;
  font-family: ubuntu, arial;
  font-size: 13px;
  line-height: 18px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  /*-webkit-box-shadow: 0 1px 4px 0 #9C9C9C;
	box-shadow: 0 1px 4px 0 #9C9C9C;*/
  background: #fff;
  border: 1px solid #58595b;
  border-left-width: 4px;
  color: #333;
}
.genie-alert strong {
  font-family: ubuntu_b, arial;
  font-weight: normal;
}
.genie-alert a {
  display: inline-block;
  text-decoration: none;
  padding: 1px 4px;
  background-color: #f6f6f6;
  color: #333;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #58595b;
}
.genie-alert a:hover {
  background-color: #ececec;
}
.genie-alert-info {
  background: #05abe0;
  border: 1px solid #0f90bc;
  border-left-width: 4px;
  color: #fff;
}
.genie-alert-info a {
  color: #fff;
  background-color: #0f90bc;
  border-color: #004C64;
}
.genie-alert-info a:hover {
  background-color: #1081A8;
}
.genie-alert-info:before {
  font-family: FontAwesome;
  content: "\f05a";
  margin-right: 14px;
  float: left;
  font-size: 23px;
  line-height: 36px;
}
.genie-alert-success {
  background: #3cb878;
  border: 1px solid #16721A;
  border-left-width: 4px;
  color: #fefefe;
}
.genie-alert-success a {
  color: #fefefe;
  background-color: #45c683;
  border-color: #6bf3ad;
}
.genie-alert-success a:hover {
  background-color: #53d994;
}
.genie-alert-success:before {
  font-family: FontAwesome;
  content: "\f164";
  margin-right: 14px;
  float: left;
  font-size: 23px;
  line-height: 36px;
}
.genie-alert-error {
  background: #e5354a;
  border: 1px solid #b50016;
  border-left-width: 4px;
  color: #eee;
}
.genie-alert-error a {
  color: #eee;
  background-color: #F74D61;
  border-color: #FF909D;
}
.genie-alert-error a:hover {
  background-color: #FF6C7E;
}
.genie-alert-error:before {
  font-family: FontAwesome;
  content: "\f00d";
  margin-right: 14px;
  float: left;
  font-size: 23px;
  line-height: 36px;
}
.genie-alert-warning {
  background: #e4d81b;
  border: 1px solid #bab31b;
  border-left-width: 4px;
  color: #333;
}
.genie-alert-warning a {
  color: #333;
  background-color: #EAE22B;
}
.genie-alert-warning a:hover {
  background-color: #FFF634;
}
.genie-alert-warning:before {
  font-family: FontAwesome;
  content: "\f071";
  margin-right: 14px;
  float: left;
  font-size: 23px;
  line-height: 36px;
}
.genie-alert-code {
  background: #F2A64F;
  border: 1px solid #F2A64F;
  color: #fff;
  padding: 3px 3px;
}
.genie-alert pre {
  background: #333;
  padding: 10px;
  color: #fff;
  white-space: pre-wrap;
  /* CSS 3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
}
.genie-alert-code pre:before {
  font-family: FontAwesome, georgia;
  content: "\f121";
  font-size: 22px;
  line-height: 24px;
  color: #F2A64F;
  display: block;
  margin-top: -2px;
  right: 15px;
  position: absolute;
}
/*##### ANIMATINS #####*/
.genie-fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0.0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*##### GENERIC #####*/
/*#### GENIE CMS ####*/
.genie-notfound ul {
  list-style: none;
  margin: 10px 0px;
}
.genie-notfound input[type="text"] {
  height: 26px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-top-color: #c0c0c0;
  font-family: arial, sans-serif;
  font-size: 13px;
  line-height: 1.2em;
  color: #222;
  outline: none;
  padding: 0px 6px;
}
.genie-notfound input[type="text"]:hover {
  border-color: #999;
}
.genie-notfound input[type="text"]:focus {
  border-color: #4d90fe;
}
.genie-notfound input[type="submit"] {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#f1f1f1));
  background-image: -webkit-linear-gradient(top, #f5f5f5, #f1f1f1);
  -webkit-border-radius: 2px;
  -webkit-user-select: none;
  background-color: #f5f5f5;
  background-image: linear-gradient(top, #f5f5f5, #f1f1f1);
  background-image: -o-linear-gradient(top, #f5f5f5, #f1f1f1);
  border: 1px solid #dcdcdc;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  color: #444;
  font-family: arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  margin: 11px 8px;
  min-width: 54px;
  padding: 0 8px;
  text-align: center;
  height: 29px;
  line-height: 27px;
  cursor: pointer;
}
.genie-notfound input[type="submit"]:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f1f1f1));
  background-image: -webkit-linear-gradient(top, #f8f8f8, #f1f1f1);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  background-color: #f8f8f8;
  background-image: linear-gradient(top, #f8f8f8, #f1f1f1);
  background-image: -o-linear-gradient(top, #f8f8f8, #f1f1f1);
  border: 1px solid #c6c6c6;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #222;
}
.genie-response_holder {
  font-family: open_sans, Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #676561;
}
/*#### COOKIE BAR ####*/
.cookieholder {
  background-color: #333;
  z-index: 1000;
  width: 100%;
  padding: 5px 20px;
  display: block;
  text-align: center;
  position: fixed;
  bottom: 0px;
}
.cookie_continue {
  color: #fff !important;
  line-height: 20px !important;
  font-weight: bold;
}
.cookietext,
.cookietext a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: #fff;
  line-height: 16px;
  margin: 0;
  padding: 0;
}
.cookietext a {
  text-decoration: underline;
}
.cookie_continue {
  text-decoration: underline;
  cursor: pointer;
}
/*#### UTILITIES ####*/
.clearboth {
  clear: both;
}
.bold {
  font-weight: bold !important;
}
.no_mob {
  display: none !important;
}
.img_block {
  max-width: 100%;
  display: block;
}
/*#### MARGINS AND PADDING ####*/
.nomar {
  margin: 0 !important;
}
.nomarleft {
  margin-left: 0 !important;
}
.nomarright {
  margin-right: 0 !important;
}
.marbot5 {
  margin-bottom: 5px;
}
.marbot10 {
  margin-bottom: 10px;
}
.marbot15 {
  margin-bottom: 15px;
}
.marbot20 {
  margin-bottom: 20px;
}
.marbot30 {
  margin-bottom: 30px;
}
/*##### FORMS #####*/
/*#### COLOURS ####*/
/*#### FONTS AND SIZES ####*/
.text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #333333;
}
.text ul {
  margin-left: 16px;
}
/*--------------------------------------------*/
/*#### STRUCTURE ####*/
body {
  background: #fff;
}
/*Used to seperate content from the sides of the device*/
.container {
  width: 100%;
  padding: 0px 15px 0px 15px;
}
/*#### HEADER ####*/
/*#### NAVIGATION ####*/
/*#### FOOTER & BASIC STYLING ####*/
/*#### STYLING ####*/
