@charset "UTF-8";

/* Form */

.form-container {
  position: relative;
  z-index: 10;
  padding: 50px 40px 50px 40px;
  background-color: white;
  border-radius: 30px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  margin: auto;
}

@media (max-width: 750px) {
  div.form-container.form-description {
    margin-top: 0;
  }
}

.form-container h3 {
  margin-top: 0;
}

.contact-us .form-container,
.overlap-form .form-container,
.sign-up .form-container {
  margin-top: -270px;
}

form {
  margin: 0 0 2em 0;
}

.form-row {
  padding: 10px 0 10px 0;
}

/*
		form.combined {
			display: -moz-flex;
			display: -webkit-flex;
			display: -ms-flex;
			display: flex;
			-moz-flex-direction: row;
			-webkit-flex-direction: row;
			-ms-flex-direction: row;
			flex-direction: row;
			margin-left: auto;
			margin-right: auto;
			max-width: 100%;
			position: relative;
			width: 35em;
		}

			form.combined input[type="text"],
			form.combined input[type="password"],
			form.combined input[type="email"],
			form.combined select,
			form.combined textarea {
				-moz-flex-grow: 1;
				-webkit-flex-grow: 1;
				-ms-flex-grow: 1;
				flex-grow: 1;
				-moz-flex-shrink: 1;
				-webkit-flex-shrink: 1;
				-ms-flex-shrink: 1;
				flex-shrink: 1;
				border-bottom-left-radius: 2.75em;
				border-bottom-right-radius: 0;
				border-top-left-radius: 2.75em;
				border-top-right-radius: 0;
			}

			form.combined input[type="submit"] {
				-moz-flex-grow: 0;
				-webkit-flex-grow: 0;
				-ms-flex-grow: 0;
				flex-grow: 0;
				-moz-flex-shrink: 0;
				-webkit-flex-shrink: 0;
				-ms-flex-shrink: 0;
				flex-shrink: 0;
				border-top-left-radius: 0;
				border-bottom-left-radius: 0;
			}

		@media screen and (max-width: 480px) {

			form.combined {
				-moz-flex-direction: column;
				-webkit-flex-direction: column;
				-ms-flex-direction: column;
				flex-direction: column;
			}

				form.combined input[type="text"],
				form.combined input[type="password"],
				form.combined input[type="email"],
				form.combined select,
				form.combined textarea {
					border-radius: 2.75em;
					margin: 0 0 1em 0;
				}

				form.combined input[type="submit"] {
					border-radius: 2.75em;
				}

		}
*/

label {
  display: block;
  font-weight: 500;
  margin: 0 0 0.7em 0;
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border-radius: 4px;
  border: none;
  border: solid 1px;
  color: inherit;
  display: block;
  outline: 0;
  padding: 0 1em;
  text-decoration: none;
  width: 100%;
  font-family: 'Brown', sans-serif;
  font-size: 16px;
}

textarea {
  height: 120px;
}

input[type="text"]:invalid,
input[type="password"]:invalid,
input[type="email"]:invalid,
select:invalid,
textarea:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.select-wrapper {
  text-decoration: none;
  display: block;
  position: relative;
}

.select-wrapper:before {
  text-transform: none !important;
}

.select-wrapper:before {
  content: '';
  width: 12px;
  height: 42px;
  position: absolute;
  right: 10px;
  top: 0;
  background-image: url("/img/v2/svgs/arrow-down-blue.svg");
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  height: 2.75em;
  line-height: 2.75em;
  pointer-events: none;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 2.75em;
}

.select-wrapper select::-ms-expand {
  display: none;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
  height: 2.75em;
}

textarea {
  padding: 0.75em 1em;
}

input[type="checkbox"],
input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  display: block;
  float: left;
  margin-right: -2em;
  opacity: 0;
  width: 1em;
  z-index: -1;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  font-weight: 300;
  padding-left: 2.4em;
  padding-right: 0.75em;
  position: relative;
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
  text-transform: none !important;
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
  border-radius: 4px;
  border: solid 1px;
  content: '';
  display: inline-block;
  height: 1.65em;
  left: 0;
  line-height: 1.58125em;
  position: absolute;
  text-align: center;
  top: 0;
  width: 1.65em;
}

input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
  background-image: url("/img/v2/svgs/icons/tick-white.svg");
  background-size: 15px;
  background-position: center center;
  background-repeat: no-repeat;
}

input[type="checkbox"] + label:before {
  border-radius: 4px;
}

input[type="radio"] + label:before {
  border-radius: 100%;
}

::-webkit-input-placeholder {
  opacity: 1.0;
}

:-moz-placeholder {
  opacity: 1.0;
}

::-moz-placeholder {
  opacity: 1.0;
}

:-ms-input-placeholder {
  opacity: 1.0;
}

.formerize-placeholder {
  opacity: 1.0;
}

label {
  color: #414143;
}

input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
  background: rgba(65, 65, 67, 0.05);
  border-color: rgba(65, 65, 67, 0.25);
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: #3d85ff;
  -webkit-box-shadow: inset 0 0 0 1px #3d85ff;
          box-shadow: inset 0 0 0 1px #3d85ff;
}

input[type="text"] ::-webkit-input-placeholder,
input[type="password"] ::-webkit-input-placeholder,
input[type="email"] ::-webkit-input-placeholder,
select ::-webkit-input-placeholder,
textarea ::-webkit-input-placeholder {
  color: rgba(65, 65, 67, 0.5) !important;
}

input[type="text"] :-moz-placeholder,
input[type="password"] :-moz-placeholder,
input[type="email"] :-moz-placeholder,
select :-moz-placeholder,
textarea :-moz-placeholder {
  color: rgba(65, 65, 67, 0.5) !important;
}

input[type="text"] ::-moz-placeholder,
input[type="password"] ::-moz-placeholder,
input[type="email"] ::-moz-placeholder,
select ::-moz-placeholder,
textarea ::-moz-placeholder {
  color: rgba(65, 65, 67, 0.5) !important;
}

input[type="text"] :-ms-input-placeholder,
input[type="password"] :-ms-input-placeholder,
input[type="email"] :-ms-input-placeholder,
select :-ms-input-placeholder,
textarea :-ms-input-placeholder {
  color: rgba(65, 65, 67, 0.5) !important;
}

input[type="text"].invert,
input[type="password"].invert,
input[type="email"].invert,
select.invert,
textarea.invert {
  background: #ffffff;
  color: rgba(65, 65, 67, 0.75);
}

input[type="text"].invert::-webkit-input-placeholder,
input[type="password"].invert::-webkit-input-placeholder,
input[type="email"].invert::-webkit-input-placeholder,
select.invert::-webkit-input-placeholder,
textarea.invert::-webkit-input-placeholder {
  color: rgba(65, 65, 67, 0.5) !important;
}

input[type="text"].invert:-moz-placeholder,
input[type="password"].invert:-moz-placeholder,
input[type="email"].invert:-moz-placeholder,
select.invert:-moz-placeholder,
textarea.invert:-moz-placeholder {
  color: rgba(65, 65, 67, 0.5) !important;
}

input[type="text"].invert::-moz-placeholder,
input[type="password"].invert::-moz-placeholder,
input[type="email"].invert::-moz-placeholder,
select.invert::-moz-placeholder,
textarea.invert::-moz-placeholder {
  color: rgba(65, 65, 67, 0.5) !important;
}

input[type="text"].invert:-ms-input-placeholder,
input[type="password"].invert:-ms-input-placeholder,
input[type="email"].invert:-ms-input-placeholder,
select.invert:-ms-input-placeholder,
textarea.invert:-ms-input-placeholder {
  color: rgba(65, 65, 67, 0.5) !important;
}

.select-wrapper:before {
  color: rgba(65, 65, 67, 0.25);
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  color: rgba(65, 65, 67, 0.75);
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
  background: rgba(65, 65, 67, 0.05);
  border-color: rgba(65, 65, 67, 0.25);
}

input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
  background-color: #3d85ff;
  border-color: #3d85ff;
  color: #ffffff;
}

input[type="checkbox"]:focus + label:before,
input[type="radio"]:focus + label:before {
  border-color: #3d85ff;
  -webkit-box-shadow: 0 0 0 1px #3d85ff;
          box-shadow: 0 0 0 1px #3d85ff;
}

.sidr {
  display: block;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 499;
  width: 400px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.33);
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.33);
}

.sidr.right {
  left: auto;
  right: -450px;
}

.sidr.left {
  left: -450px;
  right: auto;
}

@media (max-width: 600px) {
  .sidr {
    width: 100%;
  }

  .sidr.right {
    left: auto;
    right: -120%;
  }

  .sidr.left {
    left: -120%;
    right: auto;
  }
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*

COLOURS

Blue #3d85ff rgba(61,133,255,1)
light-grey #F7F8FC - rgba(246,246,246,1)
black #414143 - rgba(65,65,67,1)
*/

/*------------------------------
BASE STYLES
------------------------------*/

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 62.5%;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  max-width: 100%;
  font-family: "Brown", sans-serif;
  font-size: 16px;
  font-weight: 400;
  background-color: white;
  color: rgba(65, 65, 67, 0.6);
}

