/*General Styling ----------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: #e9e9e9;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 100%;
}

#content {
  background-color: #ffffff;
  width: 100%;
  max-width: 1000px;
  padding: 1.875em;
  margin: 0 auto;
  z-index: 2;
}
#content:after {
  content: " ";
  display: table;
  clear: both;
}

.section {
  width: 100%;
}
.section .content {
  max-width: 1000px;
  margin: 0 auto;
  clear: both;
}

.clearfix:before,
.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.clearfix:after {
  clear: both;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*#region Buttons */
.cta {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  -webkit-appearance: none; /* for input */
  -webkit-user-select: none; /* for button */
  -moz-user-select: none;
  -ms-user-select: none;
  padding: 0.4em 0.5em;
  border-radius: 0.313em;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: bold;
}
.cta:hover {
  text-decoration: none;
}

.cta-wrap {
  clear: both;
  text-align: center;
}

.cta-green {
  color: #152740;
  background-color: #A3D524;
  background: -webkit-gradient(linear, left top, left bottom, from(#B0E627), to(#A3D524));
  background: -webkit-linear-gradient(top, #B0E627, #A3D524);
  background: -moz-linear-gradient(top, #B0E627, #A3D524);
  background: -ms-linear-gradient(top, #B0E627, #A3D524);
  background: -o-linear-gradient(top, #B0E627, #A3D524);
  background: linear-gradient(top, #B0E627, #A3D524);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr="#B0E627", EndColorStr="#A3D524");
  border: 1px solid #A3D524;
}
.cta-green:hover {
  background-color: #99c822;
  background: -webkit-gradient(linear, left top, left bottom, from(#abe31a), to(#99c822));
  background: -webkit-linear-gradient(top, #abe31a, #99c822);
  background: -moz-linear-gradient(top, #abe31a, #99c822);
  background: -ms-linear-gradient(top, #abe31a, #99c822);
  background: -o-linear-gradient(top, #abe31a, #99c822);
  background: linear-gradient(top, #abe31a, #99c822);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr="#abe31a", EndColorStr="#99c822");
}

.cta-pastel-blue {
  color: #152740;
  background-color: #9FDBCF;
  background: -webkit-gradient(linear, left top, left bottom, from(#A8E6D9), to(#9FDBCF));
  background: -webkit-linear-gradient(top, #A8E6D9, #9FDBCF);
  background: -moz-linear-gradient(top, #A8E6D9, #9FDBCF);
  background: -ms-linear-gradient(top, #A8E6D9, #9FDBCF);
  background: -o-linear-gradient(top, #A8E6D9, #9FDBCF);
  background: linear-gradient(top, #A8E6D9, #9FDBCF);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr="#A8E6D9", EndColorStr="#9FDBCF");
  border: 1px solid #9FDBCF;
}
.cta-pastel-blue:hover {
  background-color: #94d7c9;
  background: -webkit-gradient(linear, left top, left bottom, from(#9ce3d4), to(#94d7c9));
  background: -webkit-linear-gradient(top, #9ce3d4, #94d7c9);
  background: -moz-linear-gradient(top, #9ce3d4, #94d7c9);
  background: -ms-linear-gradient(top, #9ce3d4, #94d7c9);
  background: -o-linear-gradient(top, #9ce3d4, #94d7c9);
  background: linear-gradient(top, #9ce3d4, #94d7c9);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr="#9ce3d4", EndColorStr="#94d7c9");
}

.cta-blue {
  background: #152740;
  color: #fff;
  box-shadow: none;
  border: 1px solid #08101a;
}
.cta-blue:hover {
  background: #1b3353;
  color: #fff;
}

.cta-grey {
  background: #484849;
  color: #fff;
  box-shadow: none;
  border: 1px solid #3b3b3c;
}
.cta-grey:hover {
  background: #555556;
  color: #fff;
}
.cta-grey:hover {
  background: #555556;
  color: #fff;
  box-shadow: none;
  border: 1px solid #3b3b3c;
}
.cta-grey:hover:hover {
  background: #616163;
  color: #fff;
}

button.cta-grey:focus {
  background: #6e6e70;
  color: #fff;
  box-shadow: none;
  border: 1px solid #2f2f2f;
}
button.cta-grey:focus:hover {
  background: #7b7b7c;
  color: #fff;
}

.cta-white {
  background: #e9e9e9;
  color: #484849;
  box-shadow: none;
  border: 1px solid #d0d0d0;
}
.cta-white:hover {
  background: #f6f6f6;
  color: #484849;
}

.cta-ghost-white {
  border: 1px solid white;
  color: white;
  box-shadow: 0 3px 0 white;
}

/*#endregion Buttons*/
.button {
  cursor: pointer;
  -webkit-appearance: none;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 0 auto;
}
.button span {
  padding: 0.5em 1em;
  display: block;
}

h1 {
  color: #2a386e;
  font-size: 1.4em;
  font-weight: bold;
  margin: 0;
}

input, .contactUs fieldset textarea {
  outline: none;
}

.clear {
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

.displayAway {
  position: absolute;
  top: -99999px;
}

@media (max-width: 1024px) {
  div#container {
    overflow: hidden;
  }
  #content {
    padding: 1% 1% 1% 1%;
    width: 98%;
  }
  .section .content {
    padding: 1em;
  }
}
/*MAX WIDTH = 650PX*/
@media (max-width: 650px) {
  #content {
    padding: 1% 1% 1% 1%;
    width: 98%;
  }
}
/*End of General Styling*/
/*Cookie Popup ----------------------------------------------*/
#cookieNotifier {
  background: #000;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 130px;
  z-index: 1000;
}

#cookieMessage {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 1em;
}
#cookieMessage a {
  color: #fff;
}
#cookieMessage p {
  color: #fff;
  font-size: 0.85em;
  margin: 0;
  padding: 0.2em 25px 0.2em 0;
}

#cookieCloseButton {
  float: right;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.5em;
  background: #484849;
}

/*End of Cookie Popup*/
/*Form Errors ----------------------------------------------*/
#formError {
  background: #AC2D23;
  padding: 0.75em;
  padding-bottom: 0;
  border-radius: 0.5em;
  margin-bottom: 1em;
}
#formError h4 {
  color: #fff;
  font-weight: 600;
  margin: 0;
  margin-bottom: 0.75em;
  -o-animation: bounce 0.4s ease;
  -moz-animation: bounce 0.4s ease;
  -webkit-animation: bounce 0.4s ease;
  animation: bounce 0.4s ease;
  -o-animation-iteration-count: 2;
  -moz-animation-iteration-count: 2;
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
}
#formError ul#errors {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
}
#formError ul#errors li {
  color: #fff;
  list-style-type: none;
  font-size: 0.8em;
  padding: 0;
  margin: 0;
  margin-bottom: 0.75em;
}
#formError ul#errors li:before {
  content: "\f06a";
  display: inline-block;
  margin-right: 0.3em;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*#region Bounce animation*/
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-2px);
  }
}
@-moz-keyframes bounce {
  0%, 100% {
    -moz-transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(-2px);
  }
}
@-o-keyframes bounce {
  0%, 100% {
    -o-transform: translateY(0);
  }
  50% {
    -o-transform: translateY(-2px);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
/*#endregion*/
label.errorLabel {
  color: #AC2D23 !important;
  font-weight: bold;
}

.errorInput {
  border: 1px solid #AC2D23;
}

/*End of Form Errors*/
/*Pre-Header ----------------------------------------------*/
#pre-header {
  border-bottom: 1px solid #e9e9e9;
  padding: 0;
}
#pre-header .content {
  padding: 0;
}
@media (max-width: 1024px) {
  #pre-header {
    display: none;
  }
}

#login-logout {
  margin: 0;
  padding: 0;
  text-align: right;
  float: right;
}
@media (max-width: 1024px) {
  #login-logout {
    float: none;
    text-align: left;
    padding: 0.5em 0;
  }
}
#login-logout > div {
  display: inline-block;
  padding: 0 0.4em;
  color: #A29A9A;
  vertical-align: middle;
  font-size: 0.75em;
  line-height: 2.3em;
}
@media (max-width: 1024px) {
  #login-logout > div {
    display: block;
    color: #fff;
    font-size: 0.9em;
    font-size: 100%;
    padding: 0;
  }
}
#login-logout a {
  text-decoration: none;
  color: #000;
}
@media (max-width: 1024px) {
  #login-logout a {
    color: #fff;
  }
}

.country-picker select {
  display: none;
}

.country-picker {
  float: right;
  margin-right: 1em;
  padding-left: 1em;
  border-right: 1px solid #e9e9e9;
  border-left: 1px solid #e9e9e9;
}
@media (max-width: 1024px) {
  .country-picker {
    border: none;
    float: none;
    padding: 0.5em 0;
  }
}
.country-picker .selectboxit-btn {
  color: #000;
  width: 123px !important;
  background-repeat: no-repeat;
  background-position: left;
}
@media (max-width: 1024px) {
  .country-picker .selectboxit-btn {
    color: #fff;
    width: auto !important;
  }
}
.country-picker .selectboxit-btn span {
  font-size: 0.8em;
  margin-left: 0.7em;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}
@media (max-width: 1024px) {
  .country-picker .selectboxit-btn span {
    font-weight: 700;
    font-size: 0.971em;
  }
}
.country-picker .selectboxit-list {
  font-size: 0.8em;
  padding: 1em;
  background-color: #FFF;
  top: 2.5em;
  right: -3.9em;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  display: none;
  margin-top: 0;
}
.country-picker .selectboxit-list li {
  border-bottom: 1px solid #e9e9e9;
  background-position: left;
  background-repeat: no-repeat;
}
.country-picker .selectboxit-list li:first-child a {
  padding-top: 0;
}
.country-picker .selectboxit-list li:last-child {
  border-bottom: 0;
}
.country-picker .selectboxit-list li:last-child a {
  padding-bottom: 0;
  fonxt-size: 12px !important;
}
.country-picker .selectboxit-list .selectboxit-option-anchor {
  color: #333333;
}
.country-picker .selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
  background-image: inherit;
  background-color: #f2f2f2;
}
.country-picker .selectboxit-list > .selectboxit-disabled > .selectboxit-option-anchor {
  color: #999999;
}
.country-picker .selectboxit-options a {
  font-size: 13px;
  padding-left: 20px;
  background-position: left;
  background-repeat: no-repeat;
}

.cobrandUK {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAABa1BMVEUAAAAAAQEAAQEAAQEAAQEAAQHFXl7e2tqBlLkKNYoALYbS1dq1DQ2yAADc0tINN4sIM4lzibTHdnjQlZV4faTwtbb76enx9Pmqu934+fzojY3nhob++Pioudzs5ezxuLj98/N/krgCLYRsisTZoanuqan//v77/P7cTk7ZQ0P99PTzxcXtqKji5/J3ksnLztP////aR0fYOzv98/PY2NitDg7YPT3WMzOrAgKoAgLXNjbVKyuqDQ7Pz8/6+vr6+vr47e3PISHRLi7DxcoCKntVdbTS2OXfjo7lsLDx5ubIGRnKJibv8PHz8vLfj4/IhpBIa691hqjo19fSbGzKvclNba3q39/AEBDDHR3f4udRcK7S1+LkxcXSbW5uc5a3hYXLhYeImr8xVp88XqPm3t7GOjrIRUXe4OQ0WKA3WqCVpcXf29utVlaqbG1sfZ0fQIQkRYjJwcGnGRmqJCTBw8cZPYQhQoV2hKG7uLjZVBWYAAAABnRSTlMAAgcKFRynklPFAAAAXElEQVQYGYXBMQ7CQBAEwe7TGCJfwP8/xwcgcQqLQUJekVAF/+hid4vT7h6nzWZYZac+gMs1nJSPQA1ClK8ahCioD6AWwtlmI6w2kzDtCFPFN1QcQw71dMehil8vG7oOzNFoEhcAAAAASUVORK5CYII=");
}

.cobrandUS {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAzFBMVEUAAAAAAQEAAQEAAQEAAQEAAQGWlsAAAIGyAAAAAIDX1+6Ghsz////d3d2Tk7xNTbTBweVDQ7DZQ0PbTU2vAgICAn7CwuU7O62+vuTY2NiQkLg9Pa68vOMzM6nWMzPYPT2rAgICAnu9veMrK6a5ueLS0tKLi7MsLKSzs9whIZ/PISHRLCymAgLMzMz09PTz8/OiAgLCHBzAEBDExMTf39/k5OTn5+fo6Ojo6Ojo6Ojp6eno6Ojo6Ojn5+fl5eXg4OCaERGbFhakGBinGRn13zjaAAAABnRSTlMAAgcKFRynklPFAAAAYklEQVQYV4WOsQ6CQBAFZ44lVtfQ2fD/v0avJli4FMIdGhNnu8m8ZOEfOprvKwBrOLgbAZ/hqK3QR3A5xB2oBK2YQDkVC3A9F3Mv2hOZBMMP0bkRVFuSWbGUvoB8qR8i+WYDPkImtO14KH4AAAAASUVORK5CYII=");
}

.cobrandAU {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAA/1BMVEUAAAAAAQEAAQEAAQEAAQEAAQHfq6tPbKWrtsrfTEw5WZ0ALYZOa6T/4+Pj6fT/r6+lttuGns/5+v0ALIXa2tr+/v7/////g4NDabRNcbgCLYTYS0v/hIT/fn7/UlI7YrHs8PcCLYI4Vpb/0tLQ2ez/eXn/ubmkpcozXK3q7vY9ZLECLIHSfX1zj8fO2Ov/c3ORnsr/zs4rVaqbr9c2Xq8CLH8CK30sVaghTaMCKnskTaEZRZzd4eoCKnocRZnW2uPr6+y8xdgQPJTi5OgHLXgfRpMlS5eOoMMyVp82WqE6XaM7XqM5XKI0WKAuU50oTpkhR5MRM3gWN3oYO4EZPYQlbuvRAAAABnRSTlMAAgcKFRynklPFAAAAZElEQVQYV4XNwQ6AIAwD0HYCGhP//0eNXogVHMHgxd54bB3wFzKSlOXo7yMwVVBi+RTsDFwqAObzDJgHQANrWmFt4BsO/aZUYPLpFwJrnkpltdKevcDGXiJtoNnbWegiOYDwzQ0CURurknDFygAAAABJRU5ErkJggg==");
}

.cobrandCA {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAyVBMVEUAAAAAAQEAAQEAAQEAAQEAAQHVIzDf39/TIzD6maD////RJDH3aXP3YGz/8/P/oaHPIzD3Ym33WmX/qan/OzvMIzD3W2f2U1//v7//WVn/MzPJIy/2VmH2TFn/r6//KyvGIi7xTVnxQ1D67e36Skr6ISHDIi7rRFHqO0jz8/Pz5eXzGRnzQkLBIS3jPEnjM0Ds7OzstbW8JC/XPUncQ07n5+fo6Ojo6OjoyMjpyMjo6Ojo6Ojn5+fdRlHYP0q1LDa2MDrAND7Ly8u9dw0GAAAABnRSTlMAAgcKFRynklPFAAAAZUlEQVQYGYXBMQ7CMBQFwd3wbarc/6IUSCQ87KQIomEG/tEGcgq8ykXkFGJ5052SbFRi0XSnSTZa8iyadpH0DBTdgSkDRXMCMlF0D+RAcVdBAkkoml8eFKvKKVlxWeSStwOXhF8fKcEugiVqwfkAAAAASUVORK5CYII=");
}

.cobrandFR {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAA9lBMVEUAAAAAAQEAAQEAAQEAAQEAAQEASo/f39/ROS4ASo6GrtT////3pZ/POC4CSo1NiL9Dgrzzc2r0enLMOS8CSYxFg707fLnzbWTzdGzLOC4CSIo9frozd7byZ13zbmXIOC4CR4g2ebcrcrPyYVfyaWDFNy0CRoYscbEhaq36+vrtWU7tYVfCNi0CRYQkaaoZYqXz8/PlUUbnWU+/NiwCRYMcYaIQWp7s7OzeSD7fUUe9NSwHRoAfX5slZaAraaQybqfo6Ojo6Ojp6eno6OjdYlnbXVTZWE/UUkm4Ny4RSn8WTYEYU4kZVIzLy8vARj68RT2yQDixPTVBcyfmAAAABnRSTlMAAgcKFRynklPFAAAAWElEQVQYV4XPQQqAMAxE0f811Z1H8P4XVFBBXVilFsSBbB5DQuAvmgDMwxK2FuAaJoUNSKBz0N3QgZJhqoEaxmupEvT6XPmEIgSDmhsqNo3FJ8euvuCgzglLjAq/C3yYIgAAAABJRU5ErkJggg==");
}

.cobrandIN {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAw1BMVEUAAAAAAQEAAQEAAQEAAQEAAQHfhi3dhSz/z57ahC3/uHH/tGnY2Nj////l5fPMzOfU1Ov6+v3V1dXp6fW1td24uN3JyebS0tLV1eu8vN9jY7afn9LAwOH9/f7Pz8/6+vr6+vrj4++rq9arq9WurtbAwN/MzMz09PTz8/PV1eW6utjCwtzs7PAQbQcriyIghhYUbAwthiUyiyo4jzA+kzdDlTtHlz9HmEBGlz5BlDk7kTM1jS0uhyYdbBYibxoldh0meB7ubOTaAAAABnRSTlMAAgcKFRynklPFAAAAZ0lEQVQYGYXBMQ7CMBAAwV37zkmTiv//kYIuiMOAUCIaZuAfTc72UDmUYVO+qgy6gNMdKBoDGCMzmQZB7pBOyxWSYFnFl/1CFcGq4NShimBR3jpUEXRPbgSbykfVhq3JoR5OHKr49QQVpBa89Zw3PAAAAABJRU5ErkJggg==");
}

.cobrandID {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA+0lEQVQ4jc2SsU7DMBRFjxMjoapLJQQSUplZ+B74EyT+oD/GBiNiLhTRimBIQhrHznsMqWgnkk5wFi++x756D/4aA7CYXT+SpBPxXkF/T6gSlm/m6/bBXdzfnVsAP3+ZSl6MoitR7RGI0swzytV6DGABwmtWhudsFBdFvyCCF6FOKH8EqgGVgMQAsUewKa6mu2cBjAWsYg4VbYcJzK7g6PKKtshpqxL6KgA+RPLKw82sm4LGuAQ97n+6o67WuI/P1enZ9MQCkKZDsx32AFK7rbCLiuzn2pxjX3u8970BESHGSGia7R4UefHk3t2krv2AEYComsQYt9dX/y/fWgiGVruUfxwAAAAASUVORK5CYII=");
}

.cobrandIE {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAA9lBMVEUAAAAAAQEAAQEAAQEAAQEAAQEAh0Df39/fagAAhT+Gz6n/////v4bdaQAChEBNuIBDtXn/nEP/oU3aaAICgz9FtXo7sXP/mDv/nUXYZwICgT49snUzrm3/lDP/mT3VZgICgD42r3Arq2j/kCv/lTbSZQICfj0sqWchpF/6+vr6iCH6jizPYwICfDwkoV8ZnVjz8/PzgRn0hiTMYgICezscmVcQlU/s7OzseRDsfxzKYQIHeT0fk1YlmFwrnGEyn2bo6Ojo6Ojp6eno6OjoiTTnhi7lgijgfCHEYAcReEIWe0YYgksZhUzLy8vLbhnHbBi9ZRa8YhGj3HzZAAAABnRSTlMAAgcKFRynklPFAAAAWElEQVQYV4XPQQqAMAxE0f811Z1H8P4XVFBBXVilFsSBbB5DQuAvmgDMwxK2FuAaJoUNSKBz0N3QgZJhqoEaxmupEvT6XPmEIgSDmhsqNo3FJ8euvuCgzglLjAq/C3yYIgAAAABJRU5ErkJggg==");
}

.cobrandES {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAA7VBMVEUAAAAAAQEAAQEAAQEAAQEAAQGtChqsChrki5SqCxvXVWLVS1nYpgL/1EX/0jv90j32yz390Dv/0jvVpAL/0z370TPeqzi3fkbfsT770DP/0TP/0DP/0j3SogL/0zbzwzu6eD+kdnnQrobuvTb/0Cv/ziv/0DbPoAL6zSzouTq6hUCbX0LChlLmuDj6yyH6yCH6yyzMnQL0xCTnvCPcsybapSncrSTmvSPzwhnzwRn0xCSdCxm9JTS7GiqZDx20KDa5LTu9M0G/OUfBPkvCQk/CQk/BQU7APEm9NkS7MD61KTeWGSWXHSmgIC2jIS4ktl8hAAAABnRSTlMAAgcKFRynklPFAAAAWklEQVQYV4WOywrDMBDEJGdLwZD//80eCj6EdnPJwzaF6jZiYAb+oY8hb6F2OQ1LZzINFlU/AbAlwdMDoLYW1E7oaxb8FvdK5Vw5eBOsXpXMFUsZnn7VQSQzO7XlEqC7eeAtAAAAAElFTkSuQmCC");
}

.cobrandNZ {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAA8FBMVEUAAAAAAQEAAQEAAQEAAQEAAQHfq6tPbKWrtsrfTEw5WZ0ALYZOa6T/4+Pj6fT/r6+lttuGns/74eMALIXa2tr+/v7/////g4NDabRNcbgCLYTYS0v/hIT/fn7/UlI7YrHzzNACLYI4Vpb/0tLQ2ez/eXn/ubmkpcozXK3yx8w9ZLECLIHSfX1zj8fO2Ov/c3ORnsr/zs4rVao2Xq8CLH8CK30sVaghTaMCKnskTaEZRZwCKnocRZkQPJTltrgHLXgfRpMlS5crUJwyVp82WqE6XaM7XqM5XKI0WKAuU50oTpkhR5MRM3gWN3oYO4EZPYRopkJiAAAABnRSTlMAAgcKFRynklPFAAAAX0lEQVQYV4WMywrCUBDFknFaH9D//1HRjXhc9FKtIGZ1JoSBf+ikph7Tet/aWU1mwVD39qQGau1tjjvBEDWsNJchtuK8bgASmsNvYRKa9oMrzeKWJAtWvV9AnupOhG9ejroapVnyiOYAAAAASUVORK5CYII=");
}

.cobrandAE {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAA21BMVEUAAAAAAQEAAQEAAQEAAQEAAQG0DyEAhwCzDyHojpiGz4YAhQCwECLdWWjbUF9DtUNNuE0ChAKvECLbUWHZSFg7sTtFtUUCgwKtECLaSlrYQVH////V1dWqECHYQ1TWOUvS0tKoECHTOkvRMEL6+vr6+vrPz8+lECDMMkPJKDoZGRkkJCQCAgKkDyDEKjvCHzEQEBAcHBwCAgKfEyO6LDy/MkHDN0cyMjI2NjY6Ojo7Ozs5OTk0NDQuLi4oKCghISEHBwebHSudIS+mJDOpJTQZGRkYGBgWFhYRERGiHfkkAAAABnRSTlMAAgcKFRynklPFAAAAUElEQVQYV4XOSwqAQAwE0aqhx6X3P6qoqAvxM8Jg7/I6gcBftALe8xyLL3CJ0Rt0CkMDtICEqqwXhBCl9k668AphVL0WxFKev2HfnvqEnW8OsREImiEL2p4AAAAASUVORK5CYII=");
}

.cobrandMY {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAA21BMVEX///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+Lna3f399lfJLqFhzoCA9ie5HX1VnpEBfQ0NDwUFToCA5BXadVb4jsLjS6AQbuQUfpCRDUFxxBXKhddJZwhpuUoqzU1I16jIrFxmROY6Q4WJhVa4BBXJxPao7vT1N4jbgfO5FEYnxVcWY4V3MLLJELK5B8jrztPkT8/PyrsmmkrpdQXrXECA3b2Wfb2WhvhZrECA7kKC7vUFTyY2ftOD2rsmCUn44/UK0bN47v7+/kjvw+AAAADnRSTlMAIzcYDBUSICoPAwkGHdHPtawAAACTSURBVHheZc/FDkJBDIbRDnDd3VB3d3d5/yeiZBIy5J5FF1/+TSFF5bMMXgWuYjWtOG4XKQ6EaqM+NIyFTglA1pttbX84DsJLGF5vBMj98XQ9z6WDFYZuq99Jkl7+a3nGMBpPprP5iy7eGMp26ccuYzB1holh5zuRgyK8/glDwC4CAlrhjwaSmGGIEshKjqHIqe8/AwESyU7zYt8AAAAASUVORK5CYII=");
}

.cobrandSG {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAEfSURBVHjazJPBSgJRFIa/c+9NqSlkwFrUUhDFp3Dr1pfzJXyLVoIF4qoWhVKLQC9jhc6dO3NbZCEkweSmb3M4i//ncH5+CSFwCAJUgNPtLIMD3gxQe+73X6qdDhJFuOmUkOcU6zWi1K8Ol8PhhQGiSrvNSa9HniSIMag4plguKVarPTcLhEA6mQBEBtB4j66fkwwGVFot1tfXVJtNstkMQvgU7aDjmJBlANoAZM7hHx847nZxN7eYep1sPidfLBBjfl6hFD5NATAA76MRR1EEImT3d+TWgtKIQLEnpZCmuCT53hvW2lAWa20AGgpgs9mUzv9L808M0u1Hy5DupOC894zH479UwQlQA66As5LiV+BJAL0tki5pkANODq3zxwATqK/T2+YmMwAAAABJRU5ErkJggg==");
}

.cobrandTH {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAADqSURBVHjapJO9TgJREIW/gauQIFwbKbRcS2MsrXwDKh/Op7DyRYi2hBsKLLBxXZPdvWEYG9a1sOAup5lMcc78nREz4xgIcAqc7WMKIvDtAP8+e9x0qX758jx1wAhVBne3CU0b9fwVYCRAZmaLTvOLXPcAVDWZ3HAcwM3siemFJy9q/l5FRPjvSueTIZuPvBUoy5LFSsmL+qDqfjzgRGIrUFUV5hy7Az2x1R26rX7zLIRgqQghGJD1mg5S0XAcwPL+geHEJwksv9olRjXjLf/sYoUogAeugHEiuQDWAvT3j9RP9RIQ5dh3/hkAk4SM5sbY/IEAAAAASUVORK5CYII=");
}

.cobrandCN {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAFbSURBVHjapJO/SgNBEIe/vduLCSaKFhb6DCnFzs4XsMgjWlj4AD6BFhYKFqKgTSzSaBLN7f+xuJM7RSHRHywLy8w3Oz9mlIjwHymgA/TrexU54E0Dm+Pj0QSACGRADt39gLnQTZkftHd2uqOBdYmR3uGQYjfhnzPSXJHeYTCK2Lu8AquGJYC9vgFY10AupUdvTekdTYgnGvdYVQ5P0nTa+kW+vYV4D5BrgGAt9nZOmCzwDxlxkqG60D0ImCsN/msbKs+J1gKgAXww+Kcp5nKBKgQ0rA09i/Oi8iR880HAGdMATFnSuX8kzWZ8vvqHJvi7idnGBibPGkBZlvSzDJFURfj6FC1ISyl4SpcagDUWVRRISi2ngPTL8PiArUysW3AW0RqUWmqCRATjWiZaa6HbQxXFcjOYUpVTA1wU4eb15S+r4BSwCewBgxWT58BY1XZ16nsVRcCp/67zxwDGd5ld8bkQAQAAAABJRU5ErkJggg==");
}

.cobrandINTERNATIONAL {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAABs1BMVEX////f58S/0ZK8z7Rqmdhbj85Ef7RShTdeiS6as4yuwKKnupbr7+zh6cbD05ZwnVRagTmrvZ3t8O7h6cd5oUtvj0rw9PKnvoa5yKd3nEBukGtYhBJhg0A4a59cgEZJdMhxj2WgtNm3xajx9fpEbbZ7lmDq7uvt8fictNk+b7Zvj2K0wqXl6+Xr7/eVsNesxeKYuNxAdbsrY7JBcHhQfpGGreKqwb+wvpzk6uRekBpGe1A+bRpMhjlKlVVZm21HuP9O1P9O4P+D3KaByoB7rRpbjhxFeU87aSyWxi55xZE6gM9Kp+dOv/NRyPlSwfF7uU9Wk4tAfaoyaKQ2ZTZPuO1kraEjYMBCiNRHnOBHo/FTpcFjm01LhnZDd2I+bS44YQBkmjpYiBYLRaU1ar46dsc9fNA8etZQhDpRfQBGcQA1XwA+ZBI6bAM8bgBBiY4PRKMrXbEsX8M6bYRIdQU+ago2YAA0WwBDktI0g4d4wIas3FBs2NgLRqESRbEwX1Q/ZgA4XgAyXiVR0f+TyDp3pxtajiJMfBM8bDFNleBEjORQmWVmw8xc2udk5+ph3/B6y56AsCRzDo4lAAAAOXRSTlMAAAALZrfk5rprDwAAAB2/xiMAC8DJEWh1usfo6unrvsptew/H0RYAJMjPKQAAABFzwufoxXkVAADG3oI/AAAAuElEQVR4Xo3PQ5IEARQA0bZt27ZtW2Pbtu05ckf8E1Qu3y5RSEJjsDg8gUgiU6g0ADqDuXv2/hHbYbE5AFxevFTu9ecXtvkCAOH5xeXV49Pzy+ubCED8+fX98/v3H45EJQDSRDKVzmRz+UJRBiCvVGv1RrPV7nQVAMrBcDQxOTU9MzunAlAvLi2vrK6tb2xuaQC0ur39g8Oj45NTvQHAaDJf39ze3T9YrDYAu8Ppcnu8Pn8gGEKyOgaWLCjJuwxOsAAAAABJRU5ErkJggg==");
}

/*End of Pre-Header*/
/*Header ----------------------------------------------*/
#header {
  background-color: #fff;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}
#header #header-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 0.85em;
  z-index: 2;
  position: relative;
  clear: both;
  padding: 1em 0;
  z-index: 100;
}
#header h1 {
  float: left;
  padding: 0;
}
#header #logo-dt {
  position: relative;
  float: left;
  clear: both;
  width: 20em;
  height: 4em;
}
#header #logo-dt .a {
  fill: #B0E627;
}
#header #logo-dt .b {
  fill: #1E345B;
}
#header #logo-dt img {
  width: 100%;
}
#header #logo-dt.xmas-logo {
  width: 24em;
}
#header #logo-dt.xmas-logo .a {
  fill: #B0E627;
}
#header #logo-dt.xmas-logo .b {
  fill: #BE1622;
}
#header #logo-dt.xmas-logo .c {
  fill: #BC9A5F;
}
#header #logo-dt.xmas-logo .d {
  fill: #162740;
}
#header #logo-mob {
  display: none;
}
#header #logo-desktop {
  height: relative;
  float: left;
  clear: both;
  width: 20em;
  height: 4em;
}
#header #logo-desktop .a {
  fill: #B0E627;
}
#header #logo-desktop .b {
  fill: #1E345B;
}
#header #logo-desktop img {
  width: 100%;
}
#header #logo-desktop.xmas-logo {
  width: 24em;
}
#header #logo-desktop.xmas-logo .a {
  fill: #B0E627;
}
#header #logo-desktop.xmas-logo .b {
  fill: #BE1622;
}
#header #logo-desktop.xmas-logo .c {
  fill: #BC9A5F;
}
#header #logo-desktop.xmas-logo .d {
  fill: #162740;
}
#header #logo-mobile {
  display: none;
}

#header-menu #nav-content {
  float: right;
  margin: 0;
  padding: 0;
  text-align: center;
}
#header-menu #nav-content > li {
  display: inline-block;
  list-style-type: none;
  padding: 0 0.6em;
  text-transform: uppercase;
  vertical-align: middle;
}
#header-menu #nav-content > li.mob-only {
  display: none;
}
@media (max-width: 1024px) {
  #header-menu #nav-content > li.mob-only {
    display: block;
  }
}
#header-menu #nav-content > li:first-child {
  padding-left: 0;
}
#header-menu #nav-content > li:last-child {
  padding-right: 0;
}
#header-menu #nav-content > li > a {
  color: #2d2d2d;
  font-weight: bold;
  line-height: 4em;
  text-decoration: none;
}
#header-menu #nav-content > li > a:hover {
  text-decoration: underline;
}
#header-menu #show-menu-wrapper {
  display: none;
}
#header-menu .navSelected {
  padding: 2em 0 1em 0;
  border-bottom: 0.5em solid #B0E627;
}

@media (max-width: 1024px) {
  #header #header-content {
    padding: 0;
    max-width: 100%;
  }
  #header #logo-dt {
    margin: 0.8em 0.8em 0.8em 1.2em;
    width: 17em;
    height: 3.1em;
  }
  #header #logo-dt.xmas-logo {
    width: 20em;
    margin-top: 1.2em;
  }
  #header #logo-dt {
    display: none;
  }
  #header #logo-mob {
    display: inline-block;
    float: left;
    padding: 0.75em;
    padding-top: 1.1em;
  }
  #header #logo-mob img {
    width: 4em;
  }
  #header #logo-desktop {
    display: none;
  }
  #header #logo-mobile {
    display: inline-block;
    float: left;
    width: calc(100% - 5em);
    padding: 0.5em;
    padding-top: 1.2em;
  }
  #header #logo-mobile .logo-small {
    display: inline-block;
    width: 100%;
    text-align: left;
    padding-left: 0.5em;
  }
  #header #logo-mobile .logo-small img {
    width: 4em;
  }
  #header #logo-mobile .mob-back {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    color: #147A86;
  }
  #header #logo-mobile .mob-back + a.logo-small {
    width: calc(100% - 3.7em);
    text-align: center;
    padding-left: 0;
    vertical-align: middle;
  }
  #header-menu .navSelected {
    padding: 1.3em 0;
  }
}
@media (max-width: 1024px) {
  .home-nav {
    font-weight: bold;
  }
  #header-menu #show-menu-wrapper {
    text-align: center;
    display: block;
    font-weight: 900;
    float: right;
    padding: 0;
    margin: 0;
    border-left: 0.1em solid #116069;
  }
  #header-menu #show-menu-wrapper > li {
    display: inline-block;
    border-right: 1px solid #000;
  }
  #header-menu #show-menu-wrapper > li:last-child {
    border-right: 0;
  }
  #header-menu #show-menu-wrapper > li > a {
    color: #2d2d2d;
    line-height: 3.3;
    width: 7em;
    text-decoration: none;
    padding-top: 1.7em;
    display: block;
    font-size: 0.7em;
  }
  #header-menu #show-menu-wrapper > li > a:before {
    font-size: 18px;
    display: block;
  }
  #header-menu #show-menu-wrapper > li .fa {
    font-size: 2em;
    vertical-align: text-top;
    display: block;
  }
  #header-menu ul#nav-content {
    margin: 0.5em;
    display: none;
    float: none;
    text-align: left;
  }
  #header-menu ul#nav-content > li {
    display: block;
  }
  #header-menu ul#nav-content > li > a {
    color: #2d2d2d;
    line-height: 3.3;
    width: 100%;
  }
  #header-menu #showMoreCobrands {
    padding-left: 1.5em;
  }
  #header-menu .navSelected {
    padding: 0;
    border-bottom: none;
  }
  #header-menu .nav-expanded #show-menu-wrapper {
    background-color: #147A86;
  }
  #header-menu .nav-expanded #show-menu-wrapper a {
    color: #fff;
  }
  #header-menu .nav-expanded ul#nav-content {
    display: block;
    margin-top: 0;
    background-color: #147A86;
    padding: 1em 1.5em;
    margin: 0;
    clear: both;
  }
  #header-menu .nav-expanded ul#nav-content > li {
    width: 100%;
    list-style-type: none;
    padding: 0.5em 1em;
    border-bottom: 0.1em solid #116069;
  }
  #header-menu .nav-expanded ul#nav-content > li:last-child {
    border-bottom: 0;
  }
  #header-menu .nav-expanded ul#nav-content > li > a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
  }
}
@media (max-width: 650px) {
  #header #logo-dt {
    margin: 1.2em 0.8em 0.8em 1.2em;
    width: 13em;
  }
  #header #logo-dt.xmas-logo {
    width: 15em;
    margin-top: 1.6em;
  }
}
/*Search Box ----------------------------------------------*/
#searchBar {
  margin: 0 0 2em 0;
  padding: 0;
  border: 0;
}
#searchBar fieldset {
  border: 0;
  padding: 0;
}