body.sidr-open {
  overflow-y: hidden;
  width: 100%;
}

.wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transform: all 250ms;
  transition: all 250ms;
}

header,
section,
footer {
  min-width: 320px;
  position: relative;
  clear: both;
}

.overlay {
  width: 100%;
  height: 100%;
}

.graphic {
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  text-align: left;
  text-indent: -9999px;
  overflow: hidden;
  font-size: 0;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transform: all 250ms;
  transition: all 250ms;
}

.clear {
  clear: both;
}

.content-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1080px;
  padding: 0 30px;
  z-index: 1;
}

.paragraph.width-full {
  max-width: 100%;
}

.paragraph.width-narrow {
  max-width: 1050px;
  margin: auto;
}

.paragraph.width-slim {
  max-width: 750px;
  margin: auto;
}

.paragraph {
  line-height: 1.4em;
}

.paragraph > p:last-of-type {
  margin-bottom: 0;
}

.hidden {
  display: none;
}

/*-- HORIZONTAL LISTS --*/

.sidr > .sidr-inner:first-child > ul.sidr-class-horizontal,
ul.horizontal {
  display: block;
  position: relative;
  list-style: none;
  font-size: 0;
  text-align: center;
  margin: 0;
  padding: 0;
}

.sidr > .sidr-inner:first-child > ul.sidr-class-horizontal {
  text-align: left;
}

.sidr > .sidr-inner:first-child > ul.sidr-class-horizontal > li,
ul.horizontal > li {
  display: inline-block;
  position: relative;
  font-size: 14px;
  margin: 0;
  padding: 0;
  line-height: normal;
  vertical-align: top;
}

.sidr > .sidr-inner:first-child > ul.sidr-class-horizontal > li:last-child {
  margin-right: 0px;
}

/*-- VERTICAL LISTS --*/

ul.list {
  display: block;
  position: relative;
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
}

ul.list > li {
  display: block;
  position: relative;
  vertical-align: top;
  margin: 0;
  padding: 0;
}

/*-- ALIGNMENT --*/

.left {
  float: left;
  text-align: left;
}

.right {
  float: right;
  text-align: right;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

.middle-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  height: 100%;
}

.middle {
  position: relative;
  width: 100%;
  -webkit-align-self: center;
  -ms-align-self: center;
  -o-align-self: center;
  -ms-flex-item-align: center;
      align-self: center;
}

/*------------------------------
TEXT STYLES
------------------------------*/

strong,
b {
  font-weight: 600;
}

em,
i {
  font-style: italic;
}

small {
  font-size: 0.8em;
}

/*-- HEADINGS --*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  display: block;
  position: relative;
  color: #414143;
}

h1 {
  font-weight: bold;
  font-size: 3em;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
}

h2 {
  font-size: 2.1em;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
}

h3 {
  font-size: 1.5em;
  margin-top: 1em;
  margin-bottom: 1em;
}

h4 {
  font-size: 1em;
  margin-top: 1.33em;
  margin-bottom: 1.33em;
}

h5 {
  font-size: 0.83em;
  margin-top: 1.67em;
  margin-bottom: 1.67em;
}

h6 {
  font-size: 0.67em;
  margin-top: 2.33em;
  margin-bottom: 2.33em;
}

.text14 {
  font-size: 14px;
}

.text16 {
  font-size: 16px;
}

.text18 {
  font-size: 18px;
}

.text20 {
  font-size: 20px;
}

.text22 {
  font-size: 22px;
}

.text24 {
  font-size: 24px;
}

.text26 {
  font-size: 26px;
}

.text28 {
  font-size: 28px;
}

.text30 {
  font-size: 30px;
}

.brand-text {
  color: #3d85ff;
}

.dark-text {
  color: #414143;
}

.light-text {
  color: #f6f6f6;
}

.white-text {
  color: white;
}

.pad0 {
  padding: 0px;
  margin: 0;
}

.pad5 {
  padding: 5px;
}

.pad10 {
  padding: 10px;
}

.pad20 {
  padding: 20px !important;
}

.pad30 {
  padding: 30px;
}

.pad40 {
  padding: 40px;
}

.pad50 {
  padding: 50px;
}

.pad60 {
  padding: 60px;
}

.pad70 {
  padding: 70px;
}

.pad80 {
  padding: 80px;
}

.pad_top0 {
  padding-top: 0px;
}

.pad_top10 {
  padding-top: 10px;
}

.pad_top20 {
  padding-top: 20px;
}

.pad_top30 {
  padding-top: 30px;
}

.pad_top40 {
  padding-top: 40px;
}

.pad_top50 {
  padding-top: 50px;
}

.pad_bottom30 {
  padding-bottom: 30px;
}

.pad_bottom0 {
  padding-bottom: 0 !important;
}

.line-height0 {
  line-height: normal;
}

.line-height1-5 {
  line-height: 1.5;
}

.line-height2 {
  line-height: 2;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.with-shadow {
  -webkit-box-shadow: 0px 0px 10px #777c91;
          box-shadow: 0px 0px 10px #777c91;
}

.overflow-hidden {
  overflow: hidden;
}

hr {
  border: none;
  border-top: 1px solid #777c91;
}

/*-- LINKS --*/

a,
a * {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a svg-cont *,
a svg *,
a svg {
  -webkit-transition: none;
  transition: none;
}

a {
  color: #3d85ff;
  text-decoration: none;
}

a:hover {
  color: #777c91;
}

a,
a:hover,
a:active,
a:focus {
  outline: 0;
}

a:hover img {
  opacity: 0.7;
}

/*-- BUTTONS --*/

ul.horizontal.button-group {
  padding: 20px 0 0 0;
}

ul.horizontal.button-group li {
  margin-right: 10px;
  text-align: left;
}

ul.horizontal.button-group li:last-child {
  margin-right: 0px;
}

ul.horizontal.button-group li:nth-child(2) .button a {
  border-color: #3d85ff;
  color: #414143;
  background-color: #ffffff;
}

ul.horizontal.button-group li:nth-child(2) .button a:hover {
  background-color: #3d85ff;
  color: #ffffff;
}

div.button {
  margin-top: 2em;
}

.sidr-class-button > a,
div.button > a,
input[type="submit"] {
  display: inline-block;
  background-color: white;
  border: 2px solid white;
  text-decoration: none;
  font-weight: normal;
  line-height: 20px;
  padding: 10px 10px;
  font-size: 16px;
  color: #3d85ff;
  cursor: pointer;
  border-radius: 4px;
}

.banner-cta .content-container .button a,
input[type="submit"].button-cta.button,
.button-cta.button a {
  color: white;
  background-color: #4ca4ff;
  padding: 0 40px 0 40px;
  border: 2px solid #4ca4ff;
  line-height: 60px;
  height: 64px;
  border-radius: 32px;
}

.banner-cta .content-container .button a {
  border: 2px solid white;
  background-color: white;
  color: #414143;
}

input[type="submit"].button-cta.button:hover {
  background-color: white;
}

.button-cta.button a:hover {
  opacity: 1 !important;
  background-color: #ffffff;
  color: #414143;
}

.banner-cta .content-container .button a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.sidr-class-blue.sidr-class-button a,
.blue.button a {
  background-color: #3d85ff;
  border-color: #3d85ff;
  color: white;
}

.sidr-class-button a:hover,
.sidr-class-blue.sidr-class-button a:hover,
.blue.button a:hover,
div.button > a:hover,
input[type="submit"]:hover {
  opacity: 0.7;
}

/*-- BUTTON GROUPS --*/

ul.button-group {
  text-align: inherit;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: -10px;
}

ul.button-group > li {
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
}

ul.button-group > li > .button {
  margin-top: 0;
}

/*----------------------
SIMPLE ANIMATIONS
--------------------------*/

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInDown {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInRight {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
            transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
            transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInUp {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeOutLeft;
          animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeOutRight;
          animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeOutUp;
          animation-name: fadeOutUp;
}

/*------------------------------
COLOURS
------------------------------*/

.grey_text {
  color: rgba(65, 65, 67, 0.6);
}

.white_text {
  color: white;
}

/*-- DARK --*/

.bg-dark {
  background-color: #414143;
  color: white;
}

.bg-dark.opacity-10 {
  background-color: rgba(65, 65, 67, 0.1);
}

.bg-dark.opacity-20 {
  background-color: rgba(65, 65, 67, 0.2);
}

.bg-dark.opacity-30 {
  background-color: rgba(65, 65, 67, 0.3);
}

.bg-dark.opacity-40 {
  background-color: rgba(65, 65, 67, 0.4);
}

.bg-dark.opacity-50 {
  background-color: rgba(65, 65, 67, 0.5);
}

.bg-dark.opacity-60 {
  background-color: rgba(65, 65, 67, 0.6);
}

.bg-dark.opacity-70 {
  background-color: rgba(65, 65, 67, 0.7);
}

.bg-dark.opacity-80 {
  background-color: rgba(65, 65, 67, 0.8);
}

.bg-dark.opacity-90 {
  background-color: rgba(65, 65, 67, 0.9);
}

.bg-dark.opacity-100 {
  background-color: #414143;
}

/*-- LIGHT --*/

.bg-light {
  background-color: #f6f6f6;
}

.bg-light.opacity-10 {
  background-color: rgba(246, 246, 246, 0.1);
}

.bg-light.opacity-20 {
  background-color: rgba(246, 246, 246, 0.2);
}

.bg-light.opacity-30 {
  background-color: rgba(246, 246, 246, 0.3);
}

.bg-light.opacity-40 {
  background-color: rgba(246, 246, 246, 0.4);
}

.bg-light.opacity-50 {
  background-color: rgba(246, 246, 246, 0.5);
}

.bg-light.opacity-60 {
  background-color: rgba(246, 246, 246, 0.6);
}

.bg-light.opacity-70 {
  background-color: rgba(246, 246, 246, 0.7);
}

.bg-light.opacity-80 {
  background-color: rgba(246, 246, 246, 0.8);
}

.bg-light.opacity-90 {
  background-color: rgba(246, 246, 246, 0.9);
}

.bg-light.opacity-100 {
  background-color: #f6f6f6;
}

/*-- BRAND --*/

.bg-brand {
  background-color: #3d85ff;
  color: white;
}

.bg-brand.opacity-10 {
  background-color: rgba(61, 133, 255, 0.1);
}

.bg-brand.opacity-20 {
  background-color: rgba(61, 133, 255, 0.2);
}

.bg-brand.opacity-30 {
  background-color: rgba(61, 133, 255, 0.3);
}

.bg-brand.opacity-40 {
  background-color: rgba(61, 133, 255, 0.4);
}

.bg-brand.opacity-50 {
  background-color: rgba(61, 133, 255, 0.5);
}

.bg-brand.opacity-60 {
  background-color: rgba(61, 133, 255, 0.6);
}

.bg-brand.opacity-70 {
  background-color: rgba(61, 133, 255, 0.7);
}

.bg-brand.opacity-80 {
  background-color: rgba(61, 133, 255, 0.8);
}

.bg-brand.opacity-90 {
  background-color: rgba(61, 133, 255, 0.9);
}

.bg-brand.opacity-100 {
  background-color: #3d85ff;
}

/*-- HIGHLIGHT --*/

.bg-highlight {
  background-color: #777c91;
  color: white;
}

.bg-highlight.opacity-10 {
  background-color: rgba(119, 124, 145, 0.1);
}

.bg-highlight.opacity-20 {
  background-color: rgba(119, 124, 145, 0.2);
}

.bg-highlight.opacity-30 {
  background-color: rgba(119, 124, 145, 0.3);
}

.bg-highlight.opacity-40 {
  background-color: rgba(119, 124, 145, 0.4);
}

.bg-highlight.opacity-50 {
  background-color: rgba(119, 124, 145, 0.5);
}

.bg-highlight.opacity-60 {
  background-color: rgba(119, 124, 145, 0.6);
}

.bg-highlight.opacity-70 {
  background-color: rgba(119, 124, 145, 0.7);
}

.bg-highlight.opacity-80 {
  background-color: rgba(119, 124, 145, 0.8);
}

.bg-highlight.opacity-90 {
  background-color: rgba(119, 124, 145, 0.9);
}

.bg-highlight.opacity-100 {
  background-color: #777c91;
}

/*-- WHITE --*/

.bg-white {
  background-color: white;
  color: #414143;
}

.bg-white.opacity-10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-white.opacity-20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.bg-white.opacity-30 {
  background-color: rgba(255, 255, 255, 0.3);
}

.bg-white.opacity-40 {
  background-color: rgba(255, 255, 255, 0.4);
}

.bg-white.opacity-50 {
  background-color: rgba(255, 255, 255, 0.5);
}

.bg-white.opacity-60 {
  background-color: rgba(255, 255, 255, 0.6);
}

.bg-white.opacity-70 {
  background-color: rgba(255, 255, 255, 0.7);
}

.bg-white.opacity-80 {
  background-color: rgba(255, 255, 255, 0.8);
}

.bg-white.opacity-90 {
  background-color: rgba(255, 255, 255, 0.9);
}

.bg-white.opacity-100 {
  background-color: white;
}

/*------------------------------
IMAGES
------------------------------*/

img {
  max-width: 100%;
  vertical-align: bottom;
}

main .image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  height: auto !important;
}

/*------------------------------
VIDEOS
------------------------------*/

main .video {
  display: block;
  padding-top: 56.25%;
  position: relative;
}

main .video > iframe {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/*------------------------------
COLUMNS
------------------------------*/

.columns {
  position: relative;
  width: auto;
  margin-left: -30px;
  padding-bottom: 10px;
}

.columns:after {
  content: ".";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.columns > .column {
  display: block;
  float: left;
  padding-left: 30px;
}

.columns.one > .column {
  width: 100%;
}

.columns.two > .column {
  width: 50%;
}

.columns.two > .column:first-child {
  float: right;
}

.columns.three > .column {
  width: 33.3333%;
}

.columns.four > .column {
  width: 25%;
}

.column .pad {
  padding: 20px 56px 20px 56px;
}

/*------------------------------
PAGINATION
------------------------------*/

.pagination {
  text-align: center;
  font-size: 0;
  margin-top: 30px;
}

.pagination > span,
.pagination > a {
  display: inline-block;
  text-align: center;
  background-color: transparent;
  color: #3d85ff;
  margin: 0 2.5px;
  padding: 0 5px;
  border: 1px solid #3d85ff;
  text-decoration: none;
  line-height: 25px;
  font-size: 14px;
  font-weight: normal;
  min-width: 27px;
}

.pagination > span.current {
  background-color: #777c91;
  border-color: #777c91;
  color: white;
}

.pagination > a:hover {
  background-color: white;
  color: #777c91;
  border-color: #777c91;
}

/*------------------------------
HEADER
------------------------------*/

header.website-header {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 100px;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sidr-open header.website-header {
  position: fixed;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

.scrolled header.website-header {
  position: fixed;
  background-color: white;
  -webkit-box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.33);
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.33);
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

header.website-header .content-container {
  max-width: 2500px;
}

.header-sections .button a:hover {
  opacity: 1;
}

/*.sidr-open header.website-header{left:-400px;}*/

.header-sections {
  display: inline-block;
  position: relative;
  z-index: 101;
  vertical-align: top;
}

.header-sections.logo-cont {
  width: 50%;
  max-width: 300px;
}

.header-sections.main-navigation {
  width: calc(100% - 620px);
  text-align: center;
}

.header-sections.cta {
  width: 50%;
  max-width: 300px;
  float: right;
}

.header-sections.cta ul {
  text-align: right;
}

.header-sections.cta ul li {
  margin: 0 6px 0 6px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sidr-open .header-sections.cta ul li {
  display: none;
}

.header-sections.cta .blue.button a {
  background-color: rgba(255, 255, 255, 0);
  border-color: rgba(255, 255, 255, 0);
}

.header-sections.cta .button a:hover {
  background-color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

.header-sections.cta .blue.button a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.sidr-class-header-select .sidr-class-button a,
.header-sections.cta .header-select .button a {
  padding-right: 30px;
  position: relative;
}

.sidr-class-header-select .sidr-class-button a:after,
.header-sections.cta .header-select .button a:after {
  content: "";
  width: 12px;
  height: 42px;
  position: absolute;
  right: 10px;
  top: 0;
  background-image: url("/img/v2/svgs/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.sidr-class-header-select
.sidr-class-button.sidr-class-button.sidr-class-blue
a {
  border-color: transparent;
  background-color: transparent;
}

.scrolled .header-sections.cta .button a {
  border-color: #3d85ff;
  background-color: #3d85ff;
  color: white;
}

.scrolled .header-sections.cta .blue.button a {
  border-color: white;
  background-color: white;
}

.scrolled .header-sections.cta .blue.button a:hover,
.scrolled .header-sections.cta .button a:hover {
  border-color: rgba(61, 133, 255, 0.2);
  background-color: rgba(61, 133, 255, 0.1);
  color: #3d85ff;
}

.scrolled .header-sections.cta .header-select .button a,
.scrolled .header-sections.cta .blue.button a {
  color: #3d85ff;
}

.scrolled .header-sections.cta .header-select .button a:after {
  background-image: url("/img/v2/svgs/arrow-down-blue.svg");
}

#language-select {
  position: relative;
}

#language-select #language-select-selector a:hover {
  background: none;
  border-color: transparent;
}

#language-select .flag {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  height: 20px;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  width: 20px;
  top: 5px;
}

#language-select .au-flag {
  background-image: url("/img/v2/flags/au.png");
}

#language-select .uk-flag {
  background-image: url("/img/v2/flags/uk.png");
}

#language-select #language-select-dropdown {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: none;
  padding: 5px 10px 10px;
  position: absolute;
  top: 100%;
  right: 0;
  border-radius: 4px;
}

#language-select #language-select-dropdown a {
  color: #fff;
  white-space: nowrap;
}

.scrolled #language-select #language-select-dropdown {
  background: #3d85ff;
  border: 2px solid #3d85ff;
}

/*-- LOGO --*/

h2#logo {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
  width: 100%;
  max-width: 150px;
  height: 100px;
}