#searchForm ol {
  margin: 0;
  padding: 0;
  float: left;
  width: 100%;
}
#searchForm ol li {
  list-style-type: none;
}

.searchInput {
  width: calc(100% - 7.5em);
  float: left;
  position: relative;
}
@media (max-width: 1024px) {
  .searchInput {
    width: calc(100% - 8.5em);
  }
}
.searchInput input, .searchInput .contactUs fieldset textarea, .contactUs fieldset .searchInput textarea {
  background-color: transparent;
  height: 50px;
  position: relative;
  width: 100%;
  border: none;
  margin: 0;
  color: #484849;
  background: #fff;
  border-radius: 0.313em;
  padding-left: 3.5em;
  font-size: 1em;
  -webkit-appearance: none;
}
@media screen and (max-width: 650px) {
  .searchInput input, .searchInput .contactUs fieldset textarea, .contactUs fieldset .searchInput textarea {
    font-size: 1em;
  }
}
.searchInput input:focus, .searchInput .contactUs fieldset textarea:focus, .contactUs fieldset .searchInput textarea:focus {
  background: #fff;
  border: 1px solid #2d2d2d;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #000;
}
.searchInput:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f002";
  font-size: 1.6em;
  margin: 0.5em 0.5em;
  display: inline-block;
  position: absolute;
  color: #147A86;
  z-index: 5;
}
.searchInput .clearSearch {
  position: absolute;
  right: 2%;
  top: 38%;
  cursor: pointer;
  display: none;
}

.searchSubmit {
  float: right;
  width: 7em;
}
.searchSubmit input, .searchSubmit .contactUs fieldset textarea, .contactUs fieldset .searchSubmit textarea {
  font-size: 1em;
  height: 50px;
  width: 100%;
  margin: 0;
  min-height: 0;
  padding: 0.375em;
  display: inline-block;
  text-decoration: none;
  border-radius: 0.313em;
  font-weight: bold;
  color: #152740;
  background-color: #A3D524;
  background: -webkit-gradient(linear, left top, left bottom, from(#B0E627), to(#A3D524));
  background: -webkit-linear-gradient(top, #B0E627, #A3D524);
  background: -moz-linear-gradient(top, #B0E627, #A3D524);
  background: -ms-linear-gradient(top, #B0E627, #A3D524);
  background: -o-linear-gradient(top, #B0E627, #A3D524);
  background: linear-gradient(top, #B0E627, #A3D524);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr="#B0E627", EndColorStr="#A3D524");
  border: 1px solid #A3D524;
}
.searchSubmit input:hover, .searchSubmit .contactUs fieldset textarea:hover, .contactUs fieldset .searchSubmit textarea:hover {
  background-color: #99c822;
  background: -webkit-gradient(linear, left top, left bottom, from(#abe31a), to(#99c822));
  background: -webkit-linear-gradient(top, #abe31a, #99c822);
  background: -moz-linear-gradient(top, #abe31a, #99c822);
  background: -ms-linear-gradient(top, #abe31a, #99c822);
  background: -o-linear-gradient(top, #abe31a, #99c822);
  background: linear-gradient(top, #abe31a, #99c822);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr="#abe31a", EndColorStr="#99c822");
}

@media (max-width: 1024px) {
  div#searchSuggestions div#categoryResults li {
    line-height: 2.5em;
  }
  .searchSubmit {
    width: 8em;
  }
  .searchSubmit input, .searchSubmit .contactUs fieldset textarea, .contactUs fieldset .searchSubmit textarea {
    font-size: 1.5em;
  }
}
@media (max-width: 650px) {
  .searchInput {
    width: calc(100% - 5em);
  }
  .searchInput input, .searchInput .contactUs fieldset textarea, .contactUs fieldset .searchInput textarea {
    border-top-right-radius: 0em;
    border-bottom-right-radius: 0em;
    padding-left: 0.375em;
  }
  .searchInput:before {
    display: none;
  }
  .searchSubmit {
    width: 5em;
  }
  .searchSubmit input, .searchSubmit .contactUs fieldset textarea, .contactUs fieldset .searchSubmit textarea {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -1px;
    text-indent: -100000000px;
    background: url(../images/common/magnifyingGlassDark.svg?23092019) #B0E627 no-repeat center;
  }
  #searchBar {
    background-color: rgba(0, 0, 0, 0);
    padding: 0;
    margin-bottom: 1em;
  }
  #searchBar fieldset {
    padding: 0 !important;
  }
}
/*IE10 is already showing a "clear input" button, so ours should be hidden!*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  ol li.searchInput > span {
    display: none !important;
  }
}
/*End of IE10 Hack*/
/*End of Search Box*/
/*Search Suggestions ----------------------------------------------*/
#searchSuggestions {
  background-color: #fff;
  z-index: 60;
  position: absolute;
  width: 93.2%;
  max-width: 44em;
  margin: 0;
  line-height: 1.35em;
  padding: 0 0 0.313em 0;
  BORDER: 1PX SOLID #ccc;
  border-radius: 0.1em;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
}
#searchSuggestions:before {
  content: "";
  border-color: transparent;
  border-bottom-color: #fff;
  border-style: dashed dashed solid;
  border-width: 0 8.5px 8.5px;
  display: block;
  position: absolute;
  left: 6.5px;
  top: -8px;
  z-index: 1;
  height: 0;
  width: 0;
}
#searchSuggestions h2 {
  font-size: 0.9em;
  margin: 0 0 0.313em 0;
  padding: 0.313em;
  font-weight: normal;
  background-color: #f5f5f5;
  border-bottom: 1px solid rgba(204, 204, 204, 0.37);
}
#searchSuggestions ul {
  margin: 0;
  padding: 0;
}
#searchSuggestions li {
  list-style-type: none;
  font-size: 0.8em;
}
#searchSuggestions a {
  color: #147A86;
  text-decoration: none;
}
#searchSuggestions a:hover {
  text-decoration: underline;
  color: #2a386e;
}
#searchSuggestions img {
  border: 1px solid #c6c6c6;
}
#searchSuggestions p {
  margin: 0 0 0 0.313em;
  font-style: italic;
  font-size: 0.8em;
  color: #696969;
}
#searchSuggestions #categoryResults {
  width: 30%;
  float: left;
}
#searchSuggestions #categoryResults ul {
  margin-left: 0.313em;
}
#searchSuggestions #franchiseResults {
  width: 30%;
  margin: 0;
  float: left;
}
#searchSuggestions #franchiseResults h2 {
  margin-bottom: 0.625em;
}
#searchSuggestions #franchiseResults li {
  margin-bottom: 0.625em;
}
#searchSuggestions #franchiseResults span {
  display: none;
}
#searchSuggestions #franchiseResults p {
  margin-top: 0.313em;
}
#searchSuggestions #articleResults {
  width: 40%;
  float: left;
}
#searchSuggestions #articleResults ul {
  margin: 0 0.313em;
}
#searchSuggestions #articleResults h3 {
  margin: 0 0 0.188em 0;
  font-size: 1em;
}
#searchSuggestions #articleResults li p {
  margin: 0 0 0.625em 0;
  font-size: 1em;
  font-style: normal;
}