h2#logo > a {
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-image: url("/img/v2/logos/wonde/wonde-white.svg");
  background-position: left center;
  vertical-align: top;
}

.scrolled h2#logo > a {
  background-image: url("/img/v2/logos/wonde/wonde-blue.svg");
}

/*------------------------------
NAVIGATION
------------------------------*/

.main-navigation > nav {
  display: inline-block;
  vertical-align: top;
  max-width: 800px;
  margin: auto;
}

.main-navigation > nav > ul {
  text-align: center;
}

.main-navigation > nav > ul > li {
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.main-navigation > nav > ul > li > a {
  display: block;
  color: white;
  text-decoration: none;
  text-transform: capitalize;
  font-weight: normal;
  font-size: 16px;
  white-space: nowrap;
  height: 100px;
  line-height: 100px;
  border-bottom: 2px solid transparent;
  padding: 0 25px 0 25px;
  font-weight: normal;
}

.scrolled .main-navigation > nav > ul > li > a {
  color: #3d85ff;
}

.main-navigation > nav > ul > li.current-menu-item > a {
  border-bottom: 2px solid #3d85ff;
}

.main-navigation > nav > ul > li > a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.scrolled .main-navigation > nav > ul > li > a:hover {
  background-color: rgba(61, 133, 255, 0.1);
}

/*-- DROPDOWN --*/

.main-navigation > nav > ul > li > ul {
  display: none;
  border-radius: 4px;
  list-style: none;
  padding: 5px;
  margin: 0;
  position: absolute;
  text-align: left;
  top: 100px;
  left: -3px;
  width: calc(100% + 6px);
  min-width: 128px;
  background-color: white;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.scrolled .main-navigation > nav > ul > li > ul {
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  left: 0px;
  width: 100%;
}

/*
.main-navigation > nav > ul > li > ul:after {
    bottom: 100%;
    left: 10px;
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(119,124,145,0);
    border-bottom-color: rgba(119,124,145,0.9);
    border-width: 10px;
    margin-left: -10px;
}
*/

.main-navigation > nav > ul > li > ul > li {
  position: relative;
  padding: 0;
  margin: 0;
  /*border-bottom: 1px solid rgba(255,255,255,0.5);*/
}

.main-navigation > nav > ul > li > ul > li:last-child {
  border-bottom: none;
}

.main-navigation > nav > ul > li > ul > li > a {
  display: block;
  color: #3d85ff;
  text-decoration: none;
  font-weight: 300;
  font-size: 16px;
  padding: 0 10px;
  white-space: nowrap;
  line-height: 40px;
}

.main-navigation > nav > ul > li > ul > li > a:hover {
  background-color: #3d85ff;
  color: #ffffff;
  border-radius: 4px;
}

/*-- THIRD TIER --*/

.main-navigation > nav > ul > li > ul > li > ul {
  list-style: none;
  padding: 5px;
  margin: 0;
  position: absolute;
  text-align: left;
  top: -5px;
  left: calc(100% + 10px);
  background-color: #3d85ff;
}

.main-navigation > nav > ul > li > ul > li > ul:after {
  right: 100%;
  top: 25px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(61, 133, 255, 0);
  border-right-color: rgba(61, 133, 255, 0.9);
  border-width: 10px;
  margin-top: -10px;
}

.main-navigation > nav > ul > li > ul > li > ul > li {
  position: relative;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.main-navigation > nav > ul > li > ul > li > ul > li:last-child {
  border-bottom: none;
}

.main-navigation > nav > ul > li > ul > li > ul > li > a {
  display: block;
  color: white;
  text-decoration: none;
  font-weight: 300;
  font-size: 16px;
  padding: 0 10px;
  white-space: nowrap;
  line-height: 40px;
}

.main-navigation > nav > ul > li > ul > li > ul > li.sfHover > a,
.main-navigation > nav > ul > li > ul > li > ul > li > a:hover {
  background-color: #777c91;
}

/*-- FOURTH TIER --*/

.main-navigation > nav > ul > li > ul > li > ul > li > ul {
  display: none !important;
}

/*-- MOBILE NAVIGATION --*/

ul.horizontal > li.mobile-nav {
  display: none;
  text-align: left;
  font-size: 14px;
  width: 60px;
  z-index: 99999;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.hamburger {
  margin-top: 30px;
  display: inline-block;
  width: 40px;
  float: right;
  height: 33px;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background-color: white;
  opacity: 1;
  border-radius: 2px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.scrolled .mobile-nav .hamburger span,
.sidr-open .hamburger span {
  background-color: #3d85ff;
}

.scrolled .mobile-nav .hamburger:hover span,
.sidr-open .hamburger:hover span {
  background-color: white;
}

.hamburger span:nth-child(1) {
  top: 5px;
}

.hamburger span:nth-child(2) {
  top: 17px;
}

.hamburger span:nth-child(3) {
  top: 29px;
}

.sidr-open .hamburger span:nth-child(1),
.mm-opening .hamburger span:nth-child(1) {
  top: 19px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.sidr-open .hamburger span:nth-child(2),
.mm-opening .hamburger span:nth-child(2) {
  opacity: 0;
  left: -80px;
}

.sidr-open .hamburger span:nth-child(3),
.mm-opening .hamburger span:nth-child(3) {
  top: 19px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

ul.list.signup-nav {
  text-align: right;
  padding: 40px;
  border-right: 5px solid rgba(255, 255, 255, 0.5);
}

ul.list.signup-nav {
  overflow: hidden;
  color: #ffffff;
}

ul.list.signup-nav li a {
  font-size: 3em;
  color: #ffffff;
}

ul.list.signup-nav li a:hover {
  color: #414143;
}

/*------------------------------
SIDR
------------------------------*/

.sidr {
  background: #414143;
  color: white;
  border-left: solid 4px white;
  background-image: url("/img/v2/svgs/background-hex2.svg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}

.sidr > .sidr-inner:first-child {
  padding: 100px 30px 0px 30px;
  text-align: left;
}

.sidr > .sidr-inner {
  padding: 20px 30px 50px 30px;
}

/*-- TOP LEVEL --*/

.sidr > .sidr-inner > ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidr > .sidr-inner > ul > li {
  display: block;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

.sidr > .sidr-inner:first-child > ul > li {
  border-bottom: 0;
}

.sidr > .sidr-inner:first-child > ul.sidr-class-horizontal {
  text-align: left;
}

.sidr > .sidr-inner:first-child > ul.sidr-class-horizontal > li {
  margin-right: 10px;
}

.sidr > .sidr-inner > ul > li > a {
  font-family: "Brown", sans-serif;
  display: block;
  color: white;
  font-size: 20px;
  padding: 10px 0;
}

.sidr > .sidr-inner > ul > li > a:hover {
  color: #3d85ff;
}

/*-- SECOND LEVEL --*/

.sidr > .sidr-inner > ul > li > ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-bottom: 7.5px;
}

.sidr > .sidr-inner > ul > li > ul > li {
  display: block;
  margin: 0;
  padding: 0;
  padding-left: 15px;
}

.sidr > .sidr-inner > ul > li > ul > li > a {
  display: block;
  font-size: 15px;
  padding: 7.5px 0;
  color: rgba(255, 255, 255, 0.75);
}

.sidr > .sidr-inner > ul > li > ul > li > a:hover {
  color: #3d85ff;
}

/*-- THIRD LEVEL --*/

.sidr > .sidr-inner > ul > li > ul > li > ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidr > .sidr-inner > ul > li > ul > li > ul > li {
  display: block;
  margin: 0;
  padding: 0;
  padding-left: 15px;
}

.sidr > .sidr-inner > ul > li > ul > li > ul > li > a {
  display: block;
  font-size: 13px;
  padding: 7.5px 0;
  color: rgba(255, 255, 255, 0.5);
}

.sidr > .sidr-inner > ul > li > ul > li > ul > li > a:hover {
  color: #3d85ff;
}

/*-- FOURTH LEVEL --*/

.sidr > .sidr-inner > ul > li > ul > li > ul > li > ul {
  display: none;
}

.sidr > .sidr-inner > ul > li > ul.sidr-class-sub-menu {
  display: none;
}

.sidr-class-menu-item {
  position: relative;
}

.sidr-class-menu-item .button {
  position: absolute;
  right: 0px;
  top: 10px;
  margin: 0;
  width: 34px;
  height: 34px;
  line-height: 34px;
  font-size: 30px;
  font-family: "Lora", serif;
  font-weight: 300;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sidr-class-menu-item .button:hover {
  color: #3d85ff;
}

.sidr > .sidr-inner > ul > li > a {
  display: block;
  font-size: 20px;
  letter-spacing: 0.1em;
  padding: 15px 0 15px 0;
  color: white;
  width: calc(100% - 40px);
}

/*------------------------------
ACCREDITATIONS
------------------------------*/

.accreditations {
  padding: 20px 0;
  text-align: center;
}

.accreditations .accreditation a {
  height: 90px;
  margin: 0 20px;
}

/*------------------------------
FOOTER
------------------------------*/

footer {
  overflow-x: hidden;
}

footer .content-container {
  padding: 100px 30px 130px 30px;
  max-width: 1280px;
}

.footer-logo {
  width: 100%;
  max-width: 250px;
}

.footer-logo .logo-cont {
  width: 100%;
  max-width: 120px;
}

.section-logo .logoBG,
.footer-logo .logoBG {
  fill: #3d85ff;
}

.section-logo .logoOP,
.footer-logo .logoOP {
  opacity: 0.4;
}

.section-logo .logoW2,
.footer-logo .logoW2 {
  fill: #ffffff;
}

.footer-links {
  width: calc(100% - 250px);
  margin-bottom: 20px;
}

.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
}

.disclaimer p {
  margin: 0;
}

.disclaimer a {
  color: rgba(255, 255, 255, 0.5);
}

.disclaimer a:hover {
  color: white;
}

.footer-links h4 {
  text-align: left;
  text-transform: uppercase;
  color: #414143;
  letter-spacing: 2px;
}

.footer-links ul.list li {
  color: rgba(65, 65, 67, 0.5);
  line-height: 2.2;
}

.footer-links a:link {
  color: rgba(65, 65, 67, 0.5);
}

.footer-links a:visited {
  color: rgba(65, 65, 67, 0.5);
}

.footer-links a:hover {
  color: #3d85ff;
}

/*------------------------------
MAP
------------------------------*/

.map {
  width: 100%;
  padding-top: 100%;
}

/*------------------------------
SLIDESHOW
------------------------------*/

.cycle-slideshow {
  height: 100%;
}

.cycle-slideshow > .slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
}

/*-- SLICK DEFAULTS --*/

.slick-slider {
  position: relative;
}

.slick-slider.slick-dotted {
  padding-bottom: 50px;
}

/*-- SLIDER ARROWS --*/

.slick-arrow {
  display: block;
  position: absolute;
  width: 30px;
  height: 60px;
  top: 50%;
  margin-top: -30px;
  border: none;
  outline: none;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  text-align: left;
  text-indent: -9999px;
  overflow: hidden;
  font-size: 0;
  cursor: pointer;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transform: all 250ms;
  transition: all 250ms;
  z-index: 100;
}

.slick-arrow.slick-prev {
  left: 15px;
}

.slick-arrow.slick-next {
  right: 15px;
}

/*-- SLIDER PAGER --*/

.slick-slider > ul.slick-dots {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  list-style: none;
  font-size: 0;
  text-align: center;
  margin: 0;
  padding: 0;
}

.slick-slider > ul.slick-dots > li {
  display: inline-block;
  position: relative;
  font-size: 17px;
  margin: 0 5px;
  padding: 0;
  line-height: normal;
  vertical-align: top;
}

.slick-slider > ul.slick-dots > li > button {
  display: block;
  width: 20px;
  height: 20px;
  border: none;
  outline: none;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  text-align: left;
  text-indent: -9999px;
  overflow: hidden;
  font-size: 0;
  cursor: pointer;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -ms-transform: all 250ms;
  transition: all 250ms;
}

/*------------------------------
SECTIONS
------------------------------*/

/*--------------
Header-section
-----------------*/

.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: #3d85ff;
  /* For Safari 5.1 to 6.0 */
  /* For Opera 11.1 to 12.0 */
  /* For Firefox 3.6 to 15 */
  background: url("/img/v2/svgs/background-hex.svg") no-repeat center top, -webkit-gradient(linear, right top, left top, color-stop(10%, #3d85ff), color-stop(90%, #4ca4ff));
  background: url("/img/v2/svgs/background-hex.svg") no-repeat center top, linear-gradient(to left, #3d85ff 10%, #4ca4ff 90%);
  /* Standard syntax */
  background-size: 100%;
}

.banner .overlay.hex2 {
  /* For Safari 5.1 to 6.0 */
  /* For Opera 11.1 to 12.0 */
  /* For Firefox 3.6 to 15 */
  background: url("/img/v2/svgs/background-hex2.svg") no-repeat center top, -webkit-gradient(linear, right top, left top, color-stop(10%, #3d85ff), color-stop(90%, #4ca4ff));
  background: url("/img/v2/svgs/background-hex2.svg") no-repeat center top, linear-gradient(to left, #3d85ff 10%, #4ca4ff 90%);
  /* Standard syntax */
  background-size: 100%;
}

.banner .overlay.hex3 {
  /* For Safari 5.1 to 6.0 */
  /* For Opera 11.1 to 12.0 */
  /* For Firefox 3.6 to 15 */
  background: url("/img/v2/svgs/background-hex3.svg") no-repeat center top, -webkit-gradient(linear, right top, left top, color-stop(10%, #3d85ff), color-stop(90%, #4ca4ff));
  background: url("/img/v2/svgs/background-hex3.svg") no-repeat center top, linear-gradient(to left, #3d85ff 10%, #4ca4ff 90%);
  /* Standard syntax */
  background-size: 100%;
}

.banner .overlay.hex4 {
  /* For Safari 5.1 to 6.0 */
  /* For Opera 11.1 to 12.0 */
  /* For Firefox 3.6 to 15 */
  background: url("/img/v2/svgs/background-hex4.svg") no-repeat center top, -webkit-gradient(linear, right top, left top, color-stop(10%, #3d85ff), color-stop(90%, #4ca4ff));
  background: url("/img/v2/svgs/background-hex4.svg") no-repeat center top, linear-gradient(to left, #3d85ff 10%, #4ca4ff 90%);
  /* Standard syntax */
  background-size: 100%;
}

.banner .overlay.hex5 {
  /* For Safari 5.1 to 6.0 */
  /* For Opera 11.1 to 12.0 */
  /* For Firefox 3.6 to 15 */
  background: url("/img/v2/svgs/background-hex5.svg") no-repeat center top, -webkit-gradient(linear, right top, left top, color-stop(10%, #3d85ff), color-stop(90%, #4ca4ff));
  background: url("/img/v2/svgs/background-hex5.svg") no-repeat center top, linear-gradient(to left, #3d85ff 10%, #4ca4ff 90%);
  /* Standard syntax */
  background-size: 100%;
}

.home .banner-cta {
  padding: calc(3% + 100px) 0 2% 0;
}

.banner-cta {
  position: relative;
  z-index: 2;
  min-height: 300px;
  overflow: hidden;
  width: 100%;
  padding: calc(3% + 100px) 0 170px 0;
}

.home .banner-cta .content-container {
  max-width: 700px;
}

.overlap-form .banner-cta {
  pointer-events: none;
}

.overlap-form .banner .content-container {
  padding-bottom: 150px;
}

.banner-cta .content-container {
  max-width: 850px;
}

.banner-cta .content-container h1 {
  font-size: 4em;
  margin: 0 0 0.4em 0;
  color: white;
  line-height: 1.2;
}

.banner-cta .content-container h2 {
  font-size: 1.3em;
  color: white;
  font-weight: 300;
  max-width: 650px;
  margin: 0.83em auto 0.83em auto;
}

.home .banner-cta .content-container h2 {
  max-width: 500px;
}

.banner .animation {
  width: 100%;
  position: relative;
  z-index: 5;
}

.banner .animation.hero .svg-cont {
  max-width: 800px;
  margin: auto;
  z-index: 5;
  bottom: 0;
}

.banner .animation.hero:before {
  content: "";
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  background-color: white;
  height: 110px;
}

.banner .animation.hero.grey-strip:before {
  background-color: #f6f6f6;
}

section {
  position: relative;
  min-height: 200px;
  overflow: visible;
}

section .content-container {
  padding: 0 30px;
}

section .content-container:after {
  content: ".";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

section .content-container.narrow {
  max-width: 800px;
}

main section p {
  line-height: 1.6;
}

.apps-overlay {
  background-image: url("/img/v2/apps-left.png"), url("/img/v2/apps-right.png");
  background-position: left center, right center;
  background-repeat: no-repeat, no-repeat;
  background-size: 26%, 26%;
  padding-bottom: 50px;
  z-index: 2;
}

@media (max-width: 1440px) {
  .apps-overlay {
    background-position: left bottom, right bottom;
    padding-bottom: 200px;
    background-size: 40%, 40%;
  }
}

@media (max-width: 1040px) {
  .apps-overlay {
    background-position: left bottom, right bottom;
    padding-bottom: 170px;
    background-size: 50%, 50%;
  }
}

/*-- STANDARD SECTION --*/

section.section .overlay {
  padding-top: 100px;
  padding-bottom: 100px;
}

.white-section {
  min-height: 400px;
  background-color: white;
}

.white-section .content-container {
  padding: 250px 30px 260px 30px;
}

main.developers .white-section .content-container {
  padding: 50px 30px 260px 30px;
}

main h2 {
  font-weight: 700;
  margin-top: 0.5em;
  margin-bottom: 0.6em;
}

main h3 {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 0.6em;
}

section .svg-cont {
  opacity: 0;
}

section.visible .svg-cont {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

section:nth-child(2) .content-container {
  padding: 80px 30px 170px 30px;
}

section:nth-child(2) .content-container.narrow {
  max-width: 500px;
}

section:nth-child(4) .content-container {
  padding: 430px 30px 300px 30px;
}

.with-testimonials section:nth-child(4) .content-container {
  padding: 330px 30px 0px 30px;
}

.with-testimonials section:nth-child(4) .content-container.pad_top50 {
  padding: 50px 30px 0px 30px;
}

section:nth-child(6) .content-container {
  padding: 270px 30px 100px 30px;
}

section:nth-child(7) .content-container {
  padding: 150px 30px 250px 30px;
}

section:nth-child(10) .content-container {
  padding: 250px 30px 250px 30px;
}

section:nth-child(12) .content-container {
  padding: 250px 30px 250px 30px;
}

section:nth-child(14) .content-container {
  padding: 250px 30px 250px 30px;
}

section:nth-child(even) .content-container .columns > .column:first-child {
  float: left;
}

section.magic-badge-section .content-container .svg-cont {
  margin-top: -160px;
  min-width: 740px;
}

section:nth-child(3).magic-badge-section .content-container .svg-cont {
  margin-top: 0px;
  min-width: 660px;
  margin-bottom: -150px;
}

section:nth-child(4) .svg-cont {
  margin-top: -280px;
  min-width: 640px;
}

section.mis-section .content-container .svg-cont,
section.microsoft-sync-section .content-container .svg-cont {
  margin-top: -110px;
  min-width: 640px;
}

section:nth-child(6) .content-container .svg-cont {
  margin-top: -185px;
  margin-left: -80px;
  min-width: 670px;
}

.SSO section:nth-child(7) .content-container .svg-cont {
  margin: -160px 0 -60px -20px;
  min-width: 620px;
}

section.google-apps-section .content-container .svg-cont {
  min-width: 560px;
  margin-bottom: -150px;
}

section.users-section .svg-cont,
section.SSO-dashboard .svg-cont,
section.classroom-section .svg-cont {
  min-width: 560px;
  margin-top: -170px;
}

section.timetable-section .content-container .svg-cont {
  min-width: 590px;
  margin-top: -50px;
}

main.contain-images .columns .svg-cont {
  padding: 20px;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  margin: 0;
}

main.data-management .svg-cont img {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

main.schools-page .svg-cont {
  opacity: 1;
}

main.with-hero .banner .svg-cont img {
  -webkit-box-shadow: none;
          box-shadow: none;
}

main.with-hero .banner-cta {
  padding-bottom: 50px;
}

.svg-cont.code-ex a {
  width: 49%;
  display: inline-block;
}

.svg-cont.code-ex a svg {
  width: calc(100% - 40px);
  padding: 20px;
  margin: auto;
}

.svg-cont.code-ex a:hover {
  opacity: 0.6;
}

/*--------------------
Tables
----------------------*/

table {
  margin: 0 0 2rem 0;
  width: 100%;
}

table tbody tr {
  border: solid 1px;
  border-left: 0;
  border-right: 0;
}

table td {
  padding: 0.75rem 0.75em;
}

table th {
  font-size: 0.9em;
  font-weight: 600;
  padding: 0 0.75em 0.75em 0.75em;
  text-align: left;
}

table thead {
  border-bottom: solid 2px;
}

table tbody tr {
  border-color: rgba(65, 65, 67, 0.25);
}

table tbody tr:nth-child(2n + 1) {
  background-color: rgba(65, 65, 67, 0.075);
}

table th {
  color: #414143;
}

table thead {
  border-bottom-color: rgba(65, 65, 67, 0.25);
}

@media (max-width: 1550px) {
  section.mis-section .content-container .svg-cont,
  section.timetable-section .content-container .svg-cont,
  section.google-apps-section .content-container .svg-cont,
  section.microsoft-sync-section .content-container .svg-cont,
  section:nth-child(3).magic-badge-section .content-container .svg-cont,
  .SSO section:nth-child(7) .content-container .svg-cont,
  section.magic-badge-section .content-container .svg-cont {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    margin-top: -100px;
  }

  section.magic-badge-section .content-container .svg-cont img {
    max-width: 120%;
    width: 120%;
  }

  section.mis-section .content-container .svg-cont,
  section:nth-child(3).magic-badge-section .content-container .svg-cont,
  section.timetable-section .content-container .svg-cont,
  section.google-apps-section .content-container .svg-cont {
    margin-top: 0px;
  }
}

@media (max-width: 1000px) {
  section.mis-section .content-container .svg-cont,
  section.microsoft-sync-section .content-container .svg-cont,
  section:nth-child(3).magic-badge-section .content-container .svg-cont,
  section.magic-badge-section .content-container .svg-cont {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    margin-top: -30px;
  }

  section:nth-child(3).magic-badge-section .content-container .svg-cont {
    margin-top: 20px !important;
  }

  section:nth-child(4) .svg-cont {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    margin-top: -100px;
  }

  section:nth-child(4) .content-container {
    padding: 200px 30px 150px 30px;
  }

  section:nth-child(4) .column .pad {
    padding: 70px 56px 20px 56px;
  }

  section:nth-child(6) .content-container {
    padding: 170px 30px 100px 30px;
  }

  section:nth-child(6) .content-container .svg-cont {
    margin-top: -100px;
    margin-left: 0px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  section:nth-child(4) .svg-cont,
  section.mis-section .content-container .svg-cont,
  .SSO section:nth-child(7) .content-container .svg-cont {
    margin: 0px;
  }
}

@media (max-width: 850px) {
  section:nth-child(6) .content-container .svg-cont,
  section:nth-child(3).magic-badge-section .content-container .svg-cont,
  section.magic-badge-section .content-container .svg-cont {
    margin-top: 0px;
  }

  section:nth-child(6) .content-container {
    padding: 100px 30px 90px 30px;
  }
}

@media (max-width: 750px) {
  section .content-container {
    overflow: hidden;
  }

  .overlap-form section .content-container {
    overflow: visible;
  }

  section:nth-child(3).magic-badge-section .content-container .svg-cont,
  section:nth-child(4) .content-container .svg-cont,
  section:nth-child(6) .content-container .svg-cont,
  .SSO section:nth-child(7) .content-container .svg-cont,
  section.mis-section .content-container .svg-cont,
  section.timetable-section .content-container .svg-cont,
  section.google-apps-section .content-container .svg-cont,
  section.magic-badge-section .content-container .svg-cont,
  section.microsoft-sync-section .content-container .svg-cont {
    margin: 0px auto 0px auto;
    min-width: 0px;
    width: 100%;
    max-width: 400px;
    overflow: visible;
  }

  .SSO section:nth-child(7) .content-container .svg-cont {
    margin-bottom: -50px;
  }

  section:nth-child(3).magic-badge-section .content-container .svg-cont {
    margin-bottom: 0px;
  }

  section.google-sync-section .content-container .svg-cont {
    max-width: 300px;
  }

  section.magic-badge-section .content-container .svg-cont img {
    width: 100%;
    margin-left: 15%;
  }

  .column .pad,
  section:nth-child(4) .content-container .column .pad {
    padding: 0;
    width: 90%;
    max-width: 360px;
    margin: 0px auto 0px auto;
    text-align: center;
  }

  .columns > .column,
  section:nth-child(even) .content-container .columns > .column:first-child,
  section:nth-child(4) .content-container .columns > .column:first-child,
  section:nth-child(6) .content-container .columns > .column:first-child {
    float: none;
    clear: both;
  }

  section:nth-child(2) .content-container {
    padding: 80px 30px 100px 30px;
  }

  section:nth-child(4) .content-container {
    padding: 100px 30px 80px 30px;
  }

  section:nth-child(8) .content-container,
  section:nth-child(6) .content-container,
  section .content-container {
    padding: 70px 30px 70px 30px;
  }
}

/*--------------------
CURVE BGs
-----------------------*/

.bg-curve {
  position: absolute;
  left: 0;
  width: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  height: 500px;
  pointer-events: none;
  z-index: 0;
}

section > .bg-curve.top {
  top: 0px;
  background-position: top left;
}

section > .bg-curve.bottom.top,
section > .bg-curve.bottom {
  top: auto;
  bottom: -1px;
  background-position: bottom left;
}

section.banner .bg-curve.bottom {
  background-image: url("/img/v2/svgs/bg-bottom-curve1.svg");
}

section.banner .bg-curve.bottom.white {
  background-image: url("/img/v2/svgs/bg-bottom-curve1-white.svg");
}

section:nth-child(2) .bg-curve.bottom {
  background-image: url("/img/v2/svgs/bg-bottom-curve1.svg");
}

section:nth-child(3) .bg-curve.bottom {
  background-image: url("/img/v2/svgs/bg-bottom-curve5.svg");
}

section:nth-child(4) .bg-curve.bottom {
  background-image: url("/img/v2/svgs/bg-bottom-curve2.svg");
}

section:nth-child(6) .bg-curve.bottom {
  background-image: url("/img/v2/svgs/bg-bottom-curve3.svg");
}

section:nth-child(8) .bg-curve.bottom {
  background-image: url("/img/v2/svgs/bg-bottom-curve4.svg");
}

section:nth-child(10) .bg-curve.bottom {
  background-image: url("/img/v2/svgs/bg-bottom-curve5.svg");
}

section:nth-child(11) .bg-curve.bottom {
  background-image: url("/img/v2/svgs/bg-bottom-curve8.svg");
}

section:nth-child(12) .bg-curve.bottom {
  background-image: url("/img/v2/svgs/bg-bottom-curve6.svg");
}

section:nth-child(13) .bg-curve.bottom {
  background-image: url("/img/v2/svgs/bg-bottom-curve9.svg");
}

section:nth-child(14) .bg-curve.bottom {
  background-image: url("/img/v2/svgs/bg-bottom-curve7.svg");
}

section.google-apps-section .bg-curve.bottom.top,
section:nth-child(4) .bg-curve.top {
  background-image: url("/img/v2/svgs/bg-top-curve1.svg");
}

section:nth-child(6) .bg-curve.top {
  background-image: url("/img/v2/svgs/bg-top-curve2.svg");
}

section.testimonials-section .bg-curve.bottom.top,
section:nth-child(8) .bg-curve.top {
  background-image: url("/img/v2/svgs/bg-top-curve3.svg");
}

section:nth-child(5) .bg-curve.top {
  background-image: url("/img/v2/svgs/bg-top-curve1.svg");
}

section:nth-child(10) .bg-curve.top {
  background-image: url("/img/v2/svgs/bg-top-curve4.svg");
}

section:nth-child(11) .bg-curve.top {
  background-image: url("/img/v2/svgs/bg-top-curve7.svg");
}

section:nth-child(12) .bg-curve.top {
  background-image: url("/img/v2/svgs/bg-top-curve5.svg");
}

section:nth-child(13) .bg-curve.top {
  background-image: url("/img/v2/svgs/bg-top-curve8.svg");
}

section:nth-child(14) .bg-curve.top {
  background-image: url("/img/v2/svgs/bg-top-curve6.svg");
}

section:last-child .bg-curve.bottom {
  background-image: url("/img/v2/svgs/bg-bottom-curve4.svg");
}

/*-------------------
Testimonials
---------------------*/

.slick-slide {
  cursor: ew-resize;
}

.slick-slide:focus {
  outline: none;
}

.testimonials-cont {
  position: relative;
  z-index: 2;
}

.testimonial {
  text-align: left;
  font-size: 16px;
  margin: 40px;
  padding: 36px;
  border: 0;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  position: relative;
  background-color: #ffffff;
}

.testimonial-image {
  display: inline-block;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  overflow: hidden;
}

.testimonial-stars {
  display: inline-block;
  vertical-align: top;
  margin-left: 20px;
  padding-top: 17px;
  width: 150px;
}

.testimonial-stars .star {
  display: none;
  fill: #ffbc00;
}

.testimonial-stars .stars-1 .star1,
.testimonial-stars .stars-2 .star1,
.testimonial-stars .stars-2 .star2,
.testimonial-stars .stars-3 .star1,
.testimonial-stars .stars-3 .star2,
.testimonial-stars .stars-3 .star3,
.testimonial-stars .stars-4 .star1,
.testimonial-stars .stars-4 .star2,
.testimonial-stars .stars-4 .star3,
.testimonial-stars .stars-4 .star4,
.testimonial-stars .stars-5 .star {
  display: block;
}

.testimonial-name {
  padding-top: 15px;
}

.testimonial-name span {
  color: #414143;
}

.testimonial {
  text-align: left;
  font-size: 16px;
  margin: 40px;
  padding: 36px;
  border: 0;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  position: relative;
  background-color: #ffffff;
}

@media (max-width: 1320px) {
  .testimonial {
    margin: 40px 10px;
  }
}

@media (max-width: 500px) {
  .testimonial-stars {
    margin-left: 10px;
    padding-top: 22px;
    width: calc(100% - 100px);
  }
}

@media (max-width: 400px) {
  .testimonial-image {
    width: 60px;
    height: 60px;
  }

  .testimonial-stars {
    padding-top: 20px;
    width: calc(100% - 80px);
  }

  .testimonial-name p {
    margin: 0;
  }

  .testimonial {
    padding: 26px;
  }

  .testimonial-text p {
    font-size: 14px;
  }
}

/*-----------------------------
ICONS
-------------------------------*/

.icon {
  width: 80px;
  height: 80px;
}

.icon.thumbs-up {
  background-image: url("/img/v2/svgs/icons/thumbs-up.svg");
}

.icon.partners {
  background-image: url("/img/v2/svgs/icons/partners.svg");
}

.icon.app-developers {
  background-image: url("/img/v2/svgs/icons/app-developers.svg");
}

.icon.rocket {
  background-image: url("/img/v2/svgs/icons/rocket.svg");
}

.icon.users {
  background-image: url("/img/v2/svgs/icons/users.svg");
}

.icon.stats {
  background-image: url("/img/v2/svgs/icons/stats.svg");
}

.icon.send {
  background-image: url("/img/v2/svgs/icons/send.svg");
}

.icon.data {
  background-image: url("/img/v2/svgs/icons/cloud.svg");
}

.icon.help {
  background-image: url("/img/v2/svgs/icons/help.svg");
}

.graphic.tick {
  background-image: url("/img/v2/svgs/icons/tick.svg");
  width: 15px;
  height: 20px;
  vertical-align: bottom;
}

ul.horizontal.ticks li {
  margin: 0 10px 0 10px;
  font-weight: 300;
}

ul.horizontal.features li {
  width: 30.33%;
  margin: 20px 1.5% 20px 1.5%;
}

ul.horizontal.features li h4 {
  font-size: 1.3em;
}

ol {
  counter-reset: item;
  padding: 0;
}

ol li {
  display: block;
  position: relative;
  padding-left: 30px;
}

ol li ol li {
  padding-left: 30px;
}

ol li ol li ol li {
  padding-left: 40px;
}

ol li:before {
  content: counters(item, ".") " ";
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 1.8em;
  color: #414143;
  font-weight: 500;
}

ol li ol li:before {
  font-size: 1em;
  color: rgba(65, 65, 67, 0.6);
}

ol h2 {
  margin-left: -20px;
}

.bullets div {
  position: relative;
  padding-left: 20px;
}

.bullets div:before {
  content: "\2022   ";
  position: absolute;
  left: 0;
  top: 0;
}

.downloads {
  line-height: 2;
  font-size: 20px;
}

/*-----------------------------
Reveal
-------------------------------*/

.active-content .visible-content,
.hidden-content {
  display: none;
}

.active-content .hidden-content {
  display: block;
}

.active-content .hidden-content {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.click-reveal li {
  cursor: pointer;
}

/**********************
POPUP
***********************/

#modalframe {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
}

.modal-overlay {
  background: rgba(61, 133, 255, 0.9);
  /* For Safari 5.1 to 6.0 */
  /* For Opera 11.1 to 12.0 */
  /* For Firefox 3.6 to 15 */
  background: url("/img/v2/svgs/background-hex.svg") no-repeat center top, -webkit-gradient(linear, right top, left top, color-stop(10%, rgba(61, 133, 255, 0.9)), color-stop(90%, rgba(76, 164, 255, 0.9)));
  background: url("/img/v2/svgs/background-hex.svg") no-repeat center top, linear-gradient(to left, rgba(61, 133, 255, 0.9) 10%, rgba(76, 164, 255, 0.9) 90%);
  /* Standard syntax */
  background-size: 100%;
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  pointer-events: auto;
}

.modal-inner {
  width: 80%;
  max-width: 1200px;
  margin: auto;
  position: absolute;
  top: 90px;
  left: calc(50% - 600px);
  pointer-events: none;
  border-radius: 4px;
  padding-bottom: 20px;
}

.modal-inner.full {
  width: 100%;
  max-width: 3000px;
  left: 0px;
  top: 50px;
}

.modal-close {
  position: absolute;
  top: 17px;
  right: 15px;
  width: 40px;
  height: 40px;
  background-image: url("/img/v2/svgs/icons/close.svg");
  background-repeat: no-repeat;
  background-size: 36px 36px;
  background-position: center center;
  cursor: pointer;
  pointer-events: auto;
  z-index: 201;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.modal-close:hover {
  opacity: 0.5;
}

.modal-content {
  padding: 30px;
  pointer-events: auto;
}

.sidr-class-pop-content,
.pop-content {
  display: none !important;
  position: relative;
}

.trigger {
  cursor: pointer;
}

@media (max-width: 1080px) {
  .modal-inner {
    top: 80px;
    left: 10%;
  }
}

@media (max-width: 500px) {
  .modal-inner {
    top: 95px;
  }
}

/******************
Tool tip
******************/

#tip-content {
  padding: 10px;
  text-align: center;
}

#tip-content span {
  font-size: 20px;
  border: 1px solid #ffffff;
  padding: 2px 8px 2px 8px;
  margin: 0 10px 0 10px;
  border-radius: 50%;
}

.tip-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background-image: url("/img/v2/icon_close_white.png");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center center;
  cursor: pointer;
  pointer-events: auto;
  z-index: 201;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.tip-close:hover {
  opacity: 0.5;
}

#tip-container {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 50;
}

.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

/*------------------------------
CONTACT
------------------------------*/

.contact-details p {
  font-size: 20px;
}

.contact-details .graphic {
  width: 30px;
  height: 20px;
  background-position: left center;
  background-size: contain;
  vertical-align: middle;
}

.contact-details .location {
  background-image: url("/img/v2/svgs/icons/maps.svg");
  vertical-align: top;
}

.contact-details .phone {
  background-image: url("/img/v2/svgs/icons/phone.svg");
}

.contact-details .email {
  background-image: url("/img/v2/svgs/icons/email.svg");
}

.contact-details address {
  display: inline-block;
  width: calc(100% - 40px);
  max-width: 170px;
  font-style: normal;
  font-size: 20px;
}

.contact-details address,
.contact-details a:link {
  color: #414143;
}

.contact-details a:visited {
  color: #414143;
}

.contact-details a:hover {
  color: #3d85ff;
}

/*------------------------------
SOCIAL MEDIA
------------------------------*/

/*------------------------------
RESPONSIVENESS
------------------------------*/

@media (max-width: 1400px) {
  .main-navigation {
    padding-left: 30px;
    padding-right: 30px;
  }

  .main-navigation > nav > ul > li > a {
    padding: 0 10px 0 10px;
  }
}

@media (max-width: 1250px) {
  .header-sections.main-navigation nav {
    display: none;
  }

  .header-sections.cta ul li.mobile-nav,
  .sidr-open .header-sections.cta ul li.mobile-nav {
    display: inline-block;
  }

  .header-sections.logo-cont {
    width: calc(100% - 390px);
    min-width: 120px;
    max-width: 940px;
  }

  .header-sections.cta {
    width: 60%;
    text-align: right;
    max-width: 380px;
  }
}

@media (max-width: 1100px) {
  .banner-cta {
    min-height: 100px;
    padding: calc(3% + 70px) 0 3% 0;
  }

  .overlap-form .banner-cta {
    position: relative;
    z-index: 2;
    min-height: 300px;
    overflow: hidden;
    width: 100%;
    padding: calc(3% + 100px) 0 170px 0;
  }

  section .banner-cta .content-container {
    padding: 0px 30px 20px 30px;
  }
}

@media (max-width: 1070px) {
  .main-navigation > nav > ul > li > a {
    padding: 0 5px 0 5px;
  }

  .footer-logo {
    width: 100%;
    max-width: 120px;
  }

  .footer-logo .logo-cont {
    width: 100%;
    max-width: 120px;
  }

  .footer-links {
    width: calc(100% - 250px);
    margin-bottom: 20px;
  }
}

@media (max-width: 900px) {
  .columns.three > .column,
  .columns.four > .column {
    width: 50%;
  }

  .columns.four > .column:nth-child(1),
  .columns.four > .column:nth-child(2) {
    float: left;
  }

  .columns.four > .column:nth-child(3),
  .columns.four > .column:nth-child(4) {
    float: right;
  }

  .footer-links .column:nth-child(3),
  .footer-links .column:nth-child(4) {
    padding-top: 20px;
  }

  .svg-cont.code-ex a {
    width: 80%;
    display: inline-block;
    margin: auto;
  }
}

@media (max-width: 750px) {
  .header-sections.cta li:nth-child(3) {
    display: none;
  }

  .columns.two {
    margin-left: 0;
  }

  .columns.two > .column:first-child,
  .columns.two > .column {
    padding-left: 0;
    float: none;
    width: 100%;
  }

  .columns.two > .column:first-child {
    margin-bottom: 30px;
  }

  .columns.two > br.clear {
    display: none;
  }

  .columns.footer-links > .column {
    clear: none;
  }

  .overlap-form .banner-cta {
    padding: calc(3% + 100px) 0 90px 0;
  }

  .contact-details {
    text-align: center;
    padding-top: 40px;
  }

  .contact-details address {
    margin-left: -20px;
  }

  .svg-cont.code-ex a {
    width: 49%;
    display: inline-block;
  }
}

@media (max-width: 650px) {
  .banner-cta .content-container h1 {
    font-size: 3.2em;
  }

  header.website-header .content-container {
    padding: 0 15px 0 15px;
  }

  footer {
    width: 100%;
    overflow: hidden;
  }

  ul.horizontal > li.footer-logo {
    display: none;
  }

  .footer-links {
    width: 100%;
    max-width: 400px;
    margin: auto;
  }
}

@media (max-width: 600px) {
  .sidr {
    border-left: 0;
  }

  .sidr > .sidr-inner,
  .sidr > .sidr-inner:first-child {
    padding: 20px;
  }

  .sidr > .sidr-inner:first-child {
    padding: 120px 20px 0 20px;
  }

  .banner-cta {
    padding: calc(3% + 100px) 0 50px 0;
  }

  .banner .animation:before {
    height: 70px;
  }
}

@media (max-width: 500px) {
  .banner-cta .content-container h1 {
    font-size: 2.6em;
  }

  .banner-cta .content-container h2 {
    font-size: 1em;
  }

  .header-sections.cta ul li {
    margin-right: 0;
  }

  .header-sections.cta {
    width: calc(100% - 150px);
  }

  h2#logo,
  header.website-header {
    height: 80px;
  }

  .header-sections.cta ul li {
    display: none;
  }

  .header-sections.cta li:last-child {
    display: inline-block;
  }

  .mobile-nav {
    top: 0px;
  }

  .hamburger {
    margin-top: 26px;
  }

  .sidr > .sidr-inner:first-child {
    padding: 100px 20px 0 20px;
  }

  .hamburger {
    width: 40px;
    height: 28px;
  }

  .hamburger span {
    height: 3px;
  }

  .hamburger span:nth-child(1) {
    top: 2px;
  }

  .hamburger span:nth-child(2) {
    top: 12px;
  }

  .hamburger span:nth-child(3) {
    top: 22px;
  }

  .sidr-open .hamburger span:nth-child(1),
  .mm-opening .hamburger span:nth-child(1) {
    top: 12px;
  }

  .sidr-open .hamburger span:nth-child(3),
  .mm-opening .hamburger span:nth-child(3) {
    top: 12px;
  }

  ul.list.signup-nav li a {
    font-size: 2em;
  }
}

@media (max-width: 400px) {
  .banner-cta .content-container h1 {
    font-size: 1.9em;
  }

  .sidr {
    background-position: top -40px;
  }

  .sidr > .sidr-inner:first-child > ul.sidr-class-horizontal > li {
    margin-right: 8px;
  }

  .columns.three > .column,
  .columns.four > .column {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 0 auto;
    padding: 0 0 20px 0;
  }

  .columns.four > .column * {
    text-align: center;
  }

  .columns.four > .column:nth-child(1),
  .columns.four > .column:nth-child(2),
  .columns.four > .column:nth-child(3),
  .columns.four > .column:nth-child(4) {
    float: none;
  }

  ul.horizontal.features li h4 {
    font-size: 1em;
  }

  ul.horizontal.features .icon {
    width: 60px;
    height: 60px;
  }

  ul.list.signup-nav li a {
    font-size: 1.6em;
    line-height: 2;
  }
}

.success {
  background: #3d4cff;
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}

#cookieBar {
  background-color: #3d85ff;
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  padding: 10px 0;
  z-index: 1000;
  text-align: center;
}

#cookieBar p {
  display: inline-block;
  color: #ffffff;
  margin: 0;
}

#cookieBar a {
  color: #fff;
}

.close_cookie_bar {
  font-weight: bold;
  padding-left: 30px;
  cursor: pointer;
}

/*------------------------------
HELP PAGE
------------------------------*/

#accordion-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.help-accordion.expand-accordion + .accordion-content {
  max-height: 2000px;
  overflow: visible;
}

.help-accordion.expand-accordion svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
}

.accordion-section h3 {
  margin-bottom: 1em;
}

.accordion-section svg {
  padding-left: 10px;
}

.accordion-content p:last-child {
  padding-bottom: 20px;
}

.help-accordion:hover {
  cursor: pointer;
}

.help-chevron-container {
  float: right;
}

@media (max-width: 900px) {
  #accordion-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/*--------------------
Tabs
----------------------*/

ul.tabs {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

ul.tabs li {
  background: none;
  color: #222;
  padding: 10px 15px;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

ul.tabs li.active {
  background: #ededed;
  color: #222;
  border-radius: 5px;
}

ul.tabs li.tab-link img {
  width: 25px;
  margin-right: 7px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: inherit;
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */

body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

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

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

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

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.cs-box {
  border-radius: 10px;
  box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  padding: 0 20px;
}

.hljs-comment,
.hljs-quote {
  color: #8e908c;
}

.hljs-variable,
.hljs-template-variable,
.hljs-tag,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class,
.hljs-regexp,
.hljs-deletion {
  color: #c82829;
}

.hljs-number,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-params,
.hljs-meta,
.hljs-link {
  color: #f5871f;
}

.hljs-attribute {
  color: #eab700;
}

.hljs-string,
.hljs-symbol,
.hljs-bullet,
.hljs-addition {
  color: #718c00;
}

.hljs-title,
.hljs-section {
  color: #4271ae;
}

.hljs-keyword,
.hljs-selector-tag {
  color: #8959a8;
}

.hljs {
  display: block;
  overflow-x: auto;
  background: white;
  color: #4d4d4c;
  padding: 0.5em;
}

.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: bold;
}