@media (max-width: 1024px) {
  div#searchSuggestions div#categoryResults li {
    line-height: 2.5em;
  }
}
@media (max-width: 650px) {
  #searchSuggestions {
    min-width: 0;
    margin: 0;
    width: 80.2127659574%;
  }
  #searchSuggestions #categoryResults,
#searchSuggestions #articleResults {
    display: none;
  }
  #searchSuggestions #franchiseResults {
    width: 100%;
  }
  #searchSuggestions #franchiseResults h2 {
    display: none;
  }
  #searchSuggestions #franchiseResults li {
    border-bottom: 1px dashed #b2b2b2;
    margin: 0;
    display: block;
    width: 100%;
  }
  #searchSuggestions #franchiseResults li:last-of-type {
    border: 0px;
  }
  #searchSuggestions #franchiseResults img {
    display: none;
  }
  #searchSuggestions #franchiseResults span {
    display: block;
    font-size: 1.3em;
    font-weight: bold;
    line-height: 2.1em;
    margin-left: 1em;
    width: 100%;
  }
}
/*End of Search Suggestions*/
/*Footer ----------------------------------------------*/
#footer {
  background-color: #0c1624;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  clear: both;
}
#footer #footerContent {
  max-width: 1000px;
  padding: 1.875em 0;
  margin: 0 auto;
}
#footer dl {
  float: left;
  line-height: 1.35em;
  margin: 0 4% 0 0;
}
#footer dl:last-child {
  margin-right: 0;
}
#footer dl dt {
  color: #fff;
}
#footer dl dd {
  margin: 0 0 0.3em 0;
}
#footer dl dd a {
  text-decoration: none;
  color: #B0E627;
}
#footer dl dd a:hover {
  text-decoration: underline;
}
#footer #footer-links {
  width: 100%;
}
#footer #footer-links a {
  font-size: 0.8em;
}
#footer #social-links {
  margin: 0 !important;
}
#footer #social-links dd {
  display: inline-block;
  font-size: 2em;
  color: #FFF;
  margin-right: 0.1em;
  margin-top: 0.2em;
}
#footer #social-links dd a {
  display: inline-block;
  text-align: center;
  color: #fff;
  width: 2em;
  height: 2em;
  padding: 0.5em 0.45em;
  font-size: 0.7em;
}
#footer #social-links dd a.twitter {
  background: #4099FF;
}
#footer #social-links dd a.twitter:hover {
  background: #5aa7ff;
  text-decoration: none;
}
#footer #social-links dd a.linkedin {
  background: #007BB6;
}
#footer #social-links dd a.linkedin:hover {
  background: #008cd0;
  text-decoration: none;
}
#footer #social-links dd a.Facebook {
  background: #3B5998;
}
#footer #social-links dd a.Facebook:hover {
  background: #4264aa;
  text-decoration: none;
}
#footer #social-links dd a.Google {
  background: #DD4B39;
}
#footer #social-links dd a.Google:hover {
  background: #e15f4f;
  text-decoration: none;
}
#footer #footer-legals {
  display: block;
  font-size: 0.688em;
  border-top: 0.1em solid #484849;
  display: block;
  margin-top: 1em;
  padding-top: 1em;
}
#footer #copyright {
  color: #e9e9e9;
  float: left;
}
#footer #copyright span {
  clear: both;
  float: left;
  margin-top: 1em;
}
#footer #dynamis-logo {
  float: right;
  margin-top: 1.3em;
}
#footer #nohead {
  margin-top: 1.37em;
}

#footer-reduced {
  background-color: #0c1624;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  clear: both;
  padding: 0 1em;
}
#footer-reduced #footerContent {
  max-width: 1000px;
  padding: 1.875em 0;
  margin: 0 auto;
}
#footer-reduced dl {
  float: left;
  line-height: 1.35em;
  margin: 0 4% 0 0;
}
#footer-reduced dl:last-child {
  margin-right: 0;
}
#footer-reduced dl dt {
  color: #fff;
  margin-bottom: 0.75em;
}
#footer-reduced dl dd {
  display: block;
  width: 50%;
  float: left;
  margin: 0 0 0.75em 0;
}
@media (min-width: 25.625em) {
  #footer-reduced dl dd { /*410px*/
    width: auto;
    margin: 0 1em 0 0;
  }
}
#footer-reduced dl dd a {
  text-decoration: none;
  color: #B0E627;
}
#footer-reduced dl dd a:hover {
  text-decoration: underline;
}
#footer-reduced #footer-links {
  width: 100%;
}
#footer-reduced #footer-links a {
  font-size: 0.8em;
}
#footer-reduced #footer-legals {
  display: block;
  font-size: 0.688em;
  border-top: 0.1em solid #484849;
  display: block;
  margin-top: 1em;
  padding-top: 1em;
}
#footer-reduced #copyright {
  color: #e9e9e9;
  float: left;
}
#footer-reduced #copyright span {
  clear: both;
  float: left;
  margin-top: 1em;
}

@media (max-width: 1000px) {
  #footer #footerContent {
    padding: 1.875em;
  }
}
@media (max-width: 900px) {
  #dynamis-logo {
    float: left;
    margin-top: 1.3em;
    clear: both;
    border-top: 0.1em solid #484849;
    padding-top: 2em;
    width: 100%;
  }
  #social-links {
    margin: 0 !important;
    width: 33.4%;
  }
  #footer #footer-legals {
    border-top: none;
    padding-top: 0;
  }
  #footer dl {
    margin: 0 2% 0 0;
  }
}
@media (max-width: 650px) {
  #footer {
    background-color: #000;
  }
  #footer dl {
    width: 100%;
    line-height: 1.8em;
  }
  #footer #nohead {
    margin-top: 0;
  }
}
/*End of Footer*/
/*Category Overview ----------------------------------------------*/
#franchiseCats {
  margin-top: 0.625em;
}
#franchiseCats .categories {
  list-style-type: none;
  margin: 0 0.625em 0 0;
  padding: 0;
  font-size: 0.9em;
  float: left;
  width: 23.9361702128%; /* 225px / 940px */
}
#franchiseCats .categories li {
  line-height: 2.4em;
  border-bottom: 1px dashed #b2b2b2;
  padding-left: 1em;
}
#franchiseCats .categories .parent {
  font-weight: bold;
  padding-left: 0.4em;
  background-color: #eeeeee;
}
#franchiseCats .categories a {
  color: #454545;
  text-decoration: none;
  display: block;
}
#franchiseCats .categories a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  #franchiseCats div {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
    float: left;
    width: 48%;
    margin: 0 1% 0 1%;
  }
  #franchiseCats ul.categories {
    float: none;
    width: 100%;
  }
}
@media (max-width: 650px) {
  #franchiseCats div {
    float: none;
    width: 100%;
    margin: 0;
  }
  #franchiseCats ul.categories {
    float: none;
    width: 100%;
  }
}
/*End of Category Overview*/
/*Terms and Conditions ----------------------------------------------*/
.termsConditions {
  line-height: 1.35em;
}
.termsConditions a {
  color: #147A86;
}
.termsConditions a a:hover {
  color: #B0E627;
  text-decoration: underline;
}
.termsConditions p,
.termsConditions li {
  font-size: 0.9em;
}
.termsConditions h4 {
  color: #454545;
  margin: 10px 0;
}
.termsConditions table {
  width: 100%;
  border-collapse: collapse;
  position: relative;
}
@media screen and (max-width: 36.25em) {
  .termsConditions table tr {
    border: 1px solid #cccccc;
  }
}
.termsConditions table td {
  vertical-align: middle;
  border: 1px solid #cccccc;
  padding: 0.7em;
  font-size: 1em;
}
.termsConditions table td:first-of-type {
  font-weight: bold;
  width: 13em;
}
@media screen and (max-width: 36.25em) {
  .termsConditions table td:first-of-type {
    border: none;
    width: 100%;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 36.25em) {
  .termsConditions table td {
    display: block;
    float: left;
    width: 100%;
    border: none;
  }
}
.termsConditions table td ol, .termsConditions table td ul {
  display: inline-block;
  width: 100%;
}
.termsConditions table td li {
  font-size: inherit;
}
.termsConditions table td li:not(:last-of-type) {
  margin-bottom: 0.7em;
}
.termsConditions table td li.sub-list {
  padding-left: 1em;
}
.termsConditions ol {
  list-style-type: none;
}
.termsConditions ol li {
  margin-bottom: 1em;
  list-style-type: none;
}
.termsConditions ol.numeral-subs {
  padding-left: 3.3em;
}
.termsConditions ol.numeral-subs li {
  position: relative;
}
.termsConditions ol.numeral-subs li span.counter {
  position: absolute;
  top: 0;
  left: -3em;
}
.termsConditions ol.numeral-subs li h3 span.counter {
  left: -2.65em;
}
.termsConditions ol.alpha-subs {
  padding-left: 1.5em;
}
.termsConditions ol.alpha-subs li {
  font-size: 100%;
}
.termsConditions ol.alpha-subs span.letter {
  position: absolute;
  top: 0;
  left: -1.5em;
}

#to-top-tcs {
  position: fixed;
  top: 80%;
  right: 0;
  padding: 10px;
  border: dotted #666;
  border-width: 1px 0 1px 1px;
  background: #e2f8fb;
  cursor: pointer;
  color: #1895a2;
  z-index: 102;
}

/*End of Terms and Conditions*/
/*Privacy Policy ----------------------------------------------*/
.privacyPolicy {
  line-height: 1.35em;
}
.privacyPolicy p,
.privacyPolicy li {
  font-size: 0.8em;
}
.privacyPolicy a {
  color: #147A86;
}
.privacyPolicy a a:hover {
  color: #B0E627;
  text-decoration: underline;
}
.privacyPolicy li li {
  font-size: 1em;
}
.privacyPolicy h4 {
  color: #454545;
  margin: 10px 0;
}

/*End of Privacy Policy*/
/*Cookie Policy ----------------------------------------------*/
.cookiePolicy {
  line-height: 1.35em;
}
.cookiePolicy p,
.cookiePolicy li {
  font-size: 0.8em;
}
.cookiePolicy a {
  color: #147A86;
}
.cookiePolicy a:hover {
  color: #B0E627;
  text-decoration: underline;
}
.cookiePolicy li {
  font-size: 0.8em;
}
.cookiePolicy li li {
  font-size: 1em;
}
.cookiePolicy h2 {
  color: #454545;
  margin: 10px 0;
  font-size: 1em;
}
.cookiePolicy h4 {
  color: #454545;
  margin: 10px 0;
  font-size: 0.9em;
}
.cookiePolicy table {
  font-size: 0.8em;
  width: 100%;
  border-collapse: collapse;
}
.cookiePolicy th {
  font-weight: bold;
}
.cookiePolicy th,
.cookiePolicy td {
  border: 1px solid #bbbbbb;
  padding: 5px;
}
.cookiePolicy td a {
  line-height: 1.2em;
}

@media (max-width: 767px) {
  /* Force table to not be like tables anymore */
  .cookiePolicy table,
.cookiePolicy thead,
.cookiePolicy tbody,
.cookiePolicy th,
.cookiePolicy td,
.cookiePolicy tr {
    display: block;
  }
  .cookiePolicy thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .cookiePolicy tr {
    border: 1px solid #ccc;
    margin-bottom: 1em;
  }
  .cookiePolicy td {
    border: none;
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 40%;
  }
  .cookiePolicy td.noBorder {
    border: none;
  }
  .cookiePolicy td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }
  .cookiePolicy td:nth-of-type(1):before {
    content: "Cookie";
  }
  .cookiePolicy td:nth-of-type(2):before {
    content: "Name";
  }
  .cookiePolicy td:nth-of-type(3):before {
    content: "Purpose";
  }
  .cookiePolicy td:nth-of-type(4):before {
    content: "Other information";
  }
}
/*End of Cookie Policy*/
/*FAQs ----------------------------------------------*/
.faqs {
  line-height: 1.35em;
}
.faqs p,
.faqs li {
  font-size: 0.8em;
}
.faqs li li {
  font-size: 1em;
}
.faqs h2 {
  font-size: 1.1em;
  color: #454545;
}
.faqs h4 a {
  color: #454545;
  margin: 10px 0;
}
.faqs h4 a:hover {
  text-decoration: none;
}
.faqs a {
  color: #147A86;
}
.faqs a:hover {
  text-decoration: underline;
  color: #B0E627;
}
.faqs .toc {
  float: left;
  list-style-type: none;
  margin: 2em 30px 1em 0;
  padding: 0;
}
.faqs .toc li {
  background-position: 0px 5px;
  margin-bottom: 10px;
}
.faqs .toc li:before {
  color: #147A86;
  content: "\f054";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 0.5em;
}
.faqs .toc a {
  text-decoration: none;
  color: #147A86;
  font-size: 1.1em;
}
.faqs .toc a:hover {
  text-decoration: underline;
  color: #B0E627;
}

/*End of FAQs*/
/*Franchise A-Z ----------------------------------------------*/
.azDirectory .azList {
  list-style-type: none;
  margin: 0.625em 0 2em;
  width: 100%;
  float: left;
  font-weight: bold;
  background: #fff;
  text-align: center;
  border: dashed #e9e9e9;
  border-width: 1px;
  color: #152740;
  padding: 0 1em;
  background: #152740;
  border: none;
  color: white;
  border-radius: 0.25em;
}
.azDirectory .azList li {
  float: left;
  padding: 0.65em 0;
  position: relative;
  width: 3.7037037037%;
}
.azDirectory .azList li a {
  text-decoration: none;
  color: #fff;
}
.azDirectory .azList li a:hover {
  text-decoration: underline;
}
.azDirectory .azList li.currentLetter {
  font-weight: normal;
}
.azDirectory .azList li.currentLetter:after {
  content: "";
  width: 100%;
  height: 5px;
  background: #B0E627;
  bottom: 0;
  left: 0;
  position: absolute;
}
.azDirectory #listingNumbers {
  float: left;
  color: #525252;
  margin-top: 0;
  font-size: 0.9em;
  margin-bottom: 1.5em;
}
.azDirectory .azLabel {
  display: none;
}

/*End of Franchise A-Z*/
/*Contact Us ----------------------------------------------*/
.contactUs a {
  color: #147A86;
}
.contactUs a:hover {
  color: #B0E627;
}
.contactUs p {
  font-size: 0.8em;
}
.contactUs ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.contactUs ol#contactDetails {
  float: left;
  width: 30%;
  padding-right: 3%;
  border-right: 1px solid #ebebeb;
  display: block;
}
.contactUs ol#message {
  width: 64%;
  float: right;
  clear: none;
  margin: 0;
  padding: 0;
}
.contactUs ol#message p#desc {
  color: #666;
}
.contactUs ol#message p#desc a {
  color: #147A86;
}
.contactUs ol li.form-fields-fax {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}
.contactUs fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.contactUs fieldset li {
  list-style-type: none;
  margin-bottom: 0.625em;
  font-size: 0.9em;
}
.contactUs fieldset label {
  color: #B0E627;
  display: block;
  padding-bottom: 0.188em;
}
.contactUs fieldset input, .contactUs fieldset textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.contactUs fieldset textarea {
  height: 4.688em;
}
.contactUs fieldset input[type=submit], .contactUs fieldset textarea[type=submit] {
  font-size: 1.3em;
  float: left;
  width: 10em;
}
.contactUs h2 {
  font-size: 1.1em;
  margin: 1.5em 0 0 0;
}

@media (max-width: 767px) {
  .contactUs ol#contactDetails,
.contactUs ol#message {
    width: 100%;
    padding: 0;
    border: 0;
    clear: both;
  }
  .contactUs form input[type=submit], .contactUs form fieldset textarea[type=submit], .contactUs fieldset form textarea[type=submit] {
    float: none;
  }
}
/*End of Contact Us*/
/*Login Page ----------------------------------------------*/
#loginForm h1 {
  margin-bottom: 15px;
}
#loginForm fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
#loginForm fieldset ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#loginForm fieldset li {
  margin-bottom: 10px;
  font-size: 0.9em;
}
#loginForm label {
  color: #000;
  font-weight: 600;
  display: block;
  padding-bottom: 3px;
}
#loginForm label#rememberMe {
  display: inline;
  margin-right: 5px;
}
#loginForm input[type=submit], #loginForm .contactUs fieldset textarea[type=submit], .contactUs fieldset #loginForm textarea[type=submit] {
  font-size: 1.3em;
}

a#forgottenPassword {
  font-size: 0.9em;
  color: #525252;
  text-decoration: none;
  padding-left: 15px;
  background: url("../images/common/linkArrowOrange.png") 5px 3px no-repeat;
}
a#forgottenPassword:hover {
  text-decoration: underline;
}

.emailPassword p {
  font-size: 0.9em;
}

@media (max-width: 767px) {
  #loginForm input[type=text], #loginForm .contactUs fieldset textarea[type=text], .contactUs fieldset #loginForm textarea[type=text],
#loginForm input[type=password],
#loginForm .contactUs fieldset textarea[type=password],
.contactUs fieldset #loginForm textarea[type=password] {
    width: 100%;
  }
}
/*End of Login Page*/
/*Confirmation Message ----------------------------------------------*/
.confirmMessage p {
  font-size: 0.8em;
}

/*End of Confirmation Message*/
/*Error Pages ----------------------------------------------*/
.errorPage p {
  font-size: 0.9em;
}

/*End of Error Pages*/
/*Dead Franchise Page ----------------------------------------------*/
#deadFranchiseSuggestions h2.suggestedCategoryTitle {
  color: #525252;
  font-size: 1em;
}
#deadFranchiseSuggestions p {
  font-size: 0.9em;
}
#deadFranchiseSuggestions p.seeMoreSuggested {
  margin: 0.625em 0;
  clear: both;
  float: left;
}
#deadFranchiseSuggestions p.seeMoreSuggested a {
  text-decoration: none;
  color: #ffffff;
  background-color: #B0E627;
  border-radius: 0.313em;
  padding: 0.313em 0.438em 0.313em 1em;
  font-weight: bold;
  background: url("../images/common/linkArrow.png") 0.313em 0.5em no-repeat, -moz-linear-gradient(center top, #ed9332, #e67d0d) repeat scroll 0 0 #e67d0d;
  background: url("../images/common/linkArrow.png") 0.313em 0.5em no-repeat, -webkit-gradient(linear, center bottom, center top, from(#e67d0d), to(#ed9332));
  background: url("../images/common/linkArrow.png") 0.313em 0.5em no-repeat, -o-linear-gradient(rgb(237, 147, 50), rgb(230, 125, 13));
  background: url("../images/common/linkArrow.png") 0.313em 0.5em no-repeat, -ms-linear-gradient(top, #ed9332, #e67d0d);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ed9332", endColorstr="#E67D0D");
}

/*End of Dead Franchise Page*/
/*RSS Explained ----------------------------------------------*/
#rssExplained h2 {
  color: #525252;
  font-size: 1em;
}
#rssExplained p {
  font-size: 0.8em;
}
#rssExplained a {
  color: #B0E627;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}
#rssExplained a:hover {
  text-decoration: underline;
}

/*End of RSS Explained*/
/*RSS Menu ----------------------------------------------*/
ol#rssMenu {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
}
ol#rssMenu li {
  margin-bottom: 5px;
}
ol#rssMenu a {
  color: #525252;
  text-decoration: none;
  padding-left: 15px;
  background: url("../images/common/linkArrowOrange.png") 5px 3px no-repeat;
}
ol#rssMenu a:hover {
  text-decoration: underline;
}

@media (max-width: 650px) {
  #rssMenuLeft,
#rssMenuRight {
    width: 100%;
  }
}
/*End of RSS Menu*/
/* iPad Fix (portrait) ----------- */
@media (max-device-width: 768px) {
  ol li.searchSubmit input, ol li.searchSubmit .contactUs fieldset textarea, .contactUs fieldset ol li.searchSubmit textarea {
    font-size: 1em;
  }
}
#cboxLoadedContent {
  background: #fff;
  padding: 0 !important;
  border-radius: 0.25em !important;
}

#cboxOverlay {
  background: rgba(0, 0, 0, 0.12) !important;
}

#colorbox {
  -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.4);
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.4);
}

/*#region*/
#SignupConfirmation {
  display: inline-block;
  width: 100%;
}
#SignupConfirmation h2 {
  display: inline-block;
  width: 100%;
  text-align: center;
}
#SignupConfirmation h2 .fa {
  color: #B0E627;
}
@media screen and (max-width: 50em) {
  #SignupConfirmation h2 {
    font-size: 1.2em;
  }
}
#SignupConfirmation img {
  display: block;
  width: 6em;
  margin: 0 auto;
  margin-bottom: 1em;
}
@media screen and (max-width: 50em) {
  #SignupConfirmation img {
    width: 4em;
  }
}
#SignupConfirmation .section-wrap {
  margin: 0 auto;
  max-width: 1000px;
  padding: 23vh 1em 26vh 1em;
}

/*#endregion*/
/*#region Legals*/
#legals-list {
  display: inline-block;
  width: 100%;
}
#legals-list li {
  display: inline-block;
  width: 100%;
  position: relative;
  background: white;
  padding: 0;
  margin-bottom: 0;
}
#legals-list li:first-of-type {
  padding-top: 0.5em;
}
@media screen and (max-width: 650px) {
  #legals-list li:first-of-type {
    padding-top: 0;
  }
}
#legals-list li input, #legals-list li .contactUs fieldset textarea, .contactUs fieldset #legals-list li textarea {
  position: absolute;
  opacity: 0;
}
#legals-list li .tt-title {
  position: absolute;
  top: 0;
  right: 1em;
  color: #737373;
  top: calc(50% - 12px);
}
#legals-list li.legals-item label {
  font-size: 0.8em;
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  width: 100%;
  padding: 0 3em 0 2.5em;
  color: #000;
}
#legals-list li.legals-item .checkmark {
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #CCC;
  border-radius: 0.2em;
  background-color: #f1f1f1;
}
#legals-list li.legals-item label:hover input ~ .checkmark, #legals-list li.legals-item label:hover .contactUs fieldset textarea ~ .checkmark, .contactUs fieldset #legals-list li.legals-item label:hover textarea ~ .checkmark {
  background-color: #ccc;
}
#legals-list li.legals-item label input:checked ~ .checkmark, #legals-list li.legals-item label .contactUs fieldset textarea:checked ~ .checkmark, .contactUs fieldset #legals-list li.legals-item label textarea:checked ~ .checkmark {
  background-color: #9ac324;
}
#legals-list li.legals-item .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
#legals-list li.legals-item input:checked ~ .checkmark:after, #legals-list li.legals-item .contactUs fieldset textarea:checked ~ .checkmark:after, .contactUs fieldset #legals-list li.legals-item textarea:checked ~ .checkmark:after {
  display: block;
}
#legals-list li.legals-item .checkmark:after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#legals-list #tandc {
  text-align: center;
}

#desc, p#desc {
  display: inline-block;
  width: 100%;
  font-size: 0.75em;
  padding: 0;
  margin-top: 1em;
}

.listedBy {
  display: block;
  color: #868686;
  margin-top: 0.5em;
  font-style: italic;
}

/*#endregion Legals*/

/*# sourceMappingURL=shared.css.map */