@charset "UTF-8";
/*********************************************
  :: Necessary SASS files
********************************************/
/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Perform a value into a percentage value.
 * @param {number} $value - The value which should be converted.
 * @returns {number} $value - The percentage.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Aliases for j-column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Aliases for j-column-width().
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Alias for j-column-gutter().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Alias for j-span().
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Alias for j-shift().
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * Alias for j-unshift().
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 * Aliases for j-edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Alias for j-center().
 */
/**
 * Uncenter an element.
 */
/**
 * Alias for j-uncenter().
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Alias for j-stack().
 */
/**
 * Unstack an element.
 */
/**
 * Alias for j-unstack().
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Alias for j-align().
 */
/**
 * Apply a clearfix to an element.
 */
/**
 * Alias for j-cf().
 */
/*********************************************
  :: Sass Setup
  :: Variables, mixins and more!!
********************************************/
/*********************************************
  :: colors!!!!!!
  :: 3 most over used colors for the site
  :: usage = background: $primary-color;
********************************************/
/*********************************************
  :: typography defaults!!!!!!
  :: 3 most over used colors for the site
  :: usage = font-size: $body-copy-size; || line-height: $body-copy-lh;
********************************************/
/*********************************************
  :: breakpoint mixin
  :: simple custom defined breakpoints
  :: usage = @include breakpoint(gt760)
********************************************/
/*********************************************
  :: rgba mixin
  :: good for those pesky old browsers!!!
  :: usage = @include rgba(#000, 0.5)
********************************************/
/*********************************************
  :: Cross Browser - Border Radius
  :: good for those pesky old browsers!!!
  :: usage = @include border-radius(0px 0px 0px 0px)
********************************************/
/*********************************************
  :: The mixin
********************************************/
/**
 * Fix for vw, vh, vmin, vmax on iOS 7.
 * http://caniuse.com/#feat=viewport-units
 *
 * This fix works by replacing viewport units with px values on known screen sizes.
 *
 * iPhone 6 and 6 Plus cannot run iOS 7, so are not targeted by this fix.
 * Target devices running iOS 8+ will incidentally execute the media query,
 * but this will still produce the expected result; so this is not a problem.
 *
 * As an example, replace:
 *
 *   height: 50vh;
 *   font-size: 5vmin;
 *
 * with:
 *
 *   @include viewport-unit(height, 50vh);
 *   @include viewport-unit(font-size, 5vmin);
 */
@import '//fonts.googleapis.com/css?family=Cutive';
@import '//fonts.googleapis.com/css?family=Montserrat';
@import '//fonts.googleapis.com/css?family=Gochi+Hand';
@import url(//fonts.googleapis.com/css?family=Montserrat:400,700);
.background-grey {
  background-color: #F0E8DF; }

/*********************************************
  :: Necessary SASS files
********************************************/
/*********************************************
  :: Modules and Variables
********************************************/
/* Colors */
/*********************************************
  :: Global
********************************************/
/*********************************************
  :: Necessary SASS files
********************************************/
/*********************************************
  :: Modules and Variables
********************************************/
/* Colors */
/*********************************************
  :: Partials
********************************************/
/*********************************************
  :: Accordion
********************************************/
/********* PLEASE BE CAREFUL EDITING BELOW **************/
/*********** This is used for all courses! *************/
.accordion-wrap {
  width: 100%;
  max-width: 400px;
  margin-bottom: 2%; }

.accordion-wrap .title {
  width: 100%;
  padding: 1px 1em;
  position: relative;
  z-index: 2; }

.accordion-wrap .title span {
  width: 80%;
  line-height: 36px;
  margin: 0;
  padding: 5px 0;
  display: inline-block; }

.accordion-wrap .title .arrow-wrap {
  width: 15%;
  padding: 5px 0;
  display: inline-block; }

.accordion-wrap .accordion {
  top: -9px;
  position: relative;
  padding-top: 9px; }

.accordion-wrap .accordion .accordion-container {
  position: relative;
  width: 90%;
  top: -9px;
  left: 5%;
  z-index: 1; }

.accordion-wrap .accordion .accordion-container p {
  padding: 15px 10px 0 10px; }

.accordion-wrap .accordion .accordion-container .bot-squiggle {
  height: 12px !important; }

/*********************************************
  :: Blob Box
********************************************/
/*For text fields with coloured background, not clickable*/
/********* PLEASE BE CAREFUL EDITING BELOW **************/
/*********** This is used for all courses! *************/
.blue-blob-box {
  background: url("https://worktheseasons.co.nz/build/img/blob-box/blue-blob-box.svg");
  background-repeat: no-repeat;
  width: 100%;
  padding: 2em;
  color: white;
  transition: .15s all;
  text-align: center;
  display: block;
  text-decoration: none; }

.blue-blob-box p {
  text-align: center; }

.magenta-blob-box {
  background: url("https://worktheseasons.co.nz/build/img/blob-box/magenta-blob-box.svg");
  background-repeat: no-repeat;
  width: 100%;
  padding: 2em;
  color: white;
  transition: .15s all;
  text-align: center;
  display: block;
  text-decoration: none; }

.magenta-blob-box p {
  text-align: center; }

.green-blob-box {
  background: url("https://worktheseasons.co.nz/build/img/blob-box/green-blob-box.svg");
  background-repeat: no-repeat;
  width: 100%;
  padding: 2em;
  color: white;
  transition: .15s all;
  text-align: center;
  display: block;
  text-decoration: none; }

.green-blob-box p {
  text-align: center; }

.purple-blob-box {
  background: url("https://worktheseasons.co.nz/build/img/blob-box/purple-blob-box.svg");
  background-repeat: no-repeat;
  width: 100%;
  padding: 2em;
  color: white;
  transition: .15s all;
  text-align: center;
  display: block;
  text-decoration: none; }

.purple-blob-box p {
  text-align: center; }

.orange-blob-box {
  background: url("https://worktheseasons.co.nz/build/img/blob-box/orange-blob-box.svg");
  background-repeat: no-repeat;
  width: 100%;
  padding: 2em;
  color: white;
  transition: .15s all;
  text-align: center;
  display: block;
  text-decoration: none; }

.orange-blob-box p {
  text-align: center; }

.orange-blob-box-nowidth {
  background: url("https://worktheseasons.co.nz/build/img/blob-box/orange-blob-box.svg");
  background-repeat: no-repeat;
  color: white;
  transition: .15s all;
  text-align: center;
  display: block;
  text-decoration: none;
  padding: 1em !important; }

.orange-blob-box-nowidth p {
  text-align: center; }

.beige-blob-box {
  background: url("https://worktheseasons.co.nz/build/img/blob-box/beige-blob-box.svg");
  background-repeat: no-repeat;
  width: 100%;
  padding: 2em;
  color: black;
  transition: .15s all;
  text-align: center;
  display: block;
  text-decoration: none; }

.beige-blob-box p {
  text-align: center; }

/*********************************************
  :: Buttons
********************************************/
/********* PLEASE BE CAREFUL EDITING BELOW **************/
/*********** This is used for all courses! *************/
/*********************************************
  :: Standard JBA buttons
********************************************/
.jba-btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: url("https://worktheseasons.co.nz/images/buttons/rectangle-button.svg");
  background-repeat: no-repeat;
  color: white;
  transition: .15s all;
  transform: scale(1);
  border-width: 0px; }

.jba-btn:hover {
  background: url("https://worktheseasons.co.nz/images/buttons/rectangle-button-hover.svg");
  cursor: pointer;
  background-repeat: no-repeat; }

.jba-btn:active {
  transform: scale(0.9);
  background-repeat: no-repeat; }

.jba-btn:visited {
  background: url("https://worktheseasons.co.nz/build/img/buttons/rectangle-button-visited.svg");
  background-repeat: no-repeat; }

.jba-visited {
  background: url("https://worktheseasons.co.nz/build/img/buttons/rectangle-button-visited.svg");
  background-repeat: no-repeat; }

.jba-btn-submit {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333; }

@media screen and (max-width: 480px) {
  .jba-btn-submit {
    padding: 10px 10px;
    font-size: 12px;
    margin-top: 5px;
    line-height: 1.5; } }

.jba-btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5; }

.jba-btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5; }

.jba-btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333; }

.jba-btn-xl {
  padding: 10px 22px;
  font-size: 24px;
  line-height: 1.3333333; }

.jba-btn-set-width {
  width: 100px; }

.jba-btn-set-width-lg {
  width: 150px; }

.jba-btn-set-width-xl {
  width: 215px; }

.radial-button {
  background: url("https://worktheseasons.co.nz/build/img/buttons/buttons-09.png");
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
  background-size: contain; }

.radial-button:hover {
  background: url("https://worktheseasons.co.nz/build/img/buttons/buttons-02.png");
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
  background-size: contain; }

.radial-visited {
  background: url("https://worktheseasons.co.nz/build/img/buttons/buttons-02.png");
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
  background-size: contain; }

.jba-btn-locked {
  background: url("https://worktheseasons.co.nz/build/img/buttons/rectangle-button-locked.svg") !important;
  background-repeat: no-repeat !important; }

@keyframes rejectWobble {
  0% {
    transform: translateX(0px); }
  20% {
    transform: translateX(5px); }
  40% {
    transform: translateX(-5px); }
  60% {
    transform: translateX(5px); }
  80% {
    transform: translateX(-5px); }
  100% {
    transform: translateX(0px); } }

.reject-wobble {
  animation: rejectWobble .4s; }

.prev-button {
  display: inline-block;
  background: url("https://worktheseasons.co.nz/build/img/buttons/prev-button.svg");
  padding: 2em;
  color: white;
  background-repeat: no-repeat;
  transition: .15s all;
  text-align: center;
  width: 50px;
  height: 50px;
  background-size: contain; }

.prev-button:hover {
  background: url("https://worktheseasons.co.nz/build/img/buttons/prev-button-hover.svg");
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: contain; }

.prev-button:active {
  transform: scale(0.9);
  background-size: contain; }

.prev-visited {
  background: url("https://worktheseasons.co.nz/build/img/buttons/prev-button-visited.svg");
  background-repeat: no-repeat; }

.next-button {
  background: url("https://worktheseasons.co.nz/build/img/buttons/next-button.svg");
  padding: 2em;
  color: white;
  background-repeat: no-repeat;
  transition: .15s all;
  text-align: center;
  width: 50px;
  height: 50px;
  display: inline-block;
  background-size: contain; }

.next-button:hover {
  background: url("https://worktheseasons.co.nz/build/img/buttons/next-button-hover.svg");
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: contain; }

.next-button:active {
  transform: scale(0.9);
  background-size: contain; }

.next-button-locked {
  background: url("https://worktheseasons.co.nz/build/img/buttons/next-button-locked.svg");
  width: 400px;
  padding: 2em;
  color: white;
  background-repeat: no-repeat;
  transition: .15s all;
  text-align: center;
  width: 50px;
  height: 50px; }

.next-button-locked:hover {
  background: url("https://worktheseasons.co.nz/build/img/buttons/next-button-locked.svg");
  cursor: pointer;
  background-repeat: no-repeat; }

.next-button-locked:active {
  transform: scale(1); }

.arrowLock {
  color: grey;
  transition: .2s all;
  position: absolute;
  font-size: 30px;
  transform: translateX(24px) translateY(-15px); }

.submitLock {
  color: grey;
  transition: .2s all;
  position: absolute;
  font-size: 30px;
  top: 0;
  right: 0; }

.next-visited {
  background: url("https://worktheseasons.co.nz/build/img/buttons/next-button-visited.svg");
  background-repeat: no-repeat; }

.close-button {
  background: url("https://worktheseasons.co.nz/build/img/buttons/circle-button.svg");
  display: inline-block;
  color: white;
  background-repeat: no-repeat;
  transition: .15s all;
  text-align: center;
  padding: 1em;
  background-position: center; }

.close-button:hover {
  background: url("https://worktheseasons.co.nz/build/img/buttons/circle-button-hover.svg");
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center; }

.close-button:active {
  transform: scale(0.9); }

.close-button i {
  transform: rotate(0deg);
  transition: .2s all;
  font-size: 30px;
  transform-origin: center; }

.close-cross-spin {
  transform: rotate(90deg) !important; }

.hint-button {
  background: url("https://worktheseasons.co.nz/build/img/buttons/lightbulb1.png");
  color: white;
  background-repeat: no-repeat;
  transition: .15s all;
  text-align: center;
  width: 50px;
  height: 50px;
  margin: 0 !important;
  z-index: 999;
  background-size: contain;
  transform: scale(1); }

.hint-button:hover {
  background: url("https://worktheseasons.co.nz/build/img/buttons/lightbulb2.png");
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(1.1); }

.hint-button:active {
  transform: scale(0.9); }

.back-button {
  background: url("https://worktheseasons.co.nz/build/img/buttons/back-button.svg");
  color: white;
  background-repeat: no-repeat;
  transition: .15s all;
  text-align: center;
  width: 60px;
  height: 60px; }

.back-button:hover {
  background: url("https://worktheseasons.co.nz/build/img/buttons/back-button-hover.svg");
  cursor: pointer;
  background-repeat: no-repeat; }

.back-button:active {
  transform: scale(0.9); }

a {
  color: white; }

a:hover {
  color: white;
  text-decoration: none; }

a:active {
  color: white;
  text-decoration: none; }

a:focus {
  color: white;
  text-decoration: none; }

#blog-post-body a {
  color: black !important;
  font-weight: bold; }

#blog-post-body a:hover {
  color: black !important;
  font-weight: bold;
  text-decoration: underline !important; }

#blog-post-body a:active {
  color: black !important;
  font-weight: bold;
  text-decoration: underline !important; }

#blog-post-body a:focus {
  color: black !important;
  font-weight: bold;
  text-decoration: underline !important; }

#blog-post-body i {
  font-size: 13.5px !important; }

#blog-post-body img {
  width: auto !important; }

.question-button {
  background: url("https://worktheseasons.co.nz/build/img/buttons/question-button.svg");
  color: white;
  background-repeat: no-repeat;
  transition: .15s all;
  text-align: center;
  width: 50px;
  height: 50px;
  margin: 0 !important;
  z-index: 999;
  background-size: contain;
  transform: scale(1); }

.question-button:hover {
  background: url("https://worktheseasons.co.nz/build/img/buttons/question-button-hover.svg");
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(1.1); }

.question-button:active {
  transform: scale(0.9); }

button {
  border: none;
  background: none; }

.exclaimation-button {
  background: url("https://worktheseasons.co.nz/build/img/buttons/exclaimationMark.png");
  color: white;
  background-repeat: no-repeat;
  transition: .15s all;
  text-align: center;
  width: 50px;
  height: 50px;
  margin: 0 !important;
  z-index: 999;
  background-size: contain;
  transform: scale(1); }

.exclaimation-button:hover {
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(1.1); }

.exclaimation-button:active {
  transform: scale(0.9); }

#jba-radio {
  display: inline-block; }

#jba-radio input {
  visibility: hidden; }

#jba-radio label {
  cursor: pointer; }

#jba-radio input:checked + label {
  background: url("https://worktheseasons.co.nz/build/img/buttons/rectangle-button-visited.svg");
  background-repeat: no-repeat; }

.list-number {
  background: url("https://worktheseasons.co.nz/build/img/buttons/circle-button-orange.svg");
  display: inline-block;
  height: 100%;
  margin-top: 10px;
  color: white;
  background-repeat: no-repeat;
  transition: .15s all;
  text-align: center;
  padding: .3em;
  background-position: center;
  font-size: 20px; }

.jba-btn-tab-active {
  background: url("https://worktheseasons.co.nz/build/img/buttons/rectangle-button-visited.svg") !important; }

.jba-red-circle {
  background: url("https://worktheseasons.co.nz/build/img/buttons/circle-button-red.svg");
  display: inline-block;
  color: white;
  background-repeat: no-repeat;
  transition: .15s all;
  text-align: center;
  padding: 1em;
  background-position: center; }

.jba-green-circle {
  background: url("https://worktheseasons.co.nz/build/img/buttons/circle-button-green.svg");
  display: inline-block;
  color: white;
  background-repeat: no-repeat;
  transition: .15s all;
  text-align: center;
  padding: 1em;
  background-position: center; }

/*********************************************
  :: Custom Checkboxes
********************************************/
/********* PLEASE BE CAREFUL EDITING BELOW **************/
/*********** This is used for all courses! *************/
.jba-checkbox p {
  padding: 15px !important; }

.jba-checkbox input:focus {
  outline: 0 !important; }

*:focus {
  outline: 0 !important; }

* {
  outline: 0 !important; }

input:focus {
  outline-style: 0 !important; }

/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px; }

[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 55px;
  cursor: pointer; }

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 40px;
  height: 40px;
  background: #f8f8f8;
  border-radius: 0px;
  box-shadow: none;
  background-image: url("https://worktheseasons.co.nz/build/img/check/pink-border.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-10px);
  border: 0 !important; }

/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: url("https://worktheseasons.co.nz/build/img/check/check.svg");
  transform: translateY(10px);
  width: 40px;
  height: 40px;
  position: absolute;
  top: -18px;
  left: 7px;
  font-size: 18px;
  line-height: 0.8;
  color: #09ad7e;
  transition: all .2s; }

/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0); }

[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1); }

/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd; }

[type="checkbox"]:disabled:checked + label:after {
  color: #999; }

[type="checkbox"]:disabled + label {
  color: #aaa; }

/* accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
  border: 1px dotted blue; }

/*********************************************
  :: Flip Switch
********************************************/
/********* PLEASE BE CAREFUL EDITING BELOW **************/
/*********** This is used for all courses! *************/
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px; }

/* Hide default HTML checkbox */
.switch input {
  display: none; }

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #F2EAE1;
  transition: .4s; }

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background: url("https://worktheseasons.co.nz/build/img/flipswitch/pink-circle.svg");
  background-repeat: no-repeat;
  transition: .4s; }

input:checked + .slider {
  background-color: #F2EAF1; }

input:focus + .slider {
  box-shadow: 0 0 1px #ccc; }

input:checked + .slider:before {
  transform: translateX(26px); }

/* Rounded sliders */
.slider.round {
  border-radius: 34px; }

.slider.round:before {
  border-radius: 50%; }

p.selected {
  font-weight: 700;
  color: #F79131; }

.switch-float {
  float: left;
  width: 100px; }

/*********************************************
  :: Forms
********************************************/
#courseFormWrapperDiv1 textarea, #courseFormWrapperDiv2 textarea,
#courseFormWrapperDiv3 textarea, #courseFormWrapperDiv4 textarea {
  padding: 15px !important;
  font-size: 13px !important;
  border: 0px !important;
  height: 100px;
  background: transparent;
  height: 80px;
  overflow-y: scroll !important; }

#courseFormWrapperDiv1 input, #courseFormWrapperDiv2 input,
#courseFormWrapperDiv3 input,
#courseFormWrapperDiv4 input {
  font-size: 13px !important;
  border: 0px !important;
  background: transparent;
  overflow-y: scroll !important; }

.ui-page-theme-a .ui-body-inherit {
  border: 0 !important;
  background: transparent !important; }

.form-control {
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.075); }

.course-input-field-white {
  color: #333 !important;
  text-shadow: none !important; }

.hint-container {
  height: 100px;
  width: 100px;
  background: url("https://worktheseasons.co.nz/build/img/buttons/hintButton-2.svg");
  background-size: contain;
  float: right;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-pack: center;
  justify-content: center;
  transform: translateY(-76px) translateX(-40px);
  transition: .2s all;
  position: absolute;
  right: 0; }

.hint-container:hover {
  transform: translateY(-70px) translateX(-40px);
  cursor: pointer; }

.hint-container:active {
  transform: translateY(-76px) translateX(-40px); }

.hint-container .hint-bulb {
  height: 20px;
  width: 20px;
  background: url("https://worktheseasons.co.nz/build/img/buttons/hintBulb.png");
  background-size: contain;
  margin-bottom: 5px; }

.hint-container p {
  color: white; }

.hint-allowance {
  margin-bottom: 30px; }

:focus {
  outline: -webkit-focus-ring-color auto 0px !important; }

.large-textarea textarea {
  height: 200px !important; }

.small-textarea textarea {
  height: 80px !important; }

.xs-small-textarea textarea {
  height: 70px !important; }

/*center slider content */
.course-vertical-align-center {
  padding-top: 40px !important; }

.course-sm-vertical-align-center {
  padding-top: 55px; }

/*textbox outside padding color */
.jba-form-theme:focus {
  outline: none !important;
  box-shadow: none; }

.light-beige-textbox {
  background: #E8E3DF !important; }

.dark-beige-textbox {
  background: #D8D1C9 !important; }

/* hide and show forms */
.hideCourseElementField {
  display: none; }

.showCourseFormInput {
  display: block; }

.course-form-padding {
  padding-left: 15px;
  padding-right: 15px; }

/* stop form from rezizing */
#courseFormWrapperDiv1, #courseFormWrapperDiv2, #courseFormWrapperDiv3, #courseFormWrapperDiv4 {
  padding-right: 10px !important; }

#courseFormWrapperDiv1 textarea, #courseFormWrapperDiv2 textarea,
#courseFormWrapperDiv3 textarea,
#courseFormWrapperDiv4 textarea {
  resize: none !important;
  height: 100px; }

/* form input color text */
.course-input-field-black {
  color: #000000 !important;
  text-shadow: none !important; }

.course-input-field-white {
  color: #ffffff !important;
  text-shadow: none !important; }

/*Form scrolling bars */
/*black*/
.course-form-scroll-black::-webkit-scrollbar {
  width: 12px; }

.course-form-scroll-black::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px transparent;
  border-radius: 10px; }

.course-form-scroll-black::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #000000; }

/*white*/
.course-form-scroll-white::-webkit-scrollbar {
  width: 12px; }

.course-form-scroll-white::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px transparent;
  border-radius: 10px; }

.course-form-scroll-white::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #ffffff; }

.top-padding-course {
  margin-top: 10px; }

.left-padding-course {
  margin-left: 50px !important; }

/*********************************************
  :: Iframe / Video
********************************************/
/********* PLEASE BE CAREFUL EDITING BELOW **************/
/*********** This is used for all courses! *************/
.aspect-ratio {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 51%; }

.aspect-ratio iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0; }

/*********************************************
  :: Layout
********************************************/
/********* PLEASE BE CAREFUL EDITING BELOW **************/
/*********** This is used for all courses! *************/
body {
  background-color: #F1E9E0; }

.404 {
  background-image: url("https://worktheseasons.co.nz/build/css/img/404/bg.png");
  margin: 0; }

/* Row heights */
.header-row {
  height: 10%; }

.content-row {
  height: 80%; }

@media (min-width: 1025px) {
  .content-row {
    padding: 10px;
    padding-top: 25px; } }

.header-container {
  height: 100px; }

.new-body-container {
  height: 75%; }

.new-body-container img {
  height: 200px; }

.new-main-content {
  height: 100%;
  -ms-flex-align: center;
  align-items: center; }

/* Spacing */
.col-pad0 {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.col-pad10 {
  padding-right: 10px !important;
  padding-left: 10px !important; }

.display-n {
  display: none; }

.display-b {
  display: block; }

/* Menu */
#menu-toggle {
  background-image: url("https://worktheseasons.co.nz/build/img/menu.png");
  background-position: 100% 100%;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  background-size: contain; }

.new-nav {
  transition: .5s all;
  height: 15%;
  bottom: 0;
  z-index: 9999999; }

.navbar {
  background-color: transparent; }

#wrapper {
  padding-top: 0px; }

.navbar-brand {
  display: none; }

/* Images */
.img-center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center; }

.flex-center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center; }

.scrollit {
  height: 450px;
  overflow-y: scroll;
  overflow-x: hidden; }

.row {
  margin-left: 0px !important;
  margin-right: 0px !important; }

.new-main-content h2 {
  margin-bottom: 9px; }

.row-flex-center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }

.reset-padding {
  padding: 0 !important; }

.col-flex-center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center; }

.container-fluid {
  height: 100vh !important; }

.one-line {
  margin-top: 13px; }

.one-line-bot {
  margin-bottom: 13px; }

.two-line {
  margin-top: 26px; }

.two-line-bot {
  margin-bottom: 26px; }

.half-line {
  margin-top: 8px; }

.half-line-bot {
  margin-top: 8px; }

.float-r {
  float: right; }

.float-l {
  float: left; }

.flexy-parent {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }

.flexy-image {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative; }

.flexy-image img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  position: absolute;
  padding-top: 23px;
  left: 50%;
  transform: translateX(-50%); }

.flexy-image-svg {
  -ms-flex-positive: 1;
  flex-grow: 1; }

.flexy-image-svg svg {
  transform: translateX(-50%);
  left: 50%;
  position: absolute;
  height: 100%;
  width: auto;
  max-height: 100%;
  max-width: 100%; }

.flexy-no-image {
  -ms-flex-positive: 1;
  flex-grow: 1; }

.flexy-image-width {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative; }

.flexy-image-width img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  padding: 23px;
  height: auto;
  width: auto; }

/**
 * iPhone 5
 * You can also target devices with aspect ratio.
 */
@media screen and (device-aspect-ratio: 40 / 71) and (orientation: portrait) {
  .container-fluid {
    height: 450px !important; } }

@media screen and (device-aspect-ratio: 40 / 71) and (orientation: landscape) {
  .container-fluid {
    height: 200px !important; } }

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-device-pixel-ratio: 2) and (device-aspect-ratio: 2 / 3) and (orientation: landscape) {
  height: 500px !important; }

.sliderAnswer ul li {
  color: #59C7D9; }

.ui-input-text input {
  padding: 0 !important; }

li {
  list-style-type: none; }

.btn-radio {
  width: 100%; }

.img-radio {
  transition: .2s all;
  margin-bottom: 5px;
  padding-top: 10px;
  padding-bottom: 5px; }

.btn-radio p {
  margin-top: 10px; }

.accordion-arrow {
  height: 20px;
  width: auto; }

@media (max-width: 1024px) {
  .navbar {
    width: 55px; } }

.p0 {
  padding: 0; }

.clear {
  clear: both;
  display: table;
  content: ""; }

.fLeft {
  float: left; }

.fRight {
  float: right; }

.alignText {
  width: 95%;
  text-align: left; }

.floating {
  animation-name: floating;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out; }

@keyframes floating {
  from {
    transform: translateY(0); }
  50% {
    transform: translateY(10px); }
  to {
    transform: translateY(0); } }

/*  image resizing */
.xs-image-resize {
  max-width: 20%; }

.xss-image-resize {
  max-width: 28%; }

.img-medium-resize {
  max-width: 35%; }

.img-medium-size {
  max-width: 40%; }

.img-md-plus-resize {
  max-width: 50%; }

.small-resize {
  max-width: 60%; }

.large-resize {
  max-width: 80%; }

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

.img55 {
  height: 55%; }

.hover-pointer {
  cursor: pointer; }

/*********************************************
  :: List's
********************************************/
/********* PLEASE BE CAREFUL EDITING BELOW **************/
/*********** This is used for all courses! *************/
.question {
  background-image: url("https://worktheseasons.co.nz/build/img/lists/question-icon.svg");
  background-repeat: no-repeat;
  height: 60px;
  width: 60px;
  margin-top: 1em; }

.row {
  width: 100%; }

.arrow-list li:before {
  font-family: 'FontAwesome';
  content: '\f061';
  margin: 0 5px 0 -15px;
  color: #000000; }

.white-arrow-list li:before {
  font-family: 'FontAwesome';
  content: '\f061';
  margin: 0 5px 0 -15px;
  color: #ffffff; }

.arrow-list li {
  list-style-type: none;
  margin-left: 8px;
  font-family: 'AvenirNext', 'Montserrat', sans-serif; }

.list-no-marg li {
  margin-bottom: 0 !important; }

.vert-list {
  height: 60px;
  line-height: 75px; }

.vert-list p {
  vertical-align: middle;
  display: inline-block; }

.purpleBack {
  background-color: #6C1F5D; }

.rewind .marL5 {
  margin-left: 5% !important; }

.rewind ul li {
  list-style-type: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }

.rewind ul li .imgWrap {
  width: 15%;
  max-width: 60px;
  position: relative;
  z-index: 10050; }

.rewind ul li .imgWrap img {
  display: block; }

.rewind ul li .imgWrap .back {
  width: 100%; }

.rewind ul li .imgWrap .front {
  position: absolute;
  z-index: 10080;
  top: 50%;
  left: 50%;
  width: 50%;
  transform: translate(-50%, -50%); }

.rewind ul li p {
  float: left;
  width: 85%;
  margin-left: 15px;
  color: white; }

@media (max-width: 340px) {
  .rewind ul li p {
    padding: 8px !important; } }

.finished {
  color: #ffffff; }

.finished .buttonWrap {
  margin-top: 50%;
  transform: translateY(-50%); }

.finished a {
  max-width: 50%;
  margin: 0 auto;
  text-decoration: none; }

/*********************************************
  :: Module States - Completed / Locked
********************************************/
/********* PLEASE BE CAREFUL EDITING BELOW **************/
/*********** This is used for all courses! *************/
.ex3-topics .fa-check {
  transition: .2s all;
  position: absolute;
  color: #38B449;
  font-size: 25px;
  right: 0;
  top: 0; }

.checkup {
  opacity: 1 !important;
  transform: translateX(120px) translateY(-68px) !important; }

.button-pop {
  margin-bottom: 15px; }

.button-pop h3 {
  margin-top: 10px;
  font-size: 20px; }

.unlocked {
  opacity: 0 !important; }

.ex3-topics .fa-lock {
  opacity: 1;
  color: grey;
  transition: .2s all;
  position: absolute;
  font-size: 25px;
  right: 0;
  top: 0; }

/*********************************************
  :: Pop-Ups
********************************************/
/********* PLEASE BE CAREFUL EDITING BELOW **************/
/*********** This is used for all courses! *************/
.popup-close-test {
  height: 38px;
  padding-top: 4px;
  display: inline-block;
  position: absolute;
  top: 32px;
  right: 0px;
  transition: ease 0.25s all;
  border-radius: 1000px;
  font-family: Arial, Sans-Serif;
  font-size: 30px;
  text-align: center;
  line-height: 100%;
  color: #fff;
  z-index: 2; }

/* Purple Full Background */
.purple-bk-popup {
  width: 100%;
  height: 100%;
  display: none;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  bottom: 0px;
  right: 0px;
  background: #6C1F5D;
  z-index: 99999; }

@media (min-width: 1025px) {
  .purple-bk-popup {
    width: calc(100vw - 230px);
    height: calc(100vh - 62px); } }

.purple-bk-popup .popup-inner h2 {
  color: #59C7D9;
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 15px; }

.purple-bk-popup .popup-inner p {
  color: #000000; }

.purple-bk-popup .popup-inner a {
  float: right; }

.purple-bk-popup .popup-close {
  width: 40px;
  height: 40px;
  bottom: 0;
  right: 10px; }

/* Orange Background */
.orange-popup {
  width: 100%;
  height: 100%;
  display: none;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: 0px;
  left: 0px;
  background: transparent;
  z-index: 99999; }

@media (min-width: 1025px) {
  .orange-popup {
    width: calc(100vw - 230px);
    height: calc(100vh - 62px); } }

.orange-popup .popup-close {
  width: 40px;
  height: 40px;
  top: 0;
  right: 10px; }

/* Outer */
.popup {
  width: 100%;
  height: 100%;
  display: none;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  bottom: 0px;
  right: 0px;
  background: rgba(0, 0, 0, 0.75);
  z-index: 99999; }

@media (min-width: 1025px) {
  .popup {
    width: calc(100vw - 230px);
    height: calc(100vh - 62px); } }

/* Inner */
.popup-inner {
  max-width: 450px;
  width: 90%;
  padding: 40px;
  position: relative; }

.popup-inner h2 {
  color: #ffffff;
  font-size: 24px; }

.popup-inner p {
  color: #ffffff; }

.popup-inner a {
  float: right; }

.popup-back {
  height: 38px;
  padding-top: 4px;
  display: inline-block;
  transition: ease 0.25s all;
  border-radius: 1000px;
  font-family: Arial, Sans-Serif;
  font-size: 30px;
  text-align: center;
  line-height: 100%;
  color: #fff; }

/* Close Button */
.popup-close {
  height: 38px;
  padding-top: 4px;
  display: inline-block;
  transition: ease 0.25s all;
  border-radius: 1000px;
  font-family: Arial, Sans-Serif;
  font-size: 30px;
  text-align: center;
  line-height: 100%;
  color: #fff; }

.popup-close-test {
  height: 38px;
  padding-top: 4px;
  display: inline-block;
  position: absolute;
  top: 32px;
  right: 0px;
  transition: ease 0.25s all;
  border-radius: 1000px;
  font-family: Arial, Sans-Serif;
  font-size: 30px;
  text-align: center;
  line-height: 100%;
  color: #fff;
  z-index: 2; }

/*********************************************
  :: Progress Bar
********************************************/
/********* PLEASE BE CAREFUL EDITING BELOW **************/
/*********** This is used for all courses! *************/
/* top padding */
.progressWrap {
  height: 10%;
  margin: 0 auto; }

.progress-row {
  position: relative; }

@media (min-width: 1025px) {
  .progress-row {
    width: 100%;
    position: absolute; } }

.progressContainer {
  max-width: 750px;
  width: auto; }

.percentageProgress {
  width: 0; }

.hidden {
  display: none; }

.container-wrap {
  width: 100%; }

/* progress bar*/
.row {
  position: relative; }

h1 {
  text-align: center; }

.courseProgressBar {
  width: 100%;
  /*height:15px;*/
  background-image: url(https://worktheseasons.co.nz/build/img/progressBar/whiteBox.svg);
  background-repeat: no-repeat;
  background-color: transparent !important;
  border: 0px !important;
  margin-left: 2px;
  margin-right: 2px;
  position: relative;
  top: 12px;
  text-align: center;
  position: relative; }

.courseProgressBar p {
  text-shadow: none; }

.fixed {
  font-size: 40px;
  font-weight: 800;
  font-family: 'Gochi Hand', cursive;
  color: #6C1F5D;
  line-height: 25px;
  position: absolute;
  z-index: 1000;
  line-height: 10px;
  left: 50%;
  transform: translateX(-50%); }

.progressContainer {
  max-width: 750px; }

.percentageProgress {
  width: 0;
  height: 15px;
  transition: all 1s;
  background-image: url(https://worktheseasons.co.nz/build/img/progressBar/progress.svg);
  background-repeat: no-repeat;
  background-color: transparent !important;
  border: 0px !important; }

.percentageProgress.active {
  width: 60%;
  transition: all 1s; }

.pull-right, .pull-left {
  width: 50px; }

img {
  width: 100%; }

p {
  margin: 0; }

.arrow {
  display: none;
  position: absolute;
  bottom: 54px;
  left: 241px; }

svg:hover path {
  transition: all .3s ease-in-out; }

i {
  font-size: 25px; }

.hand-arrow {
  transform: rotate(-28deg);
  width: 100px;
  position: absolute;
  right: 20%;
  top: -85%;
  z-index: 10000; }

.hand-arrow p {
  font-size: 50px;
  font-family: 'Gochi Hand', cursive;
  color: #333;
  position: absolute;
  top: -30px;
  right: -80px;
  transform: rotate(28deg); }

/* media queries */
@media only screen and (max-width: 500px) {
  .pull-right,
  .pull-left {
    width: 30px; }
  .course-progress-bar {
    top: 5px; }
  .courseProgressBar {
    top: 5px; } }

@media only screen and (max-width: 769px) {
  .hand-arrow {
    display: none; } }

@media only screen and (min-width: 769px) {
  .fixed {
    display: none; } }

/*********************************************
  :: Radio Buttons
********************************************/
.jba-radio {
  display: inline-block; }

.jba-radio input {
  visibility: hidden; }

.jba-radio label {
  cursor: pointer; }

.jba-radio input:checked + label {
  background: url("https://worktheseasons.co.nz/build/img/buttons/rectangle-button-visited.svg");
  background-repeat: no-repeat; }

.jba-slider-popup p.bold {
  width: 100%;
  text-align: left; }

@media (min-width: 330px) {
  .jba-slider-popup p.bold {
    font-size: 15px; } }

.jba-slider #slider-vertical {
  background-image: url(https://worktheseasons.co.nz/build/img/forms/grey-squiggle.svg);
  background-repeat: no-repeat;
  background-position: 100% 100%; }

.jba-slider .ui-widget-header {
  background: transparent !important; }

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 0px solid #c5c5c5;
  background: transparent;
  font-weight: normal;
  color: #454545;
  background-image: url(https://worktheseasons.co.nz/build/img/flipswitch/pink-circle.svg);
  background-size: contain;
  transition: .2s all;
  background-repeat: no-repeat; }

.ui-state-default:hover,
.ui-widget-content .ui-state-default:hover,
.ui-widget-header .ui-state-default:hover {
  cursor: pointer; }

.ui-slider .ui-slider-handle {
  width: 2em !important;
  height: 2em !important;
  outline: -webkit-focus-ring-color auto 0px !important; }

#jba-horizontal-slider {
  background-image: url(https://worktheseasons.co.nz/build/img/blob-box/beige-blob-box.svg);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  border: none; }

#jba-horizontal-slider .ui-state-default,
#jba-horizontal-slider .ui-widget-content .ui-state-default,
#jba-horizontal-slider .ui-widget-header .ui-state-default {
  transition: transform .2s, background-image .2s;
  transform: scale(1);
  margin: 8px 0 0 0;
  border: 0px solid #c5c5c5;
  background: transparent;
  font-weight: normal;
  color: #454545;
  background-image: url(https://worktheseasons.co.nz/build/img/flipswitch/pink-circle.svg);
  background-repeat: no-repeat;
  margin-left: -13px; }

#jba-horizontal-slider .ui-state-default:hover,
#jba-horizontal-slider .ui-widget-content .ui-state-default:hover,
#jba-horizontal-slider .ui-widget-header .ui-state-default:hover {
  cursor: pointer; }

@media screen and (max-width: 480px) {
  #jba-horizontal-slider {
    background-size: 100% 50%;
    background-position: center; } }

#jba-horizontal-slider .ui-state-active {
  transform: scale(1.4);
  background-image: url(https://worktheseasons.co.nz/build/img/flipswitch/hover-circle.svg); }

.jba-horizontal-slider-wrapper {
  width: calc(100% - 48px);
  display: inline-block; }

/*********************************************
  :: Scroll button
********************************************/
.jba-btn-scroll {
  background: url("https://worktheseasons.co.nz/build/img/buttons/circle-button.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  color: white;
  padding: 0 12px; }

.jba-btn-scroll i {
  font-size: 30px;
  animation: arrowPulse 1.5s;
  animation-iteration-count: infinite; }

.actual100 {
  height: 100% !important; }

.container-fluid {
  transition: .2s all; }

.content-row {
  transition: .5s all; }

@keyframes arrowPulse {
  0% {
    transform: translateY(-3px); }
  50% {
    transform: translateY(3px); }
  100% {
    transform: translateY(-3px); } }

/*********************************************
  :: Select - Slider
********************************************/
/********* PLEASE BE CAREFUL EDITING BELOW **************/
/*********** This is used for all courses! *************/
.ui-slider .ui-slider-handle {
  width: 2em !important;
  height: 2em !important;
  outline: -webkit-focus-ring-color auto 0px !important; }

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  border: 0px solid #c5c5c5;
  background: transparent;
  font-weight: normal;
  color: #454545;
  background-image: url(https://worktheseasons.co.nz/build/img/flipswitch/pink-circle.svg);
  background-repeat: no-repeat; }

/*********************************************
  :: Slider
********************************************/
/********* PLEASE BE CAREFUL EDITING BELOW **************/
/*********** This is used for all courses! *************/
.slick-slide {
  outline: none !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center; }

.push-course-slider-top {
  padding-top: 80px; }

.slider2 {
  width: 100%; }

.slider2 p {
  text-align: center;
  font-size: 18px;
  line-height: inherit;
  margin: 0 auto !important; }

.slider2 .imgWrap {
  width: 50%; }

.slick-slide img {
  width: 100%;
  display: block; }

.slick-arrow {
  width: 35px;
  height: 70px;
  z-index: 9999; }

.slick-prev {
  transition: .2s all;
  left: -8% !important; }

@media (max-width: 480px) {
  .slick-prev {
    left: -6% !important; } }

.slick-next {
  transition: .2s all;
  right: -8% !important; }

@media (max-width: 480px) {
  .slick-next {
    right: -6% !important; } }

.slick-prev:before,
.slick-next:before {
  color: #6C1F5D; }

.slick-track {
  -ms-flex-align: start;
  align-items: flex-start; }

.jba-slider #slider-vertical {
  margin: 12px 0 0 1.5em;
  border: none;
  float: left; }

.jba-slider .sliderAnswer {
  float: left; }

.jba-slider .sliderAnswer ul li {
  padding-bottom: 18px !important; }

.slick-disabled {
  opacity: 0.2; }

/* Orange bubble slider */
#slider-66 {
  height: 96px; }

#slider-66 .slick-slide p {
  margin-top: 25px !important;
  padding: 13px 0;
  width: 80%; }

.pg-66-options {
  position: relative;
  height: 100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center; }

.pg-66-options div {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2; }

.pg-66-options p {
  position: absolute; }

.66-slider-row2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 100px; }

#sixtysixless {
  transform: translateY(20px);
  opacity: 0;
  z-index: 1;
  transition: .3s all ease; }

#sixtysixmore {
  transform: translateY(20px);
  opacity: 0;
  z-index: 1;
  transition: .3s all ease; }

@keyframes sixtysixjumpOut {
  0% {
    transform: translateY(0px) scale(1); }
  20% {
    transform: translateY(5px) scale(1.2); }
  100% {
    transform: translateY(-50px) scale(0.9);
    opacity: 0; } }

.sixtysixout {
  animation: sixtysixjumpOut .4s ease;
  animation-fill-mode: forwards; }

.sixtysixAnswerIn {
  transform: translateX(0px) !important;
  opacity: 1 !important; }

.sixtysixdisappear {
  display: none; }

/*********************************************
  :: Speech Bubble
********************************************/
/********* PLEASE BE CAREFUL EDITING BELOW **************/
/*********** This is used for all courses! *************/
.speech-bubble {
  position: relative;
  width: 0;
  height: 0;
  left: 15%;
  border-top: 25px solid;
  border-right: 10px solid;
  border-color: transparent #F79131 #F79131 transparent;
  transform: translateX(100px) translateY(6px); }

.speech-bubble2 {
  position: relative;
  width: 0;
  height: 0;
  bottom: 0;
  left: 15%;
  border-bottom: 25px solid;
  border-left: 10px solid;
  border-color: #F79131 transparent transparent #F79131;
  transform: translateX(100px) translateY(-6px); }

.svg-tapme {
  animation: svgTapme 2s;
  animation-iteration-count: infinite;
  transform-origin: center;
  transform: scale(1);
  fill: #75cee2; }

@keyframes svgTapme {
  0% {
    transform: scale(1); }
  30% {
    transform: scale(0.8); }
  50% {
    transform: scale(1); } }

/*********************************************
  :: Squiggle borders
********************************************/
/********* PLEASE BE CAREFUL EDITING BELOW **************/
/*********** This is used for all courses! *************/
.squiggle-container {
  width: 100%;
  position: relative;
  z-index: 1; }

.squiggle-container .top-squiggle, .squiggle-container .bot-squiggle {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
  height: 20px; }

.squiggle-container .top-squiggle img, .squiggle-container .bot-squiggle img {
  width: 100%;
  display: block; }

.squiggle-container .top-squiggle {
  transform: translateY(1px); }

.squiggle-container .bot-squiggle {
  transform: translateY(-1px); }

.squiggle-container .squiggle-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 1; }

.squiggle-container .squiggle-content p {
  padding: 0.4em;
  margin: 0; }

.squiggle-input .top-squiggle, .squiggle-input .bot-squiggle {
  height: 10px !important; }

.white-squiggle {
  background-color: white; }

.orange-squiggle {
  background-color: #F79131;
  color: white; }

.blue-squiggle {
  background-color: #59C7D9;
  color: white; }

.magenta-squiggle {
  background-color: #E61C32;
  color: white; }

.red-squiggle {
  background-color: #E61C32;
  color: white; }

.green-squiggle {
  background-color: #38B449;
  color: white; }

.purple-squiggle {
  background-color: #6C1F5D;
  color: white; }

.beige-squiggle {
  background-color: #F1E9E0; }

.light-purple-squiggle {
  background-color: #B86CAC; }

/*********************************************
  :: Tap Me
********************************************/
/********* PLEASE BE CAREFUL EDITING BELOW **************/
/*********** This is used for all courses! *************/
.tapme-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  transform: translateY(-50px);
  opacity: 0;
  transition: .2s all; }

.tapme-container p {
  transform: translateY(-26px); }

.tapme-container img {
  height: 40px;
  width: auto;
  transform: rotate(-90deg); }

.tapme-container-in {
  transform: translateY(-26px);
  opacity: 1; }

.content-show-content {
  opacity: 0;
  transition: .2s all; }

.content-show-content-reveal {
  opacity: 1 !important;
  display: block !important; }

.content-show-content1 {
  display: none; }

.content-show-content2 {
  display: none; }

.content-show-content-nospace {
  display: none; }

/*********************************************
  :: Page Transitions
********************************************/
/********* PLEASE BE CAREFUL EDITING BELOW **************/
/*********** This is used for all courses! *************/
@keyframes faderin {
  0% {
    transform: translateX(100px);
    opacity: 0; }
  100% {
    transform: translateX(0px);
    opacity: 1; } }

@keyframes popin {
  0% {
    transform: scale(0.8) translateX(20px);
    opacity: 0; }
  100% {
    transform: scale(1) translateX(0px);
    opacity: 1; } }

@keyframes faderOut {
  0% {
    transform: translateX(0px);
    opacity: 1; }
  20% {
    transform: translateX(10px); }
  100% {
    transform: translateX(-150px);
    opacity: 0; } }

@keyframes popOut {
  0% {
    transform: scale(1) translateX(0px);
    opacity: 1; }
  20% {
    transform: scale(1) translateX(15px); }
  100% {
    transform: scale(0.8) translateX(-70px);
    opacity: 0; } }

.popIn {
  animation: popin .5s;
  animation-fill-mode: forwards; }

.popOut {
  animation: popOut .5s;
  animation-fill-mode: forwards; }

.pop-in {
  opacity: 0; }

.video-pop-in {
  opacity: 0;
  transition: .5s all; }

/*********************************************
  :: Typography
********************************************/
/********* PLEASE BE CAREFUL EDITING BELOW **************/
/*********** This is used for all courses! *************/
@font-face {
  font-family: 'AvenirNext';
  src: url("../fonts/AvenirNext-Medium.ttf"); }

/* Headings & Text */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cutive', serif; }

P, span, li {
  font-family: 'AvenirNext', 'Montserrat', sans-serif;
  font-size: 13.5px;
  margin-bottom: 10px;
  line-height: 20px;
  text-align: left; }

a {
  font-family: 'AvenirNext', 'Montserrat', sans-serif;
  text-decoration: none;
  color: #ffffff;
  text-shadow: none; }

h2 {
  font-size: 16pt;
  text-align: center;
  margin-top: 15px; }

h3 {
  font-family: 'AvenirNext', 'Montserrat', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 10px;
  line-height: 20px;
  text-align: center;
  font-weight: bold; }

h4 {
  font-family: 'AvenirNext', 'Montserrat', sans-serif;
  font-size: 15px;
  margin-bottom: 10px;
  margin-top: 10px;
  line-height: 20px;
  text-align: left;
  font-weight: bold;
  color: #ffffff; }

/* Colored Text */
.populate {
  color: #6C1F5D !important; }

.purple-text {
  color: #6C1F5D; }

.magenta-text {
  color: #D51A68;
  cursor: pointer; }

.white-text {
  color: #ffffff; }

.blue-text {
  color: #59C7D9; }

.orange-text {
  color: #F79131; }

.btn-text {
  color: #ffffff; }

.numbers-1 {
  color: #ffffff;
  font-size: 24px;
  background-image: url(https://worktheseasons.co.nz/build/img/numbers/number1.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center; }

.numbers-2 {
  color: #ffffff;
  font-size: 24px;
  background-image: url(https://worktheseasons.co.nz/build/img/numbers/number2.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center; }

.number-bk {
  padding-right: 0;
  padding-left: 0;
  text-align: center; }

/*********************************************
  :: Responsive
********************************************/
/*********************************************
  :: Desktop Repsonsive Design
********************************************/
@media only screen and (min-width: 1000px) and (max-width: 1150px) {
  .question {
    height: 50px;
    width: 50px;
    margin-top: 0.7em; } }

@media (min-width: 1025px) {
  #wrapper {
    padding-top: 62px; }
  .navbar-brand {
    display: block; } }

@media (min-width: 1200px) {
  .col-lg-offset-4 {
    margin-left: 25%; }
  .col-lg-4 {
    width: 50%; } }

@media (min-width: 1920px) {
  .col-lg-offset-4 {
    margin-left: 33.33333333%; }
  .col-lg-4 {
    width: 33.33333333%; } }

/*********************************************
  :: Tablet Repsonsive Design
********************************************/
@media screen and (max-width: 780px) {
  .desktop-only {
    display: none; } }

@media screen and (min-width: 780px) {
  .desktop-only {
    display: block; }
  .mob-only {
    display: none !important; } }

@media (min-width: 650px) and (max-width: 991px) {
  .numbers {
    max-height: 50px;
    width: auto; }
  #menu-toggle .bg-white {
    background-color: #D51A68 !important; }
  .break-point {
    width: 66.66666667%;
    margin-left: 16.66666667% !important; }
  .break-point-sm {
    width: 50%;
    margin-left: 25% !important; }
  .jba-btn-lg {
    padding: 5px 10px;
    font-size: 16px; }
  .content-row {
    height: 80%;
    padding: 30px;
    padding-top: 50px;
    overflow: scroll; }
  ::-webkit-scrollbar {
    display: none;
    width: 0px;
    background: transparent; }
  #wrapper.toggled {
    padding-left: 0; }
  .squiggle-top {
    height: 46px; }
  .scrollit {
    height: 400px;
    overflow-y: scroll;
    overflow-x: hidden; } }

/*********************************************
  :: Mobile Repsonsive Design
********************************************/
/**
 * iPhone 5
 */
@media screen and (device-aspect-ratio: 40 / 71) {
  .container-fluid {
    height: 500px; } }

/**
 * Larger Mobile Devices
 */
@media screen and (max-width: 480px) {
  /* Clean up */
  .slick-arrow {
    width: 35px;
    height: 30px;
    z-index: 9999; }
  .rectangle-tab {
    padding: 0.5em; }
  .course-vertical-align-center {
    padding-top: 20px !important; }
  #wrapper.toggled {
    padding-left: 0; }
  .btn-radio p {
    margin-top: 0px !important;
    margin-bottom: 0px; }
  p.selected {
    font-weight: 700;
    color: #F79131; }
  /********************************************** DO NOT EDIT BELOW******************************************/
  /* Layout */
  .header-row {
    height: 15%; }
  .col-md-12 {
    padding-right: 8px;
    padding-left: 8px; }
  .content-row {
    overflow-y: scroll;
    padding-bottom: 10px;
    height: 75%; }
  ::-webkit-scrollbar {
    display: none;
    width: 0px;
    background: transparent; }
  .col-xs-12 {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .col-xs-4 {
    padding-left: 5px !important;
    padding-right: 5px !important; }
  .header-row .col-xs-10 {
    padding-right: 0px;
    padding-left: 0px; }
  .scrollit {
    height: 370px;
    overflow-y: scroll;
    overflow-x: hidden; }
  .scrollit-m {
    height: 370px;
    overflow-y: scroll;
    overflow-x: hidden; }
  .right-img {
    margin-left: 85px; }
  /* Typography */
  P, span, li {
    font-size: 11px;
    line-height: 19px; }
  h2 {
    font-size: 11pt;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 25px; }
  ul {
    -webkit-padding-start: 20px; }
  .finished {
    color: #ffffff; }
  h3 {
    font-size: 15px !important; }
  .one-line {
    margin-top: 8px; }
  .one-line-bot {
    margin-bottom: 8px; }
  .two-line {
    margin-top: 13px; }
  .two-line-bot {
    margin-bottom: 13px; }
  .col-pad0 {
    padding-left: 0px !important;
    padding-right: 0px !important; }
  .col-pad10 {
    padding-left: 10px;
    padding-right: 10px; }
  /* Images */
  .mobile-img {
    width: 100%; }
  .flexy-image-mob-fix img {
    max-height: 100%;
    max-width: 100%;
    padding-top: 13px; }
  .flexy-image img {
    padding-top: 13px; }
  .numbers {
    max-height: 30px;
    width: auto; }
  /* Menu */
  #menu-toggle .bg-white {
    background-color: #D51A68 !important; }
  /* Progress Bar */
  .courseProgressBar {
    top: 20px !important; }
  /* Buttons */
  .next-button, .prev-button, .next-button-locked {
    padding: 1.5em;
    margin-top: 8px; }
  /* Squiggle Boxes */
  .squiggle-top, .squiggle-bottom {
    height: 14px; }
  /* Popups */
  .popup-inner {
    padding: 0; }
  .popup-close-test {
    top: -10px;
    right: -30px; }
  /* Lists */
  .question {
    height: 40px;
    width: 40px;
    margin-top: .5em; }
  .vert-list {
    height: 70px;
    line-height: 60px; }
  /* Forms */
  .large-textarea textarea {
    height: 200px; }
  .mobile-small textarea {
    height: 55px !important; }
  .img-radio {
    margin-bottom: 10px;
    margin-top: 10px; }
  #courseFormWrapperDiv1 textarea, #courseFormWrapperDiv2 textarea, #courseFormWrapperDiv3 textarea, #courseFormWrapperDiv4 textarea, #courseFormWrapperDiv1 input, #courseFormWrapperDiv2 input, #courseFormWrapperDiv3 input, #courseFormWrapperDiv4 input {
    font-size: 12px !important;
    padding: 8px !important; }
  /* Hints */
  .hint-container {
    height: 95px;
    width: 75px;
    right: -35px; }
  .hint-container p {
    padding-bottom: 3px !important; }
  .hint-container .hint-bulb {
    height: 15px;
    width: 15px;
    background-repeat: no-repeat; }
  .hint-allowance {
    margin-bottom: 20px; }
  /* Tap Me */
  .tap-me-pointer {
    margin-right: 10px; } }

/*********************************************
  :: Mobile Repsonsive Design - Small Screen
********************************************/
@media screen and (max-width: 320px) {
  /* Course Scss */
  .pageSix .pSixBlob {
    white-space: normal;
    min-height: 40px;
    padding: 0.7em !important; }
  .business13 {
    height: 75px;
    line-height: 50px; }
  .business59 {
    top: 56%;
    left: 4%;
    width: 111px; }
  #pg-66-img {
    margin-left: -60px !important; }
  .pg-66-container {
    width: 47%; }
  .tapme-wrapper-69 img {
    height: 19px;
    width: auto; }
  .pg-36-text {
    width: 100px;
    position: absolute;
    left: 179px;
    top: 75%; }
  .pg-36-image {
    margin-left: -162px;
    padding-top: 10px !important; }
  /* General Scss */
  .img40 {
    height: 30%; }
  .img55 {
    height: 40%; }
  .two-line {
    margin-top: 8px; }
  .two-line-bot {
    margin-bottom: 8px; }
  .slick-prev {
    left: -10% !important; }
  .slick-next {
    right: -10% !important; }
  h3 {
    font-size: 15px; }
  .orange-arrow-flip {
    height: 15px; }
  .exclaimation-button {
    width: 40px;
    height: 40px; }
  .mobile-resize {
    max-width: 40%; }
  .mob-resize {
    max-width: 100% !important; }
  .no-line {
    margin-top: 0 !important; }
  .vert-list {
    height: 55px;
    line-height: 55px; }
  .orange-blob-box-nowidth {
    font-size: 9px;
    padding: 0.7em !important; }
  .jba-btn-set-width {
    width: 75px; }
  .jba-btn-lg {
    padding: 5px 10px;
    font-size: 18px;
    line-height: 1.3333333; }
  .rewind ul li p {
    padding: 0px !important; }
  #slider-66 {
    height: 50px; }
  p:not(:first-child) {
    margin-top: 0px; }
  #slider-66 .slick-slide p {
    margin-top: 0px !important; }
  .next-button, .prev-button, .next-button-locked {
    padding: 1.5em;
    margin-top: 5px; }
  .spec {
    display: none !important; }
  .small-img {
    max-width: 80%;
    height: auto;
    display: block;
    margin: auto; }
  .question-button {
    width: 40px;
    height: 40px; }
  .textarea-mobile textarea {
    height: 50px !important; }
  .ex3-topics div .fa-lock {
    transform: translateX(85px) translateY(-68px); }
  .navbar-fixed-top {
    position: absolute; }
  .navbar-fixed-top {
    position: absolute; }
  .one-line {
    margin-top: 5px; }
  .img-radio {
    margin-bottom: 5px;
    margin-top: 5px; }
  .orange-text {
    line-height: 31px; }
  .button-pop h3 {
    margin-top: 4px;
    font-size: 15px;
    margin-bottom: 4px; }
  #courseFormWrapperDiv1 input, #courseFormWrapperDiv2 input, #courseFormWrapperDiv3 input, #courseFormWrapperDiv4 input {
    font-size: 11px !important; }
  .arrowLock {
    color: grey;
    transition: .2s all;
    position: absolute;
    font-size: 24px;
    transform: translateX(16px) translateY(-6px); }
  h2 {
    margin-top: 20px;
    line-height: 17px;
    font-size: 10pt; }
  .fix-arrow-mob-small {
    max-width: 40%;
    margin-left: 70px;
    position: absolute;
    top: 40px; }
  .fix-mob-small-text {
    top: 71%; } }

/*********************************************
  :: Landscape Repsonsive Design
********************************************/
@media only screen and (min-device-width: 300px) and (max-device-width: 680px) and (orientation: landscape) {
  .content-row {
    overflow-y: scroll;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0px;
    min-height: 230px !important;
    padding-bottom: 8px; }
  .container-fluid {
    padding-right: 0;
    padding-left: 0;
    height: auto !important; }
  .jba-btn-submit {
    padding: 6px 13px;
    font-size: 18px;
    line-height: 1.333333;
    margin-top: 5px; }
  .scrollit-m {
    height: 230px;
    overflow-y: scroll;
    overflow-x: hidden; }
  .navbar-toggle {
    margin-top: 0px; }
  #menu-toggle {
    width: 25px;
    height: 25px; }
  .back-button {
    width: 40px;
    height: 40px; }
  .popup-inner {
    max-width: 600px;
    width: 100%; }
  h2 {
    font-size: 10pt; }
  .navbar-fixed-top {
    top: 0px;
    left: 15px; }
  /* Spacing */
  .two-line-bot {
    margin-bottom: 8px; }
  .two-line {
    margin-top: 8px; }
  .header-row {
    height: 15%; }
  .progressWrap {
    height: 15%;
    margin: 0 auto; }
  .next-button, .prev-button {
    padding: 1em;
    width: 40px;
    height: 40px;
    margin-top: 5px; }
  .scrollit {
    height: 200px;
    overflow-y: scroll;
    overflow-x: hidden; }
  .large-textarea textarea {
    height: 100px !important; }
  .col-xs-offset-2 {
    margin-left: 16.666667%; }
  .col-xs-10 {
    width: 92.333333%; }
  P, span, li {
    font-size: 12px; }
  .navbar-fixed-top {
    top: 7px !important; }
  .img-md-plus-resize {
    max-width: 22%; }
  .small-resize {
    max-width: 33%; }
  .xs-image-resize {
    max-width: 11%; }
  .img-medium-size {
    max-width: 17%; }
  .navbar-fixed-top {
    position: absolute; }
  /* Flex image right side */
  .flexy-parent {
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .flexy-image img {
    padding: 0 !important; }
  .question {
    height: 30px;
    width: 30px; }
  .vert-list {
    height: 50px;
    line-height: 55px; }
  .two-column {
    width: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center; }
  .video-pop-in {
    width: 80%;
    margin-left: 10% !important;
    -ms-flex-direction: inherit !important;
    flex-direction: inherit !important; }
  .no-mob-land {
    display: none !important; }
  .jba-btn-lg {
    padding: 6px 13px;
    font-size: 16px; }
  .slick-arrow {
    width: 35px;
    height: 30px;
    z-index: 9999; }
  .text-left75 {
    width: 75%;
    float: left;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 100%; }
  .img-right75 {
    width: 25%;
    float: right;
    top: 0;
    right: 0; }
  .img-right75 .col-md-6 {
    width: 100% !important; } }

.single-item2 .slick-track {
  margin: 0 auto; }

.slider2 .img-circle {
  margin: 0 auto; }

.footer {
  padding: 4em 0;
  color: #e3e3e3; }

#jbaInfo > .link-in-footer {
  display: inline-block;
  width: 38px;
  height: 38px;
  margin-bottom: 18px; }

#jbaInfo img {
  height: 60px;
  width: auto;
  margin-bottom: 10px; }

.footer-2 {
  border-top: 1px solid #ccc;
  margin-top: 40px;
  overflow: hidden;
  padding-top: 20px; }

.socialIcons a i {
  font-size: 37px;
  color: #8c8c8c;
  transform: scale(1);
  transition: .2s all; }

.socialIcons a i:hover {
  color: #8c8c8c;
  transform: scale(1.1); }

.socialIcons img:hover {
  width: 42px;
  height: 42px; }

.footer p {
  line-height: 1.7; }

.footer p,
.footer a, .footer span {
  font-size: 12px;
  color: #9c9c9c;
  letter-spacing: .3px; }

a:visited {
  text-decoration: none; }

.footer i {
  color: #D61A69 !important; }

.navi li {
  display: inline;
  color: #4fa4ce; }

.socialIcons a {
  display: inline-block;
  position: relative;
  width: 37px;
  height: 37px; }

.footer a {
  transition: .2s all; }

.footer a:hover {
  color: #D51A68 !important;
  transisiton: .2s all; }

.copyright {
  padding: 0; }

.pad0 {
  padding: 0 !important; }

.desk-sitemap {
  padding-left: 10px !important; }

@media screen and (max-width: 480px) {
  .contact {
    padding-left: 7px; } }

.mb20 {
  margin-bottom: 20px !important; }

.mobile-footer h2 {
  transform: none;
  left: 0;
  line-height: normal;
  font-size: 30px; }

.mobile-footer .mobile-footer-contact {
  text-align: center;
  margin-bottom: 20px;
  transition: all .1s ease-in; }
  .mobile-footer .mobile-footer-contact a {
    display: block;
    padding: 10px;
    font-size: 16px;
    color: white;
    background-color: #D61A69; }
    @media (max-width: 350px) {
      .mobile-footer .mobile-footer-contact a {
        font-size: 14px; } }
  .mobile-footer .mobile-footer-contact:hover {
    background-color: #D51A68;
    transition: all .1s ease-in; }

/*********************************************
  :: Layout
********************************************/
.accessible-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden; }

body {
  background: rgba(0, 0, 0, 0.8); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'AvenirNext', 'Montserrat', sans-serif;
  font-weight: bold; }

.container-fluid {
  padding-left: 0;
  padding-right: 0; }

.header-wrapper-page {
  background-size: cover;
  background-position: center;
  transition: 1s all; }

.main-header-h2 {
  margin: 1em 0;
  color: white;
  font-size: 30px;
  text-align: center; }

@media only screen and (min-width: 600px) {
  .b2t {
    display: block;
    z-index: 10; } }

.b2t {
  position: relative;
  text-align: center;
  top: -25px;
  left: 90%;
  width: 100px; }

.bt2-btn {
  background: url(../../images/B2T.svg) no-repeat 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border: none; }
  .bt2-btn:hover {
    background: url(../../images/B2Thover.svg) no-repeat 50%; }

.job {
  background-image: url("https://worktheseasons.co.nz/build/img/sky.jpg"); }

.company {
  background-image: url("https://worktheseasons.co.nz/build/img/company.jpg"); }

.content {
  margin-top: 20px;
  margin-bottom: 20px; }

.beige-bk {
  background-color: #F1E9E0;
  height: 100% !important; }

.border-left {
  border-left: 2px solid #ececec;
  padding: 5px; }

.border-right {
  border-right: 2px solid #ececec;
  padding: 5px; }

.border-top {
  border-top: 2px solid #ececec; }

.border-bottom {
  border-bottom: 2px solid #ececec; }

.grey-box {
  background: rgba(0, 0, 0, 0.5);
  height: 150px;
  margin-bottom: 20px; }

.white-box {
  background: #fff;
  height: 150px;
  margin-bottom: 20px;
  box-shadow: 1px 1px 6px grey; }
  .white-box h4 {
    color: #333;
    border-bottom: 1px solid #333; }
  .white-box h5 {
    color: #6d6b6b;
    margin-top: 5px;
    margin-bottom: 5px;
    font-weight: normal; }
  .white-box p, .white-box span {
    margin-bottom: 5px;
    font-size: 12px; }
  .white-box logo {
    height: 100px;
    width: 100px; }

.white-box-sm {
  background: #fff;
  height: 100px;
  margin-bottom: 20px;
  box-shadow: 1px 1px 6px grey; }
  .white-box-sm h4 {
    color: #333;
    border-bottom: 1px solid #333; }
  .white-box-sm h5 {
    color: #6d6b6b;
    margin-top: 5px;
    margin-bottom: 5px;
    font-weight: normal; }
  .white-box-sm p, .white-box-sm span {
    margin-bottom: 5px;
    font-size: 12px;
    color: #333; }
  .white-box-sm logo {
    height: 100px;
    width: 100px; }
  .white-box-sm .hover-btn {
    display: none; }

.grey-box-job {
  background: rgba(0, 0, 0, 0.5);
  height: 100px;
  margin-bottom: 10px; }

.logo {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-left: 0px;
  padding-right: 10px; }
  .logo img {
    height: auto; }

.logo-lg {
  margin-bottom: 10px;
  padding-left: 0px;
  padding-right: 10px; }

.dates {
  padding-right: 0px;
  padding-left: 0px;
  margin-top: 3px; }
  .dates p, .dates span {
    font-size: 10px; }

.date-row {
  margin-left: 10px;
  margin-right: 10px;
  padding-right: 0px;
  padding-left: 0px; }

.slogan {
  text-align: left;
  margin-bottom: 25px; }

.company-social .fa {
  font-size: 25px; }

.breadcrumb {
  background-color: #fff;
  padding: 8px 0 !important;
  margin: 10px 0 0 !important; }
  @media (max-width: 1199px) {
    .breadcrumb .container {
      width: auto; } }
  .breadcrumb ol {
    margin-bottom: 0px;
    list-style: none;
    border-radius: 4px; }
  .breadcrumb ul {
    margin-bottom: 0px;
    -webkit-padding-start: 15px; }
  .breadcrumb li {
    display: inline-block;
    margin-bottom: 0; }
    .breadcrumb li a {
      color: #333 !important; }
    .breadcrumb li :before {
      padding: 0 5px;
      color: #ccc;
      content: "/\00a0"; }

.breadcrumbs li:first-child :before {
  display: none; }

.company-name {
  text-align: left; }
  .company-name a {
    color: #6d6b6b !important; }

.policy {
  border-top: 2px solid #ececec;
  padding-top: 20px;
  padding-bottom: 10px;
  text-align: left;
  margin-top: 20px; }

.btn-jba {
  height: 42px;
  font-family: 'AvenirNext', 'Montserrat', sans-serif;
  background-image: url(../../images/theme-marketing/rectangle-button.svg);
  background-repeat: no-repeat;
  background-size: 100% 100% !important;
  color: white;
  border: none !important;
  outline: none !important;
  float: left;
  position: relative;
  overflow: hidden; }
  .btn-jba:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background-image: url(../../images/theme-marketing/rectangle-button-visited.svg);
    background-size: 100% 100% !important;
    background-position: center; }
  .btn-jba:hover:before {
    opacity: 1; }
  .btn-jba .btn-span {
    display: block;
    text-align: center;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

.mt50 {
  margin-top: 50px; }

@media (max-width: 991px) {
  .join-center {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center; } }

@media (min-width: 992px) {
  .f-center {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center; } }

.w150 {
  width: 150px; }

.w90 {
  width: 90px; }

.tin-text {
  color: #ccc; }

@media (min-width: 768px) {
  .marB50 {
    margin-bottom: 50px; } }

.item {
  height: 100%; }

.magenta {
  background: #D51A68; }

.item-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }

.left1, .right1 {
  width: 100%;
  padding-bottom: 2em; }

.flexy1 {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: row;
  flex-direction: row; }

.align-center {
  -ms-flex-align: center;
  align-items: center; }

.white {
  color: white; }

.left1 img {
  width: 300px;
  margin: 0 auto; }

button.slick-arrow {
  position: absolute;
  top: 45%;
  color: white; }

button.nextcustom.slick-arrow {
  right: 15px; }

button.prevcustom.slick-arrow {
  left: 0; }

button.slick-arrow span {
  font-size: 40px; }

.slide-button {
  padding: 1em;
  width: 80%;
  margin: 0 auto; }

.orange {
  background: #F79131; }

.black {
  color: black; }

.course-custom-slide-2 {
  height: 70vh; }

select, .jba-search {
  height: 50px !important; }

option {
  padding-left: 5px; }

.nav-main {
  border: none !important; }

.navbar-default .navbar-nav > li > a, .navbar-default .navbar-nav > li > a {
  color: #323232 !important;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  transition: .2s all; }

.navbar-brand {
  padding-top: 0.5em !important;
  padding-left: 3em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 25px; }
  .navbar-brand img {
    width: 100%; }
  .navbar-brand p {
    font-size: 20px;
    margin-left: 30px; }

.logo-text {
  font-size: 21px;
  width: 120px;
  display: inline-block;
  margin-top: 15px;
  margin-left: 15px;
  color: #fff;
  line-height: 18px; }

.hover-twhite {
  color: #fff !important;
  font-size: 16px;
  font-weight: bold; }

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #6C1F5D !important; }

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
  border: none !important; }

.beige {
  background: #F1E9E0;
  margin-top: 0;
  padding-top: 1em; }

.grey {
  background: rgba(0, 0, 0, 0.5);
  margin-top: 0;
  padding-top: 1em; }

#navbar {
  height: auto !important;
  padding-bottom: 1em;
  background: transparent;
  margin: 0 15px !important; }

.nav-but {
  margin-top: 1.2em;
  float: left; }

.purple {
  color: #6C1F5D !important; }

nav.navbar.navbar-default.nav-main {
  width: 100%; }

button.navbar-toggle {
  border: none;
  padding: 2px 6px !important;
  float: left !important; }
  button.navbar-toggle span.icon-bar {
    margin: 9px 0 !important; }
  button.navbar-toggle:hover, button.navbar-toggle:focus {
    background: none !important; }

a.navbar-brand {
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  display: block;
  float: right;
  margin-top: 15px !important;
  padding: 0 !important; }
  @media (min-width: 992px) {
    a.navbar-brand {
      float: left; } }

span.icon-bar {
  background-color: #D51A68 !important;
  margin-bottom: 10px;
  width: 40px !important;
  height: 5px !important;
  border-radius: 10px !important; }

@media screen and (max-width: 700px) {
  .flexy1 {
    -ms-flex-direction: column;
    flex-direction: column; }
  .flexy1 img {
    height: 150px;
    width: auto; }
  .img1 {
    -ms-flex-order: 2;
    order: 2; }
  .text1 {
    -ms-flex-order: 1;
    order: 1; }
  .jba-search {
    float: right; } }

#navbar-id {
  margin-bottom: 0; }

#login-btn {
  margin-left: 30px;
  margin-right: 10px; }

#nav1 .navbar-right li a, #nav2 .navbar-right li a {
  font-size: 16px;
  font-weight: bold;
  color: #323232;
  text-align: right; }
  #nav1 .navbar-right li a:hover, #nav2 .navbar-right li a:hover {
    color: #D51A68 !important;
    background-color: transparent !important; }

#nav1 .nav > li > a:focus, #nav2 .nav > li > a:focus {
  background-color: transparent !important; }

#nav2 {
  background-color: #F79131;
  width: 200px;
  height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 20px;
  z-index: 1000;
  margin-left: -200px;
  transition: margin .3s ease-in; }
  #nav2.active {
    margin-left: 0; }
  @media (min-width: 992px) {
    #nav2 {
      display: none; } }
  #nav2 .navbar-right {
    margin-top: 60px;
    float: right !important; }
  #nav2 .close-nav2 {
    position: absolute;
    top: 20px;
    left: 20px;
    cursor: hand;
    cursor: pointer; }
    #nav2 .close-nav2 i {
      font-size: 30px;
      color: #fff;
      font-weight: lighter; }

#nav1 {
  display: none; }
  @media (min-width: 992px) {
    #nav1 {
      display: block; }
      #nav1 .navbar-right {
        float: right !important;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center; }
        #nav1 .navbar-right li {
          display: inline-block; } }

body {
  transition: all .5s ease-in; }

.menu-hamburger {
  margin-top: 15px !important; }

.navbar-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }

button.collapsed.hidden {
  display: block !important;
  visibility: hidden; }

@media screen and (min-width: 992px) {
  .navbar-toggle {
    display: none !important; } }

@media screen and (max-width: 992px) {
  .navbar-toggle {
    display: block !important; } }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  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 {
  transform: translate3d(0, 0, 0); }

.slick-track {
  /*position: relative;
    top: 0;
    left: 0;

    display: block;*/
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: row;
  flex-direction: row; }

.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; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../../images/ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url("https://worktheseasons.co.nz/fonts/slick.eot");
  src: url("https://worktheseasons.co.nz/fonts/slick.eot#iefix") format("embedded-opentype"), url("../../fonts/slick.woff") format("woff"), url("../../fonts/slick.ttf") format("truetype"), url("https://worktheseasons.co.nz/fonts/slick.svg#slick") format("svg"); }

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent; }

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent; }

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1; }

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25; }

.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto; }

.slick-prev:before {
  content: '←'; }

[dir='rtl'] .slick-prev:before {
  content: '→'; }

.slick-next {
  right: -25px; }

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px; }

.slick-next:before {
  content: '→'; }

[dir='rtl'] .slick-next:before {
  content: '←'; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center; }

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer; }

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent; }

.slick-dots li button:hover,
.slick-dots li button:focus {
  box-shadow: none;
  outline: none; }

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1; }

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black; }

/*********************************************
  :: Home
********************************************/
/*********************************************
  :: Carousel
********************************************/
.employers {
  padding: 2em;
  background: white; }
  @media (min-width: 768px) {
    .employers {
      padding: 4em; } }

.employers p {
  margin-bottom: 2em; }

.employers .slick-prev {
  left: -1% !important; }

.employers .slick-next {
  right: -1% !important; }

.slick-slide {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }

.responsive .slick-slide img {
  filter: grayscale(100%);
  transition: .2s all;
  height: auto;
  width: auto !important;
  max-width: 100%;
  max-height: 100px; }

.responsive .slick-slide img:hover {
  filter: none;
  cursor: pointer; }

.employers-items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.employers-items a, .employers-items > div {
  width: 33%;
  height: auto;
  padding: 20px 10px;
  max-width: 210px; }

@media (max-width: 767px) {
  .employers-items a, .employers-items div {
    width: 50%;
    padding: 5px 5px; } }

#home-search {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }
  #home-search .search-box-wrap {
    margin: 25px auto;
    border: 1px #ccc solid;
    border-radius: 6px; }
    #home-search .search-box-wrap .search-box {
      padding: 20px 20px 10px 20px;
      max-height: 105px; }
      #home-search .search-box-wrap .search-box.border-line {
        border-left: 1px #ccc solid;
        height: 105px; }
      #home-search .search-box-wrap .search-box input {
        font-size: 20px;
        padding: 1em 0;
        font-family: 'AvenirNext', 'Montserrat', sans-serif;
        outline: none;
        border-radius: 0;
        border-top: 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 1px #fff solid; }
        #home-search .search-box-wrap .search-box input::-webkit-input-placeholder {
          /* Chrome/Opera/Safari */
          font-weight: 300;
          font-size: 20px; }
        #home-search .search-box-wrap .search-box input::-moz-placeholder {
          /* Firefox 19+ */
          font-weight: 300;
          font-size: 20px; }
        #home-search .search-box-wrap .search-box input:-ms-input-placeholder {
          /* IE 10+ */
          font-weight: 300;
          font-size: 20px; }
        #home-search .search-box-wrap .search-box input:-moz-placeholder {
          /* Firefox 18- */
          font-weight: 300;
          font-size: 20px; }
        #home-search .search-box-wrap .search-box input:focus {
          border-bottom: 1px #6C1F5D solid; }
    #home-search .search-box-wrap .ss-search-box {
      padding: 10px 0;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
      align-items: center;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      #home-search .search-box-wrap .ss-search-box span {
        font-size: 20px;
        color: #aaa;
        font-weight: 300;
        font-family: helvetica;
        margin: 0; }
      #home-search .search-box-wrap .ss-search-box .search-icon i {
        font-size: 25px;
        color: #333;
        font-weight: 300; }
  @media (max-width: 991px) {
    #home-search .box-shadow-ss {
      box-shadow: 1px 1px 3px #888888; } }

.border-radius-0 {
  border-radius: 0 !important;
  -webkit-appearance: none;
  border: 0 !important;
  font-size: 20px !important; }
  .border-radius-0:focus {
    border-bottom: 1px #6C1F5D solid !important; }

.dropdown {
  border: 1px solid lightgrey;
  border-radius: 5px;
  background: white;
  font-size: 20px;
  height: 42px;
  padding-left: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 8px; }

button#dLabel, button#mLabel {
  width: 100%;
  text-indent: 8px;
  font-size: 20px;
  padding-bottom: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: 'AvenirNext', 'Montserrat', sans-serif;
  border-bottom: 1px #fff solid; }
  button#dLabel:focus, button#mLabel:focus {
    border-bottom: 1px #6C1F5D solid; }
  button#dLabel span, button#mLabel span {
    width: 100%;
    font-size: 20px !important;
    float: right; }

@-moz-document url-prefix() {
  button#dLabel span, button#mLabel span {
    display: flex;
    justify-content: space-between; } }

select.filters-select-3 {
  -moz-appearance: none !important;
  -webkit-appearance: none !important; }

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000; }

.dropdown-menu {
  width: 100%;
  margin-top: 0 !important;
  padding: 0 !important; }

.dropdown-menu li {
  padding: 1em;
  margin-bottom: 0 !important; }

.dropdown-menu li:hover {
  color: white;
  background: #6C1F5D; }

.search-btn {
  padding: 10px 20%;
  background-color: #6C1F5D;
  color: #fff;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 1.1px;
  display: block;
  line-height: 40px; }
  .search-btn:hover {
    background-color: rgba(108, 31, 93, 0.9); }

#ss-search-pop {
  position: fixed;
  background: #fff;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0; }
  #ss-search-pop .close-ss-search i {
    cursor: pointer; }
  #ss-search-pop .ss-search-pop-box {
    margin: 0 15px 20px; }
    #ss-search-pop .ss-search-pop-box .dropdown {
      outline: 0;
      border-radius: 0;
      border-top: 0;
      border-left: 0;
      border-bottom: 0;
      border-right: 0;
      padding-left: 0; }
    #ss-search-pop .ss-search-pop-box label {
      font-weight: 300; }
    #ss-search-pop .ss-search-pop-box input {
      outline: 0;
      border-radius: 0;
      border-top: 0;
      border-left: 0;
      border-right: 0;
      border-bottom: 1px #fff solid;
      padding-left: 0;
      padding-bottom: 15px; }
      #ss-search-pop .ss-search-pop-box input:focus {
        border-bottom: 1px #6C1F5D solid; }
    #ss-search-pop .ss-search-pop-box button#mLabel {
      text-indent: 0; }

.form-control.firefox, .form-control.d-firefox {
  height: auto !important; }

.form-control.d-firefox {
  margin: 0 !important;
  padding: 15px 0 10px !important; }

select#industries, select#regions {
  padding-left: 6px; }

.slider-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  line-height: normal; }
  .slider-text h2 {
    font-size: 60px;
    line-height: normal; }
  .slider-text h4 {
    font-size: 20px;
    line-height: normal; }

.header-wrapper {
  background-color: rgba(0, 0, 0, 0.15); }

.header-back {
  background-position: center;
  background-size: cover; }

.flex-align-center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  margin: 10% 10%; }
  .flex-align-center h2 {
    text-align: center; }
  .flex-align-center h4 {
    text-align: center; }

.flex-align-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 10% 10%; }
  .flex-align-left h2 {
    text-align: left; }
  .flex-align-left h4 {
    text-align: left; }

.flex-align-right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 10% 10%; }
  .flex-align-right h2 {
    text-align: right; }
  .flex-align-right h4 {
    text-align: right; }

.flex-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center; }

.steps-dot path {
  transition: .2s all; }

.active-dot path {
  fill: #6C1F5D; }

.steps-master {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  -ms-flex-align: center;
  align-items: center;
  margin: 70px 0 30px 0; }

.steps-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -ms-flex-pack: center;
  justify-content: center; }

.steps-progress {
  width: 35%;
  margin: 20px 0; }

.steps-arrow {
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: all 0.2s;
  opacity: 1;
  z-index: 99999;
  -ms-flex-negative: 0;
  flex-shrink: 0; }

.steps-arrow:active {
  transform: scale(0.9); }

.steps-arrow-prev {
  background-image: url(../../images/course-assets/buttons/prev-button.svg); }

.steps-arrow-prev:hover {
  background-image: url(../../images/course-assets/buttons/prev-button-hover.svg); }

.steps-arrow-next {
  background-image: url(../../images/course-assets/buttons/next-button.svg); }

.steps-arrow-next:hover {
  background-image: url(../../images/course-assets/buttons/next-button-hover.svg); }

.disabled-button {
  pointer-events: none;
  transform: scale(0); }

.steps-slides {
  width: 758px;
  position: relative;
  height: 400px;
  display: -ms-flexbox;
  display: flex;
  margin: 0 1%; }

.steps-slide {
  width: 758px;
  height: 400px;
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  transition: .5s all;
  transform: translateX(100px); }

#process-section {
  background: #222222;
  padding: 2em 0 4em 0;
  overflow: hidden; }

.steps-background {
  height: 100%;
  width: 80%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: auto; }

#slideOne .steps-background {
  background-image: url(../../images/theme-marketing/steps/OpeningScreen.jpg);
  display: -ms-flexbox;
  display: flex; }

#slideTwo .steps-background {
  background-image: url(../../images/theme-marketing/steps/ProfileScreen.jpg);
  display: -ms-flexbox;
  display: flex; }

#slideThree .steps-background {
  background-image: url(../../images/theme-marketing/steps/SelfDiscovery.jpg);
  display: -ms-flexbox;
  display: flex; }

#slideFour .steps-background {
  background-image: url(../../images/theme-marketing/steps/Coursesone.jpg);
  display: -ms-flexbox;
  display: flex; }

#slideFive .steps-background {
  background-image: url(../../images/theme-marketing/steps/JobOpportunities.jpg);
  display: -ms-flexbox;
  display: flex; }

#slideSix .steps-background {
  background-image: url(../../images/theme-marketing/steps/jobapplication.jpg);
  display: -ms-flexbox;
  display: flex; }

#slideSeven .steps-background {
  background-image: url(../../images/theme-marketing/steps/Feedback.jpg);
  display: -ms-flexbox;
  display: flex; }

#slideEight .steps-background {
  background-image: url(../../images/theme-marketing/steps/finalScreen.jpg);
  display: -ms-flexbox;
  display: flex; }

#slideEight .steps-blob-text {
  top: 6%;
  left: 7%; }

#slideOne p {
  background-image: url(../../images/course-assets/buttons/rectangle-button-visited.svg);
  background-repeat: no-repeat;
  background-position: center;
  padding: 10px 17px;
  margin: 2% auto auto auto;
  line-height: 32pt;
  color: #F0E8DF;
  font-size: 20pt;
  font-family: 'Cutive', serif;
  background-size: 100% 100%;
  text-align: center; }

.steps-blob-text {
  position: absolute;
  text-align: center;
  background-size: 100% 100%;
  background-position: center;
  font-size: 13pt;
  background-repeat: no-repeat;
  margin: 0;
  padding: 40px;
  line-height: 23pt;
  color: #F0E8DF;
  font-family: 'Cutive', serif;
  opacity: 0;
  transition: .3s all;
  transform: scale(0.8); }

#slideTwo p {
  background-image: url(../../images/theme-marketing/steps/2.svg);
  top: 0;
  right: 0; }

#slideThree p {
  background-image: url(../../images/theme-marketing/steps/3.svg);
  bottom: 0;
  right: 0; }

#slideFour p {
  background-image: url(../../images/theme-marketing/steps/4.svg);
  top: -45px;
  left: 0;
  text-align: left; }

#slideFive p {
  background-image: url(../../images/theme-marketing/steps/5.svg);
  top: 0;
  right: 0;
  text-align: left;
  padding: 48px; }

#slideSix p {
  background-image: url(../../images/theme-marketing/steps/6.svg);
  top: 0;
  right: 0;
  text-align: left; }

#slideSeven p {
  background-image: url(../../images/theme-marketing/steps/7.svg);
  top: 20%;
  left: 0;
  text-align: left; }

#slideEight p {
  background-image: url(../../images/theme-marketing/steps/8.svg);
  text-align: center;
  background-size: 110% 100%;
  background-position: center;
  font-size: 20pt;
  background-repeat: no-repeat;
  margin: 0;
  padding: 40px;
  line-height: 32pt;
  color: #F0E8DF;
  font-family: 'Cutive', serif; }

.step-start-left {
  transform: translateX(-100px); }

.step-start-right {
  transform: translateX(100px); }

.step-start-active {
  transform: translateX(0px);
  opacity: 1; }

.last-slide-submit {
  opacity: 0;
  transform: scale(0);
  transition: 0.3s all cubic-bezier(0.51, -0.36, 0.44, 1.38) 1s; }

.last-slide-submit-active {
  opacity: 1;
  transform: scale(1); }

.steps-arrow-mob {
  display: none; }

@media (max-width: 767px) {
  br {
    display: none; }
  .steps-master {
    margin: 70px 0 0 0; }
  #slideOne p {
    font-size: 12pt;
    transform: translateY(-20px);
    line-height: 22pt; }
  #slideEight p {
    font-size: 12pt;
    background-image: url(../../images/theme-marketing/steps/2.svg) !important;
    padding: 26px;
    line-height: normal; }
  #slideEight .steps-blob-text {
    background-image: none !important;
    top: -46% !important; }
  .steps-slide {
    width: 100%; }
  .steps-slides {
    height: 200px; }
  .steps-slide {
    height: 200px;
    /*justify-content: center;*/ }
  .steps-blob-text {
    top: -30% !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto;
    bottom: auto !important;
    text-align: center !important;
    font-size: 9pt;
    background-image: url(../../images/theme-marketing/steps/2.svg) !important;
    padding: 26px !important;
    line-height: 18px; }
  /*        .steps-blob-text{
position:static;
}*/
  .steps-arrow {
    display: none; }
  .steps-arrow-mob {
    display: inline-block; }
  .flex-row a {
    font-size: 18px;
    margin: 0 14px; }
  .button-mob-none {
    display: none; }
  .steps-progress {
    width: 70%; }
  #slideFour p {
    top: -34% !important; } }

/*  Tablets and up  */
@media (min-width: 768px) {
  .steps-arrow {
    width: 60px;
    height: 60px; }
  .steps-progress {
    width: 35%;
    margin: 20px 0; }
  .steps-slides {
    width: 600px;
    height: 321px; }
  .steps-slide {
    width: 600px;
    height: 321px; } }

/*  Desktop and up  */
@media (min-width: 980px) {
  .steps-slides {
    width: 758px;
    height: 400px; }
  .steps-slide {
    width: 758px;
    height: 400px; } }

.stats {
  background: url("../../images/theme-marketing/landing-background.jpg");
  background-size: contain;
  background-position: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 4em 0 3em 0; }

.stat-title {
  font-size: 25px;
  text-align: center;
  color: #fff;
  font-family: 'AvenirNext';
  margin-bottom: 0;
  line-height: normal; }

.timer,
.timer1,
.timer2,
.timer3 {
  text-align: center;
  display: block;
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  font-family: 'Cutive', serif;
  line-height: normal; }

#help {
  width: 500px;
  margin: 20px auto;
  text-align: center;
  display: block;
  font-size: 14px; }

.timer-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  color: white; }

.timer-text {
  padding: 1em; }

.timer-icon {
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .timer-icon i {
    margin: 0 .2em;
    font-size: 25px; }

.subscribe-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center; }

#subscribe-section {
  padding: 4em 0;
  background: #f2f2f2; }

h2.main {
  font-size: 30px;
  font-weight: 1000;
  line-height: 30px;
  padding: 0 2px; }

#subscribe-section p {
  margin-bottom: 2em;
  font-size: 13.5; }
  #subscribe-section p.joinup-success {
    margin: 0;
    padding: 2em;
    border: 2px #f0f0f0 solid;
    color: #323232;
    border-radius: 10px;
    background-color: #b7dda1; }

#subscribe-section form {
  display: inline-block;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center; }
  #subscribe-section form input {
    padding: 10px 0;
    text-indent: 15px;
    font-size: 20px;
    border: 2px #aaa solid;
    font-family: 'AvenirNext', 'Montserrat', sans-serif; }
    #subscribe-section form input::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      font-weight: 300;
      font-size: 15px; }
    #subscribe-section form input::-moz-placeholder {
      /* Firefox 19+ */
      font-weight: 300;
      font-size: 15px; }
    #subscribe-section form input:-ms-input-placeholder {
      /* IE 10+ */
      font-weight: 300;
      font-size: 15px; }
    #subscribe-section form input:-moz-placeholder {
      /* Firefox 18- */
      font-weight: 300;
      font-size: 15px; }
    #subscribe-section form input.wrong {
      outline: 0;
      border: 1px red solid; }
    #subscribe-section form input.shake {
      animation-duration: 1s;
      animation-fill-mode: both;
      animation-name: shake; }
  @media (max-width: 991px) {
    #subscribe-section form button {
      margin-top: 1em;
      width: 50%; } }
  #subscribe-section form button {
    font-size: 20px;
    padding: 10px 12px;
    margin-left: 10px; }

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0); } }

.testimonials {
  background-color: #f2f2f2;
  padding: 2em 0; }
  @media (min-width: 768px) {
    .testimonials {
      padding: 4em 0; } }

.testimonials h2 {
  color: black; }

#quote-carousel {
  padding: 0 10px 30px 10px;
  margin-top: 30px;
  min-height: 500px; }

/* Control buttons  */
#quote-carousel .carousel-control {
  background: none;
  color: #222;
  font-size: 2.3em;
  text-shadow: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 40px 30px 40px;
  /*    margin-top: 60px;*/ }

#quote-carousel .carousel-control img {
  height: 20%; }

/* Previous button  */
#quote-carousel .carousel-control.left {
  left: -3%; }

/* Next button  */
#quote-carousel .carousel-control.right {
  right: -3% !important; }

/* Changes the position of the indicators */
#quote-carousel .carousel-indicators {
  right: 50%;
  top: auto;
  bottom: 0px;
  margin-right: -19px; }

/* Changes the color of the indicators */
#quote-carousel .carousel-indicators li {
  background: url("../../images/theme-marketing/circle-button-red.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0px;
  border: none; }

#quote-carousel .carousel-indicators .active {
  background: url("../../images/theme-marketing/circle-button-hover.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat; }

/*#quote-carousel img {
    width: 250px;
    height: 100px
}
*/
/* End carousel */
.item blockquote {
  border-left: none;
  margin: 0; }

.item blockquote p:before {
  content: "\f10d";
  font-family: 'Fontawesome';
  float: left;
  margin-right: 10px; }

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #quote-carousel {
    margin-bottom: 0;
    padding: 0 40px 30px 40px; } }

/* Small devices (tablets, up to 768px) */
@media (max-width: 768px) {
  /* Make the indicators larger for easier clicking with fingers/thumb on mobile */
  #quote-carousel .carousel-indicators {
    bottom: -20px !important; }
  #quote-carousel .carousel-indicators li {
    display: inline-block;
    margin: 0px 5px;
    width: 15px;
    height: 15px; }
  #quote-carousel .carousel-indicators li.active {
    margin: 0px 5px;
    width: 20px;
    height: 20px; } }

.testimonial-slider-row {
  margin: 2em 0 4em 0; }

.testimonials .testimonial-container .item {
  width: 50%;
  padding: 2em; }

.testimonial-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

/*********************************************
  :: Blog
********************************************/
#blog {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), url("https://worktheseasons.co.nz/build/img/blog/bk-1.jpeg") no-repeat center center;
  background-size: cover;
  /*background: #59C7D9;*/ }

#blog-single-1 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), url("https://worktheseasons.co.nz/build/img/blog/blog1.jpg") no-repeat center center;
  background-size: cover;
  /*background: #59C7D9;*/ }

.white-bk {
  background: white;
  height: 100% !important; }

a .blog-title {
  color: #D51A68; }
  a .blog-title:hover {
    color: #6C1F5D; }

h2.blog-title {
  font-size: 20px !important;
  padding: 0 1em; }

.blog-title {
  color: black;
  text-align: center; }

.hashtag {
  color: grey;
  text-align: center;
  padding: 0 1em; }

.single-blog-title {
  color: white;
  font-size: 40px;
  width: 50%;
  margin: 0 auto;
  padding-top: 1em; }

.single-blog-hashtag {
  color: white;
  text-align: center;
  padding-bottom: 2em; }

section#width-fit {
  max-width: 1100px;
  margin: 0 auto; }

.date {
  color: grey; }

.full-width {
  width: 100%; }

.fright {
  float: right; }

ul.share-buttons {
  list-style: none;
  padding: 0; }

ul.share-buttons li {
  display: inline; }

ul.share-buttons .sr-only {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden; }

ul.share-buttons li a {
  color: #D51A68 !important; }

textarea.comments {
  border: 1px solid lightgrey;
  border-radius: 5px;
  min-height: 100px; }

h4.comment-name {
  color: grey !important; }

.comment-box {
  box-shadow: 1px 1px 5px grey;
  padding: 1em; }

.grid-item {
  box-shadow: 1px 1px 6px grey;
  background: white;
  padding-bottom: 1em;
  transition: 0.4s ease-in-out all !important;
  margin: 1em;
  position: relative; }

.grid-item .img-wrap {
  overflow: hidden !important; }

.grid-item img {
  transition: 0.4s all ease-in-out; }

.grid-item:hover img {
  transform: scale(1.2);
  filter: brightness(0.5); }

.grid-item:hover {
  background: #D51A68; }

.grid-item:hover h2, .grid-item:hover p {
  color: white !important; }

.grid4 {
  max-width: 1150px;
  margin: 0 auto; }

.embed-video {
  width: 100%; }

.grid-item {
  width: 32%;
  margin: 0 auto;
  margin-bottom: 18px; }

.grid-item.two {
  height: 200px;
  background: #D51A68 !important; }

.videos {
  position: relative; }

.videos span {
  width: 100%;
  height: 80%;
  position: absolute;
  background: url("https://worktheseasons.co.nz/build/img/blog/play-btn.png") no-repeat;
  background-position: 50% 50%;
  background-size: 300%; }

.comment {
  text-align: left; }

.event-header {
  height: 200px; }

.profile-img {
  border-radius: 50%;
  width: 40px;
  height: 40px; }

.comment-name {
  font-weight: bold; }

.attendents {
  margin-bottom: 5px; }

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

@media screen and (max-width: 900px) {
  .grid-item {
    width: 48%; } }

@media screen and (max-width: 500px) {
  .grid-item {
    width: 100%; } }

/* Calender Button */
/* Base */
.addtocalendar var {
  display: none; }

.addtocalendar {
  position: relative;
  display: inline-block;
  background: transparent !important; }

.atcb-link {
  display: block;
  outline: none !important;
  cursor: pointer; }

.atcb-link:focus ~ ul,
.atcb-link:active ~ ul,
.atcb-list:hover {
  visibility: visible; }

.atcb-list {
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: 170px;
  z-index: 900; }

.atcb-list,
.atcb-item {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff; }

.atcb-item {
  float: none;
  text-align: left; }

.atcb-item-link {
  text-decoration: none;
  outline: none;
  display: block; }

.atcb-item.hover,
.atcb-item:hover {
  position: relative;
  z-index: 900;
  cursor: pointer;
  text-decoration: none;
  outline: none; }

/* Blue */
.jba-calendar .atcb-link,
.jba-calendar .atcb-link:hover,
.jba-calendar .atcb-link:active,
.jba-calendar .atcb-link:focus {
  margin: 0;
  text-decoration: none;
  outline: none;
  line-height: 20px;
  vertical-align: middle;
  border-radius: 4px;
  zoom: 1;
  float: left;
  color: grey !important;
  text-align: center;
  padding: 0; }

.jba-calendar .atcb-list {
  width: 170px;
  border: 1px solid #bababa;
  border-radius: 2px;
  box-shadow: 0 0 5px #AAA; }

.jba-calendar .atcb-list,
.jba-calendar .atcb-item {
  background: #fff;
  color: #000 !important; }

.jba-calendar .atcb-item,
.jba-calendar .atcb-item-link {
  line-height: 1.3em;
  vertical-align: middle;
  zoom: 1; }

.jba-calendar .atcb-item-link,
.jba-calendar .atcb-item-link:hover,
.jba-calendar .atcb-item-link:active,
.jba-calendar .atcb-item-link:focus {
  color: #000 !important;
  font-family: "Verdana";
  font-size: 14px;
  text-decoration: none;
  outline: none;
  padding: 5px 15px; }

.jba-calendar .atcb-item-link:hover,
.jba-calendar .atcb-item-link:active,
.jba-calendar .atcb-item-link:focus {
  color: #fff; }

.jba-calendar .atcb-item.hover,
.jba-calendar .atcb-item:hover {
  background: #4281f4; }

.google-calendar {
  float: left;
  padding: 2px 5px; }

.company-events2 .close {
  color: #fff;
  opacity: 1; }

.attending {
  margin-top: 10px; }

blockquote {
  border-color: #4A4A4A;
  margin-bottom: 4rem; }
  blockquote p {
    margin-bottom: 0; }

.blog-post {
  background-color: white;
  font-family: "Merriweather", serif;
  height: 100%;
  max-height: 100%;
  letter-spacing: 0.01rem;
  font-size: 1.8rem;
  line-height: 1.75em;
  color: #3A4145; }
  .blog-post a {
    color: #4A4A4A !important;
    text-decoration: underline;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    font-family: "Merriweather", serif !important; }
  .blog-post .header {
    min-height: 180px;
    height: 60vh;
    background-size: cover;
    background-position: center;
    margin-bottom: 3.4em; }
  .blog-post .content {
    position: relative;
    width: 80%;
    max-width: 710px;
    margin: 0 auto 4rem;
    padding-bottom: 4rem;
    word-wrap: break-word; }
    .blog-post .content .post-title {
      margin-bottom: 3.4rem; }
      .blog-post .content .post-title h1 {
        font-family: "Open Sans", sans-serif;
        font-size: 5rem;
        color: #2e2e2e;
        line-height: 1.15em;
        text-align: left;
        margin-bottom: 0;
        text-indent: -2px; }
      .blog-post .content .post-title .post-meta {
        display: block;
        margin: 0;
        font-size: 1.5rem;
        line-height: 2.2rem;
        color: #737373; }
        .blog-post .content .post-title .post-meta .post-detail {
          display: inline-block;
          margin-left: 8px;
          font-family: "Open Sans", sans-serif;
          text-transform: uppercase;
          font-size: 1.3rem;
          white-space: nowrap;
          margin-bottom: 0; }
    .blog-post .content .post-content p {
      font-family: "Merriweather", serif !important;
      text-rendering: geometricPrecision;
      line-height: 1.75em;
      font-size: 18px;
      -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
      text-size-adjust: 100%;
      margin-bottom: 4rem; }
    .blog-post .content .post-content ol {
      padding-left: 30px; }
      .blog-post .content .post-content ol li {
        list-style: decimal;
        display: list-item;
        list-style-position: outside; }
    .blog-post .content .post-content ul {
      padding-left: 30px; }
      .blog-post .content .post-content ul li {
        list-style: disc;
        display: list-item;
        list-style-position: outside; }
    .blog-post .content .post-content h4, .blog-post .content .post-content h6 {
      font-family: "Open Sans", sans-serif !important;
      color: #2e2e2e;
      margin-bottom: .4em; }
    .blog-post .content .post-content h4 {
      font-size: 2.5rem; }
    .blog-post .content .post-content h6 {
      font-size: 2rem; }
  .blog-post .post-footer {
    margin-top: 2em;
    padding-top: 2em;
    border-top: #EBF2F6 1px solid; }
    .blog-post .post-footer .author {
      color: #737373; }
      .blog-post .post-footer .author p {
        font-style: italic; }
    .blog-post .post-footer .share a {
      font-size: 2.2rem;
      display: inline-block;
      margin: 0 10px 0 0;
      color: #BBC7CC !important;
      text-decoration: none; }
      .blog-post .post-footer .share a:before {
        font-family: Fontawesome; }
      .blog-post .post-footer .share a.icon-twitter:hover {
        color: #55acee !important; }
      .blog-post .post-footer .share a.icon-facebook:hover {
        color: #3b5998 !important; }
      .blog-post .post-footer .share a.icon-google-plus:hover {
        color: #dd4b39 !important; }
      .blog-post .post-footer .share a.icon-linkedin:hover {
        color: #0086b3 !important; }
    .blog-post .post-footer .author h4, .blog-post .post-footer .share h4 {
      font-size: 18px;
      color: #2e2e2e; }
    .blog-post .post-footer p {
      font-family: "Merriweather", serif !important; }
  .blog-post .next-post .next-post-img {
    height: 40vh;
    background-size: cover;
    background-position: center; }
    .blog-post .next-post .next-post-img .post-container {
      background-color: rgba(0, 0, 0, 0.6);
      transition: all 0.25s ease;
      position: relative; }
      .blog-post .next-post .next-post-img .post-container .content {
        position: absolute;
        z-index: 5;
        padding: 6rem 0;
        margin: 0; }
        .blog-post .next-post .next-post-img .post-container .content p, .blog-post .next-post .next-post-img .post-container .content h2 {
          color: #fff; }
        .blog-post .next-post .next-post-img .post-container .content p {
          display: inline-block;
          padding: 4px 10px 5px;
          text-transform: uppercase;
          font-size: 1.2rem;
          font-family: "Open Sans", sans-serif;
          color: white;
          border: white 1px solid;
          border-radius: 4px;
          transition: all 0.25s ease; }
        .blog-post .next-post .next-post-img .post-container .content h2 {
          margin-top: 1rem;
          font-size: 3.6rem;
          letter-spacing: -1px;
          line-height: 1.15em;
          margin: 0 0 0.4em 0;
          font-family: "Open Sans", sans-serif;
          text-rendering: geometricPrecision; }
  .blog-post .next-post:hover .post-container {
    background-color: rgba(0, 0, 0, 0.75); }
    .blog-post .next-post:hover .post-container .content p {
      background: #fff;
      color: #000;
      transition: all 0.1s ease; }
  .blog-post .next-post.icon-linkedin:hover {
    color: #0086b3 !important; }
  .blog-post .author h4, .blog-post .share h4 {
    font-size: 18px;
    color: #2e2e2e; }
  .blog-post p {
    font-family: "Merriweather", serif !important; }

@media screen and (max-width: 500px) {
  .blog-post li {
    font-size: 19px !important; }
  .blog-post .header {
    height: 35vh;
    margin-bottom: 15px; }
  .blog-post .content {
    width: auto;
    margin-bottom: 2rem;
    margin-left: 16px;
    margin-right: 16px;
    padding-bottom: 2rem;
    line-height: 1.65em; }
    .blog-post .content .post-title {
      margin-bottom: 2rem; }
      .blog-post .content .post-title h1 {
        font-size: 2.8rem;
        letter-spacing: -1px; }
    .blog-post .content .post-content h4 {
      font-size: 1.9rem; }
    .blog-post .content .post-content h6 {
      font-size: 1.8rem; }
    .blog-post .content .post-content ol {
      padding-left: 20px; }
  .blog-post .next-post h2 {
    font-size: 2.4rem !important; } }

@media (min-width: 501px) and (max-width: 900px) {
  .blog-post .header {
    height: 45vh; }
  .blog-post .post-title h1 {
    font-size: 4.5rem; } }

@media screen and (max-width: 900px) {
  .blog-post .content {
    font-size: 0.95em; } }

/*********************************************
  :: FAQ
********************************************/
#faq {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), url("../../images/faq/faq-banner.jpeg") no-repeat center 40%;
  background-size: cover; }

.accordion dt {
  background: #F1E9E0;
  box-shadow: 1px 1px 5px grey;
  color: black !important;
  padding: 1em; }

.accordion dt:hover {
  background: #D51A68; }

.accordion dt a {
  color: #D51A68 !important; }

.accordion dt i {
  float: right;
  font-size: 20px;
  color: #D51A68; }

.accordion dt:hover a, .accordion dt:hover i {
  color: white !important; }

dt a span {
  width: 80%; }

dt {
  margin: 2px;
  border-radius: 5px; }

dd {
  padding: 1em;
  font-family: 'AvenirNext', 'Montserrat', sans-serif; }

.qs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }

.qs a {
  color: #D51A68 !important;
  font-size: 16px;
  margin-bottom: 10px; }

.q-titles h3 {
  color: grey;
  font-size: 22px; }

.q-titles h3:after, #faq-page h3:after {
  content: '—';
  display: block; }

.center-width {
  max-width: 1150px;
  margin: 0 auto; }

@media (max-width: 1199px) {
  #faq-page {
    width: auto; } }

#faq-page h3 {
  color: grey;
  text-align: left;
  padding-top: 1em;
  font-size: 30px;
  padding-bottom: 1em; }

.q-magenta {
  font-size: 18px;
  line-height: 110%;
  font-weight: bold; }

.answer {
  display: block;
  padding-bottom: 2em; }

.arrow-list {
  padding-left: 1.5em !important; }

.answer a {
  color: #D51A68 !important; }

@media (min-width: 992px) {
  .third-cols {
    padding-left: 3em; } }

@media screen and (max-width: 677px) {
  #faq-page {
    padding: 1em; }
    #faq-page h3 {
      font-size: 24px !important; }
  .q-titles-first h3 {
    padding-top: 0 !important; } }

/*********************************************
  :: Courses
********************************************/
#courses-section {
  background: white;
  min-height: 500px; }

.courses {
  background-image: url("../../images/courses-bg.jpg"); }

.grid-container {
  background: white; }

/* ---- input ---- */
input[type="text"] {
  font-size: 20px; }

/* ---- button ---- */
.button {
  display: inline-block;
  margin: 0 5px !important;
  cursor: pointer; }

.button:active,
.button.is-checked {
  background: url("../../images/rectangle-button-visited.svg") !important;
  background-repeat: no-repeat; }

.button.is-checked {
  color: white;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.8); }

/* ---- button-group ---- */
.button-group:after {
  content: '';
  display: block;
  clear: both; }

.button-group .button {
  float: left;
  border-radius: 0;
  margin-left: 0;
  margin-right: 1px; }

.button-group .button:first-child {
  border-radius: 0.5em 0 0 0.5em; }

.button-group .button:last-child {
  border-radius: 0 0.5em 0.5em 0; }

/* ---- grid ---- */
.grid h4 {
  color: #333; }

/* ---- .element-item ---- */
.element-item {
  margin: 10px;
  position: relative;
  width: 95%;
  margin: 2.5%;
  height: 160px;
  color: #262524;
  box-shadow: 1px 1px 5px grey;
  overflow: hidden;
  float: left; }
  @media (min-width: 768px) {
    .element-item {
      width: 45%; } }
  @media (min-width: 992px) {
    .element-item {
      width: 30%;
      margin: 1.66%; } }

.white-box > .row {
  display: -ms-flexbox;
  display: flex; }

.element-item > * {
  margin: 0;
  padding: 0; }

.element-item-list .white-box p {
  font-size: 14px; }

.element-item-list .white-box i {
  margin-right: 5px; }

.element-item-background {
  height: 80%;
  width: 100%;
  transition: .2s all; }

.element-item-text {
  height: 20%;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px;
  background: white; }
  .element-item-text p {
    margin: 0; }
    .element-item-text p i {
      margin: 0 .5em; }

.element-item-link {
  color: #D51A68 !important; }

.element-item-link:hover {
  color: #6C1F5D !important;
  text-decoration: underline !important; }

.element-item-text p:first-child {
  color: #D51A68; }

.element-item-list a:hover {
  text-decoration: underline !important;
  color: #6C1F5D !important; }

.element-item-hidden {
  height: 80%;
  background: #D51A68;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }
  .element-item-hidden p {
    color: white;
    padding: 2em; }

.branding {
  background-image: url("../../images/course-bg/branding-bg.jpg");
  background-size: cover;
  background-position: center; }

.selling-yourself {
  background-image: url("../../images/course-bg/selling-yourself-bg.jpg");
  background-size: cover;
  background-position: center; }

.business-law {
  background-image: url("../../images/course-bg/business-law-bg.jpg");
  background-size: cover;
  background-position: center; }

.customer-services {
  background-image: url("../../images/course-bg/customer-services-bg.jpg");
  background-size: cover;
  background-position: center; }

.effective-presentation {
  background-image: url("../../images/course-bg/effective-presentation-bg.jpg");
  background-size: cover;
  background-position: center; }

.effective-persuasion {
  background-image: url("../../images/course-bg/effective-persuasion-bg.jpg");
  background-size: cover;
  background-position: center; }

#filters {
  margin: 2em 0; }

.width-100 {
  width: 100%; }

.rating {
  unicode-bidi: bidi-override;
  font-size: 15px; }
  .rating .fs25 {
    font-size: 25px; }

.rating .active, .rating2 .active {
  content: "\f005";
  color: #D51A68; }

.rating-number {
  display: none; }

.instructor h4 {
  color: #6d6b6b;
  margin-top: 5px;
  margin-bottom: 5px;
  font-weight: normal; }

.course-flexy-parent {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden; }

.course-default-content {
  height: 100%;
  transition: .2s all;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0; }

.course-hidden-content {
  height: 100%;
  background: #D51A68;
  z-index: 99999;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0; }
  .course-hidden-content h5 {
    color: white;
    margin: .5em; }
  .course-hidden-content i {
    opacity: 0;
    transform: translateX(-10px);
    transition: .2s all .2s; }

.course-flexy-parent:hover .course-hidden-content i {
  opacity: 1;
  transform: translateX(0px); }

#quicksearch {
  margin: 1em 0;
  display: block;
  width: 100%;
  height: 50px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border-radius: 4px; }

.filters-select, .filters-select-2, .sorts2, .sorting-filters, .sorts {
  margin: 1em 0;
  display: block;
  width: 100%;
  height: 50px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px; }

.radial-icon-parent {
  display: inline-block;
  position: relative; }
  .radial-icon-parent a {
    position: absolute;
    top: 0;
    left: 0; }

.share-base {
  background: white;
  z-index: 2; }

.share-base .fa {
  transition: .2s all; }

.share-base-active .fa {
  color: #D51A68 !important; }

.share-twitter, .share-facebook, .share-linkedin {
  z-index: 1;
  background: #333;
  display: -ms-flexbox;
  display: flex;
  border-radius: 100px;
  height: 35px;
  width: 35px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0; }
  .share-twitter:hover, .share-facebook:hover, .share-linkedin:hover {
    background: #D51A68; }
  .share-twitter i, .share-facebook i, .share-linkedin i {
    color: white !important;
    background: #333 !important;
    font-size: 20px !important; }

.share-twitter {
  transition: all 200ms cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s; }

.share-twitter-active {
  transform: translateX(30px) translateY(-3px);
  opacity: 1; }

.share-facebook {
  transition: all 200ms cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.1s; }

.share-facebook-active {
  transform: translateX(10px) translateY(32px);
  opacity: 1; }

.share-linkedin {
  transition: all 200ms cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.2s; }

.share-linkedin-active {
  transform: translateX(10px) translateY(-38px);
  opacity: 1; }

.job-icons {
  text-align: right;
  display: -ms-flexbox;
  display: flex; }
  .job-icons .fa {
    font-size: 25px;
    padding-left: 5px;
    color: #333; }
    .job-icons .fa:hover {
      color: #D51A68; }

.rating2 {
  unicode-bidi: bidi-override;
  font-size: 12px;
  text-align: right;
  margin-top: 3px; }

.skill-covered {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .skill-covered li:nth-child(n) {
    margin-left: 20px; }

@media (min-width: 992px) {
  .media-pl0 {
    padding-left: 0 !important; }
  .media-pr0 {
    padding-right: 0 !important; } }

h1, h2, h3, h4, p, a, div, span {
  font-family: Avenir Next , sans-serif !important; }
  h1.f-asar, h2.f-asar, h3.f-asar, h4.f-asar, p.f-asar, a.f-asar, div.f-asar, span.f-asar {
    font-family: "Lora", serif !important; }

p, a, div, span {
  font-size: 15px;
  line-height: 25px; }

.d-flex {
  display: -ms-flexbox;
  display: flex; }

.j-around {
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.j-center {
  -ms-flex-pack: center;
  justify-content: center; }

.a-end {
  -ms-flex-align: end;
  align-items: flex-end; }

.jba2-va-top {
  vertical-align: top !important; }

.prelative {
  position: relative; }

.pb50 {
  padding-bottom: 50px; }

.pl30 {
  padding-left: 30px; }

.pr30 {
  padding-right: 30px; }

.mb50 {
  margin-bottom: 50px; }

.mar10 {
  margin: 10px !important; }

.mar30 {
  margin: 0 30px !important; }

.mb30 {
  margin-bottom: 30px; }

.mt30 {
  margin-top: 30px; }

.descriptions ul {
  padding-left: 16px !important; }

.slick-hide {
  visibility: hidden; }

.border-date {
  border-top: 1px #888888 solid;
  padding-top: .5em; }

.jba2-comma-first:nth-last-child(1) {
  display: none; }

.ribbon-wrapper-magenta {
  width: 85px;
  height: 88px;
  overflow: hidden;
  position: absolute;
  top: -3px;
  right: -3px; }

.ribbon-magenta {
  font: bold 15px Sans-Serif;
  color: #FFF !important;
  text-align: center;
  text-shadow: rgba(255, 255, 255, 0.5) 0px 1px 0px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  position: relative;
  padding: 7px 0;
  left: -5px;
  top: 15px;
  width: 120px;
  background-color: #D51A68;
  background-image: -o-linear-gradient(top, #D51A68, #D51A68);
  color: #6a6340;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3); }

.ribbon-magenta:before, .ribbon-magenta:after {
  content: "";
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  position: absolute;
  bottom: -3px; }

.jba2-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  border-bottom: 1px solid #D61A69;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  min-height: 250px; }

.jba2-header-just-background {
  height: 200px; }

.jba2-header-just-background .jba2-header-left {
  -ms-flex-pack: end;
  justify-content: flex-end; }

.jba2-content {
  padding-top: 20px; }

.jba2-right-border {
  border-right: 2px solid #f0f0f0; }

.jba2-header-left {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.jba2-header-left h1 {
  font-family: "Asar", serif;
  font-size: 46px;
  margin-top: .7em;
  background-image: url("../../images/theme-marketing/slant/title-slant.png");
  color: #f0f0f0; }

.jba2-header-left p {
  padding-right: 20%; }

.jba2-header-left .jba2-btn p {
  padding-right: 0; }

.jba2-header-right {
  width: 20%;
  background-image: url("../../images/theme-marketing/slant/header-slant-box.png");
  background-size: 100% 100%;
  color: #f0f0f0;
  padding: 2em 1em 1em 1em;
  margin: 10px 0;
  text-align: center; }

.jba2-marketing-course-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
  background-image: url("../../images/theme-marketing/new-marketing/course-header.png");
  background-position: top right;
  background-repeat: no-repeat;
  backgournd-size: cover; }

.jba2-subnav {
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px; }

.jba2-subnav-item {
  color: #f0f0f0;
  background-color: #D61A69;
  width: 130px;
  text-align: center;
  border: 1px solid #D61A69;
  border-radius: 8px 8px 0 0;
  border-bottom: none;
  margin: 0 2px;
  padding: 5px 0 2px 0;
  font-weight: 400;
  cursor: pointer;
  letter-spacing: 1px;
  font-size: 13px;
  text-transform: uppercase; }

.jba2-subnav-item:hover {
  text-decoration: none; }

.jba2-subnav-item:active {
  text-decoration: none; }

.jba2-subnav-item:focus {
  text-decoration: none;
  color: #f0f0f0; }

.jba2-subnav-item.active {
  color: #D61A69;
  background-color: #f0f0f0;
  /*This part could be an issue*/
  padding: 5px 0 3px 0;
  margin-bottom: -1px; }

.jba2-subnav-item:hover {
  color: #D61A69;
  background-color: #f0f0f0; }

.jba2-subnav-item p {
  margin: 0; }

.jba2-page-title-marketing {
  font-family: "Asar", serif;
  width: 50%;
  display: inline-block;
  background-size: 100% 100%;
  transform: none;
  padding: 1em 1em 1em 2em;
  background-image: url("../../images/theme-marketing/slant/title-slant.png");
  color: #f0f0f0; }

.jba2-page-title-marketing.newPad {
  padding-right: 3em !important; }

.jba2-page-title-marketing.mw300 {
  max-width: 300px; }

.jba2-page-title-white {
  background-image: url("../../images/theme-marketing/slant/title-slant-white.png");
  color: #323232; }

.jba2-page-title-purple {
  background-image: url("../../images/theme-marketing/slant/title-slant-purple.png"); }

.jba2-page-title-blue {
  background-image: url("../../images/theme-marketing/slant/title-slant-blue.png"); }

a {
  color: #D61A69; }

.btn {
  padding: 4px 22px;
  border-radius: 5px; }

.btn-primary,
.btn-success {
  background-color: #D61A69;
  border: none; }

.btn-primary:hover {
  background-color: #6C1F5D; }

.btn-primary:focus {
  background-color: #6C1F5D; }

.btn-primary:active {
  background-color: #6C1F5D !important; }

.btn-success:hover {
  background-color: #6C1F5D; }

.btn-success:focus {
  background-color: #6C1F5D; }

.btn-success:active {
  background-color: #6C1F5D !important; }

.btn-warning {
  background-color: #6C1F5D;
  color: #f0f0f0;
  border-color: #6C1F5D; }

.btn-warning:hover {
  background-color: #f0f0f0;
  color: #6C1F5D;
  border-color: #6C1F5D; }

.btn-warning:active {
  background-color: #f0f0f0 !important;
  color: #6C1F5D;
  border-color: #6C1F5D; }

.btn-warning:focus {
  background-color: #f0f0f0;
  color: #6C1F5D;
  border-color: #6C1F5D; }

.navbar-default .navbar-nav > li > a {
  color: #f0f0f0; }

.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
  color: #D61A69; }

.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:active {
  color: #D61A69; }

.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:focus {
  color: #D61A69; }

.jba2-container {
  padding: 0 15px; }

.jba2-container-left {
  padding-left: 15px;
  padding-right: 15px; }

.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
  margin-left: 15px; }

.jba2-course-header p {
  margin: 0;
  font-size: 15px !important; }

.jba2-course-header p.fs18 {
  font-size: 18px; }

footer {
  margin-bottom: 45px; }

/*Here are some styles for just the admin page*/
.users .user-search select {
  border-radius: 5px 0 0 5px; }

.users .user-search .input-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
  flex-grow: 1; }

.input-group .form-control {
  border-radius: 0; }

.users .user-search .input-group .input-group-btn {
  width: auto; }

.input-group-btn {
  border: 1px solid #BDBDBD;
  border-radius: 0 5px 5px 0; }

.input-group-btn button {
  padding: 6px 22px;
  width: calc(100% + 1px); }

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  z-index: 3;
  color: #f0f0f0;
  background-color: #D61A69 !important;
  border-color: #D61A69 !important; }

.pagination > li > a,
.pagination > li > span {
  color: #D61A69;
  text-decoration: none;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  cursor: pointer; }

.pagination > .disabled > a,
.pagination > .disabled > a:focus,
.pagination > .disabled > a:hover,
.pagination > .disabled > span,
.pagination > .disabled > span:focus,
.pagination > .disabled > span:hover {
  color: #ddd;
  text-decoration: none;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  pointer-events: none; }

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  z-index: 2;
  color: #f0f0f0;
  background-color: #D61A69;
  border-color: #ddd; }

.form-control:hover,
.form-control:focus,
.form-control:active {
  border-color: #D61A69 !important; }

.form-control {
  border-radius: 5px;
  border: 1px solid #ddd; }

.select2-container--default .select2-selection--multiple {
  border-radius: 5px;
  border: 1px solid #ddd; }

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  border-radius: 5px; }

.select2-container {
  width: 100% !important; }

.jba2-course-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.jba2-course-subtitle {
  text-align: left;
  color: #D61A69;
  font-style: italic;
  font-weight: 400; }

.jba2-course-info {
  display: inline-block;
  width: 100%;
  padding-right: 15px; }

.jba2-course-info h3 {
  font-family: "Asar", serif;
  text-align: left;
  margin-top: 2em;
  font-weight: 900; }

.jba2-course-info h3:first-of-type {
  margin-top: 1em; }

.jba2-course-links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 3em; }

.jba2-course-links a {
  font-size: 12px;
  margin: .8em; }

.jba2-btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #D61A69;
  color: white;
  transition: transform 0.15s;
  transform: scale(1);
  border-width: 0px;
  white-space: normal;
  border-radius: 500px;
  min-width: 100px;
  font-weight: 400;
  font-family: Avenir Next , sans-serif; }

.jba2-btn.fs20 {
  font-size: 20px !important; }

.jba2-btn.fs25, .main-section-text.fs25 {
  font-size: 25px !important; }

.jba2-error.fs18 {
  font-size: 18px !important; }

.jba2-btn.primary:hover {
  background-color: #f0f0f0 !important;
  color: #D61A69 !important; }

.jba2-fullscreen-menu a.jba2-btn:hover {
  color: #fff !important; }

#nav1 .navbar-right li a.secondary {
  color: #D61A69 !important; }

.jba2-btn.secondary {
  color: #D61A69 !important;
  background-color: transparent !important;
  border: 2px #D61A69 solid !important; }

.jba2-btn.secondary:hover {
  color: #f0f0f0 !important;
  background-color: #D61A69 !important;
  border: 2px #D61A69 solid !important; }

.jba2-btn.bk-magenta {
  background-color: #f0f0f0 !important;
  color: #D61A69 !important;
  border: 2px #f0f0f0 solid !important; }

.jba2-btn.bk-magenta:hover {
  background-color: #D61A69 !important;
  color: #f0f0f0 !important;
  border: 2px #f0f0f0 solid !important; }

.jba2-btn.bk-purple {
  background-color: #D61A69 !important;
  color: #f0f0f0 !important;
  border: 2px #D61A69 solid !important; }

.jba2-btn.bk-purple:hover {
  background-color: #f0f0f0 !important;
  color: #D61A69 !important;
  border: 2px #f0f0f0 solid !important; }

.jba2-btn-tab {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid #D61A69;
  color: #D61A69;
  transition: transform 0.15s;
  transform: scale(1);
  white-space: normal;
  border-radius: 13px;
  min-width: 100px;
  font-weight: 400; }

.jba2-btn-tab.active {
  background-color: #D61A69;
  border: 1px solid #D61A69;
  color: #f0f0f0; }

.jba2-btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5; }

.jba2-btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5; }

.jba2-btn-lg {
  padding: 6px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 35px; }

.jba2-btn-xl {
  padding: 10px 22px;
  font-size: 24px;
  line-height: 1.3333333; }

.jba2-btn:hover {
  background-color: #6C1F5D;
  color: #f0f0f0;
  text-decoration: none; }

.jba2-btn-tab:hover {
  background-color: #D61A69;
  color: #f0f0f0;
  text-decoration: none; }

.jba2-btn.green {
  background-color: #38b54a; }

.jba2-btn.green:hover {
  background-color: #247530; }

.jba2-btn.red {
  background-color: #dc0000; }

.jba2-btn.red:hover {
  background-color: #8d0c0c; }

.jba2-btn.blue {
  background-color: #59C7D9; }

.jba2-btn.blue:hover {
  background-color: #2695a6; }

.jba2-pitch-list-item {
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.jba2-pitch-list-item .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }

.jba2-pitch-list-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin: auto 0; }

.jba2-pitch-list-buttons button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin: 0 10px; }

.jba2-pitch-list-name {
  color: #323232;
  font-size: 16px;
  font-weight: 600; }

.jba2-pitch-list-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }

.jba2-pitch-list-icon i {
  position: static;
  font-size: 40px;
  color: #323232 !important; }

.jba2-pitch-list-company {
  color: #666666;
  font-size: 14px;
  margin: 4px 0; }

.jba2-pitch-list-pitched {
  border-top: 1px solid #666666;
  padding: 5px 0;
  margin: 5px 0 0 0; }

.jba2-mini-job-card {
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px; }

.jba2-mini-job-card a {
  font-weight: 600;
  font-size: 16px; }

.jba2-mini-job-card p i {
  width: 14px;
  margin-right: 5px; }

.jba2-mini-job-card-details {
  margin-top: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center; }

.jba2-mini-job-card-details img {
  width: 70px;
  height: 70px; }

.jba2-course-header-details {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex; }

.carousel-card {
  padding: 10px; }

.carousel-card:focus {
  outline: none; }

.carousel-card .element-item {
  width: 100%;
  margin: 0; }

.jba2-course-carousel {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }

.jba2-course-carousel .slick-arrow {
  height: 40px;
  width: 40px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  z-index: 20; }

.slick-disabled {
  opacity: .2; }

.jba2-slider-load-row {
  opacity: 0;
  transition: .2s all; }

.jba2-element-item-list {
  box-shadow: 1px 1px 3px #888 !important;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: box-shadow .45s ease-in-out;
  background-color: #f0f0f0; }
  .jba2-element-item-list:hover {
    transition: box-shadow .45s ease-in-out;
    box-shadow: 5px 5px 5px #888 !important; }

.jba2-element-item-list.element-item {
  height: 200px !important; }

[v-cloak] {
  display: none; }

.jba2-modal .modal-header {
  background-color: #6C1F5D;
  color: #F0F0F0;
  padding: 10px; }

.jba2-modal h4 {
  font-family: 'Asar', serif;
  font-size: 26px;
  margin: 0; }

.profile-page h4 {
  font-family: 'Asar', serif;
  font-size: 26px;
  margin: 0; }

.pi-card h4 {
  font-size: 20px;
  margin: 0px 0 15px 0; }

.profile-page .close, .jba2-modal .close {
  color: #F0F0F0;
  text-shadow: none;
  opacity: 1;
  font-size: 30px; }

.jba2-modal .modal-content {
  border-radius: 0 0 10px 10px;
  background-color: #F0F0F0; }

.modal-subnav {
  border-bottom: 1px solid #6C1F5D;
  padding-left: 20px;
  margin-top: 10px; }

.modal-subnav button {
  color: #6C1F5D;
  background-color: #F0F0F0;
  width: 130px;
  text-align: center;
  border: 1px solid #6C1F5D;
  border-radius: 8px 8px 0 0;
  border-bottom: none;
  margin: 0 2px;
  padding: 5px 0 2px 0;
  font-weight: 400;
  cursor: pointer;
  letter-spacing: 1px;
  font-size: 13px;
  text-transform: uppercase; }

.modal-subnav button.active {
  color: #F0F0F0;
  background-color: #6C1F5D;
  width: 130px;
  text-align: center;
  border: 1px solid #6C1F5D;
  border-radius: 8px 8px 0 0;
  border-bottom: none;
  margin: 0 2px;
  padding: 5px 0 2px 0;
  font-weight: 400;
  cursor: pointer;
  letter-spacing: 1px;
  font-size: 13px;
  text-transform: uppercase; }

.profile-item-title {
  font-size: 14px;
  font-weight: 600; }

.profile-header-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.profile-header-item {
  width: 48%;
  margin-top: 28px;
  background: white;
  border-radius: 10px;
  padding-top: 20px;
  box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.3); }

.profile-header-top {
  text-align: center; }

.profile-header-top i {
  font-size: 40px; }

.profile-header-bottom {
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  transform: translateY(20px);
  text-transform: uppercase;
  white-space: nowrap; }

.profile-header-bottom > div {
  width: 40%; }

.profile-header-number {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  background-color: #D61A69;
  color: white;
  border-radius: 10px;
  font-size: 30px;
  font-family: "Asar", serif;
  box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.3);
  cursor: pointer; }

.profile-header-number:hover {
  background-color: #6C1F5D;
  color: #f0f0f0;
  text-decoration: none; }

.profile-header-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 10px; }

.pi-card {
  padding: 15px; }

.pi-card p {
  margin: 0; }

#editSkills .skills-item {
  background: #323232 !important;
  border-radius: 10px;
  color: #F0F0F0;
  margin-top: 3px;
  font-size: 14px;
  padding: 0 5px; }

#editSkills .skills-item > div {
  height: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }

#editSkills .skills-item i {
  color: #F0F0F0;
  margin: 0 3px; }

#editSkills .skills-list {
  margin-top: 15px; }

.skill-check {
  color: #59C7D9 !important;
  pointer-events: none; }

.validated-skill-check {
  opacity: .2; }

.pagination li a {
  margin: 0 2px;
  background-color: transparent;
  color: #D61A69;
  border-radius: 8px !important;
  font-size: 12px;
  padding: .3em .5em;
  min-width: 30px;
  text-align: center;
  border: 1px solid #D61A69; }

.pagination li a.active {
  background-color: #D61A69;
  color: #f0f0f0; }

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
  z-index: 2;
  color: #f0f0f0;
  background-color: #D61A69;
  border-color: #D61A69; }

.profile-page-pitch-view .contact-profile-picture-wrapper {
  height: 50px;
  width: 50px; }

.sgb-container {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: center;
  align-items: center; }

.sgb-right {
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: 10px; }

.sgb-container p {
  margin: 0; }

.sgb-container > div {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }

.jba2-sgb {
  background: transparent;
  border: 1px solid #D61A69;
  border-radius: 30px;
  margin: 0px;
  height: 34px;
  font-style: italic;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 0;
  flex-grow: 0;
  width: 100%;
  margin-bottom: 5px; }

.jba2-sgb p {
  margin: 0; }

.jba2-sgb-filled {
  background: #D61A69;
  border-radius: 30px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  color: white; }

.jba2-sgb-empty {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-positive: 1;
  flex-grow: 1; }

.sgb-container img {
  width: 50px;
  height: 50px;
  border-radius: 500px; }

.modal-card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  margin: 10px;
  padding: 10px;
  background: white; }

#boostModal .modal-content h4 {
  font-size: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }

.jba2-save.active {
  background: #D61A69;
  color: white;
  border-radius: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center; }

.profile-progress-container {
  display: -ms-flexbox;
  display: flex;
  background: transparent;
  border-radius: 30px;
  border: 1px solid #59C7D9;
  margin: 10px 0;
  width: 100%; }

.profile-progress-container span {
  font-style: italic;
  color: #59C7D9; }

.progress-container-filled {
  background: #59C7D9;
  border-radius: 30px;
  padding: .2em 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center; }

.progress-container-filled i {
  color: #59C7D9;
  margin: 0 10px; }

.progress-container-empty {
  -ms-flex: 1;
  flex: 1;
  padding: .2em 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center; }

.profile-progress-container.complete {
  border: 1px solid #59C7D9; }

.profile-progress-container.complete .progress-container-filled {
  background: #59C7D9; }

.profile-header-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  background-color: #D61A69;
  color: white;
  border-radius: 10px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5); }

.profile-header-bar .profile-progress-container {
  height: 22px;
  margin: 10px;
  background: transparent;
  border: 1px solid white; }

.profile-header-bar .profile-progress-container.complete {
  height: 22px;
  margin: 10px;
  background: #59C7D9;
  border: 1px solid #59C7D9; }

.profile-header-bar .progress-container-filled {
  background: white; }

.fade-transition {
  transition: all .5s;
  transform: translateX(0px);
  opacity: 1; }

.fade-enter, .fade-leave {
  opacity: 0;
  transform: translateX(-40px); }

.sgb-goodluck {
  color: #38b54a;
  font-weight: 600;
  width: 100px; }

.jba2-sgb-empty span {
  display: none; }

.header-score {
  margin: 15px;
  color: #bdbdbd; }

.absolute-header-score {
  margin: 15px;
  color: #bdbdbd;
  position: absolute;
  right: 0;
  top: 0; }

.absolute-header-score-active {
  color: #323232; }

.header-score.active {
  color: #323232; }

.profile-picture-header-score {
  color: #bdbdbd;
  margin: 15px;
  position: absolute;
  right: 0;
  top: 0; }

.profile-picture-header-score.active {
  color: #f0f0f0; }

#pitchBar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column; }

.company-profile-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }
  .company-profile-header img {
    height: 60px; }
  .company-profile-header h4 {
    margin-left: 16px; }

#companyProfileModal a {
  display: block; }

@media (min-width: 768px) {
  .pitch-profile-buttons {
    padding: 2em; }
  #pitchBar {
    -ms-flex-direction: row;
    flex-direction: row; }
  .profile-progress-container {
    width: 50%; }
  .jba2-sgb-empty span {
    display: inline-block; }
  .sgb-right {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-left: 0; }
  .jba2-sgb {
    margin: 0 15px;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: auto;
    margin-bottom: 0px; }
  .profile-section {
    border-radius: 10px !important; }
  .profile-section-banner {
    border-radius: 10px !important; }
  .profile-personal-information {
    border-radius: 10px !important; }
  footer {
    margin-bottom: auto; }
  .profile-header-item {
    width: 20%;
    margin-top: 0; }
  .jba2-course-header p {
    margin: 0 1em; }
  .jba2-course-header h1 {
    padding-right: 15px; }
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: auto; }
  .jba2-hamburger {
    display: none; }
  .jba2-navbar {
    background-color: #D61A69;
    margin-top: 50px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 30px;
    position: static;
    bottom: auto;
    z-index: 9999;
    width: 100%; }
  .jba2-navbar-item {
    color: white;
    font-size: 15px;
    width: 160px;
    text-align: center;
    border: 2px solid #f0f0f0;
    border-bottom: none;
    margin: 0 2px;
    border-radius: 10px 10px 0px 0px;
    padding: 7px 0 2px 0;
    letter-spacing: 1px;
    font-weight: 400; }
  .jba2-container {
    padding: 0 15px; }
  .jba2-container-left {
    padding-left: 15px;
    padding-right: 0px; }
  .jba2-header-left {
    width: 70%; }
  .jba2-navbar-item span {
    display: inline-block; }
  .jba2-navbar-item i {
    margin-right: 8px; }
  .jba2-course-info {
    padding-right: 15px; }
  .jba2-page-title {
    padding: 10px 3em 10px 25px; } }

@media screen and (max-width: 1199px) {
  .jba2-container {
    padding: 0 80px; }
  .jba2-container-left {
    padding-left: 80px;
    padding-right: 0px; }
  .jba2-header-left {
    width: 50%; }
    .jba2-header-left.course-header {
      width: 80%; }
  .jba2-header-right {
    width: 50%; }
  .jba2-course-info {
    padding-right: 15px; }
  .jba2-page-title {
    padding: 10px 3em 10px 25px; } }

@media screen and (min-width: 1200px) {
  .jba2-container {
    padding: 0 80px; }
  .jba2-container-left {
    padding-left: 80px;
    padding-right: 0px; }
  .jba2-header-left {
    width: 70%; }
  .jba2-header-right {
    width: 30%; }
  .jba2-course-info {
    padding-right: 15px; }
  .jba2-page-title {
    padding: 10px 3em 10px 25px; } }

.item blockquote p:after {
  content: "\f10e";
  font-family: 'Fontawesome';
  float: right;
  margin-left: 10px; }

.t-shadow {
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6); }

.row-break {
  border-top: 1px solid #f0f0f0;
  margin: 30px 0; }

select.filters-select-3 {
  border: none !important;
  background: none !important;
  width: 100% !important;
  font-size: 17px !important; }

.section-img, .bus-section-img {
  visibility: visible; }
  .section-img img, .bus-section-img img {
    width: 100%; }

.profile-progress-bar {
  position: relative;
  height: 50px;
  background-color: #323232;
  border-radius: 30px;
  box-shadow: 3px 3px 3px #888888; }

.profile-progress-filled {
  position: absolute;
  height: 100%;
  width: 45%;
  background-color: #D61A69;
  border-radius: 30px;
  transition: .5s width 2s;
  background-clip: content-box; }

.search-form {
  border: 2px #fff solid;
  border-radius: 10px; }
  .search-form h2 {
    margin: 1.5em 0 !important; }
  .search-form select {
    background-color: #fff; }

.courses-crousel .slick-track .slick-current.slick-active {
  transform: scale(1.2);
  transition: transform .5s ease-in-out; }

.courses-crousel .slick-arrow {
  width: 30px;
  height: 30px; }

.steps-arrow {
  z-index: 99 !important; }

a.find-more {
  color: white; }

a.find-more:hover {
  text-decoration: underline !important;
  color: #D61A69; }

.title-h2 {
  font-size: 35px;
  margin-bottom: 15px; }

.btn-span {
  display: block;
  text-align: center;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%); }

@media screen and (max-width: 767px) {
  .margin-xs-1 {
    margin-left: 4.166666665%; }
  .m0-mobile {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .jba2-marketing-course-header {
    opacity: .5; } }

@media screen and (max-width: 480px) {
  .title-h2 {
    font-size: 25px; }
  .courses-crousel .slick-arrow {
    width: 25px;
    height: 25px; }
  .slick-prev {
    left: -10% !important; }
  .slick-next {
    right: -10% !important; }
  .tcenter-mobile {
    text-align: center !important; }
  .timer-icon i {
    font-size: 20px; }
  .stat-title {
    font-size: 17px; }
  .timer, .timer1, .timer2 {
    font-size: 30px; } }

.iconbar-flexy-parent {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: column;
  position: fixed;
  right: auto;
  bottom: 0;
  z-index: 50;
  width: 60px;
  height: 160px;
  -ms-flex-pack: center;
  justify-content: center;
  background: #333333;
  padding-top: 5px;
  border-top-right-radius: 10px; }

.iconbar-flexy-parent .iconbar-flexy-child {
  text-align: center;
  padding-bottom: 5px; }

.iconbar-flexy-parent .iconbar-flexy-child .fa {
  width: 40px;
  height: 40px;
  font-size: 25px;
  background: #fff;
  border: 1px solid white;
  border-radius: 50%;
  padding: 7px;
  color: #333 !important;
  box-shadow: 1px 1px 6px grey;
  padding-bottom: 5px; }

.iconbar-flexy-parent .iconbar-flexy-child .fa:hover {
  color: #D51A68 !important; }

.iconbar-flexy-parent .iconbar-flexy-child .apply-btn {
  width: 80px !important;
  font-size: 20px !important; }

a.share-base {
  left: -17px !important;
  top: 2px !important; }

.share-twitter .fa, .share-facebook .fa, .share-linkedin .fa {
  padding-left: 7px !important; }

.iconbar-flexy-parent .iconbar-flexy-child .radial-icon-parent .shares .fa {
  color: white !important; }

.iconbar-flexy-parent .iconbar-flexy-child .radial-icon-parent .shares:hover .fa {
  color: #D51A68 !important; }

.steps-dot .cls-1 {
  fill: #323232; }

.steps-dot.active-dot .cls-1 {
  fill: #6C1F5D !important; }

.black p, .black a {
  color: #323232 !important; }

.black a:hover {
  color: #323232 !important;
  text-decoration: none !important; }

.descriptions ul {
  padding-left: 20px; }

.descriptions p {
  padding-left: 4px; }

.jba2-main-color {
  color: #D61A69 !important; }

a.jba2-main-color:hover {
  color: #D61A69 !important;
  text-decoration: underline !important; }

.jba2-grey-color {
  color: #888; }

.padLR4 {
  padding: 0 4% !important; }

.jba2-w-text {
  color: #ffffff; }

.jba2-b-text {
  color: #323232; }

.jba2-main-text {
  color: #D61A69 !important; }

.d-flex {
  display: -ms-flexbox;
  display: flex; }

.j-end {
  -ms-flex-pack: end;
  justify-content: flex-end; }

.j-between {
  -ms-flex-pack: justify;
  justify-content: space-between; }

.j-around {
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.a-center {
  -ms-flex-align: center;
  align-items: center; }

.a-end {
  -ms-flex-align: end;
  align-items: flex-end; }

.form-input {
  width: 100%; }

.form-input, .form-select {
  border-radius: 5px !important;
  height: 35px;
  border: 0;
  outline: 0;
  padding: 0 13px;
  background-color: #fff !important; }

.form-textarea {
  border-radius: 5px !important;
  height: auto;
  border: 0;
  outline: 0;
  padding: 13px;
  background-color: #fff !important; }

.form-button {
  border-radius: 5px;
  height: 35px;
  background-color: transparent;
  border: 1.5px #fff solid;
  color: #f0f0f0; }

.jba2-bshadow {
  box-shadow: 3px 3px 5px #888888; }

.element-job-list {
  background-color: #fff;
  border-radius: 5px;
  padding: 2em 2em .5em;
  box-shadow: 3px 3px 5px #888888; }
  .element-job-list .card-company-logo {
    display: none; }

.element-job-list .list-company-logo {
  height: 100px;
  width: auto; }
  .element-job-list .list-company-logo img {
    height: 100%;
    max-width: 100%;
    width: auto; }

.element-job-list .card-company-logo .jba2-logo {
  height: 70px;
  width: auto; }
  .element-job-list .card-company-logo .jba2-logo img {
    height: 100%;
    max-width: 100%;
    width: auto; }

.region-comma:last-child {
  display: none !important; }

.jba2-name {
  color: #D61A69 !important;
  font-weight: 600;
  font-size: 20px; }
  .jba2-name:hover {
    color: #D61A69 !important;
    text-decoration: underline !important; }

.jba2-employer {
  color: black;
  margin: 0 !important; }

.employer-job-list {
  padding: 1em 1em .5em;
  margin: 0 50px;
  position: relative; }

.jba2-job-type {
  background-color: #f0f0f0;
  color: #6C1F5D; }

.wh50 {
  width: 50px;
  height: 50px; }

.w-35 {
  width: 35px; }

.jba2-save {
  color: #D61A69;
  font-size: 30px; }

.jba2-progress-bar {
  width: 100%;
  border: 2.5px #D61A69 solid;
  border-radius: 15px;
  position: relative;
  box-shadow: 3px 3px 5px #888888; }

.jba2-progress {
  width: 25%;
  height: 100%;
  border: 2.5px #D61A69 solid;
  background-color: #D61A69;
  border-radius: 10px;
  position: absolute;
  box-shadow: 3px 0 5px #888888; }
  .jba2-progress p {
    padding: 2px 6px 0 0;
    color: #f0f0f0;
    text-align: right; }

.viewButton {
  float: left;
  margin-left: 0; }

.card-view {
  margin: 0; }

.jba2-w100 {
  width: 100px; }

.jba2-grey {
  color: #666666; }

.fs-margin1 {
  margin-right: 0;
  margin-bottom: 16px; }

.fs-margin2 {
  margin-left: 0; }

.jba2-res-border {
  border-top: 2px #fff solid;
  border-left: 0; }

.jba2-pitches-no {
  position: absolute;
  top: 0;
  height: 100%;
  right: -45px; }

.jba2-pitches-no .jba2-btn {
  width: 150px !important;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50px; }

.jba2-line {
  border-top: 2px #666666 solid;
  margin: 0 2em; }

.border-r30 {
  border-radius: 30px; }

.jba2-listing-title {
  font-family: "Asar", serif;
  width: auto;
  display: block;
  background-image: url("../../images/theme-jbanew/JobListingHeader.png");
  background-size: 100% 100%;
  color: #f0f0f0;
  padding: 10px 3em 10px 25px; }

.jba2-seeAll {
  width: 10%;
  position: absolute;
  top: 50%;
  right: 10%;
  color: #fff;
  transform: translateY(-50%); }

.jba2-btn-w {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #f0f0f0;
  color: #D61A69;
  transition: transform 0.15s;
  transform: scale(1);
  border: 1.5px solid #D61A69;
  white-space: normal; }
  .jba2-btn-w:hover {
    background-color: #D61A69;
    color: #f0f0f0; }

.jba2-accepted-title {
  font-size: 25px;
  font-weight: bold; }

.jba2-ppi-success {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(56, 181, 74, 0.8);
  z-index: 5;
  transition: all 1.5s ease-in-out;
  border-radius: 10px; }
  .jba2-ppi-success h4 {
    border: 2px #fff solid;
    border-radius: 30px;
    padding: .5em 1em; }

.jba2-z-1 {
  position: relative;
  z-index: 1; }

@media screen and (max-width: 400px) {
  .font11 {
    font-size: 11px; } }

@media screen and (max-width: 767px) {
  .employer-job-list {
    margin: 0 10px 16px 0 !important; }
  .jba2-accepted-title {
    font-size: 20px; } }

@media screen and (min-width: 768px) {
  .mbb-mobile {
    margin-bottom: 16px; }
  .jba2-desk-flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .fs-margin1 {
    margin-right: 8px;
    margin-bottom: 0; }
  .fs-margin2 {
    margin-left: 8px; }
  .jba2-res-border {
    border-top: 0;
    border-left: 2px #fff solid; }
  .modal-dialog.wide-width {
    width: 93% !important; } }

.dropdown .pv-5 {
  padding-bottom: 6px !important; }

li.dropdown-menu-item a:hover {
  background-color: #323232 !important;
  color: #fff;
  transition: all .15s ease-in-out; }

.card-view .element-job-list {
  width: 49%; }
  .card-view .element-job-list:nth-child(2n+1) {
    margin-right: 1%; }
  .card-view .element-job-list:nth-child(2n+2) {
    margin-left: 1%; }

.vertical-carousel .slick-track {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }

li .jba2-after {
  position: absolute;
  width: 40px;
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: 0;
  height: 2px;
  background-color: #D61A69;
  transition: all 200ms;
  transform: translate(-65%, 0);
  opacity: 0; }

#nav1 .navbar-right li.active.jba2-nav a, ul.jba2-fullscreen-menu li.active a {
  color: #D61A69 !important; }

.jba2-course-carousel2 .slick-arrow {
  position: relative;
  left: 50%;
  transform: translateX(-50%); }

.jba2-course-carousel2 .cls-up {
  position: absolute;
  bottom: 0; }

.btn-main:active {
  background-color: transparent !important; }

.listView.cardView {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.element-job-list.cardView {
  width: 49%;
  margin-left: 1%;
  padding-bottom: 1.5em; }
  .element-job-list.cardView:nth-child(2n+1) {
    margin-left: 0;
    margin-right: 1%; }
  .element-job-list.cardView .card-company-logo {
    display: inline-block; }
  .element-job-list.cardView .opp-description, .element-job-list.cardView .list-company-logo {
    display: none; }
  .element-job-list.cardView .border-date {
    border: none;
    width: 75%;
    display: inline-block; }
    .element-job-list.cardView .border-date .opp-date {
      width: 100% !important; }
      .element-job-list.cardView .border-date .opp-date p {
        text-align: left !important; }

button.slick-arrow {
  display: none; }

.testimonials-name {
  font-size: 14px; }

@media screen and (max-width: 767px) {
  .element-job-list.cardView {
    width: 100%;
    margin-left: 0; }
    .element-job-list.cardView:nth-child(2n+1) {
      margin-left: 0;
      margin-right: 0; }
  .padLR4 {
    padding: 0 !important; }
  .pad15 {
    padding: 0 15px; } }

@media screen and (min-width: 1200px) {
  .element-job-list.cardView {
    width: 32%; }
    .element-job-list.cardView:nth-child(2n+1) {
      margin-right: 0; }
    .element-job-list.cardView:nth-child(2n+2) {
      margin-left: 0; }
    .element-job-list.cardView:nth-child(3n+1) {
      margin-right: 1.33%; }
    .element-job-list.cardView:nth-child(3n+2) {
      margin: 0 .66%; }
    .element-job-list.cardView:nth-child(3n+3) {
      margin-left: 1.33%; } }

.business-back {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: 100vw;
  max-height: 650px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }
  .business-back .bus-main-slant {
    max-height: 600px;
    background-image: url("../../images/theme-marketing/new-marketing/bus1.1.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center; }

.row-break {
  border-top: 1px solid #f0f0f0;
  margin: 30px 0; }

.recruitBtn, whiteLabelBtn {
  font-size: 14px; }

.jba2-bus-title {
  width: 788px;
  position: absolute;
  top: -10px;
  z-index: 1; }
  .jba2-bus-title h2 {
    padding-left: 18em; }

.jba2-bus-detail {
  padding-top: 100px; }
  .jba2-bus-detail p {
    margin-bottom: 25px; }

.business-left-box p {
  line-height: 1.5em;
  font-size: 20px;
  margin-bottom: 30px; }

.business-left-box h1 {
  font-size: 40px;
  margin-bottom: 30px; }

.business-left-box .bus-main-btn {
  font-size: 13px; }

.business-left-box .col-xs-6 {
  margin-left: 5%; }

.jba2-mobile-flex {
  display: -ms-flexbox;
  display: flex; }

.mob-back-img {
  position: absolute;
  top: 0;
  background-size: cover;
  opacity: .3;
  background-repeat: no-repeat;
  background-position: top left; }
  .mob-back-img.teamrecuit {
    background-image: url("../../images/theme-marketing/new-marketing/bus/StreamlinedRecruitment.png"); }
  .mob-back-img.enterprise {
    background-image: url("../../images/theme-marketing/new-marketing/bus/EnterpriseSolution.png"); }
  .mob-back-img.upskill {
    background-image: url("../../images/theme-marketing/new-marketing/bus/UpskillTeam.png"); }
  .mob-back-img.personalised {
    background-image: url("../../images/theme-marketing/new-marketing/bus/PersonalisedCourses.png"); }

.contactForm {
  border-radius: 20px; }
  .contactForm h2 {
    padding: 2em 0;
    color: #f0f0f0; }
  .contactForm .inputWrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .contactForm .inputWrap input[name='name'], .contactForm .inputWrap input[name='phone'], .contactForm .inputWrap input[name='email'], .contactForm .inputWrap textarea[name='message'] {
      background-color: transparent;
      border: 2px #f0f0f0 solid;
      border-radius: 10px;
      color: #f0f0f0;
      font-size: 14px;
      padding-left: 16px !important;
      font-size: 1.5em;
      padding: .25em; }
    .contactForm .inputWrap input[name='name'].error, .contactForm .inputWrap input[name='phone'].error, .contactForm .inputWrap input[name='email'].error, .contactForm .inputWrap textarea[name='message'].error {
      border: 2px #D61A69 solid;
      color: #D61A69; }
    .contactForm .inputWrap input[name='name'], .contactForm .inputWrap input[name='phone'], .contactForm .inputWrap input[name='email'] {
      -ms-flex: 1;
      flex: 1; }

.bus-contact-error {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 30; }
  .bus-contact-error ul {
    background-color: #f0f0f0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1em 2em; }
    .bus-contact-error ul li, .bus-contact-error ul h2, .bus-contact-error ul p {
      color: #323232; }

@media screen and (max-width: 479px) {
  .title-h2 {
    font-size: 25px; }
  .contactForm .inputWrap {
    display: block; }
    .contactForm .inputWrap input[name='name'], .contactForm .inputWrap input[name='phone'], .contactForm .inputWrap input[name='email'] {
      width: 100%;
      margin: 0 0 16px !important; }
  .jba2-mobile-flex {
    display: block; }
  .jba2-page-title-marketing {
    padding-left: 1em !important; }
  .tcenter-mobile {
    text-align: center !important; }
  .timer-icon i {
    font-size: 20px; }
  .stat-title {
    font-size: 17px; }
  .timer, .timer1, .timer2 {
    font-size: 30px; }
  .business-left-box p {
    display: none; } }

@media screen and (min-width: 768px) {
  .business-left-box h1 {
    font-size: 35px; }
  .business-left-box p {
    font-size: 18px; }
  .ls-search .search-box :nth-child(1) {
    padding-right: 4px !important; }
  .ls-search .search-box :nth-child(3) {
    padding-left: 4px !important; } }

@media screen and (max-width: 767px) {
  .bus-section-img {
    visibility: hidden; }
  .business-back {
    background-image: url("../../images/theme-marketing/new-marketing/bus/mobbusiness.png"); }
  .m0-mobile {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .business-left-box h1 {
    font-size: 30px !important; }
  .business-left-box p {
    font-size: 16px !important; }
  .business-left-box .bus-main-btn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-item-align: center;
    align-self: center; }
  .bus-contact-error h2 {
    font-size: 18px !important; }
  .bus-contact-error li.jba2-error {
    font-size: 14px !important; } }

@media screen and (max-width: 991px) {
  .jba2-bus-title {
    width: 80%; }
    .jba2-bus-title h2 {
      text-align: left !important;
      padding-left: 0; }
  .jba2-bus-detail {
    padding-top: 0; }
    .jba2-bus-detail p {
      margin-top: 100px; }
  .jba2-right-border.mh450 {
    min-height: 0 !important; } }

button.slick-arrow {
  visibility: hidden; }

.jba2-course-header-text {
  position: absolute;
  top: 85px;
  padding-left: 5%;
  z-index: 1; }

.video-container iframe {
  width: 100% !important;
  max-width: 500px; }

.jba2-right-border.mh450 {
  min-height: 450px; }

@-moz-document url-prefix() {
  select {
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    background-image: url("../../images/theme-marketing/new-marketing/Buttons/selectArrow.png");
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: inherit; } }

@media only screen and (max-device-width: 680px) and (min-device-width: 300px) and (orientation: landscape) {
  .col-xs-10 {
    width: 83.33333333%; } }

.item {
  height: 100%; }

.magenta {
  background: #D51A68; }

.item-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }

.left1, .right1 {
  width: 100%;
  padding-bottom: 2em; }

.flexy1 {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: row;
  flex-direction: row; }

.align-center {
  -ms-flex-align: center;
  align-items: center; }

.white {
  color: white; }

.left1 img {
  width: 300px;
  margin: 0 auto; }

button.slick-arrow {
  position: absolute;
  top: 45%;
  color: white; }

button.nextcustom.slick-arrow {
  right: 15px; }

button.prevcustom.slick-arrow {
  left: 0; }

button.slick-arrow span {
  font-size: 40px; }

.slide-button {
  padding: 1em;
  width: 80%;
  margin: 0 auto; }

.orange {
  background: #F79131; }

.black {
  color: black; }

.course-custom-slide-2 {
  height: 70vh; }

select, .jba-search {
  height: 50px !important; }

option {
  padding-left: 5px; }

.nav-main {
  border: none !important; }

.navbar-default .navbar-nav > li > a, .navbar-default .navbar-nav > li > a {
  color: white !important;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  transition: .2s all; }

.navbar-brand {
  padding-top: 0.5em !important;
  padding-left: 3em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 25px; }
  .navbar-brand img {
    width: 100%; }
  .navbar-brand p {
    font-size: 20px;
    margin-left: 30px; }

.logo-text {
  font-size: 21px;
  width: 120px;
  display: inline-block;
  margin-top: 15px;
  margin-left: 15px;
  color: #fff;
  line-height: 18px; }

.hover-twhite {
  color: #fff !important;
  font-size: 16px;
  font-weight: bold; }

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #6C1F5D !important; }

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
  border: none !important; }

.beige {
  background: #F1E9E0;
  margin-top: 0;
  padding-top: 1em; }

.grey {
  background: rgba(0, 0, 0, 0.5);
  margin-top: 0;
  padding-top: 1em; }

#navbar {
  height: auto !important;
  padding-bottom: 1em;
  background: transparent;
  margin: 0 15px !important; }

.nav-but {
  margin-top: 1.2em;
  float: left; }

.purple {
  color: #6C1F5D !important; }

nav.navbar.navbar-default.nav-main {
  width: 100%; }

button.navbar-toggle {
  border: none;
  padding: 2px 6px !important;
  float: left !important; }
  button.navbar-toggle span.icon-bar {
    margin: 9px 0 !important; }
  button.navbar-toggle:hover, button.navbar-toggle:focus {
    background: none !important; }

a.navbar-brand {
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  display: block;
  float: right;
  margin-top: 15px !important;
  padding: 0 !important; }
  @media (min-width: 992px) {
    a.navbar-brand {
      float: left; } }

span.icon-bar {
  background-color: #D51A68 !important;
  margin-bottom: 10px;
  width: 40px !important;
  height: 5px !important;
  border-radius: 10px !important; }

@media screen and (max-width: 700px) {
  .flexy1 {
    -ms-flex-direction: column;
    flex-direction: column; }
  .flexy1 img {
    height: 150px;
    width: auto; }
  .img1 {
    -ms-flex-order: 2;
    order: 2; }
  .text1 {
    -ms-flex-order: 1;
    order: 1; }
  .jba-search {
    float: right; } }

#navbar-id {
  margin-bottom: 0; }

#login-btn {
  margin-left: 30px;
  margin-right: 10px; }

#nav1 .navbar-right li a, #nav2 .navbar-right li a {
  font-size: 16px;
  font-weight: 400;
  text-align: center; }
  #nav1 .navbar-right li a:hover, #nav2 .navbar-right li a:hover {
    color: #D51A68 !important;
    background-color: transparent !important; }

#nav1 .navbar-right li a.jba2-btn:hover, #nav2 .navbar-right li a.jba2-btn:hover {
  background-color: #f0f0f0 !important; }

#nav1 .nav > li > a:focus, #nav2 .nav > li > a:focus {
  background-color: transparent !important; }

a.jba2-btn.jba2-signin:hover {
  color: #D51A68 !important;
  border: 2px #f0f0f0 solid !important;
  background-color: #f0f0f0 !important; }

#nav2 {
  background-color: #F79131;
  width: 200px;
  height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 20px;
  z-index: 1000;
  margin-left: -200px;
  transition: margin .3s ease-in; }
  #nav2.active {
    margin-left: 0; }
  @media (min-width: 767px) {
    #nav2 {
      display: none; } }
  #nav2 .navbar-right {
    margin-top: 60px;
    float: right !important; }
  #nav2 .close-nav2 {
    position: absolute;
    top: 20px;
    left: 20px;
    cursor: hand;
    cursor: pointer; }
    #nav2 .close-nav2 i {
      font-size: 30px;
      color: #fff;
      font-weight: lighter; }

#nav1 {
  display: none; }
  @media (min-width: 1200px) {
    #nav1 {
      display: block; }
      #nav1 .navbar-right {
        float: right !important;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center; }
        #nav1 .navbar-right li {
          display: inline-block; } }

body {
  transition: all .5s ease-in; }

.menu-hamburger {
  margin-top: 15px !important; }

.navbar-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }

button.collapsed.hidden {
  display: block !important;
  visibility: hidden; }

.jba2-signin {
  padding: .5em 1em;
  font-size: 12px !important; }

@media screen and (min-width: 992px) {
  .navbar-toggle {
    display: none !important; } }

@media screen and (max-width: 992px) {
  .navbar-toggle {
    display: block !important; } }

ul.pagination li span, ul.pagination li a {
  margin: 0 2px !important;
  background-color: transparent !important;
  color: #D61A69 !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  padding: .3em .5em !important;
  min-width: 30px !important;
  text-align: center !important;
  border: 1px solid #D61A69 !important; }

ul.pagination li.active span {
  color: #fff !important; }

.appearance-select {
  -webkit-appearance: none;
  -ms-appearance: none;
  padding: 0 7px;
  background-image: url("../../images/theme-marketing/new-marketing/Buttons/selectArrow.png");
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: inherit; }

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

.landingPage {
  background: #fff;
  padding: 2em;
  position: relative; }
  .landingPage h1, .landingPage h3, .landingPage p {
    text-align: left !important;
    margin-bottom: 20px; }
  .landingPage .f-landHeader {
    font-family: 'Playfair+Display' , Serif !important;
    line-height: normal; }
  .landingPage .f-landSub {
    font-weight: 600;
    font-size: 15px; }
  .landingPage form {
    background-color: #f0f0f0;
    padding: 1em;
    border-radius: 10px; }
    .landingPage form .control-label {
      margin-left: 4px; }
  .landingPage .fixedimage {
    position: fixed;
    right: 50px; }
  .landingPage .j-bottom {
    bottom: 0;
    top: auto !important;
    position: absolute !important;
    margin-right: 0px !important; }
  .landingPage .logoimage {
    margin-left: 6%; }
  @media screen and (max-width: 767px) {
    .landingPage .logoimage {
      margin-left: 4.15%; } }
  @media screen and (min-width: 1200px) {
    .landingPage .fixedimage {
      width: auto; }
    .landingPage .logoimage {
      margin-left: 12.4444%; } }
  .landingPage .mw300 {
    max-width: 300px; }
  .landingPage input[type="text"] {
    font-size: 14px !important; }
    .landingPage input[type="text"]::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      font-size: 14px !important; }
    .landingPage input[type="text"]::-moz-placeholder {
      /* Firefox 19+ */
      font-size: 14px !important; }
    .landingPage input[type="text"]:-ms-input-placeholder {
      /* IE 10+ */
      font-size: 14px !important; }
    .landingPage input[type="text"]:-moz-placeholder {
      /* Firefox 18- */
      font-size: 14px !important; }

.jba2-wrapper {
  max-width: 1200px;
  margin: 0 auto; }

.main-back {
  position: relative;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding-bottom: 5em;
  transition: background-position 1s; }
  .main-back #cambridgeLarge {
    display: block; }
  .main-back #cambridgeSmall {
    display: none; }
  .main-back .markeiting-overlay {
    display: none; }
  .main-back p.main-section-text {
    line-height: 35px; }
  .main-back .main-section-text {
    font-size: 40px;
    line-height: normal;
    color: white;
    text-shadow: 2px 2px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #001, 1px 1px 0 #000; }
  .main-back .slick-arrow {
    z-index: 99 !important; }
  .main-back .slick-slide:focus {
    box-shadow: none; }
  .main-back .slick-dots li button:focus {
    box-shadow: none; }
  .main-back .slick-dots li button:before {
    font-size: 15px; }

.slick-dots li button:focus {
  box-shadow: none; }

@media screen and (max-width: 767px) {
  .main-back .main-section-text {
    font-size: 25px;
    line-height: 30px;
    color: #333;
    text-shadow: none; } }

@media (max-width: 449px) {
  .main-back #cambridgeLarge {
    display: none; }
  .main-back #cambridgeSmall {
    display: block; }
  .main-back .markeiting-overlay {
    display: block;
    position: absolute;
    height: 100%;
    z-index: 5;
    background-color: rgba(255, 255, 255, 0.5); }
  .main-back .main-section-text {
    color: #333;
    text-shadow: none; }
  .main-back .main-section-text.white {
    color: #333; }
  .main-back .col-mobile {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10; } }

@media (min-width: 450px) and (max-width: 1199px) {
  .main-back {
    height: 70vw; } }

@media screen and (min-width: 1200px) {
  .main-back {
    height: calc( 88vh - 69px); } }

.pakistan .business-back {
  background-image: url("../../images/theme-marketing/pakistan-marketing/bus/B1.png");
  background-position: top left; }

.pakistan .mob-back-img.teamrecuit {
  background-image: url("../../images/theme-marketing/pakistan-marketing/bus/StreamlinedRecruitment.png"); }

.pakistan .mob-back-img.enterprise {
  background-image: url("../../images/theme-marketing/pakistan-marketing/bus/EnterpriseSolution.png"); }

.pakistan .mob-back-img.upskill {
  background-image: url("../../images/theme-marketing/pakistan-marketing/bus/UpskillTeam.png"); }

.pakistan .mob-back-img.personalised {
  background-image: url("../../images/theme-marketing/pakistan-marketing/bus/PersonalisedCourses.png"); }

.pakistan .jba2-marketing-course-header {
  background-image: url("../../images/theme-marketing/pakistan-marketing/course-header.png"); }

@media screen and (min-width: 768px) {
  .pakistan .jba2-course-header-text h1, .pakistan .jba2-course-header-text p {
    color: #f0f0f0; } }

.marketing-courses .element-item {
  transform-origin: center;
  border-radius: 0 0 10px 10px;
  width: 240px;
  height: 200px !important;
  margin: 1em;
  box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.3);
  transition: 0.2s all; }
  .marketing-courses .element-item:hover {
    box-shadow: 5px 5px 25px 0px rgba(0, 0, 0, 0.5); }
  .marketing-courses .element-item .courses-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%; }
    .marketing-courses .element-item .courses-container .element-item-background {
      height: 130px !important;
      transition: .2s all;
      background-size: cover;
      background-position: center; }
    .marketing-courses .element-item .courses-container .element-item-text {
      height: 70px;
      display: block; }
      .marketing-courses .element-item .courses-container .element-item-text .course-name {
        font-size: 16px;
        font-weight: 500; }
      .marketing-courses .element-item .courses-container .element-item-text .course-time {
        font-size: 12px;
        line-height: normal;
        color: black;
        margin: 3px 0; }
      .marketing-courses .element-item .courses-container .element-item-text .rating {
        unicode-bidi: bidi-override;
        direction: rtl; }
        .marketing-courses .element-item .courses-container .element-item-text .rating .star {
          float: left;
          margin-right: 5px; }
        .marketing-courses .element-item .courses-container .element-item-text .rating .fa-star-o {
          font-size: 14px;
          color: #323232; }
        .marketing-courses .element-item .courses-container .element-item-text .rating .fa-star {
          color: #323232;
          font-size: 14px; }
      .marketing-courses .element-item .courses-container .element-item-text .course-completed {
        line-height: normal;
        font-size: 12px;
        color: #323232;
        position: relative;
        right: 0; }
        .marketing-courses .element-item .courses-container .element-item-text .course-completed span {
          line-height: normal;
          font-size: 12px; }

.courses-titles {
  font-family: "Lora", serif !important;
  text-align: left;
  font-size: 26px; }

.marketing-course-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 60px; }

/*********************************************
  :: Jobs
********************************************/
.read-more-state {
  display: none; }

.read-more-target {
  opacity: 0;
  max-height: 0;
  font-size: 0;
  transition: .25s ease; }

.read-more-state:checked ~ .read-more-wrap .read-more-target {
  opacity: 1;
  font-size: inherit;
  max-height: 999em; }

.read-more-state ~ .read-more-trigger:before {
  content: 'Show more'; }

.read-more-state:checked ~ .read-more-trigger:before {
  content: 'Show less'; }

.read-more-trigger {
  cursor: pointer;
  display: inline-block;
  padding: 0 .5em;
  color: #D51A68;
  font-size: .9em;
  line-height: 2; }

/*********************************************
  :: About-us
********************************************/
#about-intro .container {
  border-bottom: 1px #D61A69 solid; }
  #about-intro .container .imgMax {
    margin: 45px auto 0 auto;
    max-width: 500px; }
  #about-intro .container .jba2-about-nav {
    margin-bottom: -1px;
    margin-top: 16px; }
    #about-intro .container .jba2-about-nav .about-nav-item {
      color: white;
      background-color: #D61A69;
      min-width: 130px;
      text-align: center;
      border: 1px solid #D61A69;
      border-radius: 8px 8px 0 0;
      margin: 0 2px;
      padding: 5px 5px 2px 5px;
      font-weight: 400;
      cursor: pointer;
      letter-spacing: 1px;
      font-size: 13px;
      text-transform: uppercase;
      line-height: normal; }
      #about-intro .container .jba2-about-nav .about-nav-item.active {
        color: #D61A69 !important;
        background-color: white;
        padding: 5px 5px 3px 5px;
        margin-bottom: -1px;
        border-bottom: 0; }

.about-intro-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }
  .about-intro-row div h2 {
    margin: .8em; }

#about-people {
  background: white;
  min-height: 572px; }

#about-filters {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center; }
  @media (max-width: 767px) {
    #about-filters {
      width: 50%;
      margin: 0 auto;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; } }
  #about-filters button {
    margin: 5px; }

.about-item {
  width: 95%;
  margin: 2.5%;
  height: 160px;
  display: -ms-flexbox;
  display: flex;
  box-shadow: 1px 1px 5px grey; }
  .about-item .about-item-left, .about-item .about-item-ambassadors {
    height: 100%;
    background-size: cover;
    background-position: top center;
    transition: all 300ms cubic-bezier(1, -0.55, 0.27, 1.55) 0s;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    width: 50%; }
    @media (min-width: 450px) and (max-width: 767px) {
      .about-item .about-item-left, .about-item .about-item-ambassadors {
        width: 30%; } }
  .about-item .about-item-left {
    cursor: pointer; }
  .about-item .about-item-right {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background: white;
    height: 100%;
    width: 50%;
    text-align: left;
    padding: 10px; }
    .about-item .about-item-right h3 {
      text-align: left; }
    @media (min-width: 450px) and (max-width: 767px) {
      .about-item .about-item-right {
        width: 70%;
        text-align: right;
        padding-right: 5%; }
        .about-item .about-item-right p, .about-item .about-item-right h3 {
          text-align: right; } }
    .about-item .about-item-right .about-name {
      font-size: 18px;
      margin: 0;
      cursor: pointer; }
    .about-item .about-item-right .about-job {
      color: #757575;
      margin: 0;
      cursor: pointer; }
  .about-item .about-icon-row a i {
    border-radius: 5px;
    color: #D51A68;
    text-align: center;
    font-size: 20px;
    padding: 5px;
    width: 30px;
    height: 30px;
    margin: 2px;
    transform: scale(1);
    transition: all 200ms cubic-bezier(1, -0.55, 0.27, 1.55) 0s;
    transform-origin: center; }
    .about-item .about-icon-row a i:hover {
      transform: scale(1.3);
      color: #6C1F5D;
      transform-origin: center; }

.about-item-left-slide {
  -webkit-clip-path: polygon(0 0, 100% 0, 46% 100%, 0 100%) !important;
  clip-path: polygon(0 0, 100% 0, 46% 100%, 0 100%) !important;
  width: 20% !important; }

.about-item-hidden {
  padding: 10px;
  display: none;
  width: 80%;
  overflow-y: scroll; }

.about-item-hidden::-webkit-scrollbar {
  width: 6px; }

.about-item-hidden::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

.about-item-hidden::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  background: #D51A68; }

@media (min-width: 768px) {
  .about-item {
    width: 45%; } }

@media (min-width: 992px) {
  .about-item {
    width: 45%; } }

@media (min-width: 1200px) {
  .about-item {
    width: 30%;
    margin: 1.66%; } }

.conor .about-item-left {
  background-image: url("https://worktheseasons.co.nz/images/newconor1.jpg"); }
  .conor .about-item-left:hover {
    background-image: url("https://worktheseasons.co.nz/images/newconor2.jpg"); }

.conor .about-box-active {
  background-image: url("https://worktheseasons.co.nz/images/newconor2.jpg"); }

.krissy .about-item-left {
  background-image: url("../../images/krissy.jpg"); }

.alex .about-item-left {
  background-image: url("../../images/alex.jpg"); }

.martin .about-item-left {
  background-image: url("../../images/martin.jpg"); }

.jonathan .about-item-left {
  background-image: url("../../images/jonathan.jpg"); }

.jba2-wrapper.lahore {
  padding: 5em; }
  @media screen and (max-width: 440px) {
    .jba2-wrapper.lahore {
      padding: 1em; } }
  .jba2-wrapper.lahore .stats_container {
    margin: 0 auto;
    padding: 1em;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
  .jba2-wrapper.lahore .stats_item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .jba2-wrapper.lahore .discover-wrapper-item .h4 {
    border-left: 5px red solid;
    padding-left: 5px; }
  .jba2-wrapper.lahore .dw-item .accr-list {
    background-color: #fff;
    padding: 1em; }
  .jba2-wrapper.lahore .accr-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-size: 100%; }
    .jba2-wrapper.lahore .accr-icon.hec {
      background-image: url("../../images/theme-lahore/marketing/logos/logo1.png"); }
    .jba2-wrapper.lahore .accr-icon.pmdc {
      background-image: url("../../images/theme-lahore/marketing/logos/logo2.png"); }
    .jba2-wrapper.lahore .accr-icon.pec {
      background-image: url("../../images/theme-lahore/marketing/logos/logo3.png"); }
    .jba2-wrapper.lahore .accr-icon.pcp {
      background-image: url("../../images/theme-lahore/marketing/logos/logo4.png"); }
    .jba2-wrapper.lahore .accr-icon.pnc {
      background-image: url("../../images/theme-lahore/marketing/logos/logo5.png"); }
    .jba2-wrapper.lahore .accr-icon.pbc {
      background-image: url("../../images/theme-lahore/marketing/logos/logo6.png"); }
    .jba2-wrapper.lahore .accr-icon.nbeac {
      background-image: url("../../images/theme-lahore/marketing/logos/logo7.png"); }
    .jba2-wrapper.lahore .accr-icon.nceac {
      background-image: url("../../images/theme-lahore/marketing/logos/logo0.png"); }
  .jba2-wrapper.lahore .int-links {
    border-top: 2px #323232 solid; }
  .jba2-wrapper.lahore .int-links-item:nth-of-type(n+1) {
    margin: 0;
    padding: 1em;
    border-left: 2px #323232 solid;
    border-right: 2px #323232 solid;
    border-bottom: 2px #323232 solid; }
  .jba2-wrapper.lahore .int-links-item .country .flag {
    width: 40px;
    height: 30px;
    margin-right: 10px;
    background-repeat: no-repeat; }
    .jba2-wrapper.lahore .int-links-item .country .flag.afg {
      background-image: url("../../images/theme-lahore/marketing/flags/flag1.png"); }
    .jba2-wrapper.lahore .int-links-item .country .flag.azr {
      background-image: url("../../images/theme-lahore/marketing/flags/flag2.png"); }
    .jba2-wrapper.lahore .int-links-item .country .flag.con {
      background-image: url("../../images/theme-lahore/marketing/flags/flag3.png"); }
    .jba2-wrapper.lahore .int-links-item .country .flag.irq {
      background-image: url("../../images/theme-lahore/marketing/flags/flag4.png"); }
    .jba2-wrapper.lahore .int-links-item .country .flag.pak {
      background-image: url("../../images/theme-lahore/marketing/flags/flag5.png"); }
    .jba2-wrapper.lahore .int-links-item .country .flag.sud {
      background-image: url("../../images/theme-lahore/marketing/flags/flag6.png"); }
    .jba2-wrapper.lahore .int-links-item .country .flag.tur {
      background-image: url("../../images/theme-lahore/marketing/flags/flag7.png"); }
    .jba2-wrapper.lahore .int-links-item .country .flag.ugn {
      background-image: url("../../images/theme-lahore/marketing/flags/flag8.png"); }
    .jba2-wrapper.lahore .int-links-item .country .flag.ncy {
      background-image: url("../../images/theme-lahore/marketing/flags/flag9.png"); }

/*********************************************
  :: Jobs
********************************************/
#career img {
  width: 100%; }

#career .career-header {
  visibility: hidden; }

#career .slick-dotted.slick-slider {
  margin-bottom: 0; }

#career .slick-dots {
  z-index: 25;
  top: 42vw; }
  #career .slick-dots li button:before {
    font-family: FontAwesome;
    content: "\f111";
    color: #fff;
    opacity: 1; }
  #career .slick-dots li.slick-active button:before {
    font-family: FontAwesome;
    font-size: 10px;
    color: #fff;
    content: "" !important; }
  @media screen and (min-width: 1200px) {
    #career .slick-dots {
      top: 500px; } }

#career .slide-text {
  animation-name: fadeInRight;
  animation-duration: .5s; }

#career section {
  padding: 1em 1em 3em;
  background-color: #f0f0f0; }
  #career section h1, #career section h2, #career section h3, #career section h4, #career section h5 {
    color: #323232;
    font-weight: 500; }
  #career section.white-back-color {
    background-color: #fff; }
  #career section .career-jobs .jba2-element-item-list {
    height: 220px !important; }
  #career section .ceo-img {
    max-width: 200px;
    margin: 0 auto; }
  #career section .ceo-text h2 {
    font-size: 32px;
    line-height: normal; }
  #career section .way-like p, #career section .way-like span {
    font-size: 17px; }
  #career section.our-teams .content-box {
    margin: .5em;
    min-height: 250px;
    border: 5px #D61A69 solid;
    transition: all .35s ease-in-out;
    -ms-flex-direction: column;
    flex-direction: column; }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

@media screen and (min-width: 768px) {
  #career .text-pad {
    padding: 0 3em; } }

@media screen and (max-width: 767px) {
  #career #career .career-jobs .element-item {
    width: 95%; } }

@media screen and (min-width: 992px) {
  #career .career-desk-flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center; }
  #career .desk-tleft {
    text-align: left !important; } }

/*********************************************
  :: Quiz
********************************************/
#job-snob-quiz a {
  color: #D51A68 !important; }

#job-snob-quiz a:hover {
  color: #81285E !important;
  text-decoration: underline !important; }

.quiz-container {
  min-height: 770px; }

#job-snob-quiz {
  padding: 5px 30px 30px 30px;
  margin: 2em 0;
  transition: .2s all;
  opacity: 1;
  transform: translateX(0px);
  border-radius: 0px 0px 15px 15px;
  /*transition-delay: 0.2s;*/ }

#job-snob-quiz.transition-out {
  transform: translateX(-20px);
  opacity: 0; }

#job-snob-quiz.transition-in {
  transform: translateX(20px);
  opacity: 0; }

#job-snob-quiz h2 {
  font-size: 20px;
  padding: 15px;
  line-height: normal; }

.quiz-image-banner {
  height: 300px;
  width: 100%;
  margin: 0 auto;
  background-position: center;
  background-size: cover; }

.quiz-answer {
  background: white;
  padding: 15px;
  margin: 15px 0px;
  cursor: pointer;
  transform: translate(0px, 0px);
  transition: 0.1s all;
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.quiz-answer:active {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.2); }

.quiz-answer:hover {
  color: #D61A69; }

.quiz-answer.active {
  color: #D61A69; }

@media screen and (max-width: 767px) {
  #job-snob-quiz {
    padding: 15px 15px 15px 15px; }
  #job-snob-quiz h2 {
    padding: 0px;
    font-size: 16px;
    margin-top: 5px; }
  .quiz-image-banner {
    height: 100px;
    margin-bottom: 15px; } }

/*********************************************
  :: Games
********************************************/
.game-container {
  background-image: url("../../images/theme-marketing/games/splash-screen.png");
  background-size: cover; }

.job-prep-image {
  width: 400px;
  max-width: 100%;
  padding-bottom: 15px; }

.game-container .left-panel {
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 90px 0; }

.left-panel .left-panel-or {
  font-size: 30px;
  font-weight: bold;
  color: white;
  text-shadow: 3px 3px 0 #D61A69, -1px -1px 0 #D61A69,   1px -1px 0 #D61A69, -1px 1px 0 #D61A69, 1px 1px 0 #D61A69;
  margin: 0;
  padding: 15px 0; }

.jba2-game-button {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #D61A69;
  background: linear-gradient(45deg, #d61a69 40%, #b8175b 100%);
  -ms-flex-align: center;
  align-items: center;
  font-size: 22px;
  margin: 15px;
  padding: 10px 15px;
  border-radius: 10px;
  transform: translateY(0px);
  transition: 0.2s all;
  box-shadow: 0px 7px 0px 0px #921548;
  color: white; }
  .jba2-game-button div {
    font-size: 22px; }
  .jba2-game-button p {
    margin: 0px;
    font-size: 14px; }
  .jba2-game-button i {
    margin: 0px 10px 0px 0;
    font-size: 30px; }
  .jba2-game-button:active {
    transform: translateY(7px);
    box-shadow: 0px 0px 0px 0px #921548; }
  .jba2-game-button:focus {
    outline: 0; }

.jba2-blue-magenta-grad {
  background: linear-gradient(135deg, rgba(233, 41, 69, 0.9) 0%, rgba(17, 186, 204, 0.9) 100%); }

.aunty-dee-container a {
  margin-left: 0px;
  background-image: url("../../images/theme-marketing/games/auntyDee/rectangle-button.svg");
  padding: 8px 15px;
  border-radius: 5px;
  color: white;
  font-size: 20px;
  transform: scale(1);
  transition: 0.2s all; }
  .aunty-dee-container a:hover {
    background-image: url("../../images/theme-marketing/games/auntyDee/rectangle-button-hover.svg"); }
  .aunty-dee-container a:focus {
    background-image: url("../../images/theme-marketing/games/auntyDee/rectangle-button-hover.svg"); }

.aunty-dee-container h1 {
  text-align: left; }

.game-item h2 {
  font-family: "Lora", serif !important;
  text-align: left; }

@media screen and (max-width: 767px) {
  .jba2-game-button {
    margin: 3px;
    padding: 6px 10px; }
    .jba2-game-button div {
      font-size: 16px; }
    .jba2-game-button i {
      font-size: 25px; } }

/*********************************************
  :: Immersive Learning
********************************************/
.ilearning .ilearning-back {
  padding-bottom: 105px; }
  @media screen and (max-width: 767px) {
    .ilearning .ilearning-back {
      background-image: url("../../images/theme-marketing/new-marketing/ilearning/homeBanner2.png");
      background-repeat: no-repeat;
      background-position: top center;
      background-size: cover; } }
  .ilearning .ilearning-back .ilearning-left-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center; }
    .ilearning .ilearning-back .ilearning-left-box .text-shadow {
      text-shadow: 2px 2px 2px #323232; }

.ilearning ul li {
  list-style-type: disc; }

.ilearning section {
  padding: 5em 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center; }
  .ilearning section h1 {
    color: #D61A69; }
  .ilearning section.game-play1 {
    background-image: url("../../images/theme-marketing/new-marketing/ilearning/tycoon_intro1.png"); }
  .ilearning section.game-play2 {
    background-image: url("../../images/theme-marketing/new-marketing/ilearning/tycoon_intro2.png"); }
  .ilearning section.game-play3 {
    background-image: url("../../images/theme-marketing/new-marketing/ilearning/tycoon_intro3.png"); }
  .ilearning section.game-play4 {
    background-image: url("../../images/theme-marketing/new-marketing/ilearning/tycoon_intro4.png"); }
  @media screen and (min-width: 1080px) {
    .ilearning section .video-bor {
      border: 10px #fff solid; } }
  .ilearning section .text-box {
    background-color: rgba(0, 0, 0, 0.75);
    padding: 2em; }
  .ilearning section .break-line {
    height: 50px; }
  .ilearning section .overlay {
    top: 0; }

.ilearning .industry-game {
  width: 50%;
  padding: 8px; }
  .ilearning .industry-game .image-wrap img {
    border-radius: 5px; }

.ilearning h2.overview {
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  display: inline-block;
  color: #fff;
  font-weight: 600;
  padding-left: 60px; }
  .ilearning h2.overview.main-color {
    color: #D61A69;
    border-bottom: 2px solid #D61A69; }

@media screen and (min-width: 768px) {
  section.game-play2 .text-box, section.game-play4 .text-box {
    -ms-flex-order: 2;
    order: 2; } }

/*********************************************
  :: Responsive
********************************************/
@media screen and (max-width: 480px) {
  .logo-lg {
    width: 50%;
    float: right; }
  .logo {
    margin-top: 5px;
    margin-bottom: 5px; }
    .logo img {
      max-height: 60px; } }

/*********************************************
  :: Page Wide
********************************************/
.marketing-courses .element-item:focus {
  outline: 0;
  box-shadow: 0 0 5px 1px #51cbee; }

.form-control:focus {
  outline: 0;
  box-shadow: 0 0 5px 1px #51cbee; }

.about-item-left:focus {
  box-shadow: inset 0 0 5px 1px #51cbee; }

.jba2-type:focus + label {
  color: white;
  background-color: #6C1F5D;
  box-shadow: 0 0 5px 1px #51cbee; }

.jba2-type:checked + label {
  color: white;
  background-color: #6C1F5D; }

.jba-btn {
  font-family: 'AvenirNext', 'Montserrat', sans-serif;
  background-image: url("../../images/theme-marketing/rectangle-button.svg");
  background-repeat: no-repeat;
  background-size: 100% 100% !important; }
  .jba-btn:hover {
    background-image: url("../../images/theme-marketing/rectangle-button-visited.svg");
    background-size: 100% 100% !important; }

#marketing-wrapper {
  margin: 0 auto;
  position: relative;
  left: 0;
  transition: left .3s ease-in; }
  #marketing-wrapper.active {
    left: 200px; }

@media all and (-ms-high-contrast: none) {
  .squiggle-container .top-squiggle, .squiggle-container .bot-squiggle {
    display: block; }
  /* IE10 */
  .process-steps svg {
    height: 40px; }
  /* IE10 */
  .responsive .slick-slide img {
    margin: 0 auto; }
  /* IE10 */
  .header-back .single-item2 .btn-jba {
    margin-left: 50%;
    transform: translateX(-50%); }
  /* IE10 */
  .socialIcons li {
    margin-right: 15px; }
  /* IE10 */
  *::-ms-backdrop, .flex-align-center, .flex-text, .step-content, .flexy-1, .slick-slide {
    display: block !important; }
  /* IE11 */
  *::-ms-backdrop, .squiggle-container .top-squiggle, .squiggle-container .bot-squiggle {
    display: block; }
  /* IE11 */
  *::-ms-backdrop, .process-steps svg {
    height: 40px; }
  /* IE11 */
  *::-ms-backdrop, .responsive .slick-slide img {
    margin: 0 auto; }
  /* IE11 */
  *::-ms-backdrop, .header-back .single-item2 .btn-jba {
    margin-left: 50%;
    transform: translateX(-50%); }
  /* IE11 */
  *::-ms-backdrop, .socialIcons li {
    margin-right: 15px; }
  /* IE10 */ }

.form-textarea, .form-input, .form-select {
  background-color: transparent !important;
  border: 1px solid #323232;
  font-family: 'Avenir';
  font-weight: lighter; }

.form-select:active, .form-select:hover, .form-textarea:hover, .form-textarea:active, .form-input:hover, .form-input:active, .select2-selection:hover, span.select2.select2-container.select2-container--default.select2-container--below.select2-container--open .select2-selection {
  border-color: #D61A69 !important; }

.form-textarea:-ms-input-placeholder, .form-select:-ms-input-placeholder, .form-input:-ms-input-placeholder, .select2-selection__placeholder, .select2-container--default .select2-selection--single .select2-selection__placeholder {
  font-style: italic;
  font-weight: lighter;
  color: #999; }

.form-textarea::placeholder, .form-select::placeholder, .form-input::placeholder, .select2-selection__placeholder, .select2-container--default .select2-selection--single .select2-selection__placeholder {
  font-style: italic;
  font-weight: lighter;
  color: #999; }

.italic-light {
  font-weight: lighter;
  font-style: italic; }

.select2 {
  font-family: 'avenir';
  margin-bottom: 10px !important; }

.select2-container--default .select2-results__option .select2-results__option {
  font-family: 'avenir';
  font-weight: lighter; }

.select2-selection {
  border: 0.5px solid #323232 !important;
  background: transparent !important; }

.select2-container--default .select2-selection__arrow b {
  border-color: #323232 transparent transparent transparent !important; }

.select2-container--default:hover .select2-selection__arrow b, .select2-container--default:active .select2-selection__arrow b {
  border-color: #D61A69 transparent transparent transparent !important; }

.select2-container--default.select2-container--open .select2-selection__arrow b {
  border-color: transparent transparent #D61A69 transparent !important; }

.form-group.flex {
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse; }

.form-input:focus + label, .form-textarea:focus + label, .form-select:focus + label, .hover-color-inputs, .form-input:hover + label, .form-textarea:hover + label, .form-select:hover + label, label.hover-effect:hover .highlighter {
  color: #D61A69 !important;
  font-weight: 700; }

.input-group.flex {
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.input-group.flex .form-select, .input-group.flex .form-input, .input-group p {
  -ms-flex-order: 2;
  order: 2; }

.input-group.flex label {
  width: 100%; }

.input-group.flex span {
  -ms-flex-order: 2;
  order: 2; }

.form-group.flex .select2 {
  margin-bottom: 0 !important; }

.disabled-input {
  background: transparent;
  border-radius: 5px;
  font-weight: normal;
  border-width: 0.5px;
  border-color: rgba(50, 50, 50, 0.6);
  color: rgba(50, 50, 50, 0.6); }

.disabled-input .fa {
  float: right;
  padding-top: 2px; }

ul.select2-selection__rendered {
  background: transparent !important; }

.note-editor.note-frame .note-editing-area .note-editable {
  background: transparent !important; }

.note-editor.note-frame .note-editing-area .note-editable {
  background-color: transparent !important; }

.note-editor.note-frame.panel.panel-default {
  background-color: transparent !important;
  border-color: #323232;
  border-radius: 5px !important; }

.note-statusbar {
  background-color: transparent !important; }

.select2-container--disabled {
  pointer-events: none !important;
  cursor: not-allowed;
  background: transparent !important; }

.select2-container--disabled .select2-selection__rendered {
  background: transparent !important; }

.select2-container--disabled
.select2-selection__rendered li {
  border: none !important; }

.input-wrapper.disabled {
  position: relative; }

.border-bold {
  border-width: 1.5px !important; }

.select2-selection__rendered {
  font-weight: normal !important;
  color: #323232 !important; }

.form-control[disabled], fieldset[disabled] .form-control {
  background: transparent !important;
  border-color: rgba(50, 50, 50, 0.6) !important;
  color: rgba(50, 50, 50, 0.6) !important;
  pointer-events: none !important;
  cursor: not-allowed !important; }

.select2-container--disabled .select2-selection {
  background: transparent !important;
  border-color: rgba(50, 50, 50, 0.6) !important;
  color: rgba(50, 50, 50, 0.6) !important;
  border-radius: 5px !important; }

.select2-container--disabled .select2-selection__arrow {
  display: none; }

.select2-container--disabled .select2-selection::before, .input-wrapper.disabled:before {
  content: '\f023';
  font-family: 'FontAwesome';
  float: right;
  position: absolute;
  right: 10px;
  top: 5px;
  color: rgba(50, 50, 50, 0.6); }

.flex-col {
  -ms-flex-direction: column !important;
  flex-direction: column !important; }

.magenta {
  color: #D61A69 !important;
  border-color: #D61A69 !important; }

.form-group.flex label.error {
  -ms-flex-order: 0 !important;
  order: 0 !important; }

.form-group.flex label {
  -ms-flex-order: 1;
  order: 1; }

.form-group.flex input, .form-group.flex textarea {
  -ms-flex-order: 1;
  order: 1; }

.note-editor.note-frame.panel.panel-default {
  -ms-flex-order: 1;
  order: 1; }

.form-group.flex-col label.error {
  -ms-flex-order: 2 !important;
  order: 2 !important; }

.filter-discussions {
  background-color: white !important; }

.filter-btn {
  color: #6C1F5D;
  background: white;
  border: 1px solid #6C1F5D;
  border-radius: 500px; }

.business-video-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }

span.smaller-heading-business {
  font-family: 'Lora' !important;
  font-size: 20px;
  letter-spacing: 0.7px; }

.business-video-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 200px;
  -ms-flex-pack: center;
  justify-content: center; }

span.button-video-play {
  font-size: 50px;
  padding-right: 10px;
  margin-bottom: 0; }

span.button-video-text {
  margin-bottom: 0; }

.modalvideos .modal-body {
  background: black; }

body.modal-open {
  padding-right: 0 !important; }

div#video-viewport {
  position: absolute;
  top: 0;
  z-index: -1;
  height: 100%;
  overflow: hidden;
  max-height: 650px;
  max-width: 1200px;
  background-color: black; }
  div#video-viewport video {
    width: 100%;
    height: auto; }

@media screen and (max-width: 1200px) {
  .business-back {
    height: 600px; } }

@media screen and (max-width: 1100px) {
  .business-back {
    height: 560px; } }

@media screen and (max-width: 1000px) {
  .business-back {
    height: 510px; } }

@media screen and (max-width: 900px) {
  .business-back {
    height: 440px; }
  #video-viewport video {
    width: 150%; } }

.vertical-alignment-helper {
  display: table;
  height: 100%;
  width: 100%;
  pointer-events: none; }

.vertical-align-center {
  /* To center vertically */
  display: table-cell;
  vertical-align: middle;
  pointer-events: none; }

.modal-content {
  /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
  width: inherit;
  height: inherit;
  /* To center horizontally */
  margin: 0 auto;
  pointer-events: all; }

#top-page {
  position: relative; }

@media screen and (min-width: 768px) {
  .modalvideos .modal-dialog {
    width: 700px; } }

.marketing-job-search-title {
  color: #6C1F5D;
  line-height: normal;
  left: 0;
  transform: none; }

/*********************************************
  :: The Core
********************************************/
.btn-main {
  color: #FFFFFF;
  background-color: #D61A69;
  border-color: #AB1654; }

.btn-main:hover,
.btn-main:focus,
.btn-main:active,
.btn-main.active,
.open .dropdown-toggle.btn-main {
  color: #FFFFFF;
  background-color: #AB1654;
  border-color: #AB1654; }

.btn-main:active,
.btn-main.active,
.open .dropdown-toggle.btn-main {
  background-image: none; }

.btn-main.disabled,
.btn-main[disabled],
fieldset[disabled] .btn-main,
.btn-main.disabled:hover,
.btn-main[disabled]:hover,
fieldset[disabled] .btn-main:hover,
.btn-main.disabled:focus,
.btn-main[disabled]:focus,
fieldset[disabled] .btn-main:focus,
.btn-main.disabled:active,
.btn-main[disabled]:active,
fieldset[disabled] .btn-main:active,
.btn-main.disabled.active,
.btn-main[disabled].active,
fieldset[disabled] .btn-main.active {
  background-color: #D61A69;
  border-color: #AB1654; }

.btn-main .badge {
  color: #D61A69;
  background-color: #FFFFFF; }

.btn-secondary {
  color: #FFFFFF;
  background-color: #6C1F5D;
  border-color: #4F1844; }

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.open .dropdown-toggle.btn-secondary {
  color: #FFFFFF;
  background-color: #4F1844;
  border-color: #4F1844; }

.btn-secondary:active,
.btn-secondary.active,
.open .dropdown-toggle.btn-secondary {
  background-image: none; }

.btn-secondary.disabled,
.btn-secondary[disabled],
fieldset[disabled] .btn-secondary,
.btn-secondary.disabled:hover,
.btn-secondary[disabled]:hover,
fieldset[disabled] .btn-secondary:hover,
.btn-secondary.disabled:focus,
.btn-secondary[disabled]:focus,
fieldset[disabled] .btn-secondary:focus,
.btn-secondary.disabled:active,
.btn-secondary[disabled]:active,
fieldset[disabled] .btn-secondary:active,
.btn-secondary.disabled.active,
.btn-secondary[disabled].active,
fieldset[disabled] .btn-secondary.active {
  background-color: #6C1F5D;
  border-color: #4F1844; }

.btn-secondary .badge {
  color: #6C1F5D;
  background-color: #FFFFFF; }

.btn-tertiary {
  color: #FFFFFF;
  background-color: #74CEE2;
  border-color: #549FB0; }

.btn-tertiary:hover,
.btn-tertiary:focus,
.btn-tertiary:active,
.btn-tertiary.active,
.open .dropdown-toggle.btn-tertiary {
  color: #FFFFFF;
  background-color: #549FB0;
  border-color: #549FB0; }

.btn-tertiary:active,
.btn-tertiary.active,
.open .dropdown-toggle.btn-tertiary {
  background-image: none; }

.btn-tertiary.disabled,
.btn-tertiary[disabled],
fieldset[disabled] .btn-tertiary,
.btn-tertiary.disabled:hover,
.btn-tertiary[disabled]:hover,
fieldset[disabled] .btn-tertiary:hover,
.btn-tertiary.disabled:focus,
.btn-tertiary[disabled]:focus,
fieldset[disabled] .btn-tertiary:focus,
.btn-tertiary.disabled:active,
.btn-tertiary[disabled]:active,
fieldset[disabled] .btn-tertiary:active,
.btn-tertiary.disabled.active,
.btn-tertiary[disabled].active,
fieldset[disabled] .btn-tertiary.active {
  background-color: #74CEE2;
  border-color: #549FB0; }

.btn-tertiary .badge {
  color: #74CEE2;
  background-color: #FFFFFF; }

.btn-quarternary {
  color: #FFFFFF;
  background-color: #F89838;
  border-color: #AC5F21; }

.btn-quarternary:hover,
.btn-quarternary:focus,
.btn-quarternary:active,
.btn-quarternary.active,
.open .dropdown-toggle.btn-quarternary {
  color: #FFFFFF;
  background-color: #AC5F21;
  border-color: #AC5F21; }

.btn-quarternary:active,
.btn-quarternary.active,
.open .dropdown-toggle.btn-quarternary {
  background-image: none; }

.btn-quarternary.disabled,
.btn-quarternary[disabled],
fieldset[disabled] .btn-quarternary,
.btn-quarternary.disabled:hover,
.btn-quarternary[disabled]:hover,
fieldset[disabled] .btn-quarternary:hover,
.btn-quarternary.disabled:focus,
.btn-quarternary[disabled]:focus,
fieldset[disabled] .btn-quarternary:focus,
.btn-quarternary.disabled:active,
.btn-quarternary[disabled]:active,
fieldset[disabled] .btn-quarternary:active,
.btn-quarternary.disabled.active,
.btn-quarternary[disabled].active,
fieldset[disabled] .btn-quarternary.active {
  background-color: #F89838;
  border-color: #AC5F21; }

.btn-quarternary .badge {
  color: #F89838;
  background-color: #FFFFFF; }

.btn-quinary {
  color: #FFFFFF;
  background-color: #FAED0C;
  border-color: #A39B0E; }

.btn-quinary:hover,
.btn-quinary:focus,
.btn-quinary:active,
.btn-quinary.active,
.open .dropdown-toggle.btn-quinary {
  color: #FFFFFF;
  background-color: #A39B0E;
  border-color: #A39B0E; }

.btn-quinary:active,
.btn-quinary.active,
.open .dropdown-toggle.btn-quinary {
  background-image: none; }

.btn-quinary.disabled,
.btn-quinary[disabled],
fieldset[disabled] .btn-quinary,
.btn-quinary.disabled:hover,
.btn-quinary[disabled]:hover,
fieldset[disabled] .btn-quinary:hover,
.btn-quinary.disabled:focus,
.btn-quinary[disabled]:focus,
fieldset[disabled] .btn-quinary:focus,
.btn-quinary.disabled:active,
.btn-quinary[disabled]:active,
fieldset[disabled] .btn-quinary:active,
.btn-quinary.disabled.active,
.btn-quinary[disabled].active,
fieldset[disabled] .btn-quinary.active {
  background-color: #FAED0C;
  border-color: #A39B0E; }

.btn-quinary .badge {
  color: #FAED0C;
  background-color: #FFFFFF; }

.btn-pink {
  color: #FFFFFF;
  background-color: #D61A69;
  border-color: #AB1654; }

.btn-pink:hover,
.btn-pink:focus,
.btn-pink:active,
.btn-pink.active,
.open .dropdown-toggle.btn-pink {
  color: #FFFFFF;
  background-color: #AB1654;
  border-color: #AB1654; }

.btn-pink:active,
.btn-pink.active,
.open .dropdown-toggle.btn-pink {
  background-image: none; }

.btn-pink.disabled,
.btn-pink[disabled],
fieldset[disabled] .btn-pink,
.btn-pink.disabled:hover,
.btn-pink[disabled]:hover,
fieldset[disabled] .btn-pink:hover,
.btn-pink.disabled:focus,
.btn-pink[disabled]:focus,
fieldset[disabled] .btn-pink:focus,
.btn-pink.disabled:active,
.btn-pink[disabled]:active,
fieldset[disabled] .btn-pink:active,
.btn-pink.disabled.active,
.btn-pink[disabled].active,
fieldset[disabled] .btn-pink.active {
  background-color: #D61A69;
  border-color: #AB1654; }

.btn-pink .badge {
  color: #D61A69;
  background-color: #FFFFFF; }

/* Custom Brand Coloured Panels */
.panel-main {
  border-color: #D61A69; }

.panel-main > .panel-heading {
  color: #ffffff;
  background-color: #D61A69;
  border-color: #D61A69; }

.panel-main > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #D61A69; }

.panel-main > .panel-heading .badge {
  color: #D61A69;
  background-color: #ffffff; }

.panel-main > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #D61A69; }

.panel-secondary {
  border-color: #6C1F5D; }

.panel-secondary > .panel-heading {
  color: #ffffff;
  background-color: #6C1F5D;
  border-color: #6C1F5D; }

.panel-secondary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #6C1F5D; }

.panel-secondary > .panel-heading .badge {
  color: #6C1F5D;
  background-color: #ffffff; }

.panel-secondary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #6C1F5D; }

.panel-tertiary {
  border-color: #74CEE2; }

.panel-tertiary > .panel-heading {
  color: #ffffff;
  background-color: #74CEE2;
  border-color: #74CEE2; }

.panel-tertiary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #74CEE2; }

.panel-tertiary > .panel-heading .badge {
  color: #74CEE2;
  background-color: #ffffff; }

.panel-tertiary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #74CEE2; }

.panel-quarternary {
  border-color: #F89838; }

.panel-quarternary > .panel-heading {
  color: #ffffff;
  background-color: #F89838;
  border-color: #F89838; }

.panel-quarternary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #F89838; }

.panel-quarternary > .panel-heading .badge {
  color: #F89838;
  background-color: #ffffff; }

.panel-quarternary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #F89838; }

.panel-quinary {
  border-color: #FAED0C; }

.panel-quinary > .panel-heading {
  color: #ffffff;
  background-color: #FAED0C;
  border-color: #FAED0C; }

.panel-quinary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #FAED0C; }

.panel-quinary > .panel-heading .badge {
  color: #FAED0C;
  background-color: #ffffff; }

.panel-quinary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #FAED0C; }

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #000;
  background-color: #74CEE2;
  border-color: #549FB0; }

@media (min-width: 768px) {
  .col-ms-offset-right-6 {
    margin-right: 50%; } }

@font-face {
  font-family: 'Cutive';
  src: url("../../fonts/cutive_regular-webfont.eot");
  src: url("../../fonts/cutive_regular-webfont.eot#iefix") format("embedded-opentype"), url("../../fonts/cutive_regular-webfont.woff") format("woff2"), url("../../fonts/cutive_regular-webfont.woff") format("woff"), url("../../fonts/cutive_regular-webfont.ttf") format("truetype"), url("../../fonts/cutive_regular-webfont.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Lato';
  src: url("../../fonts/lato_regular-webfont.eot");
  src: url("../../fonts/lato_regular-webfont.eot#iefix") format("embedded-opentype"), url("../../fonts/lato_regular-webfont.woff") format("woff2"), url("../../fonts/lato_regular-webfont.woff") format("woff"), url("../../fonts/lato_regular-webfont.ttf") format("truetype"), url("../../fonts/lato_regular-webfont.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Lato';
  src: url("../../fonts/lato_bold-webfont.eot");
  src: url("../../fonts/lato_bold-webfont.eot#iefix") format("embedded-opentype"), url("../../fonts/lato_bold-webfont.woff") format("woff2"), url("../../fonts/lato_bold-webfont.woff") format("woff"), url("../../fonts/lato_bold-webfont.ttf") format("truetype"), url("../../fonts/lato_bold-webfont.svg") format("svg");
  font-weight: bold;
  font-style: normal; }

/**
 * Font size helpers
 */
.font-size-8-px {
  font-size: 8px !important; }

.font-size-9-px {
  font-size: 9px !important; }

.font-size-10-px {
  font-size: 10px !important; }

.font-size-11-px {
  font-size: 11px !important; }

.font-size-12-px {
  font-size: 12px !important; }

.font-size-14-px {
  font-size: 14px !important; }

.font-size-18-px {
  font-size: 18px !important; }

.font-size-24-px {
  font-size: 24px !important; }

.font-size-25-px {
  font-size: 25px !important; }

.font-size-30-px {
  font-size: 30px !important; }

.font-size-36-px {
  font-size: 36px !important; }

/*********************************************
  :: Plugins Overrides
********************************************/
/*********************************************
  :: The partials elements
********************************************/
/*********************************************
  :: Views
********************************************/
@font-face {
  font-family: 'Lunchbox';
  src: url("../../fonts/lunchbox_w01_regular-webfont.woff") format("woff2"), url("../../fonts/lunchbox_w01_regular-webfont.woff") format("woff"), url("../../fonts/lunchbox_w01_regular-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }

.row {
  margin: 0 !important; }

img {
  vertical-align: bottom !important; }

.cap-text {
  text-transform: capitalize; }

.upper-text {
  text-transform: uppercase; }

.list-style-none {
  list-style-type: none; }

.z-i-0 {
  z-index: 0; }

.ib {
  display: inline-block !important; }

.db {
  display: block !important; }

@media (max-width: 767px) {
  .d-xs-inline-block {
    display: inline-block !important; }
  .d-xs-block {
    display: block !important; } }

.fleft {
  float: left !important; }

.fright {
  float: right !important; }

.fnone {
  float: none !important; }

.bold {
  font-weight: bold !important; }

.normal {
  font-weight: normal !important; }

.fw500 {
  font-weight: 500 !important; }

.hov-ul-none {
  text-decoration: none !important; }

.hov-t-white:hover {
  color: #fff !important; }

.lheight-normal {
  line-height: normal !important; }

.lheight-1 {
  line-height: 1 !important; }

.hov-opq {
  transition: opacity 500ms;
  opacity: 1; }

.hov-opq:hover {
  transition: opacity 500ms;
  opacity: 0.85; }

img {
  vertical-align: bottom !important; }

.text-with-image img {
  position: absolute; }

.wb-bw {
  word-break: break-word;
  overflow-wrap: break-word; }

.tunder {
  text-decoration: underline; }

.titalic {
  font-style: italic; }

.tcenter {
  text-align: center !important; }

a:hover.text-decoration-none {
  text-decoration: none; }

@media (max-width: 767px) {
  .tcenter-xs {
    text-align: center !important; } }

@media (min-width: 992px) {
  .tcenter-md {
    text-align: center !important; } }

.tleft {
  text-align: left !important; }

.tright {
  text-align: right !important; }

.tinherit {
  font-size: inherit; }

.tsmaller {
  font-size: 0.8em !important; }

.tlarger {
  font-size: 1.3em !important; }

.tlarge {
  font-size: 1.6em; }

.tgiant {
  font-size: 3.6em; }

.tshadow-dark {
  text-shadow: 0px 0px 7px #333333; }

.tlato {
  font-family: 'Lato', Arial, sans-serif; }

.tlunchbox {
  font-family: 'Lunchbox', Arial, sans-serif; }

.tmontserrat {
  font-family: 'Montserrat', Arial, sans-serif; }

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

.fa-huge {
  font-size: 2em; }

.fa-massive {
  font-size: 3em; }

.cpointer-none {
  cursor: none; }

.cpointer {
  cursor: pointer; }

.cdefault {
  cursor: default; }

.vtop {
  vertical-align: top; }

.vmiddle {
  vertical-align: middle; }

.vbottom {
  vertical-align: bottom; }

.w20px {
  width: 20px; }

.w40px {
  width: 40px !important; }

.w50px {
  width: 50px !important; }

.w100px {
  width: 100px !important; }

.w100 {
  width: 100% !important; }

.h100 {
  height: 100% !important; }

.vw100 {
  height: 100vw !important; }

.vh100 {
  height: 100vh !important; }

.mh100 {
  min-height: 100px; }

.mnw100 {
  min-width: 100px; }

.mxw50 {
  max-width: 50px; }

.mxw100 {
  max-width: 100px; }

.mxw300 {
  max-width: 300px; }

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

.mw-none {
  max-width: none !important; }

.w-auto {
  width: auto !important; }

.h-auto {
  height: auto !important; }

.pabsolute {
  position: absolute; }

.prelative {
  position: relative; }

.right-0 {
  right: 0; }

.left-0 {
  left: 0; }

.top-0 {
  top: 0; }

.bottom-0 {
  bottom: 0; }

.wspace-none {
  white-space: normal !important; }

.bg-selected {
  background-color: #999999 !important; }

.bg-white {
  background-color: #ffffff !important; }

.background-white {
  background-color: #ffffff !important; }

.background-grey-light {
  background-color: #eeeeee !important; }

.background-center {
  background-position: center !important; }

.background-cover {
  background-size: cover !important; }

.background-none {
  background-color: transparent !important;
  background-image: none !important; }

@media (max-width: 767px) {
  .background-none-xs {
    background-image: none !important; } }

.text-main {
  color: #D61A69 !important; }

.text-secondary {
  color: #6C1F5D !important; }

.text-tertiary {
  color: #74CEE2 !important; }

.text-white {
  color: #ffffff !important; }

.text-black {
  color: #000000 !important; }

.text-orange {
  color: orange; }

.brdr-t-none {
  border-top: none; }

.brdr-r-none {
  border-right: none; }

.brdr-b-none {
  border-bottom: none; }

.brdr-l-none {
  border-left: none; }

.brdr-none {
  border: none !important; }

.brdr-red {
  border: 1.5px red solid !important; }

.brdr-t-333333 {
  border-top: 1px solid #333333 !important; }

.brdr-b-ccc {
  border-bottom: 1px solid #ccc !important; }

.bor-rad10 {
  border-radius: 10%; }

.bor-rad50 {
  border-radius: 50%; }

.boxy {
  box-sizing: border-box; }

.twrap {
  white-space: normal; }

.d-table {
  display: table !important; }

.d-tcell {
  display: table-cell !important; }

.vcenter {
  vertical-align: middle !important; }

.hidden {
  display: none; }

.ohidden {
  overflow: hidden; }

.overflow-y-scroll {
  overflow-y: scroll; }

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.label-required:after {
  content: "*";
  right: 7px;
  position: absolute; }

.v-hidden {
  visibility: hidden; }

.v-visible {
  visibility: visible; }

.flex {
  display: -ms-flexbox;
  display: flex; }

.flex-center {
  -ms-flex-align: center;
  align-items: center; }

.flex-shrink-0 {
  -ms-flex-negative: 0;
  flex-shrink: 0; }

.align-items-center {
  -ms-flex-align: center;
  align-items: center; }

.f-column {
  -ms-flex-direction: column;
  flex-direction: column; }

.f-start {
  -ms-flex-align: start;
  align-items: flex-start; }

.f-end {
  -ms-flex-align: end;
  align-items: flex-end; }

.j-center {
  -ms-flex-pack: center;
  justify-content: center; }

.j-evenly {
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly; }

.f-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.f-end {
  -ms-flex-pack: end;
  justify-content: flex-end; }

.align-self-end {
  -ms-flex-item-align: end;
  align-self: flex-end; }

@media screen and (min-width: 768px) {
  .desk-flex {
    display: -ms-flexbox;
    display: flex; }
  .desk-text-right {
    text-align: right; }
  .desk-mlb {
    margin-left: 16px; }
  .desk-mrb {
    margin-right: 16px; } }

@media screen and (max-width: 767px) {
  .hide-sm {
    display: none; } }

@media screen and (max-width: 480px) {
  .hide-xs {
    display: none; } }

.ml50n {
  margin-left: -50px !important; }

.ml30n {
  margin-left: -30px !important; }

.mtbn {
  margin-top: -16px !important; }

.mlbn {
  margin-left: -16px !important; }

.mtmn {
  margin-top: -8px !important; }

.mtsn {
  margin-top: -4px !important; }

.mt1n {
  margin-top: -1px !important; }

.mbsn {
  margin-bottom: -4px !important; }

.mt0 {
  margin-top: 0px !important; }

.mr0 {
  margin-right: 0px !important; }

.mb0 {
  margin-bottom: 0px !important; }

.ml0 {
  margin-left: 0px !important; }

.mtt {
  margin-top: 2px !important; }

.mrt {
  margin-right: 2px !important; }

.mbt {
  margin-bottom: 2px !important; }

.mlt {
  margin-left: 2px !important; }

.mts {
  margin-top: 4px !important; }

.mrs {
  margin-right: 4px !important; }

.mbs {
  margin-bottom: 4px !important; }

.mls {
  margin-left: 4px !important; }

.mtm {
  margin-top: 8px !important; }

.mrm {
  margin-right: 8px !important; }

.mbm {
  margin-bottom: 8px !important; }

.mlm {
  margin-left: 8px !important; }

.mtb {
  margin-top: 16px !important; }

.mrb {
  margin-right: 16px !important; }

.mbb {
  margin-bottom: 16px !important; }

.mlb {
  margin-left: 16px !important; }

.mb20 {
  margin-bottom: 20px !important; }

.ml30 {
  margin-left: 30px !important; }

.mt30 {
  margin-top: 30px !important; }

.mr30 {
  margin-right: 30px !important; }

.mb30 {
  margin-bottom: 30px !important; }

.mt50 {
  margin-top: 50px !important; }

.mb50 {
  margin-bottom: 50px !important; }

.mr50 {
  margin-right: 50px !important; }

.mar16 {
  margin: 16px !important; }

.margin-auto {
  margin: 0 auto; }

@media screen and (max-width: 767px) {
  .mobile-mbb {
    margin-bottom: 16px; } }

.pt0 {
  padding-top: 0px !important; }

.pr0 {
  padding-right: 0px !important; }

.pb0 {
  padding-bottom: 0px !important; }

.pl0 {
  padding-left: 0px !important; }

.ptt {
  padding-top: 2px !important; }

.pbt {
  padding-bottom: 2px !important; }

.pts {
  padding-top: 4px !important; }

.prs {
  padding-right: 4px !important; }

.pbs {
  padding-bottom: 4px !important; }

.pls {
  padding-left: 4px !important; }

.ptm {
  padding-top: 8px !important; }

.prm {
  padding-right: 8px !important; }

.pbm {
  padding-bottom: 8px !important; }

.plm {
  padding-left: 8px !important; }

.ptb {
  padding-top: 16px !important; }

.prb {
  padding-right: 16px !important; }

.pbb {
  padding-bottom: 16px !important; }

.plb {
  padding-left: 16px !important; }

.ptg {
  padding-top: 30px !important; }

.plg {
  padding-left: 30px !important; }

.pbg {
  padding-bottom: 30px !important; }

.prg {
  padding-right: 30px !important; }

.pad0 {
  padding: 0 !important; }

.pad8 {
  padding: 8px !important; }

.border-top-danger {
  border-top-color: #a94442; }

.bbtn.btn-xlg {
  font-size: 2em; }

hr.base-grey {
  border-top-color: #DDDDDD; }

img.powered-by-jba-logo {
  display: inline-block;
  margin-bottom: -10px;
  width: 30px; }

img.company-logo {
  float: left;
  margin-top: -10px;
  width: 50px; }

.company-logo .badge {
  right: 15px;
  position: absolute;
  bottom: 15px; }

.role-icon {
  background-color: #000;
  border-radius: 1em;
  color: #fff;
  display: inline-block;
  font-size: 0.75em;
  margin-left: 5px;
  padding-top: 0.45em;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  top: -0.2em;
  height: 2em;
  width: 2em !important; }
  .role-icon-l, .role-icon-lr {
    background-color: #74CEE2; }
  .role-icon-tl {
    background-color: #F89838; }
  .role-icon-tl {
    background-color: #D61A69; }
  .role-icon-cp, .role-icon-cm, .role-icon-ef, .role-icon-ad {
    background-color: #6C1F5D; }

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 192dpi) {
  .android-hack-w99 {
    width: 99% !important; } }

.cropit-preview {
  background-color: #eee;
  background-size: cover;
  border: 1px solid #ccc;
  border-radius: 3px;
  left: 50%;
  margin-left: -133px;
  height: 250px;
  width: 250px; }

.cropit-preview-image-container {
  cursor: move; }

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar; }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ie10-flex1 {
    -ms-flex: 1;
    flex: 1; } }

@media screen and (-ms-high-contrast: active) and (min-width: 768px), screen and (-ms-high-contrast: none) and (min-width: 768px) {
  .ie10-desk-flex1 {
    -ms-flex: 1;
    flex: 1; } }

.margin-auto {
  margin: auto; }

.min-w-40 {
  min-width: 40%; }

.min-w-50 {
  min-width: 50%; }

.min-w-60 {
  min-width: 60%; }

@media (min-width: 576px) {
  .min-w-sm-40 {
    min-width: 40%; }
  .min-w-sm-50 {
    min-width: 50%; }
  .min-w-sm-60 {
    min-width: 60%; } }

@media (min-width: 768px) {
  .min-w-md-40 {
    min-width: 40%; }
  .min-w-md-50 {
    min-width: 50%; }
  .min-w-md-60 {
    min-width: 60%; } }

@media (min-width: 992px) {
  .min-w-lg-40 {
    min-width: 40%; }
  .min-w-lg-50 {
    min-width: 50%; }
  .min-w-lg-60 {
    min-width: 60%; } }

@media (min-width: 1200px) {
  .min-w-xl-40 {
    min-width: 40%; }
  .min-w-xl-50 {
    min-width: 50%; }
  .min-w-xl-60 {
    min-width: 60%; } }

.d-flex {
  display: -ms-flexbox;
  display: flex; }

.d-block {
  display: block; }

.d-inline-block {
  display: inline-block; }

@media (min-width: 576px) {
  .d-sm-flex {
    display: -ms-flexbox;
    display: flex; }
  .d-sm-block {
    display: block; }
  .d-sm-inline-block {
    display: inline-block; } }

@media (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox;
    display: flex; }
  .d-md-block {
    display: block; }
  .d-md-inline-block {
    display: inline-block; } }

@media (min-width: 992px) {
  .d-lg-flex {
    display: -ms-flexbox;
    display: flex; }
  .d-lg-block {
    display: block; }
  .d-lg-inline-block {
    display: inline-block; } }

@media (min-width: 1200px) {
  .d-xl-flex {
    display: -ms-flexbox;
    display: flex; }
  .d-xl-block {
    display: block; }
  .d-xl-inline-block {
    display: inline-block; } }

.pt-1 {
  padding-top: 1px; }

.pr-1 {
  padding-right: 1px; }

.pl-1 {
  padding-left: 1px; }

.pb-1 {
  padding-bottom: 1px; }

.p-1 {
  padding: 1px; }

.mt-1 {
  margin-top: 1px; }

.mr-1 {
  margin-right: 1px; }

.ml-1 {
  margin-left: 1px; }

.mb-1 {
  margin-bottom: 1px; }

.m-1 {
  margin: 1px; }

.pt-2 {
  padding-top: 2px; }

.pr-2 {
  padding-right: 2px; }

.pl-2 {
  padding-left: 2px; }

.pb-2 {
  padding-bottom: 2px; }

.p-2 {
  padding: 2px; }

.mt-2 {
  margin-top: 2px; }

.mr-2 {
  margin-right: 2px; }

.ml-2 {
  margin-left: 2px; }

.mb-2 {
  margin-bottom: 2px; }

.m-2 {
  margin: 2px; }

.pt-3 {
  padding-top: 3px; }

.pr-3 {
  padding-right: 3px; }

.pl-3 {
  padding-left: 3px; }

.pb-3 {
  padding-bottom: 3px; }

.p-3 {
  padding: 3px; }

.mt-3 {
  margin-top: 3px; }

.mr-3 {
  margin-right: 3px; }

.ml-3 {
  margin-left: 3px; }

.mb-3 {
  margin-bottom: 3px; }

.m-3 {
  margin: 3px; }

.pt-4 {
  padding-top: 4px; }

.pr-4 {
  padding-right: 4px; }

.pl-4 {
  padding-left: 4px; }

.pb-4 {
  padding-bottom: 4px; }

.p-4 {
  padding: 4px; }

.mt-4 {
  margin-top: 4px; }

.mr-4 {
  margin-right: 4px; }

.ml-4 {
  margin-left: 4px; }

.mb-4 {
  margin-bottom: 4px; }

.m-4 {
  margin: 4px; }

.pt-5 {
  padding-top: 5px; }

.pr-5 {
  padding-right: 5px; }

.pl-5 {
  padding-left: 5px; }

.pb-5 {
  padding-bottom: 5px; }

.p-5 {
  padding: 5px; }

.mt-5 {
  margin-top: 5px; }

.mr-5 {
  margin-right: 5px; }

.ml-5 {
  margin-left: 5px; }

.mb-5 {
  margin-bottom: 5px; }

.m-5 {
  margin: 5px; }

.pt-6 {
  padding-top: 6px; }

.pr-6 {
  padding-right: 6px; }

.pl-6 {
  padding-left: 6px; }

.pb-6 {
  padding-bottom: 6px; }

.p-6 {
  padding: 6px; }

.mt-6 {
  margin-top: 6px; }

.mr-6 {
  margin-right: 6px; }

.ml-6 {
  margin-left: 6px; }

.mb-6 {
  margin-bottom: 6px; }

.m-6 {
  margin: 6px; }

.pt-7 {
  padding-top: 7px; }

.pr-7 {
  padding-right: 7px; }

.pl-7 {
  padding-left: 7px; }

.pb-7 {
  padding-bottom: 7px; }

.p-7 {
  padding: 7px; }

.mt-7 {
  margin-top: 7px; }

.mr-7 {
  margin-right: 7px; }

.ml-7 {
  margin-left: 7px; }

.mb-7 {
  margin-bottom: 7px; }

.m-7 {
  margin: 7px; }

.pt-8 {
  padding-top: 8px; }

.pr-8 {
  padding-right: 8px; }

.pl-8 {
  padding-left: 8px; }

.pb-8 {
  padding-bottom: 8px; }

.p-8 {
  padding: 8px; }

.mt-8 {
  margin-top: 8px; }

.mr-8 {
  margin-right: 8px; }

.ml-8 {
  margin-left: 8px; }

.mb-8 {
  margin-bottom: 8px; }

.m-8 {
  margin: 8px; }

.pt-9 {
  padding-top: 9px; }

.pr-9 {
  padding-right: 9px; }

.pl-9 {
  padding-left: 9px; }

.pb-9 {
  padding-bottom: 9px; }

.p-9 {
  padding: 9px; }

.mt-9 {
  margin-top: 9px; }

.mr-9 {
  margin-right: 9px; }

.ml-9 {
  margin-left: 9px; }

.mb-9 {
  margin-bottom: 9px; }

.m-9 {
  margin: 9px; }

.pt-10 {
  padding-top: 10px; }

.pr-10 {
  padding-right: 10px; }

.pl-10 {
  padding-left: 10px; }

.pb-10 {
  padding-bottom: 10px; }

.p-10 {
  padding: 10px; }

.mt-10 {
  margin-top: 10px; }

.mr-10 {
  margin-right: 10px; }

.ml-10 {
  margin-left: 10px; }

.mb-10 {
  margin-bottom: 10px; }

.m-10 {
  margin: 10px; }

.pt-11 {
  padding-top: 11px; }

.pr-11 {
  padding-right: 11px; }

.pl-11 {
  padding-left: 11px; }

.pb-11 {
  padding-bottom: 11px; }

.p-11 {
  padding: 11px; }

.mt-11 {
  margin-top: 11px; }

.mr-11 {
  margin-right: 11px; }

.ml-11 {
  margin-left: 11px; }

.mb-11 {
  margin-bottom: 11px; }

.m-11 {
  margin: 11px; }

.pt-12 {
  padding-top: 12px; }

.pr-12 {
  padding-right: 12px; }

.pl-12 {
  padding-left: 12px; }

.pb-12 {
  padding-bottom: 12px; }

.p-12 {
  padding: 12px; }

.mt-12 {
  margin-top: 12px; }

.mr-12 {
  margin-right: 12px; }

.ml-12 {
  margin-left: 12px; }

.mb-12 {
  margin-bottom: 12px; }

.m-12 {
  margin: 12px; }

.pt-13 {
  padding-top: 13px; }

.pr-13 {
  padding-right: 13px; }

.pl-13 {
  padding-left: 13px; }

.pb-13 {
  padding-bottom: 13px; }

.p-13 {
  padding: 13px; }

.mt-13 {
  margin-top: 13px; }

.mr-13 {
  margin-right: 13px; }

.ml-13 {
  margin-left: 13px; }

.mb-13 {
  margin-bottom: 13px; }

.m-13 {
  margin: 13px; }

.pt-14 {
  padding-top: 14px; }

.pr-14 {
  padding-right: 14px; }

.pl-14 {
  padding-left: 14px; }

.pb-14 {
  padding-bottom: 14px; }

.p-14 {
  padding: 14px; }

.mt-14 {
  margin-top: 14px; }

.mr-14 {
  margin-right: 14px; }

.ml-14 {
  margin-left: 14px; }

.mb-14 {
  margin-bottom: 14px; }

.m-14 {
  margin: 14px; }

.pt-15 {
  padding-top: 15px; }

.pr-15 {
  padding-right: 15px; }

.pl-15 {
  padding-left: 15px; }

.pb-15 {
  padding-bottom: 15px; }

.p-15 {
  padding: 15px; }

.mt-15 {
  margin-top: 15px; }

.mr-15 {
  margin-right: 15px; }

.ml-15 {
  margin-left: 15px; }

.mb-15 {
  margin-bottom: 15px; }

.m-15 {
  margin: 15px; }

.pt-16 {
  padding-top: 16px; }

.pr-16 {
  padding-right: 16px; }

.pl-16 {
  padding-left: 16px; }

.pb-16 {
  padding-bottom: 16px; }

.p-16 {
  padding: 16px; }

.mt-16 {
  margin-top: 16px; }

.mr-16 {
  margin-right: 16px; }

.ml-16 {
  margin-left: 16px; }

.mb-16 {
  margin-bottom: 16px; }

.m-16 {
  margin: 16px; }

.pt-17 {
  padding-top: 17px; }

.pr-17 {
  padding-right: 17px; }

.pl-17 {
  padding-left: 17px; }

.pb-17 {
  padding-bottom: 17px; }

.p-17 {
  padding: 17px; }

.mt-17 {
  margin-top: 17px; }

.mr-17 {
  margin-right: 17px; }

.ml-17 {
  margin-left: 17px; }

.mb-17 {
  margin-bottom: 17px; }

.m-17 {
  margin: 17px; }

.pt-18 {
  padding-top: 18px; }

.pr-18 {
  padding-right: 18px; }

.pl-18 {
  padding-left: 18px; }

.pb-18 {
  padding-bottom: 18px; }

.p-18 {
  padding: 18px; }

.mt-18 {
  margin-top: 18px; }

.mr-18 {
  margin-right: 18px; }

.ml-18 {
  margin-left: 18px; }

.mb-18 {
  margin-bottom: 18px; }

.m-18 {
  margin: 18px; }

.pt-19 {
  padding-top: 19px; }

.pr-19 {
  padding-right: 19px; }

.pl-19 {
  padding-left: 19px; }

.pb-19 {
  padding-bottom: 19px; }

.p-19 {
  padding: 19px; }

.mt-19 {
  margin-top: 19px; }

.mr-19 {
  margin-right: 19px; }

.ml-19 {
  margin-left: 19px; }

.mb-19 {
  margin-bottom: 19px; }

.m-19 {
  margin: 19px; }

.pt-20 {
  padding-top: 20px; }

.pr-20 {
  padding-right: 20px; }

.pl-20 {
  padding-left: 20px; }

.pb-20 {
  padding-bottom: 20px; }

.p-20 {
  padding: 20px; }

.mt-20 {
  margin-top: 20px; }

.mr-20 {
  margin-right: 20px; }

.ml-20 {
  margin-left: 20px; }

.mb-20 {
  margin-bottom: 20px; }

.m-20 {
  margin: 20px; }

.pt-5 {
  padding-top: 5px; }

.pr-5 {
  padding-right: 5px; }

.pl-5 {
  padding-left: 5px; }

.pb-5 {
  padding-bottom: 5px; }

.p-5 {
  padding: 5px; }

.mt-5 {
  margin-top: 5px; }

.mr-5 {
  margin-right: 5px; }

.ml-5 {
  margin-left: 5px; }

.mb-5 {
  margin-bottom: 5px; }

.m-5 {
  margin: 5px; }

.pt-10 {
  padding-top: 10px; }

.pr-10 {
  padding-right: 10px; }

.pl-10 {
  padding-left: 10px; }

.pb-10 {
  padding-bottom: 10px; }

.p-10 {
  padding: 10px; }

.mt-10 {
  margin-top: 10px; }

.mr-10 {
  margin-right: 10px; }

.ml-10 {
  margin-left: 10px; }

.mb-10 {
  margin-bottom: 10px; }

.m-10 {
  margin: 10px; }

.pt-15 {
  padding-top: 15px; }

.pr-15 {
  padding-right: 15px; }

.pl-15 {
  padding-left: 15px; }

.pb-15 {
  padding-bottom: 15px; }

.p-15 {
  padding: 15px; }

.mt-15 {
  margin-top: 15px; }

.mr-15 {
  margin-right: 15px; }

.ml-15 {
  margin-left: 15px; }

.mb-15 {
  margin-bottom: 15px; }

.m-15 {
  margin: 15px; }

.pt-20 {
  padding-top: 20px; }

.pr-20 {
  padding-right: 20px; }

.pl-20 {
  padding-left: 20px; }

.pb-20 {
  padding-bottom: 20px; }

.p-20 {
  padding: 20px; }

.mt-20 {
  margin-top: 20px; }

.mr-20 {
  margin-right: 20px; }

.ml-20 {
  margin-left: 20px; }

.mb-20 {
  margin-bottom: 20px; }

.m-20 {
  margin: 20px; }

.pt-25 {
  padding-top: 25px; }

.pr-25 {
  padding-right: 25px; }

.pl-25 {
  padding-left: 25px; }

.pb-25 {
  padding-bottom: 25px; }

.p-25 {
  padding: 25px; }

.mt-25 {
  margin-top: 25px; }

.mr-25 {
  margin-right: 25px; }

.ml-25 {
  margin-left: 25px; }

.mb-25 {
  margin-bottom: 25px; }

.m-25 {
  margin: 25px; }

.pt-30 {
  padding-top: 30px; }

.pr-30 {
  padding-right: 30px; }

.pl-30 {
  padding-left: 30px; }

.pb-30 {
  padding-bottom: 30px; }

.p-30 {
  padding: 30px; }

.mt-30 {
  margin-top: 30px; }

.mr-30 {
  margin-right: 30px; }

.ml-30 {
  margin-left: 30px; }

.mb-30 {
  margin-bottom: 30px; }

.m-30 {
  margin: 30px; }

.pt-35 {
  padding-top: 35px; }

.pr-35 {
  padding-right: 35px; }

.pl-35 {
  padding-left: 35px; }

.pb-35 {
  padding-bottom: 35px; }

.p-35 {
  padding: 35px; }

.mt-35 {
  margin-top: 35px; }

.mr-35 {
  margin-right: 35px; }

.ml-35 {
  margin-left: 35px; }

.mb-35 {
  margin-bottom: 35px; }

.m-35 {
  margin: 35px; }

.pt-40 {
  padding-top: 40px; }

.pr-40 {
  padding-right: 40px; }

.pl-40 {
  padding-left: 40px; }

.pb-40 {
  padding-bottom: 40px; }

.p-40 {
  padding: 40px; }

.mt-40 {
  margin-top: 40px; }

.mr-40 {
  margin-right: 40px; }

.ml-40 {
  margin-left: 40px; }

.mb-40 {
  margin-bottom: 40px; }

.m-40 {
  margin: 40px; }

.pt-45 {
  padding-top: 45px; }

.pr-45 {
  padding-right: 45px; }

.pl-45 {
  padding-left: 45px; }

.pb-45 {
  padding-bottom: 45px; }

.p-45 {
  padding: 45px; }

.mt-45 {
  margin-top: 45px; }

.mr-45 {
  margin-right: 45px; }

.ml-45 {
  margin-left: 45px; }

.mb-45 {
  margin-bottom: 45px; }

.m-45 {
  margin: 45px; }

.pt-50 {
  padding-top: 50px; }

.pr-50 {
  padding-right: 50px; }

.pl-50 {
  padding-left: 50px; }

.pb-50 {
  padding-bottom: 50px; }

.p-50 {
  padding: 50px; }

.mt-50 {
  margin-top: 50px; }

.mr-50 {
  margin-right: 50px; }

.ml-50 {
  margin-left: 50px; }

.mb-50 {
  margin-bottom: 50px; }

.m-50 {
  margin: 50px; }

.pt-55 {
  padding-top: 55px; }

.pr-55 {
  padding-right: 55px; }

.pl-55 {
  padding-left: 55px; }

.pb-55 {
  padding-bottom: 55px; }

.p-55 {
  padding: 55px; }

.mt-55 {
  margin-top: 55px; }

.mr-55 {
  margin-right: 55px; }

.ml-55 {
  margin-left: 55px; }

.mb-55 {
  margin-bottom: 55px; }

.m-55 {
  margin: 55px; }

.pt-60 {
  padding-top: 60px; }

.pr-60 {
  padding-right: 60px; }

.pl-60 {
  padding-left: 60px; }

.pb-60 {
  padding-bottom: 60px; }

.p-60 {
  padding: 60px; }

.mt-60 {
  margin-top: 60px; }

.mr-60 {
  margin-right: 60px; }

.ml-60 {
  margin-left: 60px; }

.mb-60 {
  margin-bottom: 60px; }

.m-60 {
  margin: 60px; }

.pt-65 {
  padding-top: 65px; }

.pr-65 {
  padding-right: 65px; }

.pl-65 {
  padding-left: 65px; }

.pb-65 {
  padding-bottom: 65px; }

.p-65 {
  padding: 65px; }

.mt-65 {
  margin-top: 65px; }

.mr-65 {
  margin-right: 65px; }

.ml-65 {
  margin-left: 65px; }

.mb-65 {
  margin-bottom: 65px; }

.m-65 {
  margin: 65px; }

.pt-70 {
  padding-top: 70px; }

.pr-70 {
  padding-right: 70px; }

.pl-70 {
  padding-left: 70px; }

.pb-70 {
  padding-bottom: 70px; }

.p-70 {
  padding: 70px; }

.mt-70 {
  margin-top: 70px; }

.mr-70 {
  margin-right: 70px; }

.ml-70 {
  margin-left: 70px; }

.mb-70 {
  margin-bottom: 70px; }

.m-70 {
  margin: 70px; }

.pt-75 {
  padding-top: 75px; }

.pr-75 {
  padding-right: 75px; }

.pl-75 {
  padding-left: 75px; }

.pb-75 {
  padding-bottom: 75px; }

.p-75 {
  padding: 75px; }

.mt-75 {
  margin-top: 75px; }

.mr-75 {
  margin-right: 75px; }

.ml-75 {
  margin-left: 75px; }

.mb-75 {
  margin-bottom: 75px; }

.m-75 {
  margin: 75px; }

.pt-80 {
  padding-top: 80px; }

.pr-80 {
  padding-right: 80px; }

.pl-80 {
  padding-left: 80px; }

.pb-80 {
  padding-bottom: 80px; }

.p-80 {
  padding: 80px; }

.mt-80 {
  margin-top: 80px; }

.mr-80 {
  margin-right: 80px; }

.ml-80 {
  margin-left: 80px; }

.mb-80 {
  margin-bottom: 80px; }

.m-80 {
  margin: 80px; }

.pt-85 {
  padding-top: 85px; }

.pr-85 {
  padding-right: 85px; }

.pl-85 {
  padding-left: 85px; }

.pb-85 {
  padding-bottom: 85px; }

.p-85 {
  padding: 85px; }

.mt-85 {
  margin-top: 85px; }

.mr-85 {
  margin-right: 85px; }

.ml-85 {
  margin-left: 85px; }

.mb-85 {
  margin-bottom: 85px; }

.m-85 {
  margin: 85px; }

.pt-90 {
  padding-top: 90px; }

.pr-90 {
  padding-right: 90px; }

.pl-90 {
  padding-left: 90px; }

.pb-90 {
  padding-bottom: 90px; }

.p-90 {
  padding: 90px; }

.mt-90 {
  margin-top: 90px; }

.mr-90 {
  margin-right: 90px; }

.ml-90 {
  margin-left: 90px; }

.mb-90 {
  margin-bottom: 90px; }

.m-90 {
  margin: 90px; }

.pt-95 {
  padding-top: 95px; }

.pr-95 {
  padding-right: 95px; }

.pl-95 {
  padding-left: 95px; }

.pb-95 {
  padding-bottom: 95px; }

.p-95 {
  padding: 95px; }

.mt-95 {
  margin-top: 95px; }

.mr-95 {
  margin-right: 95px; }

.ml-95 {
  margin-left: 95px; }

.mb-95 {
  margin-bottom: 95px; }

.m-95 {
  margin: 95px; }

.pt-100 {
  padding-top: 100px; }

.pr-100 {
  padding-right: 100px; }

.pl-100 {
  padding-left: 100px; }

.pb-100 {
  padding-bottom: 100px; }

.p-100 {
  padding: 100px; }

.mt-100 {
  margin-top: 100px; }

.mr-100 {
  margin-right: 100px; }

.ml-100 {
  margin-left: 100px; }

.mb-100 {
  margin-bottom: 100px; }

.m-100 {
  margin: 100px; }

.pt-105 {
  padding-top: 105px; }

.pr-105 {
  padding-right: 105px; }

.pl-105 {
  padding-left: 105px; }

.pb-105 {
  padding-bottom: 105px; }

.p-105 {
  padding: 105px; }

.mt-105 {
  margin-top: 105px; }

.mr-105 {
  margin-right: 105px; }

.ml-105 {
  margin-left: 105px; }

.mb-105 {
  margin-bottom: 105px; }

.m-105 {
  margin: 105px; }

.pt-110 {
  padding-top: 110px; }

.pr-110 {
  padding-right: 110px; }

.pl-110 {
  padding-left: 110px; }

.pb-110 {
  padding-bottom: 110px; }

.p-110 {
  padding: 110px; }

.mt-110 {
  margin-top: 110px; }

.mr-110 {
  margin-right: 110px; }

.ml-110 {
  margin-left: 110px; }

.mb-110 {
  margin-bottom: 110px; }

.m-110 {
  margin: 110px; }

.pt-115 {
  padding-top: 115px; }

.pr-115 {
  padding-right: 115px; }

.pl-115 {
  padding-left: 115px; }

.pb-115 {
  padding-bottom: 115px; }

.p-115 {
  padding: 115px; }

.mt-115 {
  margin-top: 115px; }

.mr-115 {
  margin-right: 115px; }

.ml-115 {
  margin-left: 115px; }

.mb-115 {
  margin-bottom: 115px; }

.m-115 {
  margin: 115px; }

.pt-120 {
  padding-top: 120px; }

.pr-120 {
  padding-right: 120px; }

.pl-120 {
  padding-left: 120px; }

.pb-120 {
  padding-bottom: 120px; }

.p-120 {
  padding: 120px; }

.mt-120 {
  margin-top: 120px; }

.mr-120 {
  margin-right: 120px; }

.ml-120 {
  margin-left: 120px; }

.mb-120 {
  margin-bottom: 120px; }

.m-120 {
  margin: 120px; }

.pt-125 {
  padding-top: 125px; }

.pr-125 {
  padding-right: 125px; }

.pl-125 {
  padding-left: 125px; }

.pb-125 {
  padding-bottom: 125px; }

.p-125 {
  padding: 125px; }

.mt-125 {
  margin-top: 125px; }

.mr-125 {
  margin-right: 125px; }

.ml-125 {
  margin-left: 125px; }

.mb-125 {
  margin-bottom: 125px; }

.m-125 {
  margin: 125px; }

.pt-130 {
  padding-top: 130px; }

.pr-130 {
  padding-right: 130px; }

.pl-130 {
  padding-left: 130px; }

.pb-130 {
  padding-bottom: 130px; }

.p-130 {
  padding: 130px; }

.mt-130 {
  margin-top: 130px; }

.mr-130 {
  margin-right: 130px; }

.ml-130 {
  margin-left: 130px; }

.mb-130 {
  margin-bottom: 130px; }

.m-130 {
  margin: 130px; }

.pt-135 {
  padding-top: 135px; }

.pr-135 {
  padding-right: 135px; }

.pl-135 {
  padding-left: 135px; }

.pb-135 {
  padding-bottom: 135px; }

.p-135 {
  padding: 135px; }

.mt-135 {
  margin-top: 135px; }

.mr-135 {
  margin-right: 135px; }

.ml-135 {
  margin-left: 135px; }

.mb-135 {
  margin-bottom: 135px; }

.m-135 {
  margin: 135px; }

.pt-140 {
  padding-top: 140px; }

.pr-140 {
  padding-right: 140px; }

.pl-140 {
  padding-left: 140px; }

.pb-140 {
  padding-bottom: 140px; }

.p-140 {
  padding: 140px; }

.mt-140 {
  margin-top: 140px; }

.mr-140 {
  margin-right: 140px; }

.ml-140 {
  margin-left: 140px; }

.mb-140 {
  margin-bottom: 140px; }

.m-140 {
  margin: 140px; }

.pt-145 {
  padding-top: 145px; }

.pr-145 {
  padding-right: 145px; }

.pl-145 {
  padding-left: 145px; }

.pb-145 {
  padding-bottom: 145px; }

.p-145 {
  padding: 145px; }

.mt-145 {
  margin-top: 145px; }

.mr-145 {
  margin-right: 145px; }

.ml-145 {
  margin-left: 145px; }

.mb-145 {
  margin-bottom: 145px; }

.m-145 {
  margin: 145px; }

.pt-150 {
  padding-top: 150px; }

.pr-150 {
  padding-right: 150px; }

.pl-150 {
  padding-left: 150px; }

.pb-150 {
  padding-bottom: 150px; }

.p-150 {
  padding: 150px; }

.mt-150 {
  margin-top: 150px; }

.mr-150 {
  margin-right: 150px; }

.ml-150 {
  margin-left: 150px; }

.mb-150 {
  margin-bottom: 150px; }

.m-150 {
  margin: 150px; }

.pt-155 {
  padding-top: 155px; }

.pr-155 {
  padding-right: 155px; }

.pl-155 {
  padding-left: 155px; }

.pb-155 {
  padding-bottom: 155px; }

.p-155 {
  padding: 155px; }

.mt-155 {
  margin-top: 155px; }

.mr-155 {
  margin-right: 155px; }

.ml-155 {
  margin-left: 155px; }

.mb-155 {
  margin-bottom: 155px; }

.m-155 {
  margin: 155px; }

.pt-160 {
  padding-top: 160px; }

.pr-160 {
  padding-right: 160px; }

.pl-160 {
  padding-left: 160px; }

.pb-160 {
  padding-bottom: 160px; }

.p-160 {
  padding: 160px; }

.mt-160 {
  margin-top: 160px; }

.mr-160 {
  margin-right: 160px; }

.ml-160 {
  margin-left: 160px; }

.mb-160 {
  margin-bottom: 160px; }

.m-160 {
  margin: 160px; }

.pt-165 {
  padding-top: 165px; }

.pr-165 {
  padding-right: 165px; }

.pl-165 {
  padding-left: 165px; }

.pb-165 {
  padding-bottom: 165px; }

.p-165 {
  padding: 165px; }

.mt-165 {
  margin-top: 165px; }

.mr-165 {
  margin-right: 165px; }

.ml-165 {
  margin-left: 165px; }

.mb-165 {
  margin-bottom: 165px; }

.m-165 {
  margin: 165px; }

.pt-170 {
  padding-top: 170px; }

.pr-170 {
  padding-right: 170px; }

.pl-170 {
  padding-left: 170px; }

.pb-170 {
  padding-bottom: 170px; }

.p-170 {
  padding: 170px; }

.mt-170 {
  margin-top: 170px; }

.mr-170 {
  margin-right: 170px; }

.ml-170 {
  margin-left: 170px; }

.mb-170 {
  margin-bottom: 170px; }

.m-170 {
  margin: 170px; }

.pt-175 {
  padding-top: 175px; }

.pr-175 {
  padding-right: 175px; }

.pl-175 {
  padding-left: 175px; }

.pb-175 {
  padding-bottom: 175px; }

.p-175 {
  padding: 175px; }

.mt-175 {
  margin-top: 175px; }

.mr-175 {
  margin-right: 175px; }

.ml-175 {
  margin-left: 175px; }

.mb-175 {
  margin-bottom: 175px; }

.m-175 {
  margin: 175px; }

.pt-180 {
  padding-top: 180px; }

.pr-180 {
  padding-right: 180px; }

.pl-180 {
  padding-left: 180px; }

.pb-180 {
  padding-bottom: 180px; }

.p-180 {
  padding: 180px; }

.mt-180 {
  margin-top: 180px; }

.mr-180 {
  margin-right: 180px; }

.ml-180 {
  margin-left: 180px; }

.mb-180 {
  margin-bottom: 180px; }

.m-180 {
  margin: 180px; }

.pt-185 {
  padding-top: 185px; }

.pr-185 {
  padding-right: 185px; }

.pl-185 {
  padding-left: 185px; }

.pb-185 {
  padding-bottom: 185px; }

.p-185 {
  padding: 185px; }

.mt-185 {
  margin-top: 185px; }

.mr-185 {
  margin-right: 185px; }

.ml-185 {
  margin-left: 185px; }

.mb-185 {
  margin-bottom: 185px; }

.m-185 {
  margin: 185px; }

.pt-190 {
  padding-top: 190px; }

.pr-190 {
  padding-right: 190px; }

.pl-190 {
  padding-left: 190px; }

.pb-190 {
  padding-bottom: 190px; }

.p-190 {
  padding: 190px; }

.mt-190 {
  margin-top: 190px; }

.mr-190 {
  margin-right: 190px; }

.ml-190 {
  margin-left: 190px; }

.mb-190 {
  margin-bottom: 190px; }

.m-190 {
  margin: 190px; }

.pt-195 {
  padding-top: 195px; }

.pr-195 {
  padding-right: 195px; }

.pl-195 {
  padding-left: 195px; }

.pb-195 {
  padding-bottom: 195px; }

.p-195 {
  padding: 195px; }

.mt-195 {
  margin-top: 195px; }

.mr-195 {
  margin-right: 195px; }

.ml-195 {
  margin-left: 195px; }

.mb-195 {
  margin-bottom: 195px; }

.m-195 {
  margin: 195px; }

.pt-200 {
  padding-top: 200px; }

.pr-200 {
  padding-right: 200px; }

.pl-200 {
  padding-left: 200px; }

.pb-200 {
  padding-bottom: 200px; }

.p-200 {
  padding: 200px; }

.mt-200 {
  margin-top: 200px; }

.mr-200 {
  margin-right: 200px; }

.ml-200 {
  margin-left: 200px; }

.mb-200 {
  margin-bottom: 200px; }

.m-200 {
  margin: 200px; }

.pt-205 {
  padding-top: 205px; }

.pr-205 {
  padding-right: 205px; }

.pl-205 {
  padding-left: 205px; }

.pb-205 {
  padding-bottom: 205px; }

.p-205 {
  padding: 205px; }

.mt-205 {
  margin-top: 205px; }

.mr-205 {
  margin-right: 205px; }

.ml-205 {
  margin-left: 205px; }

.mb-205 {
  margin-bottom: 205px; }

.m-205 {
  margin: 205px; }

.pt-210 {
  padding-top: 210px; }

.pr-210 {
  padding-right: 210px; }

.pl-210 {
  padding-left: 210px; }

.pb-210 {
  padding-bottom: 210px; }

.p-210 {
  padding: 210px; }

.mt-210 {
  margin-top: 210px; }

.mr-210 {
  margin-right: 210px; }

.ml-210 {
  margin-left: 210px; }

.mb-210 {
  margin-bottom: 210px; }

.m-210 {
  margin: 210px; }

.pt-215 {
  padding-top: 215px; }

.pr-215 {
  padding-right: 215px; }

.pl-215 {
  padding-left: 215px; }

.pb-215 {
  padding-bottom: 215px; }

.p-215 {
  padding: 215px; }

.mt-215 {
  margin-top: 215px; }

.mr-215 {
  margin-right: 215px; }

.ml-215 {
  margin-left: 215px; }

.mb-215 {
  margin-bottom: 215px; }

.m-215 {
  margin: 215px; }

.pt-220 {
  padding-top: 220px; }

.pr-220 {
  padding-right: 220px; }

.pl-220 {
  padding-left: 220px; }

.pb-220 {
  padding-bottom: 220px; }

.p-220 {
  padding: 220px; }

.mt-220 {
  margin-top: 220px; }

.mr-220 {
  margin-right: 220px; }

.ml-220 {
  margin-left: 220px; }

.mb-220 {
  margin-bottom: 220px; }

.m-220 {
  margin: 220px; }

.pt-225 {
  padding-top: 225px; }

.pr-225 {
  padding-right: 225px; }

.pl-225 {
  padding-left: 225px; }

.pb-225 {
  padding-bottom: 225px; }

.p-225 {
  padding: 225px; }

.mt-225 {
  margin-top: 225px; }

.mr-225 {
  margin-right: 225px; }

.ml-225 {
  margin-left: 225px; }

.mb-225 {
  margin-bottom: 225px; }

.m-225 {
  margin: 225px; }

.pt-230 {
  padding-top: 230px; }

.pr-230 {
  padding-right: 230px; }

.pl-230 {
  padding-left: 230px; }

.pb-230 {
  padding-bottom: 230px; }

.p-230 {
  padding: 230px; }

.mt-230 {
  margin-top: 230px; }

.mr-230 {
  margin-right: 230px; }

.ml-230 {
  margin-left: 230px; }

.mb-230 {
  margin-bottom: 230px; }

.m-230 {
  margin: 230px; }

.pt-235 {
  padding-top: 235px; }

.pr-235 {
  padding-right: 235px; }

.pl-235 {
  padding-left: 235px; }

.pb-235 {
  padding-bottom: 235px; }

.p-235 {
  padding: 235px; }

.mt-235 {
  margin-top: 235px; }

.mr-235 {
  margin-right: 235px; }

.ml-235 {
  margin-left: 235px; }

.mb-235 {
  margin-bottom: 235px; }

.m-235 {
  margin: 235px; }

.pt-240 {
  padding-top: 240px; }

.pr-240 {
  padding-right: 240px; }

.pl-240 {
  padding-left: 240px; }

.pb-240 {
  padding-bottom: 240px; }

.p-240 {
  padding: 240px; }

.mt-240 {
  margin-top: 240px; }

.mr-240 {
  margin-right: 240px; }

.ml-240 {
  margin-left: 240px; }

.mb-240 {
  margin-bottom: 240px; }

.m-240 {
  margin: 240px; }

.pt-245 {
  padding-top: 245px; }

.pr-245 {
  padding-right: 245px; }

.pl-245 {
  padding-left: 245px; }

.pb-245 {
  padding-bottom: 245px; }

.p-245 {
  padding: 245px; }

.mt-245 {
  margin-top: 245px; }

.mr-245 {
  margin-right: 245px; }

.ml-245 {
  margin-left: 245px; }

.mb-245 {
  margin-bottom: 245px; }

.m-245 {
  margin: 245px; }

.pt-250 {
  padding-top: 250px; }

.pr-250 {
  padding-right: 250px; }

.pl-250 {
  padding-left: 250px; }

.pb-250 {
  padding-bottom: 250px; }

.p-250 {
  padding: 250px; }

.mt-250 {
  margin-top: 250px; }

.mr-250 {
  margin-right: 250px; }

.ml-250 {
  margin-left: 250px; }

.mb-250 {
  margin-bottom: 250px; }

.m-250 {
  margin: 250px; }

.pt-255 {
  padding-top: 255px; }

.pr-255 {
  padding-right: 255px; }

.pl-255 {
  padding-left: 255px; }

.pb-255 {
  padding-bottom: 255px; }

.p-255 {
  padding: 255px; }

.mt-255 {
  margin-top: 255px; }

.mr-255 {
  margin-right: 255px; }

.ml-255 {
  margin-left: 255px; }

.mb-255 {
  margin-bottom: 255px; }

.m-255 {
  margin: 255px; }

.pt-260 {
  padding-top: 260px; }

.pr-260 {
  padding-right: 260px; }

.pl-260 {
  padding-left: 260px; }

.pb-260 {
  padding-bottom: 260px; }

.p-260 {
  padding: 260px; }

.mt-260 {
  margin-top: 260px; }

.mr-260 {
  margin-right: 260px; }

.ml-260 {
  margin-left: 260px; }

.mb-260 {
  margin-bottom: 260px; }

.m-260 {
  margin: 260px; }

.pt-265 {
  padding-top: 265px; }

.pr-265 {
  padding-right: 265px; }

.pl-265 {
  padding-left: 265px; }

.pb-265 {
  padding-bottom: 265px; }

.p-265 {
  padding: 265px; }

.mt-265 {
  margin-top: 265px; }

.mr-265 {
  margin-right: 265px; }

.ml-265 {
  margin-left: 265px; }

.mb-265 {
  margin-bottom: 265px; }

.m-265 {
  margin: 265px; }

.pt-270 {
  padding-top: 270px; }

.pr-270 {
  padding-right: 270px; }

.pl-270 {
  padding-left: 270px; }

.pb-270 {
  padding-bottom: 270px; }

.p-270 {
  padding: 270px; }

.mt-270 {
  margin-top: 270px; }

.mr-270 {
  margin-right: 270px; }

.ml-270 {
  margin-left: 270px; }

.mb-270 {
  margin-bottom: 270px; }

.m-270 {
  margin: 270px; }

.pt-275 {
  padding-top: 275px; }

.pr-275 {
  padding-right: 275px; }

.pl-275 {
  padding-left: 275px; }

.pb-275 {
  padding-bottom: 275px; }

.p-275 {
  padding: 275px; }

.mt-275 {
  margin-top: 275px; }

.mr-275 {
  margin-right: 275px; }

.ml-275 {
  margin-left: 275px; }

.mb-275 {
  margin-bottom: 275px; }

.m-275 {
  margin: 275px; }

.pt-280 {
  padding-top: 280px; }

.pr-280 {
  padding-right: 280px; }

.pl-280 {
  padding-left: 280px; }

.pb-280 {
  padding-bottom: 280px; }

.p-280 {
  padding: 280px; }

.mt-280 {
  margin-top: 280px; }

.mr-280 {
  margin-right: 280px; }

.ml-280 {
  margin-left: 280px; }

.mb-280 {
  margin-bottom: 280px; }

.m-280 {
  margin: 280px; }

.pt-285 {
  padding-top: 285px; }

.pr-285 {
  padding-right: 285px; }

.pl-285 {
  padding-left: 285px; }

.pb-285 {
  padding-bottom: 285px; }

.p-285 {
  padding: 285px; }

.mt-285 {
  margin-top: 285px; }

.mr-285 {
  margin-right: 285px; }

.ml-285 {
  margin-left: 285px; }

.mb-285 {
  margin-bottom: 285px; }

.m-285 {
  margin: 285px; }

.pt-290 {
  padding-top: 290px; }

.pr-290 {
  padding-right: 290px; }

.pl-290 {
  padding-left: 290px; }

.pb-290 {
  padding-bottom: 290px; }

.p-290 {
  padding: 290px; }

.mt-290 {
  margin-top: 290px; }

.mr-290 {
  margin-right: 290px; }

.ml-290 {
  margin-left: 290px; }

.mb-290 {
  margin-bottom: 290px; }

.m-290 {
  margin: 290px; }

.pt-295 {
  padding-top: 295px; }

.pr-295 {
  padding-right: 295px; }

.pl-295 {
  padding-left: 295px; }

.pb-295 {
  padding-bottom: 295px; }

.p-295 {
  padding: 295px; }

.mt-295 {
  margin-top: 295px; }

.mr-295 {
  margin-right: 295px; }

.ml-295 {
  margin-left: 295px; }

.mb-295 {
  margin-bottom: 295px; }

.m-295 {
  margin: 295px; }

.pt-300 {
  padding-top: 300px; }

.pr-300 {
  padding-right: 300px; }

.pl-300 {
  padding-left: 300px; }

.pb-300 {
  padding-bottom: 300px; }

.p-300 {
  padding: 300px; }

.mt-300 {
  margin-top: 300px; }

.mr-300 {
  margin-right: 300px; }

.ml-300 {
  margin-left: 300px; }

.mb-300 {
  margin-bottom: 300px; }

.m-300 {
  margin: 300px; }

.pt-305 {
  padding-top: 305px; }

.pr-305 {
  padding-right: 305px; }

.pl-305 {
  padding-left: 305px; }

.pb-305 {
  padding-bottom: 305px; }

.p-305 {
  padding: 305px; }

.mt-305 {
  margin-top: 305px; }

.mr-305 {
  margin-right: 305px; }

.ml-305 {
  margin-left: 305px; }

.mb-305 {
  margin-bottom: 305px; }

.m-305 {
  margin: 305px; }

.pt-310 {
  padding-top: 310px; }

.pr-310 {
  padding-right: 310px; }

.pl-310 {
  padding-left: 310px; }

.pb-310 {
  padding-bottom: 310px; }

.p-310 {
  padding: 310px; }

.mt-310 {
  margin-top: 310px; }

.mr-310 {
  margin-right: 310px; }

.ml-310 {
  margin-left: 310px; }

.mb-310 {
  margin-bottom: 310px; }

.m-310 {
  margin: 310px; }

.pt-315 {
  padding-top: 315px; }

.pr-315 {
  padding-right: 315px; }

.pl-315 {
  padding-left: 315px; }

.pb-315 {
  padding-bottom: 315px; }

.p-315 {
  padding: 315px; }

.mt-315 {
  margin-top: 315px; }

.mr-315 {
  margin-right: 315px; }

.ml-315 {
  margin-left: 315px; }

.mb-315 {
  margin-bottom: 315px; }

.m-315 {
  margin: 315px; }

.pt-320 {
  padding-top: 320px; }

.pr-320 {
  padding-right: 320px; }

.pl-320 {
  padding-left: 320px; }

.pb-320 {
  padding-bottom: 320px; }

.p-320 {
  padding: 320px; }

.mt-320 {
  margin-top: 320px; }

.mr-320 {
  margin-right: 320px; }

.ml-320 {
  margin-left: 320px; }

.mb-320 {
  margin-bottom: 320px; }

.m-320 {
  margin: 320px; }

.pt-325 {
  padding-top: 325px; }

.pr-325 {
  padding-right: 325px; }

.pl-325 {
  padding-left: 325px; }

.pb-325 {
  padding-bottom: 325px; }

.p-325 {
  padding: 325px; }

.mt-325 {
  margin-top: 325px; }

.mr-325 {
  margin-right: 325px; }

.ml-325 {
  margin-left: 325px; }

.mb-325 {
  margin-bottom: 325px; }

.m-325 {
  margin: 325px; }

.pt-330 {
  padding-top: 330px; }

.pr-330 {
  padding-right: 330px; }

.pl-330 {
  padding-left: 330px; }

.pb-330 {
  padding-bottom: 330px; }

.p-330 {
  padding: 330px; }

.mt-330 {
  margin-top: 330px; }

.mr-330 {
  margin-right: 330px; }

.ml-330 {
  margin-left: 330px; }

.mb-330 {
  margin-bottom: 330px; }

.m-330 {
  margin: 330px; }

.pt-335 {
  padding-top: 335px; }

.pr-335 {
  padding-right: 335px; }

.pl-335 {
  padding-left: 335px; }

.pb-335 {
  padding-bottom: 335px; }

.p-335 {
  padding: 335px; }

.mt-335 {
  margin-top: 335px; }

.mr-335 {
  margin-right: 335px; }

.ml-335 {
  margin-left: 335px; }

.mb-335 {
  margin-bottom: 335px; }

.m-335 {
  margin: 335px; }

.pt-340 {
  padding-top: 340px; }

.pr-340 {
  padding-right: 340px; }

.pl-340 {
  padding-left: 340px; }

.pb-340 {
  padding-bottom: 340px; }

.p-340 {
  padding: 340px; }

.mt-340 {
  margin-top: 340px; }

.mr-340 {
  margin-right: 340px; }

.ml-340 {
  margin-left: 340px; }

.mb-340 {
  margin-bottom: 340px; }

.m-340 {
  margin: 340px; }

.pt-345 {
  padding-top: 345px; }

.pr-345 {
  padding-right: 345px; }

.pl-345 {
  padding-left: 345px; }

.pb-345 {
  padding-bottom: 345px; }

.p-345 {
  padding: 345px; }

.mt-345 {
  margin-top: 345px; }

.mr-345 {
  margin-right: 345px; }

.ml-345 {
  margin-left: 345px; }

.mb-345 {
  margin-bottom: 345px; }

.m-345 {
  margin: 345px; }

.pt-350 {
  padding-top: 350px; }

.pr-350 {
  padding-right: 350px; }

.pl-350 {
  padding-left: 350px; }

.pb-350 {
  padding-bottom: 350px; }

.p-350 {
  padding: 350px; }

.mt-350 {
  margin-top: 350px; }

.mr-350 {
  margin-right: 350px; }

.ml-350 {
  margin-left: 350px; }

.mb-350 {
  margin-bottom: 350px; }

.m-350 {
  margin: 350px; }

.pt-355 {
  padding-top: 355px; }

.pr-355 {
  padding-right: 355px; }

.pl-355 {
  padding-left: 355px; }

.pb-355 {
  padding-bottom: 355px; }

.p-355 {
  padding: 355px; }

.mt-355 {
  margin-top: 355px; }

.mr-355 {
  margin-right: 355px; }

.ml-355 {
  margin-left: 355px; }

.mb-355 {
  margin-bottom: 355px; }

.m-355 {
  margin: 355px; }

.pt-360 {
  padding-top: 360px; }

.pr-360 {
  padding-right: 360px; }

.pl-360 {
  padding-left: 360px; }

.pb-360 {
  padding-bottom: 360px; }

.p-360 {
  padding: 360px; }

.mt-360 {
  margin-top: 360px; }

.mr-360 {
  margin-right: 360px; }

.ml-360 {
  margin-left: 360px; }

.mb-360 {
  margin-bottom: 360px; }

.m-360 {
  margin: 360px; }

.pt-365 {
  padding-top: 365px; }

.pr-365 {
  padding-right: 365px; }

.pl-365 {
  padding-left: 365px; }

.pb-365 {
  padding-bottom: 365px; }

.p-365 {
  padding: 365px; }

.mt-365 {
  margin-top: 365px; }

.mr-365 {
  margin-right: 365px; }

.ml-365 {
  margin-left: 365px; }

.mb-365 {
  margin-bottom: 365px; }

.m-365 {
  margin: 365px; }

.pt-370 {
  padding-top: 370px; }

.pr-370 {
  padding-right: 370px; }

.pl-370 {
  padding-left: 370px; }

.pb-370 {
  padding-bottom: 370px; }

.p-370 {
  padding: 370px; }

.mt-370 {
  margin-top: 370px; }

.mr-370 {
  margin-right: 370px; }

.ml-370 {
  margin-left: 370px; }

.mb-370 {
  margin-bottom: 370px; }

.m-370 {
  margin: 370px; }

.pt-375 {
  padding-top: 375px; }

.pr-375 {
  padding-right: 375px; }

.pl-375 {
  padding-left: 375px; }

.pb-375 {
  padding-bottom: 375px; }

.p-375 {
  padding: 375px; }

.mt-375 {
  margin-top: 375px; }

.mr-375 {
  margin-right: 375px; }

.ml-375 {
  margin-left: 375px; }

.mb-375 {
  margin-bottom: 375px; }

.m-375 {
  margin: 375px; }

.pt-380 {
  padding-top: 380px; }

.pr-380 {
  padding-right: 380px; }

.pl-380 {
  padding-left: 380px; }

.pb-380 {
  padding-bottom: 380px; }

.p-380 {
  padding: 380px; }

.mt-380 {
  margin-top: 380px; }

.mr-380 {
  margin-right: 380px; }

.ml-380 {
  margin-left: 380px; }

.mb-380 {
  margin-bottom: 380px; }

.m-380 {
  margin: 380px; }

.pt-385 {
  padding-top: 385px; }

.pr-385 {
  padding-right: 385px; }

.pl-385 {
  padding-left: 385px; }

.pb-385 {
  padding-bottom: 385px; }

.p-385 {
  padding: 385px; }

.mt-385 {
  margin-top: 385px; }

.mr-385 {
  margin-right: 385px; }

.ml-385 {
  margin-left: 385px; }

.mb-385 {
  margin-bottom: 385px; }

.m-385 {
  margin: 385px; }

.pt-390 {
  padding-top: 390px; }

.pr-390 {
  padding-right: 390px; }

.pl-390 {
  padding-left: 390px; }

.pb-390 {
  padding-bottom: 390px; }

.p-390 {
  padding: 390px; }

.mt-390 {
  margin-top: 390px; }

.mr-390 {
  margin-right: 390px; }

.ml-390 {
  margin-left: 390px; }

.mb-390 {
  margin-bottom: 390px; }

.m-390 {
  margin: 390px; }

.pt-395 {
  padding-top: 395px; }

.pr-395 {
  padding-right: 395px; }

.pl-395 {
  padding-left: 395px; }

.pb-395 {
  padding-bottom: 395px; }

.p-395 {
  padding: 395px; }

.mt-395 {
  margin-top: 395px; }

.mr-395 {
  margin-right: 395px; }

.ml-395 {
  margin-left: 395px; }

.mb-395 {
  margin-bottom: 395px; }

.m-395 {
  margin: 395px; }

.pt-400 {
  padding-top: 400px; }

.pr-400 {
  padding-right: 400px; }

.pl-400 {
  padding-left: 400px; }

.pb-400 {
  padding-bottom: 400px; }

.p-400 {
  padding: 400px; }

.mt-400 {
  margin-top: 400px; }

.mr-400 {
  margin-right: 400px; }

.ml-400 {
  margin-left: 400px; }

.mb-400 {
  margin-bottom: 400px; }

.m-400 {
  margin: 400px; }

.pt-405 {
  padding-top: 405px; }

.pr-405 {
  padding-right: 405px; }

.pl-405 {
  padding-left: 405px; }

.pb-405 {
  padding-bottom: 405px; }

.p-405 {
  padding: 405px; }

.mt-405 {
  margin-top: 405px; }

.mr-405 {
  margin-right: 405px; }

.ml-405 {
  margin-left: 405px; }

.mb-405 {
  margin-bottom: 405px; }

.m-405 {
  margin: 405px; }

.pt-410 {
  padding-top: 410px; }

.pr-410 {
  padding-right: 410px; }

.pl-410 {
  padding-left: 410px; }

.pb-410 {
  padding-bottom: 410px; }

.p-410 {
  padding: 410px; }

.mt-410 {
  margin-top: 410px; }

.mr-410 {
  margin-right: 410px; }

.ml-410 {
  margin-left: 410px; }

.mb-410 {
  margin-bottom: 410px; }

.m-410 {
  margin: 410px; }

.pt-415 {
  padding-top: 415px; }

.pr-415 {
  padding-right: 415px; }

.pl-415 {
  padding-left: 415px; }

.pb-415 {
  padding-bottom: 415px; }

.p-415 {
  padding: 415px; }

.mt-415 {
  margin-top: 415px; }

.mr-415 {
  margin-right: 415px; }

.ml-415 {
  margin-left: 415px; }

.mb-415 {
  margin-bottom: 415px; }

.m-415 {
  margin: 415px; }

.pt-420 {
  padding-top: 420px; }

.pr-420 {
  padding-right: 420px; }

.pl-420 {
  padding-left: 420px; }

.pb-420 {
  padding-bottom: 420px; }

.p-420 {
  padding: 420px; }

.mt-420 {
  margin-top: 420px; }

.mr-420 {
  margin-right: 420px; }

.ml-420 {
  margin-left: 420px; }

.mb-420 {
  margin-bottom: 420px; }

.m-420 {
  margin: 420px; }

.pt-425 {
  padding-top: 425px; }

.pr-425 {
  padding-right: 425px; }

.pl-425 {
  padding-left: 425px; }

.pb-425 {
  padding-bottom: 425px; }

.p-425 {
  padding: 425px; }

.mt-425 {
  margin-top: 425px; }

.mr-425 {
  margin-right: 425px; }

.ml-425 {
  margin-left: 425px; }

.mb-425 {
  margin-bottom: 425px; }

.m-425 {
  margin: 425px; }

.pt-430 {
  padding-top: 430px; }

.pr-430 {
  padding-right: 430px; }

.pl-430 {
  padding-left: 430px; }

.pb-430 {
  padding-bottom: 430px; }

.p-430 {
  padding: 430px; }

.mt-430 {
  margin-top: 430px; }

.mr-430 {
  margin-right: 430px; }

.ml-430 {
  margin-left: 430px; }

.mb-430 {
  margin-bottom: 430px; }

.m-430 {
  margin: 430px; }

.pt-435 {
  padding-top: 435px; }

.pr-435 {
  padding-right: 435px; }

.pl-435 {
  padding-left: 435px; }

.pb-435 {
  padding-bottom: 435px; }

.p-435 {
  padding: 435px; }

.mt-435 {
  margin-top: 435px; }

.mr-435 {
  margin-right: 435px; }

.ml-435 {
  margin-left: 435px; }

.mb-435 {
  margin-bottom: 435px; }

.m-435 {
  margin: 435px; }

.pt-440 {
  padding-top: 440px; }

.pr-440 {
  padding-right: 440px; }

.pl-440 {
  padding-left: 440px; }

.pb-440 {
  padding-bottom: 440px; }

.p-440 {
  padding: 440px; }

.mt-440 {
  margin-top: 440px; }

.mr-440 {
  margin-right: 440px; }

.ml-440 {
  margin-left: 440px; }

.mb-440 {
  margin-bottom: 440px; }

.m-440 {
  margin: 440px; }

.pt-445 {
  padding-top: 445px; }

.pr-445 {
  padding-right: 445px; }

.pl-445 {
  padding-left: 445px; }

.pb-445 {
  padding-bottom: 445px; }

.p-445 {
  padding: 445px; }

.mt-445 {
  margin-top: 445px; }

.mr-445 {
  margin-right: 445px; }

.ml-445 {
  margin-left: 445px; }

.mb-445 {
  margin-bottom: 445px; }

.m-445 {
  margin: 445px; }

.pt-450 {
  padding-top: 450px; }

.pr-450 {
  padding-right: 450px; }

.pl-450 {
  padding-left: 450px; }

.pb-450 {
  padding-bottom: 450px; }

.p-450 {
  padding: 450px; }

.mt-450 {
  margin-top: 450px; }

.mr-450 {
  margin-right: 450px; }

.ml-450 {
  margin-left: 450px; }

.mb-450 {
  margin-bottom: 450px; }

.m-450 {
  margin: 450px; }

.pt-455 {
  padding-top: 455px; }

.pr-455 {
  padding-right: 455px; }

.pl-455 {
  padding-left: 455px; }

.pb-455 {
  padding-bottom: 455px; }

.p-455 {
  padding: 455px; }

.mt-455 {
  margin-top: 455px; }

.mr-455 {
  margin-right: 455px; }

.ml-455 {
  margin-left: 455px; }

.mb-455 {
  margin-bottom: 455px; }

.m-455 {
  margin: 455px; }

.pt-460 {
  padding-top: 460px; }

.pr-460 {
  padding-right: 460px; }

.pl-460 {
  padding-left: 460px; }

.pb-460 {
  padding-bottom: 460px; }

.p-460 {
  padding: 460px; }

.mt-460 {
  margin-top: 460px; }

.mr-460 {
  margin-right: 460px; }

.ml-460 {
  margin-left: 460px; }

.mb-460 {
  margin-bottom: 460px; }

.m-460 {
  margin: 460px; }

.pt-465 {
  padding-top: 465px; }

.pr-465 {
  padding-right: 465px; }

.pl-465 {
  padding-left: 465px; }

.pb-465 {
  padding-bottom: 465px; }

.p-465 {
  padding: 465px; }

.mt-465 {
  margin-top: 465px; }

.mr-465 {
  margin-right: 465px; }

.ml-465 {
  margin-left: 465px; }

.mb-465 {
  margin-bottom: 465px; }

.m-465 {
  margin: 465px; }

.pt-470 {
  padding-top: 470px; }

.pr-470 {
  padding-right: 470px; }

.pl-470 {
  padding-left: 470px; }

.pb-470 {
  padding-bottom: 470px; }

.p-470 {
  padding: 470px; }

.mt-470 {
  margin-top: 470px; }

.mr-470 {
  margin-right: 470px; }

.ml-470 {
  margin-left: 470px; }

.mb-470 {
  margin-bottom: 470px; }

.m-470 {
  margin: 470px; }

.pt-475 {
  padding-top: 475px; }

.pr-475 {
  padding-right: 475px; }

.pl-475 {
  padding-left: 475px; }

.pb-475 {
  padding-bottom: 475px; }

.p-475 {
  padding: 475px; }

.mt-475 {
  margin-top: 475px; }

.mr-475 {
  margin-right: 475px; }

.ml-475 {
  margin-left: 475px; }

.mb-475 {
  margin-bottom: 475px; }

.m-475 {
  margin: 475px; }

.pt-480 {
  padding-top: 480px; }

.pr-480 {
  padding-right: 480px; }

.pl-480 {
  padding-left: 480px; }

.pb-480 {
  padding-bottom: 480px; }

.p-480 {
  padding: 480px; }

.mt-480 {
  margin-top: 480px; }

.mr-480 {
  margin-right: 480px; }

.ml-480 {
  margin-left: 480px; }

.mb-480 {
  margin-bottom: 480px; }

.m-480 {
  margin: 480px; }

.pt-485 {
  padding-top: 485px; }

.pr-485 {
  padding-right: 485px; }

.pl-485 {
  padding-left: 485px; }

.pb-485 {
  padding-bottom: 485px; }

.p-485 {
  padding: 485px; }

.mt-485 {
  margin-top: 485px; }

.mr-485 {
  margin-right: 485px; }

.ml-485 {
  margin-left: 485px; }

.mb-485 {
  margin-bottom: 485px; }

.m-485 {
  margin: 485px; }

.pt-490 {
  padding-top: 490px; }

.pr-490 {
  padding-right: 490px; }

.pl-490 {
  padding-left: 490px; }

.pb-490 {
  padding-bottom: 490px; }

.p-490 {
  padding: 490px; }

.mt-490 {
  margin-top: 490px; }

.mr-490 {
  margin-right: 490px; }

.ml-490 {
  margin-left: 490px; }

.mb-490 {
  margin-bottom: 490px; }

.m-490 {
  margin: 490px; }

.pt-495 {
  padding-top: 495px; }

.pr-495 {
  padding-right: 495px; }

.pl-495 {
  padding-left: 495px; }

.pb-495 {
  padding-bottom: 495px; }

.p-495 {
  padding: 495px; }

.mt-495 {
  margin-top: 495px; }

.mr-495 {
  margin-right: 495px; }

.ml-495 {
  margin-left: 495px; }

.mb-495 {
  margin-bottom: 495px; }

.m-495 {
  margin: 495px; }

.pt-500 {
  padding-top: 500px; }

.pr-500 {
  padding-right: 500px; }

.pl-500 {
  padding-left: 500px; }

.pb-500 {
  padding-bottom: 500px; }

.p-500 {
  padding: 500px; }

.mt-500 {
  margin-top: 500px; }

.mr-500 {
  margin-right: 500px; }

.ml-500 {
  margin-left: 500px; }

.mb-500 {
  margin-bottom: 500px; }

.m-500 {
  margin: 500px; }

.pt-10 {
  padding-top: 10px; }

.pr-10 {
  padding-right: 10px; }

.pl-10 {
  padding-left: 10px; }

.pb-10 {
  padding-bottom: 10px; }

.p-10 {
  padding: 10px; }

.mt-10 {
  margin-top: 10px; }

.mr-10 {
  margin-right: 10px; }

.ml-10 {
  margin-left: 10px; }

.mb-10 {
  margin-bottom: 10px; }

.m-10 {
  margin: 10px; }

.pt-20 {
  padding-top: 20px; }

.pr-20 {
  padding-right: 20px; }

.pl-20 {
  padding-left: 20px; }

.pb-20 {
  padding-bottom: 20px; }

.p-20 {
  padding: 20px; }

.mt-20 {
  margin-top: 20px; }

.mr-20 {
  margin-right: 20px; }

.ml-20 {
  margin-left: 20px; }

.mb-20 {
  margin-bottom: 20px; }

.m-20 {
  margin: 20px; }

.pt-30 {
  padding-top: 30px; }

.pr-30 {
  padding-right: 30px; }

.pl-30 {
  padding-left: 30px; }

.pb-30 {
  padding-bottom: 30px; }

.p-30 {
  padding: 30px; }

.mt-30 {
  margin-top: 30px; }

.mr-30 {
  margin-right: 30px; }

.ml-30 {
  margin-left: 30px; }

.mb-30 {
  margin-bottom: 30px; }

.m-30 {
  margin: 30px; }

.pt-40 {
  padding-top: 40px; }

.pr-40 {
  padding-right: 40px; }

.pl-40 {
  padding-left: 40px; }

.pb-40 {
  padding-bottom: 40px; }

.p-40 {
  padding: 40px; }

.mt-40 {
  margin-top: 40px; }

.mr-40 {
  margin-right: 40px; }

.ml-40 {
  margin-left: 40px; }

.mb-40 {
  margin-bottom: 40px; }

.m-40 {
  margin: 40px; }

.pt-50 {
  padding-top: 50px; }

.pr-50 {
  padding-right: 50px; }

.pl-50 {
  padding-left: 50px; }

.pb-50 {
  padding-bottom: 50px; }

.p-50 {
  padding: 50px; }

.mt-50 {
  margin-top: 50px; }

.mr-50 {
  margin-right: 50px; }

.ml-50 {
  margin-left: 50px; }

.mb-50 {
  margin-bottom: 50px; }

.m-50 {
  margin: 50px; }

.pt-60 {
  padding-top: 60px; }

.pr-60 {
  padding-right: 60px; }

.pl-60 {
  padding-left: 60px; }

.pb-60 {
  padding-bottom: 60px; }

.p-60 {
  padding: 60px; }

.mt-60 {
  margin-top: 60px; }

.mr-60 {
  margin-right: 60px; }

.ml-60 {
  margin-left: 60px; }

.mb-60 {
  margin-bottom: 60px; }

.m-60 {
  margin: 60px; }

.pt-70 {
  padding-top: 70px; }

.pr-70 {
  padding-right: 70px; }

.pl-70 {
  padding-left: 70px; }

.pb-70 {
  padding-bottom: 70px; }

.p-70 {
  padding: 70px; }

.mt-70 {
  margin-top: 70px; }

.mr-70 {
  margin-right: 70px; }

.ml-70 {
  margin-left: 70px; }

.mb-70 {
  margin-bottom: 70px; }

.m-70 {
  margin: 70px; }

.pt-80 {
  padding-top: 80px; }

.pr-80 {
  padding-right: 80px; }

.pl-80 {
  padding-left: 80px; }

.pb-80 {
  padding-bottom: 80px; }

.p-80 {
  padding: 80px; }

.mt-80 {
  margin-top: 80px; }

.mr-80 {
  margin-right: 80px; }

.ml-80 {
  margin-left: 80px; }

.mb-80 {
  margin-bottom: 80px; }

.m-80 {
  margin: 80px; }

.pt-90 {
  padding-top: 90px; }

.pr-90 {
  padding-right: 90px; }

.pl-90 {
  padding-left: 90px; }

.pb-90 {
  padding-bottom: 90px; }

.p-90 {
  padding: 90px; }

.mt-90 {
  margin-top: 90px; }

.mr-90 {
  margin-right: 90px; }

.ml-90 {
  margin-left: 90px; }

.mb-90 {
  margin-bottom: 90px; }

.m-90 {
  margin: 90px; }

.pt-100 {
  padding-top: 100px; }

.pr-100 {
  padding-right: 100px; }

.pl-100 {
  padding-left: 100px; }

.pb-100 {
  padding-bottom: 100px; }

.p-100 {
  padding: 100px; }

.mt-100 {
  margin-top: 100px; }

.mr-100 {
  margin-right: 100px; }

.ml-100 {
  margin-left: 100px; }

.mb-100 {
  margin-bottom: 100px; }

.m-100 {
  margin: 100px; }

@media (min-width: 576px) {
  .pt-sm-1 {
    padding-top: 1px; }
  .pr-sm-1 {
    padding-right: 1px; }
  .pl-sm-1 {
    padding-left: 1px; }
  .pb-sm-1 {
    padding-bottom: 1px; }
  .p-sm-1 {
    padding: 1px; }
  .mt-sm-1 {
    margin-top: 1px; }
  .mr-sm-1 {
    margin-right: 1px; }
  .ml-sm-1 {
    margin-left: 1px; }
  .mb-sm-1 {
    margin-bottom: 1px; }
  .m-sm-1 {
    margin: 1px; }
  .pt-sm-2 {
    padding-top: 2px; }
  .pr-sm-2 {
    padding-right: 2px; }
  .pl-sm-2 {
    padding-left: 2px; }
  .pb-sm-2 {
    padding-bottom: 2px; }
  .p-sm-2 {
    padding: 2px; }
  .mt-sm-2 {
    margin-top: 2px; }
  .mr-sm-2 {
    margin-right: 2px; }
  .ml-sm-2 {
    margin-left: 2px; }
  .mb-sm-2 {
    margin-bottom: 2px; }
  .m-sm-2 {
    margin: 2px; }
  .pt-sm-3 {
    padding-top: 3px; }
  .pr-sm-3 {
    padding-right: 3px; }
  .pl-sm-3 {
    padding-left: 3px; }
  .pb-sm-3 {
    padding-bottom: 3px; }
  .p-sm-3 {
    padding: 3px; }
  .mt-sm-3 {
    margin-top: 3px; }
  .mr-sm-3 {
    margin-right: 3px; }
  .ml-sm-3 {
    margin-left: 3px; }
  .mb-sm-3 {
    margin-bottom: 3px; }
  .m-sm-3 {
    margin: 3px; }
  .pt-sm-4 {
    padding-top: 4px; }
  .pr-sm-4 {
    padding-right: 4px; }
  .pl-sm-4 {
    padding-left: 4px; }
  .pb-sm-4 {
    padding-bottom: 4px; }
  .p-sm-4 {
    padding: 4px; }
  .mt-sm-4 {
    margin-top: 4px; }
  .mr-sm-4 {
    margin-right: 4px; }
  .ml-sm-4 {
    margin-left: 4px; }
  .mb-sm-4 {
    margin-bottom: 4px; }
  .m-sm-4 {
    margin: 4px; }
  .pt-sm-5 {
    padding-top: 5px; }
  .pr-sm-5 {
    padding-right: 5px; }
  .pl-sm-5 {
    padding-left: 5px; }
  .pb-sm-5 {
    padding-bottom: 5px; }
  .p-sm-5 {
    padding: 5px; }
  .mt-sm-5 {
    margin-top: 5px; }
  .mr-sm-5 {
    margin-right: 5px; }
  .ml-sm-5 {
    margin-left: 5px; }
  .mb-sm-5 {
    margin-bottom: 5px; }
  .m-sm-5 {
    margin: 5px; }
  .pt-sm-6 {
    padding-top: 6px; }
  .pr-sm-6 {
    padding-right: 6px; }
  .pl-sm-6 {
    padding-left: 6px; }
  .pb-sm-6 {
    padding-bottom: 6px; }
  .p-sm-6 {
    padding: 6px; }
  .mt-sm-6 {
    margin-top: 6px; }
  .mr-sm-6 {
    margin-right: 6px; }
  .ml-sm-6 {
    margin-left: 6px; }
  .mb-sm-6 {
    margin-bottom: 6px; }
  .m-sm-6 {
    margin: 6px; }
  .pt-sm-7 {
    padding-top: 7px; }
  .pr-sm-7 {
    padding-right: 7px; }
  .pl-sm-7 {
    padding-left: 7px; }
  .pb-sm-7 {
    padding-bottom: 7px; }
  .p-sm-7 {
    padding: 7px; }
  .mt-sm-7 {
    margin-top: 7px; }
  .mr-sm-7 {
    margin-right: 7px; }
  .ml-sm-7 {
    margin-left: 7px; }
  .mb-sm-7 {
    margin-bottom: 7px; }
  .m-sm-7 {
    margin: 7px; }
  .pt-sm-8 {
    padding-top: 8px; }
  .pr-sm-8 {
    padding-right: 8px; }
  .pl-sm-8 {
    padding-left: 8px; }
  .pb-sm-8 {
    padding-bottom: 8px; }
  .p-sm-8 {
    padding: 8px; }
  .mt-sm-8 {
    margin-top: 8px; }
  .mr-sm-8 {
    margin-right: 8px; }
  .ml-sm-8 {
    margin-left: 8px; }
  .mb-sm-8 {
    margin-bottom: 8px; }
  .m-sm-8 {
    margin: 8px; }
  .pt-sm-9 {
    padding-top: 9px; }
  .pr-sm-9 {
    padding-right: 9px; }
  .pl-sm-9 {
    padding-left: 9px; }
  .pb-sm-9 {
    padding-bottom: 9px; }
  .p-sm-9 {
    padding: 9px; }
  .mt-sm-9 {
    margin-top: 9px; }
  .mr-sm-9 {
    margin-right: 9px; }
  .ml-sm-9 {
    margin-left: 9px; }
  .mb-sm-9 {
    margin-bottom: 9px; }
  .m-sm-9 {
    margin: 9px; }
  .pt-sm-10 {
    padding-top: 10px; }
  .pr-sm-10 {
    padding-right: 10px; }
  .pl-sm-10 {
    padding-left: 10px; }
  .pb-sm-10 {
    padding-bottom: 10px; }
  .p-sm-10 {
    padding: 10px; }
  .mt-sm-10 {
    margin-top: 10px; }
  .mr-sm-10 {
    margin-right: 10px; }
  .ml-sm-10 {
    margin-left: 10px; }
  .mb-sm-10 {
    margin-bottom: 10px; }
  .m-sm-10 {
    margin: 10px; }
  .pt-sm-11 {
    padding-top: 11px; }
  .pr-sm-11 {
    padding-right: 11px; }
  .pl-sm-11 {
    padding-left: 11px; }
  .pb-sm-11 {
    padding-bottom: 11px; }
  .p-sm-11 {
    padding: 11px; }
  .mt-sm-11 {
    margin-top: 11px; }
  .mr-sm-11 {
    margin-right: 11px; }
  .ml-sm-11 {
    margin-left: 11px; }
  .mb-sm-11 {
    margin-bottom: 11px; }
  .m-sm-11 {
    margin: 11px; }
  .pt-sm-12 {
    padding-top: 12px; }
  .pr-sm-12 {
    padding-right: 12px; }
  .pl-sm-12 {
    padding-left: 12px; }
  .pb-sm-12 {
    padding-bottom: 12px; }
  .p-sm-12 {
    padding: 12px; }
  .mt-sm-12 {
    margin-top: 12px; }
  .mr-sm-12 {
    margin-right: 12px; }
  .ml-sm-12 {
    margin-left: 12px; }
  .mb-sm-12 {
    margin-bottom: 12px; }
  .m-sm-12 {
    margin: 12px; }
  .pt-sm-13 {
    padding-top: 13px; }
  .pr-sm-13 {
    padding-right: 13px; }
  .pl-sm-13 {
    padding-left: 13px; }
  .pb-sm-13 {
    padding-bottom: 13px; }
  .p-sm-13 {
    padding: 13px; }
  .mt-sm-13 {
    margin-top: 13px; }
  .mr-sm-13 {
    margin-right: 13px; }
  .ml-sm-13 {
    margin-left: 13px; }
  .mb-sm-13 {
    margin-bottom: 13px; }
  .m-sm-13 {
    margin: 13px; }
  .pt-sm-14 {
    padding-top: 14px; }
  .pr-sm-14 {
    padding-right: 14px; }
  .pl-sm-14 {
    padding-left: 14px; }
  .pb-sm-14 {
    padding-bottom: 14px; }
  .p-sm-14 {
    padding: 14px; }
  .mt-sm-14 {
    margin-top: 14px; }
  .mr-sm-14 {
    margin-right: 14px; }
  .ml-sm-14 {
    margin-left: 14px; }
  .mb-sm-14 {
    margin-bottom: 14px; }
  .m-sm-14 {
    margin: 14px; }
  .pt-sm-15 {
    padding-top: 15px; }
  .pr-sm-15 {
    padding-right: 15px; }
  .pl-sm-15 {
    padding-left: 15px; }
  .pb-sm-15 {
    padding-bottom: 15px; }
  .p-sm-15 {
    padding: 15px; }
  .mt-sm-15 {
    margin-top: 15px; }
  .mr-sm-15 {
    margin-right: 15px; }
  .ml-sm-15 {
    margin-left: 15px; }
  .mb-sm-15 {
    margin-bottom: 15px; }
  .m-sm-15 {
    margin: 15px; }
  .pt-sm-16 {
    padding-top: 16px; }
  .pr-sm-16 {
    padding-right: 16px; }
  .pl-sm-16 {
    padding-left: 16px; }
  .pb-sm-16 {
    padding-bottom: 16px; }
  .p-sm-16 {
    padding: 16px; }
  .mt-sm-16 {
    margin-top: 16px; }
  .mr-sm-16 {
    margin-right: 16px; }
  .ml-sm-16 {
    margin-left: 16px; }
  .mb-sm-16 {
    margin-bottom: 16px; }
  .m-sm-16 {
    margin: 16px; }
  .pt-sm-17 {
    padding-top: 17px; }
  .pr-sm-17 {
    padding-right: 17px; }
  .pl-sm-17 {
    padding-left: 17px; }
  .pb-sm-17 {
    padding-bottom: 17px; }
  .p-sm-17 {
    padding: 17px; }
  .mt-sm-17 {
    margin-top: 17px; }
  .mr-sm-17 {
    margin-right: 17px; }
  .ml-sm-17 {
    margin-left: 17px; }
  .mb-sm-17 {
    margin-bottom: 17px; }
  .m-sm-17 {
    margin: 17px; }
  .pt-sm-18 {
    padding-top: 18px; }
  .pr-sm-18 {
    padding-right: 18px; }
  .pl-sm-18 {
    padding-left: 18px; }
  .pb-sm-18 {
    padding-bottom: 18px; }
  .p-sm-18 {
    padding: 18px; }
  .mt-sm-18 {
    margin-top: 18px; }
  .mr-sm-18 {
    margin-right: 18px; }
  .ml-sm-18 {
    margin-left: 18px; }
  .mb-sm-18 {
    margin-bottom: 18px; }
  .m-sm-18 {
    margin: 18px; }
  .pt-sm-19 {
    padding-top: 19px; }
  .pr-sm-19 {
    padding-right: 19px; }
  .pl-sm-19 {
    padding-left: 19px; }
  .pb-sm-19 {
    padding-bottom: 19px; }
  .p-sm-19 {
    padding: 19px; }
  .mt-sm-19 {
    margin-top: 19px; }
  .mr-sm-19 {
    margin-right: 19px; }
  .ml-sm-19 {
    margin-left: 19px; }
  .mb-sm-19 {
    margin-bottom: 19px; }
  .m-sm-19 {
    margin: 19px; }
  .pt-sm-20 {
    padding-top: 20px; }
  .pr-sm-20 {
    padding-right: 20px; }
  .pl-sm-20 {
    padding-left: 20px; }
  .pb-sm-20 {
    padding-bottom: 20px; }
  .p-sm-20 {
    padding: 20px; }
  .mt-sm-20 {
    margin-top: 20px; }
  .mr-sm-20 {
    margin-right: 20px; }
  .ml-sm-20 {
    margin-left: 20px; }
  .mb-sm-20 {
    margin-bottom: 20px; }
  .m-sm-20 {
    margin: 20px; }
  .pt-sm-5 {
    padding-top: 5px; }
  .pr-sm-5 {
    padding-right: 5px; }
  .pl-sm-5 {
    padding-left: 5px; }
  .pb-sm-5 {
    padding-bottom: 5px; }
  .p-sm-5 {
    padding: 5px; }
  .mt-sm-5 {
    margin-top: 5px; }
  .mr-sm-5 {
    margin-right: 5px; }
  .ml-sm-5 {
    margin-left: 5px; }
  .mb-sm-5 {
    margin-bottom: 5px; }
  .m-sm-5 {
    margin: 5px; }
  .pt-sm-10 {
    padding-top: 10px; }
  .pr-sm-10 {
    padding-right: 10px; }
  .pl-sm-10 {
    padding-left: 10px; }
  .pb-sm-10 {
    padding-bottom: 10px; }
  .p-sm-10 {
    padding: 10px; }
  .mt-sm-10 {
    margin-top: 10px; }
  .mr-sm-10 {
    margin-right: 10px; }
  .ml-sm-10 {
    margin-left: 10px; }
  .mb-sm-10 {
    margin-bottom: 10px; }
  .m-sm-10 {
    margin: 10px; }
  .pt-sm-15 {
    padding-top: 15px; }
  .pr-sm-15 {
    padding-right: 15px; }
  .pl-sm-15 {
    padding-left: 15px; }
  .pb-sm-15 {
    padding-bottom: 15px; }
  .p-sm-15 {
    padding: 15px; }
  .mt-sm-15 {
    margin-top: 15px; }
  .mr-sm-15 {
    margin-right: 15px; }
  .ml-sm-15 {
    margin-left: 15px; }
  .mb-sm-15 {
    margin-bottom: 15px; }
  .m-sm-15 {
    margin: 15px; }
  .pt-sm-20 {
    padding-top: 20px; }
  .pr-sm-20 {
    padding-right: 20px; }
  .pl-sm-20 {
    padding-left: 20px; }
  .pb-sm-20 {
    padding-bottom: 20px; }
  .p-sm-20 {
    padding: 20px; }
  .mt-sm-20 {
    margin-top: 20px; }
  .mr-sm-20 {
    margin-right: 20px; }
  .ml-sm-20 {
    margin-left: 20px; }
  .mb-sm-20 {
    margin-bottom: 20px; }
  .m-sm-20 {
    margin: 20px; }
  .pt-sm-25 {
    padding-top: 25px; }
  .pr-sm-25 {
    padding-right: 25px; }
  .pl-sm-25 {
    padding-left: 25px; }
  .pb-sm-25 {
    padding-bottom: 25px; }
  .p-sm-25 {
    padding: 25px; }
  .mt-sm-25 {
    margin-top: 25px; }
  .mr-sm-25 {
    margin-right: 25px; }
  .ml-sm-25 {
    margin-left: 25px; }
  .mb-sm-25 {
    margin-bottom: 25px; }
  .m-sm-25 {
    margin: 25px; }
  .pt-sm-30 {
    padding-top: 30px; }
  .pr-sm-30 {
    padding-right: 30px; }
  .pl-sm-30 {
    padding-left: 30px; }
  .pb-sm-30 {
    padding-bottom: 30px; }
  .p-sm-30 {
    padding: 30px; }
  .mt-sm-30 {
    margin-top: 30px; }
  .mr-sm-30 {
    margin-right: 30px; }
  .ml-sm-30 {
    margin-left: 30px; }
  .mb-sm-30 {
    margin-bottom: 30px; }
  .m-sm-30 {
    margin: 30px; }
  .pt-sm-35 {
    padding-top: 35px; }
  .pr-sm-35 {
    padding-right: 35px; }
  .pl-sm-35 {
    padding-left: 35px; }
  .pb-sm-35 {
    padding-bottom: 35px; }
  .p-sm-35 {
    padding: 35px; }
  .mt-sm-35 {
    margin-top: 35px; }
  .mr-sm-35 {
    margin-right: 35px; }
  .ml-sm-35 {
    margin-left: 35px; }
  .mb-sm-35 {
    margin-bottom: 35px; }
  .m-sm-35 {
    margin: 35px; }
  .pt-sm-40 {
    padding-top: 40px; }
  .pr-sm-40 {
    padding-right: 40px; }
  .pl-sm-40 {
    padding-left: 40px; }
  .pb-sm-40 {
    padding-bottom: 40px; }
  .p-sm-40 {
    padding: 40px; }
  .mt-sm-40 {
    margin-top: 40px; }
  .mr-sm-40 {
    margin-right: 40px; }
  .ml-sm-40 {
    margin-left: 40px; }
  .mb-sm-40 {
    margin-bottom: 40px; }
  .m-sm-40 {
    margin: 40px; }
  .pt-sm-45 {
    padding-top: 45px; }
  .pr-sm-45 {
    padding-right: 45px; }
  .pl-sm-45 {
    padding-left: 45px; }
  .pb-sm-45 {
    padding-bottom: 45px; }
  .p-sm-45 {
    padding: 45px; }
  .mt-sm-45 {
    margin-top: 45px; }
  .mr-sm-45 {
    margin-right: 45px; }
  .ml-sm-45 {
    margin-left: 45px; }
  .mb-sm-45 {
    margin-bottom: 45px; }
  .m-sm-45 {
    margin: 45px; }
  .pt-sm-50 {
    padding-top: 50px; }
  .pr-sm-50 {
    padding-right: 50px; }
  .pl-sm-50 {
    padding-left: 50px; }
  .pb-sm-50 {
    padding-bottom: 50px; }
  .p-sm-50 {
    padding: 50px; }
  .mt-sm-50 {
    margin-top: 50px; }
  .mr-sm-50 {
    margin-right: 50px; }
  .ml-sm-50 {
    margin-left: 50px; }
  .mb-sm-50 {
    margin-bottom: 50px; }
  .m-sm-50 {
    margin: 50px; }
  .pt-sm-55 {
    padding-top: 55px; }
  .pr-sm-55 {
    padding-right: 55px; }
  .pl-sm-55 {
    padding-left: 55px; }
  .pb-sm-55 {
    padding-bottom: 55px; }
  .p-sm-55 {
    padding: 55px; }
  .mt-sm-55 {
    margin-top: 55px; }
  .mr-sm-55 {
    margin-right: 55px; }
  .ml-sm-55 {
    margin-left: 55px; }
  .mb-sm-55 {
    margin-bottom: 55px; }
  .m-sm-55 {
    margin: 55px; }
  .pt-sm-60 {
    padding-top: 60px; }
  .pr-sm-60 {
    padding-right: 60px; }
  .pl-sm-60 {
    padding-left: 60px; }
  .pb-sm-60 {
    padding-bottom: 60px; }
  .p-sm-60 {
    padding: 60px; }
  .mt-sm-60 {
    margin-top: 60px; }
  .mr-sm-60 {
    margin-right: 60px; }
  .ml-sm-60 {
    margin-left: 60px; }
  .mb-sm-60 {
    margin-bottom: 60px; }
  .m-sm-60 {
    margin: 60px; }
  .pt-sm-65 {
    padding-top: 65px; }
  .pr-sm-65 {
    padding-right: 65px; }
  .pl-sm-65 {
    padding-left: 65px; }
  .pb-sm-65 {
    padding-bottom: 65px; }
  .p-sm-65 {
    padding: 65px; }
  .mt-sm-65 {
    margin-top: 65px; }
  .mr-sm-65 {
    margin-right: 65px; }
  .ml-sm-65 {
    margin-left: 65px; }
  .mb-sm-65 {
    margin-bottom: 65px; }
  .m-sm-65 {
    margin: 65px; }
  .pt-sm-70 {
    padding-top: 70px; }
  .pr-sm-70 {
    padding-right: 70px; }
  .pl-sm-70 {
    padding-left: 70px; }
  .pb-sm-70 {
    padding-bottom: 70px; }
  .p-sm-70 {
    padding: 70px; }
  .mt-sm-70 {
    margin-top: 70px; }
  .mr-sm-70 {
    margin-right: 70px; }
  .ml-sm-70 {
    margin-left: 70px; }
  .mb-sm-70 {
    margin-bottom: 70px; }
  .m-sm-70 {
    margin: 70px; }
  .pt-sm-75 {
    padding-top: 75px; }
  .pr-sm-75 {
    padding-right: 75px; }
  .pl-sm-75 {
    padding-left: 75px; }
  .pb-sm-75 {
    padding-bottom: 75px; }
  .p-sm-75 {
    padding: 75px; }
  .mt-sm-75 {
    margin-top: 75px; }
  .mr-sm-75 {
    margin-right: 75px; }
  .ml-sm-75 {
    margin-left: 75px; }
  .mb-sm-75 {
    margin-bottom: 75px; }
  .m-sm-75 {
    margin: 75px; }
  .pt-sm-80 {
    padding-top: 80px; }
  .pr-sm-80 {
    padding-right: 80px; }
  .pl-sm-80 {
    padding-left: 80px; }
  .pb-sm-80 {
    padding-bottom: 80px; }
  .p-sm-80 {
    padding: 80px; }
  .mt-sm-80 {
    margin-top: 80px; }
  .mr-sm-80 {
    margin-right: 80px; }
  .ml-sm-80 {
    margin-left: 80px; }
  .mb-sm-80 {
    margin-bottom: 80px; }
  .m-sm-80 {
    margin: 80px; }
  .pt-sm-85 {
    padding-top: 85px; }
  .pr-sm-85 {
    padding-right: 85px; }
  .pl-sm-85 {
    padding-left: 85px; }
  .pb-sm-85 {
    padding-bottom: 85px; }
  .p-sm-85 {
    padding: 85px; }
  .mt-sm-85 {
    margin-top: 85px; }
  .mr-sm-85 {
    margin-right: 85px; }
  .ml-sm-85 {
    margin-left: 85px; }
  .mb-sm-85 {
    margin-bottom: 85px; }
  .m-sm-85 {
    margin: 85px; }
  .pt-sm-90 {
    padding-top: 90px; }
  .pr-sm-90 {
    padding-right: 90px; }
  .pl-sm-90 {
    padding-left: 90px; }
  .pb-sm-90 {
    padding-bottom: 90px; }
  .p-sm-90 {
    padding: 90px; }
  .mt-sm-90 {
    margin-top: 90px; }
  .mr-sm-90 {
    margin-right: 90px; }
  .ml-sm-90 {
    margin-left: 90px; }
  .mb-sm-90 {
    margin-bottom: 90px; }
  .m-sm-90 {
    margin: 90px; }
  .pt-sm-95 {
    padding-top: 95px; }
  .pr-sm-95 {
    padding-right: 95px; }
  .pl-sm-95 {
    padding-left: 95px; }
  .pb-sm-95 {
    padding-bottom: 95px; }
  .p-sm-95 {
    padding: 95px; }
  .mt-sm-95 {
    margin-top: 95px; }
  .mr-sm-95 {
    margin-right: 95px; }
  .ml-sm-95 {
    margin-left: 95px; }
  .mb-sm-95 {
    margin-bottom: 95px; }
  .m-sm-95 {
    margin: 95px; }
  .pt-sm-100 {
    padding-top: 100px; }
  .pr-sm-100 {
    padding-right: 100px; }
  .pl-sm-100 {
    padding-left: 100px; }
  .pb-sm-100 {
    padding-bottom: 100px; }
  .p-sm-100 {
    padding: 100px; }
  .mt-sm-100 {
    margin-top: 100px; }
  .mr-sm-100 {
    margin-right: 100px; }
  .ml-sm-100 {
    margin-left: 100px; }
  .mb-sm-100 {
    margin-bottom: 100px; }
  .m-sm-100 {
    margin: 100px; }
  .pt-sm-105 {
    padding-top: 105px; }
  .pr-sm-105 {
    padding-right: 105px; }
  .pl-sm-105 {
    padding-left: 105px; }
  .pb-sm-105 {
    padding-bottom: 105px; }
  .p-sm-105 {
    padding: 105px; }
  .mt-sm-105 {
    margin-top: 105px; }
  .mr-sm-105 {
    margin-right: 105px; }
  .ml-sm-105 {
    margin-left: 105px; }
  .mb-sm-105 {
    margin-bottom: 105px; }
  .m-sm-105 {
    margin: 105px; }
  .pt-sm-110 {
    padding-top: 110px; }
  .pr-sm-110 {
    padding-right: 110px; }
  .pl-sm-110 {
    padding-left: 110px; }
  .pb-sm-110 {
    padding-bottom: 110px; }
  .p-sm-110 {
    padding: 110px; }
  .mt-sm-110 {
    margin-top: 110px; }
  .mr-sm-110 {
    margin-right: 110px; }
  .ml-sm-110 {
    margin-left: 110px; }
  .mb-sm-110 {
    margin-bottom: 110px; }
  .m-sm-110 {
    margin: 110px; }
  .pt-sm-115 {
    padding-top: 115px; }
  .pr-sm-115 {
    padding-right: 115px; }
  .pl-sm-115 {
    padding-left: 115px; }
  .pb-sm-115 {
    padding-bottom: 115px; }
  .p-sm-115 {
    padding: 115px; }
  .mt-sm-115 {
    margin-top: 115px; }
  .mr-sm-115 {
    margin-right: 115px; }
  .ml-sm-115 {
    margin-left: 115px; }
  .mb-sm-115 {
    margin-bottom: 115px; }
  .m-sm-115 {
    margin: 115px; }
  .pt-sm-120 {
    padding-top: 120px; }
  .pr-sm-120 {
    padding-right: 120px; }
  .pl-sm-120 {
    padding-left: 120px; }
  .pb-sm-120 {
    padding-bottom: 120px; }
  .p-sm-120 {
    padding: 120px; }
  .mt-sm-120 {
    margin-top: 120px; }
  .mr-sm-120 {
    margin-right: 120px; }
  .ml-sm-120 {
    margin-left: 120px; }
  .mb-sm-120 {
    margin-bottom: 120px; }
  .m-sm-120 {
    margin: 120px; }
  .pt-sm-125 {
    padding-top: 125px; }
  .pr-sm-125 {
    padding-right: 125px; }
  .pl-sm-125 {
    padding-left: 125px; }
  .pb-sm-125 {
    padding-bottom: 125px; }
  .p-sm-125 {
    padding: 125px; }
  .mt-sm-125 {
    margin-top: 125px; }
  .mr-sm-125 {
    margin-right: 125px; }
  .ml-sm-125 {
    margin-left: 125px; }
  .mb-sm-125 {
    margin-bottom: 125px; }
  .m-sm-125 {
    margin: 125px; }
  .pt-sm-130 {
    padding-top: 130px; }
  .pr-sm-130 {
    padding-right: 130px; }
  .pl-sm-130 {
    padding-left: 130px; }
  .pb-sm-130 {
    padding-bottom: 130px; }
  .p-sm-130 {
    padding: 130px; }
  .mt-sm-130 {
    margin-top: 130px; }
  .mr-sm-130 {
    margin-right: 130px; }
  .ml-sm-130 {
    margin-left: 130px; }
  .mb-sm-130 {
    margin-bottom: 130px; }
  .m-sm-130 {
    margin: 130px; }
  .pt-sm-135 {
    padding-top: 135px; }
  .pr-sm-135 {
    padding-right: 135px; }
  .pl-sm-135 {
    padding-left: 135px; }
  .pb-sm-135 {
    padding-bottom: 135px; }
  .p-sm-135 {
    padding: 135px; }
  .mt-sm-135 {
    margin-top: 135px; }
  .mr-sm-135 {
    margin-right: 135px; }
  .ml-sm-135 {
    margin-left: 135px; }
  .mb-sm-135 {
    margin-bottom: 135px; }
  .m-sm-135 {
    margin: 135px; }
  .pt-sm-140 {
    padding-top: 140px; }
  .pr-sm-140 {
    padding-right: 140px; }
  .pl-sm-140 {
    padding-left: 140px; }
  .pb-sm-140 {
    padding-bottom: 140px; }
  .p-sm-140 {
    padding: 140px; }
  .mt-sm-140 {
    margin-top: 140px; }
  .mr-sm-140 {
    margin-right: 140px; }
  .ml-sm-140 {
    margin-left: 140px; }
  .mb-sm-140 {
    margin-bottom: 140px; }
  .m-sm-140 {
    margin: 140px; }
  .pt-sm-145 {
    padding-top: 145px; }
  .pr-sm-145 {
    padding-right: 145px; }
  .pl-sm-145 {
    padding-left: 145px; }
  .pb-sm-145 {
    padding-bottom: 145px; }
  .p-sm-145 {
    padding: 145px; }
  .mt-sm-145 {
    margin-top: 145px; }
  .mr-sm-145 {
    margin-right: 145px; }
  .ml-sm-145 {
    margin-left: 145px; }
  .mb-sm-145 {
    margin-bottom: 145px; }
  .m-sm-145 {
    margin: 145px; }
  .pt-sm-150 {
    padding-top: 150px; }
  .pr-sm-150 {
    padding-right: 150px; }
  .pl-sm-150 {
    padding-left: 150px; }
  .pb-sm-150 {
    padding-bottom: 150px; }
  .p-sm-150 {
    padding: 150px; }
  .mt-sm-150 {
    margin-top: 150px; }
  .mr-sm-150 {
    margin-right: 150px; }
  .ml-sm-150 {
    margin-left: 150px; }
  .mb-sm-150 {
    margin-bottom: 150px; }
  .m-sm-150 {
    margin: 150px; }
  .pt-sm-155 {
    padding-top: 155px; }
  .pr-sm-155 {
    padding-right: 155px; }
  .pl-sm-155 {
    padding-left: 155px; }
  .pb-sm-155 {
    padding-bottom: 155px; }
  .p-sm-155 {
    padding: 155px; }
  .mt-sm-155 {
    margin-top: 155px; }
  .mr-sm-155 {
    margin-right: 155px; }
  .ml-sm-155 {
    margin-left: 155px; }
  .mb-sm-155 {
    margin-bottom: 155px; }
  .m-sm-155 {
    margin: 155px; }
  .pt-sm-160 {
    padding-top: 160px; }
  .pr-sm-160 {
    padding-right: 160px; }
  .pl-sm-160 {
    padding-left: 160px; }
  .pb-sm-160 {
    padding-bottom: 160px; }
  .p-sm-160 {
    padding: 160px; }
  .mt-sm-160 {
    margin-top: 160px; }
  .mr-sm-160 {
    margin-right: 160px; }
  .ml-sm-160 {
    margin-left: 160px; }
  .mb-sm-160 {
    margin-bottom: 160px; }
  .m-sm-160 {
    margin: 160px; }
  .pt-sm-165 {
    padding-top: 165px; }
  .pr-sm-165 {
    padding-right: 165px; }
  .pl-sm-165 {
    padding-left: 165px; }
  .pb-sm-165 {
    padding-bottom: 165px; }
  .p-sm-165 {
    padding: 165px; }
  .mt-sm-165 {
    margin-top: 165px; }
  .mr-sm-165 {
    margin-right: 165px; }
  .ml-sm-165 {
    margin-left: 165px; }
  .mb-sm-165 {
    margin-bottom: 165px; }
  .m-sm-165 {
    margin: 165px; }
  .pt-sm-170 {
    padding-top: 170px; }
  .pr-sm-170 {
    padding-right: 170px; }
  .pl-sm-170 {
    padding-left: 170px; }
  .pb-sm-170 {
    padding-bottom: 170px; }
  .p-sm-170 {
    padding: 170px; }
  .mt-sm-170 {
    margin-top: 170px; }
  .mr-sm-170 {
    margin-right: 170px; }
  .ml-sm-170 {
    margin-left: 170px; }
  .mb-sm-170 {
    margin-bottom: 170px; }
  .m-sm-170 {
    margin: 170px; }
  .pt-sm-175 {
    padding-top: 175px; }
  .pr-sm-175 {
    padding-right: 175px; }
  .pl-sm-175 {
    padding-left: 175px; }
  .pb-sm-175 {
    padding-bottom: 175px; }
  .p-sm-175 {
    padding: 175px; }
  .mt-sm-175 {
    margin-top: 175px; }
  .mr-sm-175 {
    margin-right: 175px; }
  .ml-sm-175 {
    margin-left: 175px; }
  .mb-sm-175 {
    margin-bottom: 175px; }
  .m-sm-175 {
    margin: 175px; }
  .pt-sm-180 {
    padding-top: 180px; }
  .pr-sm-180 {
    padding-right: 180px; }
  .pl-sm-180 {
    padding-left: 180px; }
  .pb-sm-180 {
    padding-bottom: 180px; }
  .p-sm-180 {
    padding: 180px; }
  .mt-sm-180 {
    margin-top: 180px; }
  .mr-sm-180 {
    margin-right: 180px; }
  .ml-sm-180 {
    margin-left: 180px; }
  .mb-sm-180 {
    margin-bottom: 180px; }
  .m-sm-180 {
    margin: 180px; }
  .pt-sm-185 {
    padding-top: 185px; }
  .pr-sm-185 {
    padding-right: 185px; }
  .pl-sm-185 {
    padding-left: 185px; }
  .pb-sm-185 {
    padding-bottom: 185px; }
  .p-sm-185 {
    padding: 185px; }
  .mt-sm-185 {
    margin-top: 185px; }
  .mr-sm-185 {
    margin-right: 185px; }
  .ml-sm-185 {
    margin-left: 185px; }
  .mb-sm-185 {
    margin-bottom: 185px; }
  .m-sm-185 {
    margin: 185px; }
  .pt-sm-190 {
    padding-top: 190px; }
  .pr-sm-190 {
    padding-right: 190px; }
  .pl-sm-190 {
    padding-left: 190px; }
  .pb-sm-190 {
    padding-bottom: 190px; }
  .p-sm-190 {
    padding: 190px; }
  .mt-sm-190 {
    margin-top: 190px; }
  .mr-sm-190 {
    margin-right: 190px; }
  .ml-sm-190 {
    margin-left: 190px; }
  .mb-sm-190 {
    margin-bottom: 190px; }
  .m-sm-190 {
    margin: 190px; }
  .pt-sm-195 {
    padding-top: 195px; }
  .pr-sm-195 {
    padding-right: 195px; }
  .pl-sm-195 {
    padding-left: 195px; }
  .pb-sm-195 {
    padding-bottom: 195px; }
  .p-sm-195 {
    padding: 195px; }
  .mt-sm-195 {
    margin-top: 195px; }
  .mr-sm-195 {
    margin-right: 195px; }
  .ml-sm-195 {
    margin-left: 195px; }
  .mb-sm-195 {
    margin-bottom: 195px; }
  .m-sm-195 {
    margin: 195px; }
  .pt-sm-200 {
    padding-top: 200px; }
  .pr-sm-200 {
    padding-right: 200px; }
  .pl-sm-200 {
    padding-left: 200px; }
  .pb-sm-200 {
    padding-bottom: 200px; }
  .p-sm-200 {
    padding: 200px; }
  .mt-sm-200 {
    margin-top: 200px; }
  .mr-sm-200 {
    margin-right: 200px; }
  .ml-sm-200 {
    margin-left: 200px; }
  .mb-sm-200 {
    margin-bottom: 200px; }
  .m-sm-200 {
    margin: 200px; }
  .pt-sm-205 {
    padding-top: 205px; }
  .pr-sm-205 {
    padding-right: 205px; }
  .pl-sm-205 {
    padding-left: 205px; }
  .pb-sm-205 {
    padding-bottom: 205px; }
  .p-sm-205 {
    padding: 205px; }
  .mt-sm-205 {
    margin-top: 205px; }
  .mr-sm-205 {
    margin-right: 205px; }
  .ml-sm-205 {
    margin-left: 205px; }
  .mb-sm-205 {
    margin-bottom: 205px; }
  .m-sm-205 {
    margin: 205px; }
  .pt-sm-210 {
    padding-top: 210px; }
  .pr-sm-210 {
    padding-right: 210px; }
  .pl-sm-210 {
    padding-left: 210px; }
  .pb-sm-210 {
    padding-bottom: 210px; }
  .p-sm-210 {
    padding: 210px; }
  .mt-sm-210 {
    margin-top: 210px; }
  .mr-sm-210 {
    margin-right: 210px; }
  .ml-sm-210 {
    margin-left: 210px; }
  .mb-sm-210 {
    margin-bottom: 210px; }
  .m-sm-210 {
    margin: 210px; }
  .pt-sm-215 {
    padding-top: 215px; }
  .pr-sm-215 {
    padding-right: 215px; }
  .pl-sm-215 {
    padding-left: 215px; }
  .pb-sm-215 {
    padding-bottom: 215px; }
  .p-sm-215 {
    padding: 215px; }
  .mt-sm-215 {
    margin-top: 215px; }
  .mr-sm-215 {
    margin-right: 215px; }
  .ml-sm-215 {
    margin-left: 215px; }
  .mb-sm-215 {
    margin-bottom: 215px; }
  .m-sm-215 {
    margin: 215px; }
  .pt-sm-220 {
    padding-top: 220px; }
  .pr-sm-220 {
    padding-right: 220px; }
  .pl-sm-220 {
    padding-left: 220px; }
  .pb-sm-220 {
    padding-bottom: 220px; }
  .p-sm-220 {
    padding: 220px; }
  .mt-sm-220 {
    margin-top: 220px; }
  .mr-sm-220 {
    margin-right: 220px; }
  .ml-sm-220 {
    margin-left: 220px; }
  .mb-sm-220 {
    margin-bottom: 220px; }
  .m-sm-220 {
    margin: 220px; }
  .pt-sm-225 {
    padding-top: 225px; }
  .pr-sm-225 {
    padding-right: 225px; }
  .pl-sm-225 {
    padding-left: 225px; }
  .pb-sm-225 {
    padding-bottom: 225px; }
  .p-sm-225 {
    padding: 225px; }
  .mt-sm-225 {
    margin-top: 225px; }
  .mr-sm-225 {
    margin-right: 225px; }
  .ml-sm-225 {
    margin-left: 225px; }
  .mb-sm-225 {
    margin-bottom: 225px; }
  .m-sm-225 {
    margin: 225px; }
  .pt-sm-230 {
    padding-top: 230px; }
  .pr-sm-230 {
    padding-right: 230px; }
  .pl-sm-230 {
    padding-left: 230px; }
  .pb-sm-230 {
    padding-bottom: 230px; }
  .p-sm-230 {
    padding: 230px; }
  .mt-sm-230 {
    margin-top: 230px; }
  .mr-sm-230 {
    margin-right: 230px; }
  .ml-sm-230 {
    margin-left: 230px; }
  .mb-sm-230 {
    margin-bottom: 230px; }
  .m-sm-230 {
    margin: 230px; }
  .pt-sm-235 {
    padding-top: 235px; }
  .pr-sm-235 {
    padding-right: 235px; }
  .pl-sm-235 {
    padding-left: 235px; }
  .pb-sm-235 {
    padding-bottom: 235px; }
  .p-sm-235 {
    padding: 235px; }
  .mt-sm-235 {
    margin-top: 235px; }
  .mr-sm-235 {
    margin-right: 235px; }
  .ml-sm-235 {
    margin-left: 235px; }
  .mb-sm-235 {
    margin-bottom: 235px; }
  .m-sm-235 {
    margin: 235px; }
  .pt-sm-240 {
    padding-top: 240px; }
  .pr-sm-240 {
    padding-right: 240px; }
  .pl-sm-240 {
    padding-left: 240px; }
  .pb-sm-240 {
    padding-bottom: 240px; }
  .p-sm-240 {
    padding: 240px; }
  .mt-sm-240 {
    margin-top: 240px; }
  .mr-sm-240 {
    margin-right: 240px; }
  .ml-sm-240 {
    margin-left: 240px; }
  .mb-sm-240 {
    margin-bottom: 240px; }
  .m-sm-240 {
    margin: 240px; }
  .pt-sm-245 {
    padding-top: 245px; }
  .pr-sm-245 {
    padding-right: 245px; }
  .pl-sm-245 {
    padding-left: 245px; }
  .pb-sm-245 {
    padding-bottom: 245px; }
  .p-sm-245 {
    padding: 245px; }
  .mt-sm-245 {
    margin-top: 245px; }
  .mr-sm-245 {
    margin-right: 245px; }
  .ml-sm-245 {
    margin-left: 245px; }
  .mb-sm-245 {
    margin-bottom: 245px; }
  .m-sm-245 {
    margin: 245px; }
  .pt-sm-250 {
    padding-top: 250px; }
  .pr-sm-250 {
    padding-right: 250px; }
  .pl-sm-250 {
    padding-left: 250px; }
  .pb-sm-250 {
    padding-bottom: 250px; }
  .p-sm-250 {
    padding: 250px; }
  .mt-sm-250 {
    margin-top: 250px; }
  .mr-sm-250 {
    margin-right: 250px; }
  .ml-sm-250 {
    margin-left: 250px; }
  .mb-sm-250 {
    margin-bottom: 250px; }
  .m-sm-250 {
    margin: 250px; }
  .pt-sm-255 {
    padding-top: 255px; }
  .pr-sm-255 {
    padding-right: 255px; }
  .pl-sm-255 {
    padding-left: 255px; }
  .pb-sm-255 {
    padding-bottom: 255px; }
  .p-sm-255 {
    padding: 255px; }
  .mt-sm-255 {
    margin-top: 255px; }
  .mr-sm-255 {
    margin-right: 255px; }
  .ml-sm-255 {
    margin-left: 255px; }
  .mb-sm-255 {
    margin-bottom: 255px; }
  .m-sm-255 {
    margin: 255px; }
  .pt-sm-260 {
    padding-top: 260px; }
  .pr-sm-260 {
    padding-right: 260px; }
  .pl-sm-260 {
    padding-left: 260px; }
  .pb-sm-260 {
    padding-bottom: 260px; }
  .p-sm-260 {
    padding: 260px; }
  .mt-sm-260 {
    margin-top: 260px; }
  .mr-sm-260 {
    margin-right: 260px; }
  .ml-sm-260 {
    margin-left: 260px; }
  .mb-sm-260 {
    margin-bottom: 260px; }
  .m-sm-260 {
    margin: 260px; }
  .pt-sm-265 {
    padding-top: 265px; }
  .pr-sm-265 {
    padding-right: 265px; }
  .pl-sm-265 {
    padding-left: 265px; }
  .pb-sm-265 {
    padding-bottom: 265px; }
  .p-sm-265 {
    padding: 265px; }
  .mt-sm-265 {
    margin-top: 265px; }
  .mr-sm-265 {
    margin-right: 265px; }
  .ml-sm-265 {
    margin-left: 265px; }
  .mb-sm-265 {
    margin-bottom: 265px; }
  .m-sm-265 {
    margin: 265px; }
  .pt-sm-270 {
    padding-top: 270px; }
  .pr-sm-270 {
    padding-right: 270px; }
  .pl-sm-270 {
    padding-left: 270px; }
  .pb-sm-270 {
    padding-bottom: 270px; }
  .p-sm-270 {
    padding: 270px; }
  .mt-sm-270 {
    margin-top: 270px; }
  .mr-sm-270 {
    margin-right: 270px; }
  .ml-sm-270 {
    margin-left: 270px; }
  .mb-sm-270 {
    margin-bottom: 270px; }
  .m-sm-270 {
    margin: 270px; }
  .pt-sm-275 {
    padding-top: 275px; }
  .pr-sm-275 {
    padding-right: 275px; }
  .pl-sm-275 {
    padding-left: 275px; }
  .pb-sm-275 {
    padding-bottom: 275px; }
  .p-sm-275 {
    padding: 275px; }
  .mt-sm-275 {
    margin-top: 275px; }
  .mr-sm-275 {
    margin-right: 275px; }
  .ml-sm-275 {
    margin-left: 275px; }
  .mb-sm-275 {
    margin-bottom: 275px; }
  .m-sm-275 {
    margin: 275px; }
  .pt-sm-280 {
    padding-top: 280px; }
  .pr-sm-280 {
    padding-right: 280px; }
  .pl-sm-280 {
    padding-left: 280px; }
  .pb-sm-280 {
    padding-bottom: 280px; }
  .p-sm-280 {
    padding: 280px; }
  .mt-sm-280 {
    margin-top: 280px; }
  .mr-sm-280 {
    margin-right: 280px; }
  .ml-sm-280 {
    margin-left: 280px; }
  .mb-sm-280 {
    margin-bottom: 280px; }
  .m-sm-280 {
    margin: 280px; }
  .pt-sm-285 {
    padding-top: 285px; }
  .pr-sm-285 {
    padding-right: 285px; }
  .pl-sm-285 {
    padding-left: 285px; }
  .pb-sm-285 {
    padding-bottom: 285px; }
  .p-sm-285 {
    padding: 285px; }
  .mt-sm-285 {
    margin-top: 285px; }
  .mr-sm-285 {
    margin-right: 285px; }
  .ml-sm-285 {
    margin-left: 285px; }
  .mb-sm-285 {
    margin-bottom: 285px; }
  .m-sm-285 {
    margin: 285px; }
  .pt-sm-290 {
    padding-top: 290px; }
  .pr-sm-290 {
    padding-right: 290px; }
  .pl-sm-290 {
    padding-left: 290px; }
  .pb-sm-290 {
    padding-bottom: 290px; }
  .p-sm-290 {
    padding: 290px; }
  .mt-sm-290 {
    margin-top: 290px; }
  .mr-sm-290 {
    margin-right: 290px; }
  .ml-sm-290 {
    margin-left: 290px; }
  .mb-sm-290 {
    margin-bottom: 290px; }
  .m-sm-290 {
    margin: 290px; }
  .pt-sm-295 {
    padding-top: 295px; }
  .pr-sm-295 {
    padding-right: 295px; }
  .pl-sm-295 {
    padding-left: 295px; }
  .pb-sm-295 {
    padding-bottom: 295px; }
  .p-sm-295 {
    padding: 295px; }
  .mt-sm-295 {
    margin-top: 295px; }
  .mr-sm-295 {
    margin-right: 295px; }
  .ml-sm-295 {
    margin-left: 295px; }
  .mb-sm-295 {
    margin-bottom: 295px; }
  .m-sm-295 {
    margin: 295px; }
  .pt-sm-300 {
    padding-top: 300px; }
  .pr-sm-300 {
    padding-right: 300px; }
  .pl-sm-300 {
    padding-left: 300px; }
  .pb-sm-300 {
    padding-bottom: 300px; }
  .p-sm-300 {
    padding: 300px; }
  .mt-sm-300 {
    margin-top: 300px; }
  .mr-sm-300 {
    margin-right: 300px; }
  .ml-sm-300 {
    margin-left: 300px; }
  .mb-sm-300 {
    margin-bottom: 300px; }
  .m-sm-300 {
    margin: 300px; }
  .pt-sm-305 {
    padding-top: 305px; }
  .pr-sm-305 {
    padding-right: 305px; }
  .pl-sm-305 {
    padding-left: 305px; }
  .pb-sm-305 {
    padding-bottom: 305px; }
  .p-sm-305 {
    padding: 305px; }
  .mt-sm-305 {
    margin-top: 305px; }
  .mr-sm-305 {
    margin-right: 305px; }
  .ml-sm-305 {
    margin-left: 305px; }
  .mb-sm-305 {
    margin-bottom: 305px; }
  .m-sm-305 {
    margin: 305px; }
  .pt-sm-310 {
    padding-top: 310px; }
  .pr-sm-310 {
    padding-right: 310px; }
  .pl-sm-310 {
    padding-left: 310px; }
  .pb-sm-310 {
    padding-bottom: 310px; }
  .p-sm-310 {
    padding: 310px; }
  .mt-sm-310 {
    margin-top: 310px; }
  .mr-sm-310 {
    margin-right: 310px; }
  .ml-sm-310 {
    margin-left: 310px; }
  .mb-sm-310 {
    margin-bottom: 310px; }
  .m-sm-310 {
    margin: 310px; }
  .pt-sm-315 {
    padding-top: 315px; }
  .pr-sm-315 {
    padding-right: 315px; }
  .pl-sm-315 {
    padding-left: 315px; }
  .pb-sm-315 {
    padding-bottom: 315px; }
  .p-sm-315 {
    padding: 315px; }
  .mt-sm-315 {
    margin-top: 315px; }
  .mr-sm-315 {
    margin-right: 315px; }
  .ml-sm-315 {
    margin-left: 315px; }
  .mb-sm-315 {
    margin-bottom: 315px; }
  .m-sm-315 {
    margin: 315px; }
  .pt-sm-320 {
    padding-top: 320px; }
  .pr-sm-320 {
    padding-right: 320px; }
  .pl-sm-320 {
    padding-left: 320px; }
  .pb-sm-320 {
    padding-bottom: 320px; }
  .p-sm-320 {
    padding: 320px; }
  .mt-sm-320 {
    margin-top: 320px; }
  .mr-sm-320 {
    margin-right: 320px; }
  .ml-sm-320 {
    margin-left: 320px; }
  .mb-sm-320 {
    margin-bottom: 320px; }
  .m-sm-320 {
    margin: 320px; }
  .pt-sm-325 {
    padding-top: 325px; }
  .pr-sm-325 {
    padding-right: 325px; }
  .pl-sm-325 {
    padding-left: 325px; }
  .pb-sm-325 {
    padding-bottom: 325px; }
  .p-sm-325 {
    padding: 325px; }
  .mt-sm-325 {
    margin-top: 325px; }
  .mr-sm-325 {
    margin-right: 325px; }
  .ml-sm-325 {
    margin-left: 325px; }
  .mb-sm-325 {
    margin-bottom: 325px; }
  .m-sm-325 {
    margin: 325px; }
  .pt-sm-330 {
    padding-top: 330px; }
  .pr-sm-330 {
    padding-right: 330px; }
  .pl-sm-330 {
    padding-left: 330px; }
  .pb-sm-330 {
    padding-bottom: 330px; }
  .p-sm-330 {
    padding: 330px; }
  .mt-sm-330 {
    margin-top: 330px; }
  .mr-sm-330 {
    margin-right: 330px; }
  .ml-sm-330 {
    margin-left: 330px; }
  .mb-sm-330 {
    margin-bottom: 330px; }
  .m-sm-330 {
    margin: 330px; }
  .pt-sm-335 {
    padding-top: 335px; }
  .pr-sm-335 {
    padding-right: 335px; }
  .pl-sm-335 {
    padding-left: 335px; }
  .pb-sm-335 {
    padding-bottom: 335px; }
  .p-sm-335 {
    padding: 335px; }
  .mt-sm-335 {
    margin-top: 335px; }
  .mr-sm-335 {
    margin-right: 335px; }
  .ml-sm-335 {
    margin-left: 335px; }
  .mb-sm-335 {
    margin-bottom: 335px; }
  .m-sm-335 {
    margin: 335px; }
  .pt-sm-340 {
    padding-top: 340px; }
  .pr-sm-340 {
    padding-right: 340px; }
  .pl-sm-340 {
    padding-left: 340px; }
  .pb-sm-340 {
    padding-bottom: 340px; }
  .p-sm-340 {
    padding: 340px; }
  .mt-sm-340 {
    margin-top: 340px; }
  .mr-sm-340 {
    margin-right: 340px; }
  .ml-sm-340 {
    margin-left: 340px; }
  .mb-sm-340 {
    margin-bottom: 340px; }
  .m-sm-340 {
    margin: 340px; }
  .pt-sm-345 {
    padding-top: 345px; }
  .pr-sm-345 {
    padding-right: 345px; }
  .pl-sm-345 {
    padding-left: 345px; }
  .pb-sm-345 {
    padding-bottom: 345px; }
  .p-sm-345 {
    padding: 345px; }
  .mt-sm-345 {
    margin-top: 345px; }
  .mr-sm-345 {
    margin-right: 345px; }
  .ml-sm-345 {
    margin-left: 345px; }
  .mb-sm-345 {
    margin-bottom: 345px; }
  .m-sm-345 {
    margin: 345px; }
  .pt-sm-350 {
    padding-top: 350px; }
  .pr-sm-350 {
    padding-right: 350px; }
  .pl-sm-350 {
    padding-left: 350px; }
  .pb-sm-350 {
    padding-bottom: 350px; }
  .p-sm-350 {
    padding: 350px; }
  .mt-sm-350 {
    margin-top: 350px; }
  .mr-sm-350 {
    margin-right: 350px; }
  .ml-sm-350 {
    margin-left: 350px; }
  .mb-sm-350 {
    margin-bottom: 350px; }
  .m-sm-350 {
    margin: 350px; }
  .pt-sm-355 {
    padding-top: 355px; }
  .pr-sm-355 {
    padding-right: 355px; }
  .pl-sm-355 {
    padding-left: 355px; }
  .pb-sm-355 {
    padding-bottom: 355px; }
  .p-sm-355 {
    padding: 355px; }
  .mt-sm-355 {
    margin-top: 355px; }
  .mr-sm-355 {
    margin-right: 355px; }
  .ml-sm-355 {
    margin-left: 355px; }
  .mb-sm-355 {
    margin-bottom: 355px; }
  .m-sm-355 {
    margin: 355px; }
  .pt-sm-360 {
    padding-top: 360px; }
  .pr-sm-360 {
    padding-right: 360px; }
  .pl-sm-360 {
    padding-left: 360px; }
  .pb-sm-360 {
    padding-bottom: 360px; }
  .p-sm-360 {
    padding: 360px; }
  .mt-sm-360 {
    margin-top: 360px; }
  .mr-sm-360 {
    margin-right: 360px; }
  .ml-sm-360 {
    margin-left: 360px; }
  .mb-sm-360 {
    margin-bottom: 360px; }
  .m-sm-360 {
    margin: 360px; }
  .pt-sm-365 {
    padding-top: 365px; }
  .pr-sm-365 {
    padding-right: 365px; }
  .pl-sm-365 {
    padding-left: 365px; }
  .pb-sm-365 {
    padding-bottom: 365px; }
  .p-sm-365 {
    padding: 365px; }
  .mt-sm-365 {
    margin-top: 365px; }
  .mr-sm-365 {
    margin-right: 365px; }
  .ml-sm-365 {
    margin-left: 365px; }
  .mb-sm-365 {
    margin-bottom: 365px; }
  .m-sm-365 {
    margin: 365px; }
  .pt-sm-370 {
    padding-top: 370px; }
  .pr-sm-370 {
    padding-right: 370px; }
  .pl-sm-370 {
    padding-left: 370px; }
  .pb-sm-370 {
    padding-bottom: 370px; }
  .p-sm-370 {
    padding: 370px; }
  .mt-sm-370 {
    margin-top: 370px; }
  .mr-sm-370 {
    margin-right: 370px; }
  .ml-sm-370 {
    margin-left: 370px; }
  .mb-sm-370 {
    margin-bottom: 370px; }
  .m-sm-370 {
    margin: 370px; }
  .pt-sm-375 {
    padding-top: 375px; }
  .pr-sm-375 {
    padding-right: 375px; }
  .pl-sm-375 {
    padding-left: 375px; }
  .pb-sm-375 {
    padding-bottom: 375px; }
  .p-sm-375 {
    padding: 375px; }
  .mt-sm-375 {
    margin-top: 375px; }
  .mr-sm-375 {
    margin-right: 375px; }
  .ml-sm-375 {
    margin-left: 375px; }
  .mb-sm-375 {
    margin-bottom: 375px; }
  .m-sm-375 {
    margin: 375px; }
  .pt-sm-380 {
    padding-top: 380px; }
  .pr-sm-380 {
    padding-right: 380px; }
  .pl-sm-380 {
    padding-left: 380px; }
  .pb-sm-380 {
    padding-bottom: 380px; }
  .p-sm-380 {
    padding: 380px; }
  .mt-sm-380 {
    margin-top: 380px; }
  .mr-sm-380 {
    margin-right: 380px; }
  .ml-sm-380 {
    margin-left: 380px; }
  .mb-sm-380 {
    margin-bottom: 380px; }
  .m-sm-380 {
    margin: 380px; }
  .pt-sm-385 {
    padding-top: 385px; }
  .pr-sm-385 {
    padding-right: 385px; }
  .pl-sm-385 {
    padding-left: 385px; }
  .pb-sm-385 {
    padding-bottom: 385px; }
  .p-sm-385 {
    padding: 385px; }
  .mt-sm-385 {
    margin-top: 385px; }
  .mr-sm-385 {
    margin-right: 385px; }
  .ml-sm-385 {
    margin-left: 385px; }
  .mb-sm-385 {
    margin-bottom: 385px; }
  .m-sm-385 {
    margin: 385px; }
  .pt-sm-390 {
    padding-top: 390px; }
  .pr-sm-390 {
    padding-right: 390px; }
  .pl-sm-390 {
    padding-left: 390px; }
  .pb-sm-390 {
    padding-bottom: 390px; }
  .p-sm-390 {
    padding: 390px; }
  .mt-sm-390 {
    margin-top: 390px; }
  .mr-sm-390 {
    margin-right: 390px; }
  .ml-sm-390 {
    margin-left: 390px; }
  .mb-sm-390 {
    margin-bottom: 390px; }
  .m-sm-390 {
    margin: 390px; }
  .pt-sm-395 {
    padding-top: 395px; }
  .pr-sm-395 {
    padding-right: 395px; }
  .pl-sm-395 {
    padding-left: 395px; }
  .pb-sm-395 {
    padding-bottom: 395px; }
  .p-sm-395 {
    padding: 395px; }
  .mt-sm-395 {
    margin-top: 395px; }
  .mr-sm-395 {
    margin-right: 395px; }
  .ml-sm-395 {
    margin-left: 395px; }
  .mb-sm-395 {
    margin-bottom: 395px; }
  .m-sm-395 {
    margin: 395px; }
  .pt-sm-400 {
    padding-top: 400px; }
  .pr-sm-400 {
    padding-right: 400px; }
  .pl-sm-400 {
    padding-left: 400px; }
  .pb-sm-400 {
    padding-bottom: 400px; }
  .p-sm-400 {
    padding: 400px; }
  .mt-sm-400 {
    margin-top: 400px; }
  .mr-sm-400 {
    margin-right: 400px; }
  .ml-sm-400 {
    margin-left: 400px; }
  .mb-sm-400 {
    margin-bottom: 400px; }
  .m-sm-400 {
    margin: 400px; }
  .pt-sm-405 {
    padding-top: 405px; }
  .pr-sm-405 {
    padding-right: 405px; }
  .pl-sm-405 {
    padding-left: 405px; }
  .pb-sm-405 {
    padding-bottom: 405px; }
  .p-sm-405 {
    padding: 405px; }
  .mt-sm-405 {
    margin-top: 405px; }
  .mr-sm-405 {
    margin-right: 405px; }
  .ml-sm-405 {
    margin-left: 405px; }
  .mb-sm-405 {
    margin-bottom: 405px; }
  .m-sm-405 {
    margin: 405px; }
  .pt-sm-410 {
    padding-top: 410px; }
  .pr-sm-410 {
    padding-right: 410px; }
  .pl-sm-410 {
    padding-left: 410px; }
  .pb-sm-410 {
    padding-bottom: 410px; }
  .p-sm-410 {
    padding: 410px; }
  .mt-sm-410 {
    margin-top: 410px; }
  .mr-sm-410 {
    margin-right: 410px; }
  .ml-sm-410 {
    margin-left: 410px; }
  .mb-sm-410 {
    margin-bottom: 410px; }
  .m-sm-410 {
    margin: 410px; }
  .pt-sm-415 {
    padding-top: 415px; }
  .pr-sm-415 {
    padding-right: 415px; }
  .pl-sm-415 {
    padding-left: 415px; }
  .pb-sm-415 {
    padding-bottom: 415px; }
  .p-sm-415 {
    padding: 415px; }
  .mt-sm-415 {
    margin-top: 415px; }
  .mr-sm-415 {
    margin-right: 415px; }
  .ml-sm-415 {
    margin-left: 415px; }
  .mb-sm-415 {
    margin-bottom: 415px; }
  .m-sm-415 {
    margin: 415px; }
  .pt-sm-420 {
    padding-top: 420px; }
  .pr-sm-420 {
    padding-right: 420px; }
  .pl-sm-420 {
    padding-left: 420px; }
  .pb-sm-420 {
    padding-bottom: 420px; }
  .p-sm-420 {
    padding: 420px; }
  .mt-sm-420 {
    margin-top: 420px; }
  .mr-sm-420 {
    margin-right: 420px; }
  .ml-sm-420 {
    margin-left: 420px; }
  .mb-sm-420 {
    margin-bottom: 420px; }
  .m-sm-420 {
    margin: 420px; }
  .pt-sm-425 {
    padding-top: 425px; }
  .pr-sm-425 {
    padding-right: 425px; }
  .pl-sm-425 {
    padding-left: 425px; }
  .pb-sm-425 {
    padding-bottom: 425px; }
  .p-sm-425 {
    padding: 425px; }
  .mt-sm-425 {
    margin-top: 425px; }
  .mr-sm-425 {
    margin-right: 425px; }
  .ml-sm-425 {
    margin-left: 425px; }
  .mb-sm-425 {
    margin-bottom: 425px; }
  .m-sm-425 {
    margin: 425px; }
  .pt-sm-430 {
    padding-top: 430px; }
  .pr-sm-430 {
    padding-right: 430px; }
  .pl-sm-430 {
    padding-left: 430px; }
  .pb-sm-430 {
    padding-bottom: 430px; }
  .p-sm-430 {
    padding: 430px; }
  .mt-sm-430 {
    margin-top: 430px; }
  .mr-sm-430 {
    margin-right: 430px; }
  .ml-sm-430 {
    margin-left: 430px; }
  .mb-sm-430 {
    margin-bottom: 430px; }
  .m-sm-430 {
    margin: 430px; }
  .pt-sm-435 {
    padding-top: 435px; }
  .pr-sm-435 {
    padding-right: 435px; }
  .pl-sm-435 {
    padding-left: 435px; }
  .pb-sm-435 {
    padding-bottom: 435px; }
  .p-sm-435 {
    padding: 435px; }
  .mt-sm-435 {
    margin-top: 435px; }
  .mr-sm-435 {
    margin-right: 435px; }
  .ml-sm-435 {
    margin-left: 435px; }
  .mb-sm-435 {
    margin-bottom: 435px; }
  .m-sm-435 {
    margin: 435px; }
  .pt-sm-440 {
    padding-top: 440px; }
  .pr-sm-440 {
    padding-right: 440px; }
  .pl-sm-440 {
    padding-left: 440px; }
  .pb-sm-440 {
    padding-bottom: 440px; }
  .p-sm-440 {
    padding: 440px; }
  .mt-sm-440 {
    margin-top: 440px; }
  .mr-sm-440 {
    margin-right: 440px; }
  .ml-sm-440 {
    margin-left: 440px; }
  .mb-sm-440 {
    margin-bottom: 440px; }
  .m-sm-440 {
    margin: 440px; }
  .pt-sm-445 {
    padding-top: 445px; }
  .pr-sm-445 {
    padding-right: 445px; }
  .pl-sm-445 {
    padding-left: 445px; }
  .pb-sm-445 {
    padding-bottom: 445px; }
  .p-sm-445 {
    padding: 445px; }
  .mt-sm-445 {
    margin-top: 445px; }
  .mr-sm-445 {
    margin-right: 445px; }
  .ml-sm-445 {
    margin-left: 445px; }
  .mb-sm-445 {
    margin-bottom: 445px; }
  .m-sm-445 {
    margin: 445px; }
  .pt-sm-450 {
    padding-top: 450px; }
  .pr-sm-450 {
    padding-right: 450px; }
  .pl-sm-450 {
    padding-left: 450px; }
  .pb-sm-450 {
    padding-bottom: 450px; }
  .p-sm-450 {
    padding: 450px; }
  .mt-sm-450 {
    margin-top: 450px; }
  .mr-sm-450 {
    margin-right: 450px; }
  .ml-sm-450 {
    margin-left: 450px; }
  .mb-sm-450 {
    margin-bottom: 450px; }
  .m-sm-450 {
    margin: 450px; }
  .pt-sm-455 {
    padding-top: 455px; }
  .pr-sm-455 {
    padding-right: 455px; }
  .pl-sm-455 {
    padding-left: 455px; }
  .pb-sm-455 {
    padding-bottom: 455px; }
  .p-sm-455 {
    padding: 455px; }
  .mt-sm-455 {
    margin-top: 455px; }
  .mr-sm-455 {
    margin-right: 455px; }
  .ml-sm-455 {
    margin-left: 455px; }
  .mb-sm-455 {
    margin-bottom: 455px; }
  .m-sm-455 {
    margin: 455px; }
  .pt-sm-460 {
    padding-top: 460px; }
  .pr-sm-460 {
    padding-right: 460px; }
  .pl-sm-460 {
    padding-left: 460px; }
  .pb-sm-460 {
    padding-bottom: 460px; }
  .p-sm-460 {
    padding: 460px; }
  .mt-sm-460 {
    margin-top: 460px; }
  .mr-sm-460 {
    margin-right: 460px; }
  .ml-sm-460 {
    margin-left: 460px; }
  .mb-sm-460 {
    margin-bottom: 460px; }
  .m-sm-460 {
    margin: 460px; }
  .pt-sm-465 {
    padding-top: 465px; }
  .pr-sm-465 {
    padding-right: 465px; }
  .pl-sm-465 {
    padding-left: 465px; }
  .pb-sm-465 {
    padding-bottom: 465px; }
  .p-sm-465 {
    padding: 465px; }
  .mt-sm-465 {
    margin-top: 465px; }
  .mr-sm-465 {
    margin-right: 465px; }
  .ml-sm-465 {
    margin-left: 465px; }
  .mb-sm-465 {
    margin-bottom: 465px; }
  .m-sm-465 {
    margin: 465px; }
  .pt-sm-470 {
    padding-top: 470px; }
  .pr-sm-470 {
    padding-right: 470px; }
  .pl-sm-470 {
    padding-left: 470px; }
  .pb-sm-470 {
    padding-bottom: 470px; }
  .p-sm-470 {
    padding: 470px; }
  .mt-sm-470 {
    margin-top: 470px; }
  .mr-sm-470 {
    margin-right: 470px; }
  .ml-sm-470 {
    margin-left: 470px; }
  .mb-sm-470 {
    margin-bottom: 470px; }
  .m-sm-470 {
    margin: 470px; }
  .pt-sm-475 {
    padding-top: 475px; }
  .pr-sm-475 {
    padding-right: 475px; }
  .pl-sm-475 {
    padding-left: 475px; }
  .pb-sm-475 {
    padding-bottom: 475px; }
  .p-sm-475 {
    padding: 475px; }
  .mt-sm-475 {
    margin-top: 475px; }
  .mr-sm-475 {
    margin-right: 475px; }
  .ml-sm-475 {
    margin-left: 475px; }
  .mb-sm-475 {
    margin-bottom: 475px; }
  .m-sm-475 {
    margin: 475px; }
  .pt-sm-480 {
    padding-top: 480px; }
  .pr-sm-480 {
    padding-right: 480px; }
  .pl-sm-480 {
    padding-left: 480px; }
  .pb-sm-480 {
    padding-bottom: 480px; }
  .p-sm-480 {
    padding: 480px; }
  .mt-sm-480 {
    margin-top: 480px; }
  .mr-sm-480 {
    margin-right: 480px; }
  .ml-sm-480 {
    margin-left: 480px; }
  .mb-sm-480 {
    margin-bottom: 480px; }
  .m-sm-480 {
    margin: 480px; }
  .pt-sm-485 {
    padding-top: 485px; }
  .pr-sm-485 {
    padding-right: 485px; }
  .pl-sm-485 {
    padding-left: 485px; }
  .pb-sm-485 {
    padding-bottom: 485px; }
  .p-sm-485 {
    padding: 485px; }
  .mt-sm-485 {
    margin-top: 485px; }
  .mr-sm-485 {
    margin-right: 485px; }
  .ml-sm-485 {
    margin-left: 485px; }
  .mb-sm-485 {
    margin-bottom: 485px; }
  .m-sm-485 {
    margin: 485px; }
  .pt-sm-490 {
    padding-top: 490px; }
  .pr-sm-490 {
    padding-right: 490px; }
  .pl-sm-490 {
    padding-left: 490px; }
  .pb-sm-490 {
    padding-bottom: 490px; }
  .p-sm-490 {
    padding: 490px; }
  .mt-sm-490 {
    margin-top: 490px; }
  .mr-sm-490 {
    margin-right: 490px; }
  .ml-sm-490 {
    margin-left: 490px; }
  .mb-sm-490 {
    margin-bottom: 490px; }
  .m-sm-490 {
    margin: 490px; }
  .pt-sm-495 {
    padding-top: 495px; }
  .pr-sm-495 {
    padding-right: 495px; }
  .pl-sm-495 {
    padding-left: 495px; }
  .pb-sm-495 {
    padding-bottom: 495px; }
  .p-sm-495 {
    padding: 495px; }
  .mt-sm-495 {
    margin-top: 495px; }
  .mr-sm-495 {
    margin-right: 495px; }
  .ml-sm-495 {
    margin-left: 495px; }
  .mb-sm-495 {
    margin-bottom: 495px; }
  .m-sm-495 {
    margin: 495px; }
  .pt-sm-500 {
    padding-top: 500px; }
  .pr-sm-500 {
    padding-right: 500px; }
  .pl-sm-500 {
    padding-left: 500px; }
  .pb-sm-500 {
    padding-bottom: 500px; }
  .p-sm-500 {
    padding: 500px; }
  .mt-sm-500 {
    margin-top: 500px; }
  .mr-sm-500 {
    margin-right: 500px; }
  .ml-sm-500 {
    margin-left: 500px; }
  .mb-sm-500 {
    margin-bottom: 500px; }
  .m-sm-500 {
    margin: 500px; }
  .pt-sm-10 {
    padding-top: 10px; }
  .pr-sm-10 {
    padding-right: 10px; }
  .pl-sm-10 {
    padding-left: 10px; }
  .pb-sm-10 {
    padding-bottom: 10px; }
  .p-sm-10 {
    padding: 10px; }
  .mt-sm-10 {
    margin-top: 10px; }
  .mr-sm-10 {
    margin-right: 10px; }
  .ml-sm-10 {
    margin-left: 10px; }
  .mb-sm-10 {
    margin-bottom: 10px; }
  .m-sm-10 {
    margin: 10px; }
  .pt-sm-20 {
    padding-top: 20px; }
  .pr-sm-20 {
    padding-right: 20px; }
  .pl-sm-20 {
    padding-left: 20px; }
  .pb-sm-20 {
    padding-bottom: 20px; }
  .p-sm-20 {
    padding: 20px; }
  .mt-sm-20 {
    margin-top: 20px; }
  .mr-sm-20 {
    margin-right: 20px; }
  .ml-sm-20 {
    margin-left: 20px; }
  .mb-sm-20 {
    margin-bottom: 20px; }
  .m-sm-20 {
    margin: 20px; }
  .pt-sm-30 {
    padding-top: 30px; }
  .pr-sm-30 {
    padding-right: 30px; }
  .pl-sm-30 {
    padding-left: 30px; }
  .pb-sm-30 {
    padding-bottom: 30px; }
  .p-sm-30 {
    padding: 30px; }
  .mt-sm-30 {
    margin-top: 30px; }
  .mr-sm-30 {
    margin-right: 30px; }
  .ml-sm-30 {
    margin-left: 30px; }
  .mb-sm-30 {
    margin-bottom: 30px; }
  .m-sm-30 {
    margin: 30px; }
  .pt-sm-40 {
    padding-top: 40px; }
  .pr-sm-40 {
    padding-right: 40px; }
  .pl-sm-40 {
    padding-left: 40px; }
  .pb-sm-40 {
    padding-bottom: 40px; }
  .p-sm-40 {
    padding: 40px; }
  .mt-sm-40 {
    margin-top: 40px; }
  .mr-sm-40 {
    margin-right: 40px; }
  .ml-sm-40 {
    margin-left: 40px; }
  .mb-sm-40 {
    margin-bottom: 40px; }
  .m-sm-40 {
    margin: 40px; }
  .pt-sm-50 {
    padding-top: 50px; }
  .pr-sm-50 {
    padding-right: 50px; }
  .pl-sm-50 {
    padding-left: 50px; }
  .pb-sm-50 {
    padding-bottom: 50px; }
  .p-sm-50 {
    padding: 50px; }
  .mt-sm-50 {
    margin-top: 50px; }
  .mr-sm-50 {
    margin-right: 50px; }
  .ml-sm-50 {
    margin-left: 50px; }
  .mb-sm-50 {
    margin-bottom: 50px; }
  .m-sm-50 {
    margin: 50px; }
  .pt-sm-60 {
    padding-top: 60px; }
  .pr-sm-60 {
    padding-right: 60px; }
  .pl-sm-60 {
    padding-left: 60px; }
  .pb-sm-60 {
    padding-bottom: 60px; }
  .p-sm-60 {
    padding: 60px; }
  .mt-sm-60 {
    margin-top: 60px; }
  .mr-sm-60 {
    margin-right: 60px; }
  .ml-sm-60 {
    margin-left: 60px; }
  .mb-sm-60 {
    margin-bottom: 60px; }
  .m-sm-60 {
    margin: 60px; }
  .pt-sm-70 {
    padding-top: 70px; }
  .pr-sm-70 {
    padding-right: 70px; }
  .pl-sm-70 {
    padding-left: 70px; }
  .pb-sm-70 {
    padding-bottom: 70px; }
  .p-sm-70 {
    padding: 70px; }
  .mt-sm-70 {
    margin-top: 70px; }
  .mr-sm-70 {
    margin-right: 70px; }
  .ml-sm-70 {
    margin-left: 70px; }
  .mb-sm-70 {
    margin-bottom: 70px; }
  .m-sm-70 {
    margin: 70px; }
  .pt-sm-80 {
    padding-top: 80px; }
  .pr-sm-80 {
    padding-right: 80px; }
  .pl-sm-80 {
    padding-left: 80px; }
  .pb-sm-80 {
    padding-bottom: 80px; }
  .p-sm-80 {
    padding: 80px; }
  .mt-sm-80 {
    margin-top: 80px; }
  .mr-sm-80 {
    margin-right: 80px; }
  .ml-sm-80 {
    margin-left: 80px; }
  .mb-sm-80 {
    margin-bottom: 80px; }
  .m-sm-80 {
    margin: 80px; }
  .pt-sm-90 {
    padding-top: 90px; }
  .pr-sm-90 {
    padding-right: 90px; }
  .pl-sm-90 {
    padding-left: 90px; }
  .pb-sm-90 {
    padding-bottom: 90px; }
  .p-sm-90 {
    padding: 90px; }
  .mt-sm-90 {
    margin-top: 90px; }
  .mr-sm-90 {
    margin-right: 90px; }
  .ml-sm-90 {
    margin-left: 90px; }
  .mb-sm-90 {
    margin-bottom: 90px; }
  .m-sm-90 {
    margin: 90px; }
  .pt-sm-100 {
    padding-top: 100px; }
  .pr-sm-100 {
    padding-right: 100px; }
  .pl-sm-100 {
    padding-left: 100px; }
  .pb-sm-100 {
    padding-bottom: 100px; }
  .p-sm-100 {
    padding: 100px; }
  .mt-sm-100 {
    margin-top: 100px; }
  .mr-sm-100 {
    margin-right: 100px; }
  .ml-sm-100 {
    margin-left: 100px; }
  .mb-sm-100 {
    margin-bottom: 100px; }
  .m-sm-100 {
    margin: 100px; } }

@media (min-width: 768px) {
  .pt-md-1 {
    padding-top: 1px; }
  .pr-md-1 {
    padding-right: 1px; }
  .pl-md-1 {
    padding-left: 1px; }
  .pb-md-1 {
    padding-bottom: 1px; }
  .p-md-1 {
    padding: 1px; }
  .mt-md-1 {
    margin-top: 1px; }
  .mr-md-1 {
    margin-right: 1px; }
  .ml-md-1 {
    margin-left: 1px; }
  .mb-md-1 {
    margin-bottom: 1px; }
  .m-md-1 {
    margin: 1px; }
  .pt-md-2 {
    padding-top: 2px; }
  .pr-md-2 {
    padding-right: 2px; }
  .pl-md-2 {
    padding-left: 2px; }
  .pb-md-2 {
    padding-bottom: 2px; }
  .p-md-2 {
    padding: 2px; }
  .mt-md-2 {
    margin-top: 2px; }
  .mr-md-2 {
    margin-right: 2px; }
  .ml-md-2 {
    margin-left: 2px; }
  .mb-md-2 {
    margin-bottom: 2px; }
  .m-md-2 {
    margin: 2px; }
  .pt-md-3 {
    padding-top: 3px; }
  .pr-md-3 {
    padding-right: 3px; }
  .pl-md-3 {
    padding-left: 3px; }
  .pb-md-3 {
    padding-bottom: 3px; }
  .p-md-3 {
    padding: 3px; }
  .mt-md-3 {
    margin-top: 3px; }
  .mr-md-3 {
    margin-right: 3px; }
  .ml-md-3 {
    margin-left: 3px; }
  .mb-md-3 {
    margin-bottom: 3px; }
  .m-md-3 {
    margin: 3px; }
  .pt-md-4 {
    padding-top: 4px; }
  .pr-md-4 {
    padding-right: 4px; }
  .pl-md-4 {
    padding-left: 4px; }
  .pb-md-4 {
    padding-bottom: 4px; }
  .p-md-4 {
    padding: 4px; }
  .mt-md-4 {
    margin-top: 4px; }
  .mr-md-4 {
    margin-right: 4px; }
  .ml-md-4 {
    margin-left: 4px; }
  .mb-md-4 {
    margin-bottom: 4px; }
  .m-md-4 {
    margin: 4px; }
  .pt-md-5 {
    padding-top: 5px; }
  .pr-md-5 {
    padding-right: 5px; }
  .pl-md-5 {
    padding-left: 5px; }
  .pb-md-5 {
    padding-bottom: 5px; }
  .p-md-5 {
    padding: 5px; }
  .mt-md-5 {
    margin-top: 5px; }
  .mr-md-5 {
    margin-right: 5px; }
  .ml-md-5 {
    margin-left: 5px; }
  .mb-md-5 {
    margin-bottom: 5px; }
  .m-md-5 {
    margin: 5px; }
  .pt-md-6 {
    padding-top: 6px; }
  .pr-md-6 {
    padding-right: 6px; }
  .pl-md-6 {
    padding-left: 6px; }
  .pb-md-6 {
    padding-bottom: 6px; }
  .p-md-6 {
    padding: 6px; }
  .mt-md-6 {
    margin-top: 6px; }
  .mr-md-6 {
    margin-right: 6px; }
  .ml-md-6 {
    margin-left: 6px; }
  .mb-md-6 {
    margin-bottom: 6px; }
  .m-md-6 {
    margin: 6px; }
  .pt-md-7 {
    padding-top: 7px; }
  .pr-md-7 {
    padding-right: 7px; }
  .pl-md-7 {
    padding-left: 7px; }
  .pb-md-7 {
    padding-bottom: 7px; }
  .p-md-7 {
    padding: 7px; }
  .mt-md-7 {
    margin-top: 7px; }
  .mr-md-7 {
    margin-right: 7px; }
  .ml-md-7 {
    margin-left: 7px; }
  .mb-md-7 {
    margin-bottom: 7px; }
  .m-md-7 {
    margin: 7px; }
  .pt-md-8 {
    padding-top: 8px; }
  .pr-md-8 {
    padding-right: 8px; }
  .pl-md-8 {
    padding-left: 8px; }
  .pb-md-8 {
    padding-bottom: 8px; }
  .p-md-8 {
    padding: 8px; }
  .mt-md-8 {
    margin-top: 8px; }
  .mr-md-8 {
    margin-right: 8px; }
  .ml-md-8 {
    margin-left: 8px; }
  .mb-md-8 {
    margin-bottom: 8px; }
  .m-md-8 {
    margin: 8px; }
  .pt-md-9 {
    padding-top: 9px; }
  .pr-md-9 {
    padding-right: 9px; }
  .pl-md-9 {
    padding-left: 9px; }
  .pb-md-9 {
    padding-bottom: 9px; }
  .p-md-9 {
    padding: 9px; }
  .mt-md-9 {
    margin-top: 9px; }
  .mr-md-9 {
    margin-right: 9px; }
  .ml-md-9 {
    margin-left: 9px; }
  .mb-md-9 {
    margin-bottom: 9px; }
  .m-md-9 {
    margin: 9px; }
  .pt-md-10 {
    padding-top: 10px; }
  .pr-md-10 {
    padding-right: 10px; }
  .pl-md-10 {
    padding-left: 10px; }
  .pb-md-10 {
    padding-bottom: 10px; }
  .p-md-10 {
    padding: 10px; }
  .mt-md-10 {
    margin-top: 10px; }
  .mr-md-10 {
    margin-right: 10px; }
  .ml-md-10 {
    margin-left: 10px; }
  .mb-md-10 {
    margin-bottom: 10px; }
  .m-md-10 {
    margin: 10px; }
  .pt-md-11 {
    padding-top: 11px; }
  .pr-md-11 {
    padding-right: 11px; }
  .pl-md-11 {
    padding-left: 11px; }
  .pb-md-11 {
    padding-bottom: 11px; }
  .p-md-11 {
    padding: 11px; }
  .mt-md-11 {
    margin-top: 11px; }
  .mr-md-11 {
    margin-right: 11px; }
  .ml-md-11 {
    margin-left: 11px; }
  .mb-md-11 {
    margin-bottom: 11px; }
  .m-md-11 {
    margin: 11px; }
  .pt-md-12 {
    padding-top: 12px; }
  .pr-md-12 {
    padding-right: 12px; }
  .pl-md-12 {
    padding-left: 12px; }
  .pb-md-12 {
    padding-bottom: 12px; }
  .p-md-12 {
    padding: 12px; }
  .mt-md-12 {
    margin-top: 12px; }
  .mr-md-12 {
    margin-right: 12px; }
  .ml-md-12 {
    margin-left: 12px; }
  .mb-md-12 {
    margin-bottom: 12px; }
  .m-md-12 {
    margin: 12px; }
  .pt-md-13 {
    padding-top: 13px; }
  .pr-md-13 {
    padding-right: 13px; }
  .pl-md-13 {
    padding-left: 13px; }
  .pb-md-13 {
    padding-bottom: 13px; }
  .p-md-13 {
    padding: 13px; }
  .mt-md-13 {
    margin-top: 13px; }
  .mr-md-13 {
    margin-right: 13px; }
  .ml-md-13 {
    margin-left: 13px; }
  .mb-md-13 {
    margin-bottom: 13px; }
  .m-md-13 {
    margin: 13px; }
  .pt-md-14 {
    padding-top: 14px; }
  .pr-md-14 {
    padding-right: 14px; }
  .pl-md-14 {
    padding-left: 14px; }
  .pb-md-14 {
    padding-bottom: 14px; }
  .p-md-14 {
    padding: 14px; }
  .mt-md-14 {
    margin-top: 14px; }
  .mr-md-14 {
    margin-right: 14px; }
  .ml-md-14 {
    margin-left: 14px; }
  .mb-md-14 {
    margin-bottom: 14px; }
  .m-md-14 {
    margin: 14px; }
  .pt-md-15 {
    padding-top: 15px; }
  .pr-md-15 {
    padding-right: 15px; }
  .pl-md-15 {
    padding-left: 15px; }
  .pb-md-15 {
    padding-bottom: 15px; }
  .p-md-15 {
    padding: 15px; }
  .mt-md-15 {
    margin-top: 15px; }
  .mr-md-15 {
    margin-right: 15px; }
  .ml-md-15 {
    margin-left: 15px; }
  .mb-md-15 {
    margin-bottom: 15px; }
  .m-md-15 {
    margin: 15px; }
  .pt-md-16 {
    padding-top: 16px; }
  .pr-md-16 {
    padding-right: 16px; }
  .pl-md-16 {
    padding-left: 16px; }
  .pb-md-16 {
    padding-bottom: 16px; }
  .p-md-16 {
    padding: 16px; }
  .mt-md-16 {
    margin-top: 16px; }
  .mr-md-16 {
    margin-right: 16px; }
  .ml-md-16 {
    margin-left: 16px; }
  .mb-md-16 {
    margin-bottom: 16px; }
  .m-md-16 {
    margin: 16px; }
  .pt-md-17 {
    padding-top: 17px; }
  .pr-md-17 {
    padding-right: 17px; }
  .pl-md-17 {
    padding-left: 17px; }
  .pb-md-17 {
    padding-bottom: 17px; }
  .p-md-17 {
    padding: 17px; }
  .mt-md-17 {
    margin-top: 17px; }
  .mr-md-17 {
    margin-right: 17px; }
  .ml-md-17 {
    margin-left: 17px; }
  .mb-md-17 {
    margin-bottom: 17px; }
  .m-md-17 {
    margin: 17px; }
  .pt-md-18 {
    padding-top: 18px; }
  .pr-md-18 {
    padding-right: 18px; }
  .pl-md-18 {
    padding-left: 18px; }
  .pb-md-18 {
    padding-bottom: 18px; }
  .p-md-18 {
    padding: 18px; }
  .mt-md-18 {
    margin-top: 18px; }
  .mr-md-18 {
    margin-right: 18px; }
  .ml-md-18 {
    margin-left: 18px; }
  .mb-md-18 {
    margin-bottom: 18px; }
  .m-md-18 {
    margin: 18px; }
  .pt-md-19 {
    padding-top: 19px; }
  .pr-md-19 {
    padding-right: 19px; }
  .pl-md-19 {
    padding-left: 19px; }
  .pb-md-19 {
    padding-bottom: 19px; }
  .p-md-19 {
    padding: 19px; }
  .mt-md-19 {
    margin-top: 19px; }
  .mr-md-19 {
    margin-right: 19px; }
  .ml-md-19 {
    margin-left: 19px; }
  .mb-md-19 {
    margin-bottom: 19px; }
  .m-md-19 {
    margin: 19px; }
  .pt-md-20 {
    padding-top: 20px; }
  .pr-md-20 {
    padding-right: 20px; }
  .pl-md-20 {
    padding-left: 20px; }
  .pb-md-20 {
    padding-bottom: 20px; }
  .p-md-20 {
    padding: 20px; }
  .mt-md-20 {
    margin-top: 20px; }
  .mr-md-20 {
    margin-right: 20px; }
  .ml-md-20 {
    margin-left: 20px; }
  .mb-md-20 {
    margin-bottom: 20px; }
  .m-md-20 {
    margin: 20px; }
  .pt-md-5 {
    padding-top: 5px; }
  .pr-md-5 {
    padding-right: 5px; }
  .pl-md-5 {
    padding-left: 5px; }
  .pb-md-5 {
    padding-bottom: 5px; }
  .p-md-5 {
    padding: 5px; }
  .mt-md-5 {
    margin-top: 5px; }
  .mr-md-5 {
    margin-right: 5px; }
  .ml-md-5 {
    margin-left: 5px; }
  .mb-md-5 {
    margin-bottom: 5px; }
  .m-md-5 {
    margin: 5px; }
  .pt-md-10 {
    padding-top: 10px; }
  .pr-md-10 {
    padding-right: 10px; }
  .pl-md-10 {
    padding-left: 10px; }
  .pb-md-10 {
    padding-bottom: 10px; }
  .p-md-10 {
    padding: 10px; }
  .mt-md-10 {
    margin-top: 10px; }
  .mr-md-10 {
    margin-right: 10px; }
  .ml-md-10 {
    margin-left: 10px; }
  .mb-md-10 {
    margin-bottom: 10px; }
  .m-md-10 {
    margin: 10px; }
  .pt-md-15 {
    padding-top: 15px; }
  .pr-md-15 {
    padding-right: 15px; }
  .pl-md-15 {
    padding-left: 15px; }
  .pb-md-15 {
    padding-bottom: 15px; }
  .p-md-15 {
    padding: 15px; }
  .mt-md-15 {
    margin-top: 15px; }
  .mr-md-15 {
    margin-right: 15px; }
  .ml-md-15 {
    margin-left: 15px; }
  .mb-md-15 {
    margin-bottom: 15px; }
  .m-md-15 {
    margin: 15px; }
  .pt-md-20 {
    padding-top: 20px; }
  .pr-md-20 {
    padding-right: 20px; }
  .pl-md-20 {
    padding-left: 20px; }
  .pb-md-20 {
    padding-bottom: 20px; }
  .p-md-20 {
    padding: 20px; }
  .mt-md-20 {
    margin-top: 20px; }
  .mr-md-20 {
    margin-right: 20px; }
  .ml-md-20 {
    margin-left: 20px; }
  .mb-md-20 {
    margin-bottom: 20px; }
  .m-md-20 {
    margin: 20px; }
  .pt-md-25 {
    padding-top: 25px; }
  .pr-md-25 {
    padding-right: 25px; }
  .pl-md-25 {
    padding-left: 25px; }
  .pb-md-25 {
    padding-bottom: 25px; }
  .p-md-25 {
    padding: 25px; }
  .mt-md-25 {
    margin-top: 25px; }
  .mr-md-25 {
    margin-right: 25px; }
  .ml-md-25 {
    margin-left: 25px; }
  .mb-md-25 {
    margin-bottom: 25px; }
  .m-md-25 {
    margin: 25px; }
  .pt-md-30 {
    padding-top: 30px; }
  .pr-md-30 {
    padding-right: 30px; }
  .pl-md-30 {
    padding-left: 30px; }
  .pb-md-30 {
    padding-bottom: 30px; }
  .p-md-30 {
    padding: 30px; }
  .mt-md-30 {
    margin-top: 30px; }
  .mr-md-30 {
    margin-right: 30px; }
  .ml-md-30 {
    margin-left: 30px; }
  .mb-md-30 {
    margin-bottom: 30px; }
  .m-md-30 {
    margin: 30px; }
  .pt-md-35 {
    padding-top: 35px; }
  .pr-md-35 {
    padding-right: 35px; }
  .pl-md-35 {
    padding-left: 35px; }
  .pb-md-35 {
    padding-bottom: 35px; }
  .p-md-35 {
    padding: 35px; }
  .mt-md-35 {
    margin-top: 35px; }
  .mr-md-35 {
    margin-right: 35px; }
  .ml-md-35 {
    margin-left: 35px; }
  .mb-md-35 {
    margin-bottom: 35px; }
  .m-md-35 {
    margin: 35px; }
  .pt-md-40 {
    padding-top: 40px; }
  .pr-md-40 {
    padding-right: 40px; }
  .pl-md-40 {
    padding-left: 40px; }
  .pb-md-40 {
    padding-bottom: 40px; }
  .p-md-40 {
    padding: 40px; }
  .mt-md-40 {
    margin-top: 40px; }
  .mr-md-40 {
    margin-right: 40px; }
  .ml-md-40 {
    margin-left: 40px; }
  .mb-md-40 {
    margin-bottom: 40px; }
  .m-md-40 {
    margin: 40px; }
  .pt-md-45 {
    padding-top: 45px; }
  .pr-md-45 {
    padding-right: 45px; }
  .pl-md-45 {
    padding-left: 45px; }
  .pb-md-45 {
    padding-bottom: 45px; }
  .p-md-45 {
    padding: 45px; }
  .mt-md-45 {
    margin-top: 45px; }
  .mr-md-45 {
    margin-right: 45px; }
  .ml-md-45 {
    margin-left: 45px; }
  .mb-md-45 {
    margin-bottom: 45px; }
  .m-md-45 {
    margin: 45px; }
  .pt-md-50 {
    padding-top: 50px; }
  .pr-md-50 {
    padding-right: 50px; }
  .pl-md-50 {
    padding-left: 50px; }
  .pb-md-50 {
    padding-bottom: 50px; }
  .p-md-50 {
    padding: 50px; }
  .mt-md-50 {
    margin-top: 50px; }
  .mr-md-50 {
    margin-right: 50px; }
  .ml-md-50 {
    margin-left: 50px; }
  .mb-md-50 {
    margin-bottom: 50px; }
  .m-md-50 {
    margin: 50px; }
  .pt-md-55 {
    padding-top: 55px; }
  .pr-md-55 {
    padding-right: 55px; }
  .pl-md-55 {
    padding-left: 55px; }
  .pb-md-55 {
    padding-bottom: 55px; }
  .p-md-55 {
    padding: 55px; }
  .mt-md-55 {
    margin-top: 55px; }
  .mr-md-55 {
    margin-right: 55px; }
  .ml-md-55 {
    margin-left: 55px; }
  .mb-md-55 {
    margin-bottom: 55px; }
  .m-md-55 {
    margin: 55px; }
  .pt-md-60 {
    padding-top: 60px; }
  .pr-md-60 {
    padding-right: 60px; }
  .pl-md-60 {
    padding-left: 60px; }
  .pb-md-60 {
    padding-bottom: 60px; }
  .p-md-60 {
    padding: 60px; }
  .mt-md-60 {
    margin-top: 60px; }
  .mr-md-60 {
    margin-right: 60px; }
  .ml-md-60 {
    margin-left: 60px; }
  .mb-md-60 {
    margin-bottom: 60px; }
  .m-md-60 {
    margin: 60px; }
  .pt-md-65 {
    padding-top: 65px; }
  .pr-md-65 {
    padding-right: 65px; }
  .pl-md-65 {
    padding-left: 65px; }
  .pb-md-65 {
    padding-bottom: 65px; }
  .p-md-65 {
    padding: 65px; }
  .mt-md-65 {
    margin-top: 65px; }
  .mr-md-65 {
    margin-right: 65px; }
  .ml-md-65 {
    margin-left: 65px; }
  .mb-md-65 {
    margin-bottom: 65px; }
  .m-md-65 {
    margin: 65px; }
  .pt-md-70 {
    padding-top: 70px; }
  .pr-md-70 {
    padding-right: 70px; }
  .pl-md-70 {
    padding-left: 70px; }
  .pb-md-70 {
    padding-bottom: 70px; }
  .p-md-70 {
    padding: 70px; }
  .mt-md-70 {
    margin-top: 70px; }
  .mr-md-70 {
    margin-right: 70px; }
  .ml-md-70 {
    margin-left: 70px; }
  .mb-md-70 {
    margin-bottom: 70px; }
  .m-md-70 {
    margin: 70px; }
  .pt-md-75 {
    padding-top: 75px; }
  .pr-md-75 {
    padding-right: 75px; }
  .pl-md-75 {
    padding-left: 75px; }
  .pb-md-75 {
    padding-bottom: 75px; }
  .p-md-75 {
    padding: 75px; }
  .mt-md-75 {
    margin-top: 75px; }
  .mr-md-75 {
    margin-right: 75px; }
  .ml-md-75 {
    margin-left: 75px; }
  .mb-md-75 {
    margin-bottom: 75px; }
  .m-md-75 {
    margin: 75px; }
  .pt-md-80 {
    padding-top: 80px; }
  .pr-md-80 {
    padding-right: 80px; }
  .pl-md-80 {
    padding-left: 80px; }
  .pb-md-80 {
    padding-bottom: 80px; }
  .p-md-80 {
    padding: 80px; }
  .mt-md-80 {
    margin-top: 80px; }
  .mr-md-80 {
    margin-right: 80px; }
  .ml-md-80 {
    margin-left: 80px; }
  .mb-md-80 {
    margin-bottom: 80px; }
  .m-md-80 {
    margin: 80px; }
  .pt-md-85 {
    padding-top: 85px; }
  .pr-md-85 {
    padding-right: 85px; }
  .pl-md-85 {
    padding-left: 85px; }
  .pb-md-85 {
    padding-bottom: 85px; }
  .p-md-85 {
    padding: 85px; }
  .mt-md-85 {
    margin-top: 85px; }
  .mr-md-85 {
    margin-right: 85px; }
  .ml-md-85 {
    margin-left: 85px; }
  .mb-md-85 {
    margin-bottom: 85px; }
  .m-md-85 {
    margin: 85px; }
  .pt-md-90 {
    padding-top: 90px; }
  .pr-md-90 {
    padding-right: 90px; }
  .pl-md-90 {
    padding-left: 90px; }
  .pb-md-90 {
    padding-bottom: 90px; }
  .p-md-90 {
    padding: 90px; }
  .mt-md-90 {
    margin-top: 90px; }
  .mr-md-90 {
    margin-right: 90px; }
  .ml-md-90 {
    margin-left: 90px; }
  .mb-md-90 {
    margin-bottom: 90px; }
  .m-md-90 {
    margin: 90px; }
  .pt-md-95 {
    padding-top: 95px; }
  .pr-md-95 {
    padding-right: 95px; }
  .pl-md-95 {
    padding-left: 95px; }
  .pb-md-95 {
    padding-bottom: 95px; }
  .p-md-95 {
    padding: 95px; }
  .mt-md-95 {
    margin-top: 95px; }
  .mr-md-95 {
    margin-right: 95px; }
  .ml-md-95 {
    margin-left: 95px; }
  .mb-md-95 {
    margin-bottom: 95px; }
  .m-md-95 {
    margin: 95px; }
  .pt-md-100 {
    padding-top: 100px; }
  .pr-md-100 {
    padding-right: 100px; }
  .pl-md-100 {
    padding-left: 100px; }
  .pb-md-100 {
    padding-bottom: 100px; }
  .p-md-100 {
    padding: 100px; }
  .mt-md-100 {
    margin-top: 100px; }
  .mr-md-100 {
    margin-right: 100px; }
  .ml-md-100 {
    margin-left: 100px; }
  .mb-md-100 {
    margin-bottom: 100px; }
  .m-md-100 {
    margin: 100px; }
  .pt-md-105 {
    padding-top: 105px; }
  .pr-md-105 {
    padding-right: 105px; }
  .pl-md-105 {
    padding-left: 105px; }
  .pb-md-105 {
    padding-bottom: 105px; }
  .p-md-105 {
    padding: 105px; }
  .mt-md-105 {
    margin-top: 105px; }
  .mr-md-105 {
    margin-right: 105px; }
  .ml-md-105 {
    margin-left: 105px; }
  .mb-md-105 {
    margin-bottom: 105px; }
  .m-md-105 {
    margin: 105px; }
  .pt-md-110 {
    padding-top: 110px; }
  .pr-md-110 {
    padding-right: 110px; }
  .pl-md-110 {
    padding-left: 110px; }
  .pb-md-110 {
    padding-bottom: 110px; }
  .p-md-110 {
    padding: 110px; }
  .mt-md-110 {
    margin-top: 110px; }
  .mr-md-110 {
    margin-right: 110px; }
  .ml-md-110 {
    margin-left: 110px; }
  .mb-md-110 {
    margin-bottom: 110px; }
  .m-md-110 {
    margin: 110px; }
  .pt-md-115 {
    padding-top: 115px; }
  .pr-md-115 {
    padding-right: 115px; }
  .pl-md-115 {
    padding-left: 115px; }
  .pb-md-115 {
    padding-bottom: 115px; }
  .p-md-115 {
    padding: 115px; }
  .mt-md-115 {
    margin-top: 115px; }
  .mr-md-115 {
    margin-right: 115px; }
  .ml-md-115 {
    margin-left: 115px; }
  .mb-md-115 {
    margin-bottom: 115px; }
  .m-md-115 {
    margin: 115px; }
  .pt-md-120 {
    padding-top: 120px; }
  .pr-md-120 {
    padding-right: 120px; }
  .pl-md-120 {
    padding-left: 120px; }
  .pb-md-120 {
    padding-bottom: 120px; }
  .p-md-120 {
    padding: 120px; }
  .mt-md-120 {
    margin-top: 120px; }
  .mr-md-120 {
    margin-right: 120px; }
  .ml-md-120 {
    margin-left: 120px; }
  .mb-md-120 {
    margin-bottom: 120px; }
  .m-md-120 {
    margin: 120px; }
  .pt-md-125 {
    padding-top: 125px; }
  .pr-md-125 {
    padding-right: 125px; }
  .pl-md-125 {
    padding-left: 125px; }
  .pb-md-125 {
    padding-bottom: 125px; }
  .p-md-125 {
    padding: 125px; }
  .mt-md-125 {
    margin-top: 125px; }
  .mr-md-125 {
    margin-right: 125px; }
  .ml-md-125 {
    margin-left: 125px; }
  .mb-md-125 {
    margin-bottom: 125px; }
  .m-md-125 {
    margin: 125px; }
  .pt-md-130 {
    padding-top: 130px; }
  .pr-md-130 {
    padding-right: 130px; }
  .pl-md-130 {
    padding-left: 130px; }
  .pb-md-130 {
    padding-bottom: 130px; }
  .p-md-130 {
    padding: 130px; }
  .mt-md-130 {
    margin-top: 130px; }
  .mr-md-130 {
    margin-right: 130px; }
  .ml-md-130 {
    margin-left: 130px; }
  .mb-md-130 {
    margin-bottom: 130px; }
  .m-md-130 {
    margin: 130px; }
  .pt-md-135 {
    padding-top: 135px; }
  .pr-md-135 {
    padding-right: 135px; }
  .pl-md-135 {
    padding-left: 135px; }
  .pb-md-135 {
    padding-bottom: 135px; }
  .p-md-135 {
    padding: 135px; }
  .mt-md-135 {
    margin-top: 135px; }
  .mr-md-135 {
    margin-right: 135px; }
  .ml-md-135 {
    margin-left: 135px; }
  .mb-md-135 {
    margin-bottom: 135px; }
  .m-md-135 {
    margin: 135px; }
  .pt-md-140 {
    padding-top: 140px; }
  .pr-md-140 {
    padding-right: 140px; }
  .pl-md-140 {
    padding-left: 140px; }
  .pb-md-140 {
    padding-bottom: 140px; }
  .p-md-140 {
    padding: 140px; }
  .mt-md-140 {
    margin-top: 140px; }
  .mr-md-140 {
    margin-right: 140px; }
  .ml-md-140 {
    margin-left: 140px; }
  .mb-md-140 {
    margin-bottom: 140px; }
  .m-md-140 {
    margin: 140px; }
  .pt-md-145 {
    padding-top: 145px; }
  .pr-md-145 {
    padding-right: 145px; }
  .pl-md-145 {
    padding-left: 145px; }
  .pb-md-145 {
    padding-bottom: 145px; }
  .p-md-145 {
    padding: 145px; }
  .mt-md-145 {
    margin-top: 145px; }
  .mr-md-145 {
    margin-right: 145px; }
  .ml-md-145 {
    margin-left: 145px; }
  .mb-md-145 {
    margin-bottom: 145px; }
  .m-md-145 {
    margin: 145px; }
  .pt-md-150 {
    padding-top: 150px; }
  .pr-md-150 {
    padding-right: 150px; }
  .pl-md-150 {
    padding-left: 150px; }
  .pb-md-150 {
    padding-bottom: 150px; }
  .p-md-150 {
    padding: 150px; }
  .mt-md-150 {
    margin-top: 150px; }
  .mr-md-150 {
    margin-right: 150px; }
  .ml-md-150 {
    margin-left: 150px; }
  .mb-md-150 {
    margin-bottom: 150px; }
  .m-md-150 {
    margin: 150px; }
  .pt-md-155 {
    padding-top: 155px; }
  .pr-md-155 {
    padding-right: 155px; }
  .pl-md-155 {
    padding-left: 155px; }
  .pb-md-155 {
    padding-bottom: 155px; }
  .p-md-155 {
    padding: 155px; }
  .mt-md-155 {
    margin-top: 155px; }
  .mr-md-155 {
    margin-right: 155px; }
  .ml-md-155 {
    margin-left: 155px; }
  .mb-md-155 {
    margin-bottom: 155px; }
  .m-md-155 {
    margin: 155px; }
  .pt-md-160 {
    padding-top: 160px; }
  .pr-md-160 {
    padding-right: 160px; }
  .pl-md-160 {
    padding-left: 160px; }
  .pb-md-160 {
    padding-bottom: 160px; }
  .p-md-160 {
    padding: 160px; }
  .mt-md-160 {
    margin-top: 160px; }
  .mr-md-160 {
    margin-right: 160px; }
  .ml-md-160 {
    margin-left: 160px; }
  .mb-md-160 {
    margin-bottom: 160px; }
  .m-md-160 {
    margin: 160px; }
  .pt-md-165 {
    padding-top: 165px; }
  .pr-md-165 {
    padding-right: 165px; }
  .pl-md-165 {
    padding-left: 165px; }
  .pb-md-165 {
    padding-bottom: 165px; }
  .p-md-165 {
    padding: 165px; }
  .mt-md-165 {
    margin-top: 165px; }
  .mr-md-165 {
    margin-right: 165px; }
  .ml-md-165 {
    margin-left: 165px; }
  .mb-md-165 {
    margin-bottom: 165px; }
  .m-md-165 {
    margin: 165px; }
  .pt-md-170 {
    padding-top: 170px; }
  .pr-md-170 {
    padding-right: 170px; }
  .pl-md-170 {
    padding-left: 170px; }
  .pb-md-170 {
    padding-bottom: 170px; }
  .p-md-170 {
    padding: 170px; }
  .mt-md-170 {
    margin-top: 170px; }
  .mr-md-170 {
    margin-right: 170px; }
  .ml-md-170 {
    margin-left: 170px; }
  .mb-md-170 {
    margin-bottom: 170px; }
  .m-md-170 {
    margin: 170px; }
  .pt-md-175 {
    padding-top: 175px; }
  .pr-md-175 {
    padding-right: 175px; }
  .pl-md-175 {
    padding-left: 175px; }
  .pb-md-175 {
    padding-bottom: 175px; }
  .p-md-175 {
    padding: 175px; }
  .mt-md-175 {
    margin-top: 175px; }
  .mr-md-175 {
    margin-right: 175px; }
  .ml-md-175 {
    margin-left: 175px; }
  .mb-md-175 {
    margin-bottom: 175px; }
  .m-md-175 {
    margin: 175px; }
  .pt-md-180 {
    padding-top: 180px; }
  .pr-md-180 {
    padding-right: 180px; }
  .pl-md-180 {
    padding-left: 180px; }
  .pb-md-180 {
    padding-bottom: 180px; }
  .p-md-180 {
    padding: 180px; }
  .mt-md-180 {
    margin-top: 180px; }
  .mr-md-180 {
    margin-right: 180px; }
  .ml-md-180 {
    margin-left: 180px; }
  .mb-md-180 {
    margin-bottom: 180px; }
  .m-md-180 {
    margin: 180px; }
  .pt-md-185 {
    padding-top: 185px; }
  .pr-md-185 {
    padding-right: 185px; }
  .pl-md-185 {
    padding-left: 185px; }
  .pb-md-185 {
    padding-bottom: 185px; }
  .p-md-185 {
    padding: 185px; }
  .mt-md-185 {
    margin-top: 185px; }
  .mr-md-185 {
    margin-right: 185px; }
  .ml-md-185 {
    margin-left: 185px; }
  .mb-md-185 {
    margin-bottom: 185px; }
  .m-md-185 {
    margin: 185px; }
  .pt-md-190 {
    padding-top: 190px; }
  .pr-md-190 {
    padding-right: 190px; }
  .pl-md-190 {
    padding-left: 190px; }
  .pb-md-190 {
    padding-bottom: 190px; }
  .p-md-190 {
    padding: 190px; }
  .mt-md-190 {
    margin-top: 190px; }
  .mr-md-190 {
    margin-right: 190px; }
  .ml-md-190 {
    margin-left: 190px; }
  .mb-md-190 {
    margin-bottom: 190px; }
  .m-md-190 {
    margin: 190px; }
  .pt-md-195 {
    padding-top: 195px; }
  .pr-md-195 {
    padding-right: 195px; }
  .pl-md-195 {
    padding-left: 195px; }
  .pb-md-195 {
    padding-bottom: 195px; }
  .p-md-195 {
    padding: 195px; }
  .mt-md-195 {
    margin-top: 195px; }
  .mr-md-195 {
    margin-right: 195px; }
  .ml-md-195 {
    margin-left: 195px; }
  .mb-md-195 {
    margin-bottom: 195px; }
  .m-md-195 {
    margin: 195px; }
  .pt-md-200 {
    padding-top: 200px; }
  .pr-md-200 {
    padding-right: 200px; }
  .pl-md-200 {
    padding-left: 200px; }
  .pb-md-200 {
    padding-bottom: 200px; }
  .p-md-200 {
    padding: 200px; }
  .mt-md-200 {
    margin-top: 200px; }
  .mr-md-200 {
    margin-right: 200px; }
  .ml-md-200 {
    margin-left: 200px; }
  .mb-md-200 {
    margin-bottom: 200px; }
  .m-md-200 {
    margin: 200px; }
  .pt-md-205 {
    padding-top: 205px; }
  .pr-md-205 {
    padding-right: 205px; }
  .pl-md-205 {
    padding-left: 205px; }
  .pb-md-205 {
    padding-bottom: 205px; }
  .p-md-205 {
    padding: 205px; }
  .mt-md-205 {
    margin-top: 205px; }
  .mr-md-205 {
    margin-right: 205px; }
  .ml-md-205 {
    margin-left: 205px; }
  .mb-md-205 {
    margin-bottom: 205px; }
  .m-md-205 {
    margin: 205px; }
  .pt-md-210 {
    padding-top: 210px; }
  .pr-md-210 {
    padding-right: 210px; }
  .pl-md-210 {
    padding-left: 210px; }
  .pb-md-210 {
    padding-bottom: 210px; }
  .p-md-210 {
    padding: 210px; }
  .mt-md-210 {
    margin-top: 210px; }
  .mr-md-210 {
    margin-right: 210px; }
  .ml-md-210 {
    margin-left: 210px; }
  .mb-md-210 {
    margin-bottom: 210px; }
  .m-md-210 {
    margin: 210px; }
  .pt-md-215 {
    padding-top: 215px; }
  .pr-md-215 {
    padding-right: 215px; }
  .pl-md-215 {
    padding-left: 215px; }
  .pb-md-215 {
    padding-bottom: 215px; }
  .p-md-215 {
    padding: 215px; }
  .mt-md-215 {
    margin-top: 215px; }
  .mr-md-215 {
    margin-right: 215px; }
  .ml-md-215 {
    margin-left: 215px; }
  .mb-md-215 {
    margin-bottom: 215px; }
  .m-md-215 {
    margin: 215px; }
  .pt-md-220 {
    padding-top: 220px; }
  .pr-md-220 {
    padding-right: 220px; }
  .pl-md-220 {
    padding-left: 220px; }
  .pb-md-220 {
    padding-bottom: 220px; }
  .p-md-220 {
    padding: 220px; }
  .mt-md-220 {
    margin-top: 220px; }
  .mr-md-220 {
    margin-right: 220px; }
  .ml-md-220 {
    margin-left: 220px; }
  .mb-md-220 {
    margin-bottom: 220px; }
  .m-md-220 {
    margin: 220px; }
  .pt-md-225 {
    padding-top: 225px; }
  .pr-md-225 {
    padding-right: 225px; }
  .pl-md-225 {
    padding-left: 225px; }
  .pb-md-225 {
    padding-bottom: 225px; }
  .p-md-225 {
    padding: 225px; }
  .mt-md-225 {
    margin-top: 225px; }
  .mr-md-225 {
    margin-right: 225px; }
  .ml-md-225 {
    margin-left: 225px; }
  .mb-md-225 {
    margin-bottom: 225px; }
  .m-md-225 {
    margin: 225px; }
  .pt-md-230 {
    padding-top: 230px; }
  .pr-md-230 {
    padding-right: 230px; }
  .pl-md-230 {
    padding-left: 230px; }
  .pb-md-230 {
    padding-bottom: 230px; }
  .p-md-230 {
    padding: 230px; }
  .mt-md-230 {
    margin-top: 230px; }
  .mr-md-230 {
    margin-right: 230px; }
  .ml-md-230 {
    margin-left: 230px; }
  .mb-md-230 {
    margin-bottom: 230px; }
  .m-md-230 {
    margin: 230px; }
  .pt-md-235 {
    padding-top: 235px; }
  .pr-md-235 {
    padding-right: 235px; }
  .pl-md-235 {
    padding-left: 235px; }
  .pb-md-235 {
    padding-bottom: 235px; }
  .p-md-235 {
    padding: 235px; }
  .mt-md-235 {
    margin-top: 235px; }
  .mr-md-235 {
    margin-right: 235px; }
  .ml-md-235 {
    margin-left: 235px; }
  .mb-md-235 {
    margin-bottom: 235px; }
  .m-md-235 {
    margin: 235px; }
  .pt-md-240 {
    padding-top: 240px; }
  .pr-md-240 {
    padding-right: 240px; }
  .pl-md-240 {
    padding-left: 240px; }
  .pb-md-240 {
    padding-bottom: 240px; }
  .p-md-240 {
    padding: 240px; }
  .mt-md-240 {
    margin-top: 240px; }
  .mr-md-240 {
    margin-right: 240px; }
  .ml-md-240 {
    margin-left: 240px; }
  .mb-md-240 {
    margin-bottom: 240px; }
  .m-md-240 {
    margin: 240px; }
  .pt-md-245 {
    padding-top: 245px; }
  .pr-md-245 {
    padding-right: 245px; }
  .pl-md-245 {
    padding-left: 245px; }
  .pb-md-245 {
    padding-bottom: 245px; }
  .p-md-245 {
    padding: 245px; }
  .mt-md-245 {
    margin-top: 245px; }
  .mr-md-245 {
    margin-right: 245px; }
  .ml-md-245 {
    margin-left: 245px; }
  .mb-md-245 {
    margin-bottom: 245px; }
  .m-md-245 {
    margin: 245px; }
  .pt-md-250 {
    padding-top: 250px; }
  .pr-md-250 {
    padding-right: 250px; }
  .pl-md-250 {
    padding-left: 250px; }
  .pb-md-250 {
    padding-bottom: 250px; }
  .p-md-250 {
    padding: 250px; }
  .mt-md-250 {
    margin-top: 250px; }
  .mr-md-250 {
    margin-right: 250px; }
  .ml-md-250 {
    margin-left: 250px; }
  .mb-md-250 {
    margin-bottom: 250px; }
  .m-md-250 {
    margin: 250px; }
  .pt-md-255 {
    padding-top: 255px; }
  .pr-md-255 {
    padding-right: 255px; }
  .pl-md-255 {
    padding-left: 255px; }
  .pb-md-255 {
    padding-bottom: 255px; }
  .p-md-255 {
    padding: 255px; }
  .mt-md-255 {
    margin-top: 255px; }
  .mr-md-255 {
    margin-right: 255px; }
  .ml-md-255 {
    margin-left: 255px; }
  .mb-md-255 {
    margin-bottom: 255px; }
  .m-md-255 {
    margin: 255px; }
  .pt-md-260 {
    padding-top: 260px; }
  .pr-md-260 {
    padding-right: 260px; }
  .pl-md-260 {
    padding-left: 260px; }
  .pb-md-260 {
    padding-bottom: 260px; }
  .p-md-260 {
    padding: 260px; }
  .mt-md-260 {
    margin-top: 260px; }
  .mr-md-260 {
    margin-right: 260px; }
  .ml-md-260 {
    margin-left: 260px; }
  .mb-md-260 {
    margin-bottom: 260px; }
  .m-md-260 {
    margin: 260px; }
  .pt-md-265 {
    padding-top: 265px; }
  .pr-md-265 {
    padding-right: 265px; }
  .pl-md-265 {
    padding-left: 265px; }
  .pb-md-265 {
    padding-bottom: 265px; }
  .p-md-265 {
    padding: 265px; }
  .mt-md-265 {
    margin-top: 265px; }
  .mr-md-265 {
    margin-right: 265px; }
  .ml-md-265 {
    margin-left: 265px; }
  .mb-md-265 {
    margin-bottom: 265px; }
  .m-md-265 {
    margin: 265px; }
  .pt-md-270 {
    padding-top: 270px; }
  .pr-md-270 {
    padding-right: 270px; }
  .pl-md-270 {
    padding-left: 270px; }
  .pb-md-270 {
    padding-bottom: 270px; }
  .p-md-270 {
    padding: 270px; }
  .mt-md-270 {
    margin-top: 270px; }
  .mr-md-270 {
    margin-right: 270px; }
  .ml-md-270 {
    margin-left: 270px; }
  .mb-md-270 {
    margin-bottom: 270px; }
  .m-md-270 {
    margin: 270px; }
  .pt-md-275 {
    padding-top: 275px; }
  .pr-md-275 {
    padding-right: 275px; }
  .pl-md-275 {
    padding-left: 275px; }
  .pb-md-275 {
    padding-bottom: 275px; }
  .p-md-275 {
    padding: 275px; }
  .mt-md-275 {
    margin-top: 275px; }
  .mr-md-275 {
    margin-right: 275px; }
  .ml-md-275 {
    margin-left: 275px; }
  .mb-md-275 {
    margin-bottom: 275px; }
  .m-md-275 {
    margin: 275px; }
  .pt-md-280 {
    padding-top: 280px; }
  .pr-md-280 {
    padding-right: 280px; }
  .pl-md-280 {
    padding-left: 280px; }
  .pb-md-280 {
    padding-bottom: 280px; }
  .p-md-280 {
    padding: 280px; }
  .mt-md-280 {
    margin-top: 280px; }
  .mr-md-280 {
    margin-right: 280px; }
  .ml-md-280 {
    margin-left: 280px; }
  .mb-md-280 {
    margin-bottom: 280px; }
  .m-md-280 {
    margin: 280px; }
  .pt-md-285 {
    padding-top: 285px; }
  .pr-md-285 {
    padding-right: 285px; }
  .pl-md-285 {
    padding-left: 285px; }
  .pb-md-285 {
    padding-bottom: 285px; }
  .p-md-285 {
    padding: 285px; }
  .mt-md-285 {
    margin-top: 285px; }
  .mr-md-285 {
    margin-right: 285px; }
  .ml-md-285 {
    margin-left: 285px; }
  .mb-md-285 {
    margin-bottom: 285px; }
  .m-md-285 {
    margin: 285px; }
  .pt-md-290 {
    padding-top: 290px; }
  .pr-md-290 {
    padding-right: 290px; }
  .pl-md-290 {
    padding-left: 290px; }
  .pb-md-290 {
    padding-bottom: 290px; }
  .p-md-290 {
    padding: 290px; }
  .mt-md-290 {
    margin-top: 290px; }
  .mr-md-290 {
    margin-right: 290px; }
  .ml-md-290 {
    margin-left: 290px; }
  .mb-md-290 {
    margin-bottom: 290px; }
  .m-md-290 {
    margin: 290px; }
  .pt-md-295 {
    padding-top: 295px; }
  .pr-md-295 {
    padding-right: 295px; }
  .pl-md-295 {
    padding-left: 295px; }
  .pb-md-295 {
    padding-bottom: 295px; }
  .p-md-295 {
    padding: 295px; }
  .mt-md-295 {
    margin-top: 295px; }
  .mr-md-295 {
    margin-right: 295px; }
  .ml-md-295 {
    margin-left: 295px; }
  .mb-md-295 {
    margin-bottom: 295px; }
  .m-md-295 {
    margin: 295px; }
  .pt-md-300 {
    padding-top: 300px; }
  .pr-md-300 {
    padding-right: 300px; }
  .pl-md-300 {
    padding-left: 300px; }
  .pb-md-300 {
    padding-bottom: 300px; }
  .p-md-300 {
    padding: 300px; }
  .mt-md-300 {
    margin-top: 300px; }
  .mr-md-300 {
    margin-right: 300px; }
  .ml-md-300 {
    margin-left: 300px; }
  .mb-md-300 {
    margin-bottom: 300px; }
  .m-md-300 {
    margin: 300px; }
  .pt-md-305 {
    padding-top: 305px; }
  .pr-md-305 {
    padding-right: 305px; }
  .pl-md-305 {
    padding-left: 305px; }
  .pb-md-305 {
    padding-bottom: 305px; }
  .p-md-305 {
    padding: 305px; }
  .mt-md-305 {
    margin-top: 305px; }
  .mr-md-305 {
    margin-right: 305px; }
  .ml-md-305 {
    margin-left: 305px; }
  .mb-md-305 {
    margin-bottom: 305px; }
  .m-md-305 {
    margin: 305px; }
  .pt-md-310 {
    padding-top: 310px; }
  .pr-md-310 {
    padding-right: 310px; }
  .pl-md-310 {
    padding-left: 310px; }
  .pb-md-310 {
    padding-bottom: 310px; }
  .p-md-310 {
    padding: 310px; }
  .mt-md-310 {
    margin-top: 310px; }
  .mr-md-310 {
    margin-right: 310px; }
  .ml-md-310 {
    margin-left: 310px; }
  .mb-md-310 {
    margin-bottom: 310px; }
  .m-md-310 {
    margin: 310px; }
  .pt-md-315 {
    padding-top: 315px; }
  .pr-md-315 {
    padding-right: 315px; }
  .pl-md-315 {
    padding-left: 315px; }
  .pb-md-315 {
    padding-bottom: 315px; }
  .p-md-315 {
    padding: 315px; }
  .mt-md-315 {
    margin-top: 315px; }
  .mr-md-315 {
    margin-right: 315px; }
  .ml-md-315 {
    margin-left: 315px; }
  .mb-md-315 {
    margin-bottom: 315px; }
  .m-md-315 {
    margin: 315px; }
  .pt-md-320 {
    padding-top: 320px; }
  .pr-md-320 {
    padding-right: 320px; }
  .pl-md-320 {
    padding-left: 320px; }
  .pb-md-320 {
    padding-bottom: 320px; }
  .p-md-320 {
    padding: 320px; }
  .mt-md-320 {
    margin-top: 320px; }
  .mr-md-320 {
    margin-right: 320px; }
  .ml-md-320 {
    margin-left: 320px; }
  .mb-md-320 {
    margin-bottom: 320px; }
  .m-md-320 {
    margin: 320px; }
  .pt-md-325 {
    padding-top: 325px; }
  .pr-md-325 {
    padding-right: 325px; }
  .pl-md-325 {
    padding-left: 325px; }
  .pb-md-325 {
    padding-bottom: 325px; }
  .p-md-325 {
    padding: 325px; }
  .mt-md-325 {
    margin-top: 325px; }
  .mr-md-325 {
    margin-right: 325px; }
  .ml-md-325 {
    margin-left: 325px; }
  .mb-md-325 {
    margin-bottom: 325px; }
  .m-md-325 {
    margin: 325px; }
  .pt-md-330 {
    padding-top: 330px; }
  .pr-md-330 {
    padding-right: 330px; }
  .pl-md-330 {
    padding-left: 330px; }
  .pb-md-330 {
    padding-bottom: 330px; }
  .p-md-330 {
    padding: 330px; }
  .mt-md-330 {
    margin-top: 330px; }
  .mr-md-330 {
    margin-right: 330px; }
  .ml-md-330 {
    margin-left: 330px; }
  .mb-md-330 {
    margin-bottom: 330px; }
  .m-md-330 {
    margin: 330px; }
  .pt-md-335 {
    padding-top: 335px; }
  .pr-md-335 {
    padding-right: 335px; }
  .pl-md-335 {
    padding-left: 335px; }
  .pb-md-335 {
    padding-bottom: 335px; }
  .p-md-335 {
    padding: 335px; }
  .mt-md-335 {
    margin-top: 335px; }
  .mr-md-335 {
    margin-right: 335px; }
  .ml-md-335 {
    margin-left: 335px; }
  .mb-md-335 {
    margin-bottom: 335px; }
  .m-md-335 {
    margin: 335px; }
  .pt-md-340 {
    padding-top: 340px; }
  .pr-md-340 {
    padding-right: 340px; }
  .pl-md-340 {
    padding-left: 340px; }
  .pb-md-340 {
    padding-bottom: 340px; }
  .p-md-340 {
    padding: 340px; }
  .mt-md-340 {
    margin-top: 340px; }
  .mr-md-340 {
    margin-right: 340px; }
  .ml-md-340 {
    margin-left: 340px; }
  .mb-md-340 {
    margin-bottom: 340px; }
  .m-md-340 {
    margin: 340px; }
  .pt-md-345 {
    padding-top: 345px; }
  .pr-md-345 {
    padding-right: 345px; }
  .pl-md-345 {
    padding-left: 345px; }
  .pb-md-345 {
    padding-bottom: 345px; }
  .p-md-345 {
    padding: 345px; }
  .mt-md-345 {
    margin-top: 345px; }
  .mr-md-345 {
    margin-right: 345px; }
  .ml-md-345 {
    margin-left: 345px; }
  .mb-md-345 {
    margin-bottom: 345px; }
  .m-md-345 {
    margin: 345px; }
  .pt-md-350 {
    padding-top: 350px; }
  .pr-md-350 {
    padding-right: 350px; }
  .pl-md-350 {
    padding-left: 350px; }
  .pb-md-350 {
    padding-bottom: 350px; }
  .p-md-350 {
    padding: 350px; }
  .mt-md-350 {
    margin-top: 350px; }
  .mr-md-350 {
    margin-right: 350px; }
  .ml-md-350 {
    margin-left: 350px; }
  .mb-md-350 {
    margin-bottom: 350px; }
  .m-md-350 {
    margin: 350px; }
  .pt-md-355 {
    padding-top: 355px; }
  .pr-md-355 {
    padding-right: 355px; }
  .pl-md-355 {
    padding-left: 355px; }
  .pb-md-355 {
    padding-bottom: 355px; }
  .p-md-355 {
    padding: 355px; }
  .mt-md-355 {
    margin-top: 355px; }
  .mr-md-355 {
    margin-right: 355px; }
  .ml-md-355 {
    margin-left: 355px; }
  .mb-md-355 {
    margin-bottom: 355px; }
  .m-md-355 {
    margin: 355px; }
  .pt-md-360 {
    padding-top: 360px; }
  .pr-md-360 {
    padding-right: 360px; }
  .pl-md-360 {
    padding-left: 360px; }
  .pb-md-360 {
    padding-bottom: 360px; }
  .p-md-360 {
    padding: 360px; }
  .mt-md-360 {
    margin-top: 360px; }
  .mr-md-360 {
    margin-right: 360px; }
  .ml-md-360 {
    margin-left: 360px; }
  .mb-md-360 {
    margin-bottom: 360px; }
  .m-md-360 {
    margin: 360px; }
  .pt-md-365 {
    padding-top: 365px; }
  .pr-md-365 {
    padding-right: 365px; }
  .pl-md-365 {
    padding-left: 365px; }
  .pb-md-365 {
    padding-bottom: 365px; }
  .p-md-365 {
    padding: 365px; }
  .mt-md-365 {
    margin-top: 365px; }
  .mr-md-365 {
    margin-right: 365px; }
  .ml-md-365 {
    margin-left: 365px; }
  .mb-md-365 {
    margin-bottom: 365px; }
  .m-md-365 {
    margin: 365px; }
  .pt-md-370 {
    padding-top: 370px; }
  .pr-md-370 {
    padding-right: 370px; }
  .pl-md-370 {
    padding-left: 370px; }
  .pb-md-370 {
    padding-bottom: 370px; }
  .p-md-370 {
    padding: 370px; }
  .mt-md-370 {
    margin-top: 370px; }
  .mr-md-370 {
    margin-right: 370px; }
  .ml-md-370 {
    margin-left: 370px; }
  .mb-md-370 {
    margin-bottom: 370px; }
  .m-md-370 {
    margin: 370px; }
  .pt-md-375 {
    padding-top: 375px; }
  .pr-md-375 {
    padding-right: 375px; }
  .pl-md-375 {
    padding-left: 375px; }
  .pb-md-375 {
    padding-bottom: 375px; }
  .p-md-375 {
    padding: 375px; }
  .mt-md-375 {
    margin-top: 375px; }
  .mr-md-375 {
    margin-right: 375px; }
  .ml-md-375 {
    margin-left: 375px; }
  .mb-md-375 {
    margin-bottom: 375px; }
  .m-md-375 {
    margin: 375px; }
  .pt-md-380 {
    padding-top: 380px; }
  .pr-md-380 {
    padding-right: 380px; }
  .pl-md-380 {
    padding-left: 380px; }
  .pb-md-380 {
    padding-bottom: 380px; }
  .p-md-380 {
    padding: 380px; }
  .mt-md-380 {
    margin-top: 380px; }
  .mr-md-380 {
    margin-right: 380px; }
  .ml-md-380 {
    margin-left: 380px; }
  .mb-md-380 {
    margin-bottom: 380px; }
  .m-md-380 {
    margin: 380px; }
  .pt-md-385 {
    padding-top: 385px; }
  .pr-md-385 {
    padding-right: 385px; }
  .pl-md-385 {
    padding-left: 385px; }
  .pb-md-385 {
    padding-bottom: 385px; }
  .p-md-385 {
    padding: 385px; }
  .mt-md-385 {
    margin-top: 385px; }
  .mr-md-385 {
    margin-right: 385px; }
  .ml-md-385 {
    margin-left: 385px; }
  .mb-md-385 {
    margin-bottom: 385px; }
  .m-md-385 {
    margin: 385px; }
  .pt-md-390 {
    padding-top: 390px; }
  .pr-md-390 {
    padding-right: 390px; }
  .pl-md-390 {
    padding-left: 390px; }
  .pb-md-390 {
    padding-bottom: 390px; }
  .p-md-390 {
    padding: 390px; }
  .mt-md-390 {
    margin-top: 390px; }
  .mr-md-390 {
    margin-right: 390px; }
  .ml-md-390 {
    margin-left: 390px; }
  .mb-md-390 {
    margin-bottom: 390px; }
  .m-md-390 {
    margin: 390px; }
  .pt-md-395 {
    padding-top: 395px; }
  .pr-md-395 {
    padding-right: 395px; }
  .pl-md-395 {
    padding-left: 395px; }
  .pb-md-395 {
    padding-bottom: 395px; }
  .p-md-395 {
    padding: 395px; }
  .mt-md-395 {
    margin-top: 395px; }
  .mr-md-395 {
    margin-right: 395px; }
  .ml-md-395 {
    margin-left: 395px; }
  .mb-md-395 {
    margin-bottom: 395px; }
  .m-md-395 {
    margin: 395px; }
  .pt-md-400 {
    padding-top: 400px; }
  .pr-md-400 {
    padding-right: 400px; }
  .pl-md-400 {
    padding-left: 400px; }
  .pb-md-400 {
    padding-bottom: 400px; }
  .p-md-400 {
    padding: 400px; }
  .mt-md-400 {
    margin-top: 400px; }
  .mr-md-400 {
    margin-right: 400px; }
  .ml-md-400 {
    margin-left: 400px; }
  .mb-md-400 {
    margin-bottom: 400px; }
  .m-md-400 {
    margin: 400px; }
  .pt-md-405 {
    padding-top: 405px; }
  .pr-md-405 {
    padding-right: 405px; }
  .pl-md-405 {
    padding-left: 405px; }
  .pb-md-405 {
    padding-bottom: 405px; }
  .p-md-405 {
    padding: 405px; }
  .mt-md-405 {
    margin-top: 405px; }
  .mr-md-405 {
    margin-right: 405px; }
  .ml-md-405 {
    margin-left: 405px; }
  .mb-md-405 {
    margin-bottom: 405px; }
  .m-md-405 {
    margin: 405px; }
  .pt-md-410 {
    padding-top: 410px; }
  .pr-md-410 {
    padding-right: 410px; }
  .pl-md-410 {
    padding-left: 410px; }
  .pb-md-410 {
    padding-bottom: 410px; }
  .p-md-410 {
    padding: 410px; }
  .mt-md-410 {
    margin-top: 410px; }
  .mr-md-410 {
    margin-right: 410px; }
  .ml-md-410 {
    margin-left: 410px; }
  .mb-md-410 {
    margin-bottom: 410px; }
  .m-md-410 {
    margin: 410px; }
  .pt-md-415 {
    padding-top: 415px; }
  .pr-md-415 {
    padding-right: 415px; }
  .pl-md-415 {
    padding-left: 415px; }
  .pb-md-415 {
    padding-bottom: 415px; }
  .p-md-415 {
    padding: 415px; }
  .mt-md-415 {
    margin-top: 415px; }
  .mr-md-415 {
    margin-right: 415px; }
  .ml-md-415 {
    margin-left: 415px; }
  .mb-md-415 {
    margin-bottom: 415px; }
  .m-md-415 {
    margin: 415px; }
  .pt-md-420 {
    padding-top: 420px; }
  .pr-md-420 {
    padding-right: 420px; }
  .pl-md-420 {
    padding-left: 420px; }
  .pb-md-420 {
    padding-bottom: 420px; }
  .p-md-420 {
    padding: 420px; }
  .mt-md-420 {
    margin-top: 420px; }
  .mr-md-420 {
    margin-right: 420px; }
  .ml-md-420 {
    margin-left: 420px; }
  .mb-md-420 {
    margin-bottom: 420px; }
  .m-md-420 {
    margin: 420px; }
  .pt-md-425 {
    padding-top: 425px; }
  .pr-md-425 {
    padding-right: 425px; }
  .pl-md-425 {
    padding-left: 425px; }
  .pb-md-425 {
    padding-bottom: 425px; }
  .p-md-425 {
    padding: 425px; }
  .mt-md-425 {
    margin-top: 425px; }
  .mr-md-425 {
    margin-right: 425px; }
  .ml-md-425 {
    margin-left: 425px; }
  .mb-md-425 {
    margin-bottom: 425px; }
  .m-md-425 {
    margin: 425px; }
  .pt-md-430 {
    padding-top: 430px; }
  .pr-md-430 {
    padding-right: 430px; }
  .pl-md-430 {
    padding-left: 430px; }
  .pb-md-430 {
    padding-bottom: 430px; }
  .p-md-430 {
    padding: 430px; }
  .mt-md-430 {
    margin-top: 430px; }
  .mr-md-430 {
    margin-right: 430px; }
  .ml-md-430 {
    margin-left: 430px; }
  .mb-md-430 {
    margin-bottom: 430px; }
  .m-md-430 {
    margin: 430px; }
  .pt-md-435 {
    padding-top: 435px; }
  .pr-md-435 {
    padding-right: 435px; }
  .pl-md-435 {
    padding-left: 435px; }
  .pb-md-435 {
    padding-bottom: 435px; }
  .p-md-435 {
    padding: 435px; }
  .mt-md-435 {
    margin-top: 435px; }
  .mr-md-435 {
    margin-right: 435px; }
  .ml-md-435 {
    margin-left: 435px; }
  .mb-md-435 {
    margin-bottom: 435px; }
  .m-md-435 {
    margin: 435px; }
  .pt-md-440 {
    padding-top: 440px; }
  .pr-md-440 {
    padding-right: 440px; }
  .pl-md-440 {
    padding-left: 440px; }
  .pb-md-440 {
    padding-bottom: 440px; }
  .p-md-440 {
    padding: 440px; }
  .mt-md-440 {
    margin-top: 440px; }
  .mr-md-440 {
    margin-right: 440px; }
  .ml-md-440 {
    margin-left: 440px; }
  .mb-md-440 {
    margin-bottom: 440px; }
  .m-md-440 {
    margin: 440px; }
  .pt-md-445 {
    padding-top: 445px; }
  .pr-md-445 {
    padding-right: 445px; }
  .pl-md-445 {
    padding-left: 445px; }
  .pb-md-445 {
    padding-bottom: 445px; }
  .p-md-445 {
    padding: 445px; }
  .mt-md-445 {
    margin-top: 445px; }
  .mr-md-445 {
    margin-right: 445px; }
  .ml-md-445 {
    margin-left: 445px; }
  .mb-md-445 {
    margin-bottom: 445px; }
  .m-md-445 {
    margin: 445px; }
  .pt-md-450 {
    padding-top: 450px; }
  .pr-md-450 {
    padding-right: 450px; }
  .pl-md-450 {
    padding-left: 450px; }
  .pb-md-450 {
    padding-bottom: 450px; }
  .p-md-450 {
    padding: 450px; }
  .mt-md-450 {
    margin-top: 450px; }
  .mr-md-450 {
    margin-right: 450px; }
  .ml-md-450 {
    margin-left: 450px; }
  .mb-md-450 {
    margin-bottom: 450px; }
  .m-md-450 {
    margin: 450px; }
  .pt-md-455 {
    padding-top: 455px; }
  .pr-md-455 {
    padding-right: 455px; }
  .pl-md-455 {
    padding-left: 455px; }
  .pb-md-455 {
    padding-bottom: 455px; }
  .p-md-455 {
    padding: 455px; }
  .mt-md-455 {
    margin-top: 455px; }
  .mr-md-455 {
    margin-right: 455px; }
  .ml-md-455 {
    margin-left: 455px; }
  .mb-md-455 {
    margin-bottom: 455px; }
  .m-md-455 {
    margin: 455px; }
  .pt-md-460 {
    padding-top: 460px; }
  .pr-md-460 {
    padding-right: 460px; }
  .pl-md-460 {
    padding-left: 460px; }
  .pb-md-460 {
    padding-bottom: 460px; }
  .p-md-460 {
    padding: 460px; }
  .mt-md-460 {
    margin-top: 460px; }
  .mr-md-460 {
    margin-right: 460px; }
  .ml-md-460 {
    margin-left: 460px; }
  .mb-md-460 {
    margin-bottom: 460px; }
  .m-md-460 {
    margin: 460px; }
  .pt-md-465 {
    padding-top: 465px; }
  .pr-md-465 {
    padding-right: 465px; }
  .pl-md-465 {
    padding-left: 465px; }
  .pb-md-465 {
    padding-bottom: 465px; }
  .p-md-465 {
    padding: 465px; }
  .mt-md-465 {
    margin-top: 465px; }
  .mr-md-465 {
    margin-right: 465px; }
  .ml-md-465 {
    margin-left: 465px; }
  .mb-md-465 {
    margin-bottom: 465px; }
  .m-md-465 {
    margin: 465px; }
  .pt-md-470 {
    padding-top: 470px; }
  .pr-md-470 {
    padding-right: 470px; }
  .pl-md-470 {
    padding-left: 470px; }
  .pb-md-470 {
    padding-bottom: 470px; }
  .p-md-470 {
    padding: 470px; }
  .mt-md-470 {
    margin-top: 470px; }
  .mr-md-470 {
    margin-right: 470px; }
  .ml-md-470 {
    margin-left: 470px; }
  .mb-md-470 {
    margin-bottom: 470px; }
  .m-md-470 {
    margin: 470px; }
  .pt-md-475 {
    padding-top: 475px; }
  .pr-md-475 {
    padding-right: 475px; }
  .pl-md-475 {
    padding-left: 475px; }
  .pb-md-475 {
    padding-bottom: 475px; }
  .p-md-475 {
    padding: 475px; }
  .mt-md-475 {
    margin-top: 475px; }
  .mr-md-475 {
    margin-right: 475px; }
  .ml-md-475 {
    margin-left: 475px; }
  .mb-md-475 {
    margin-bottom: 475px; }
  .m-md-475 {
    margin: 475px; }
  .pt-md-480 {
    padding-top: 480px; }
  .pr-md-480 {
    padding-right: 480px; }
  .pl-md-480 {
    padding-left: 480px; }
  .pb-md-480 {
    padding-bottom: 480px; }
  .p-md-480 {
    padding: 480px; }
  .mt-md-480 {
    margin-top: 480px; }
  .mr-md-480 {
    margin-right: 480px; }
  .ml-md-480 {
    margin-left: 480px; }
  .mb-md-480 {
    margin-bottom: 480px; }
  .m-md-480 {
    margin: 480px; }
  .pt-md-485 {
    padding-top: 485px; }
  .pr-md-485 {
    padding-right: 485px; }
  .pl-md-485 {
    padding-left: 485px; }
  .pb-md-485 {
    padding-bottom: 485px; }
  .p-md-485 {
    padding: 485px; }
  .mt-md-485 {
    margin-top: 485px; }
  .mr-md-485 {
    margin-right: 485px; }
  .ml-md-485 {
    margin-left: 485px; }
  .mb-md-485 {
    margin-bottom: 485px; }
  .m-md-485 {
    margin: 485px; }
  .pt-md-490 {
    padding-top: 490px; }
  .pr-md-490 {
    padding-right: 490px; }
  .pl-md-490 {
    padding-left: 490px; }
  .pb-md-490 {
    padding-bottom: 490px; }
  .p-md-490 {
    padding: 490px; }
  .mt-md-490 {
    margin-top: 490px; }
  .mr-md-490 {
    margin-right: 490px; }
  .ml-md-490 {
    margin-left: 490px; }
  .mb-md-490 {
    margin-bottom: 490px; }
  .m-md-490 {
    margin: 490px; }
  .pt-md-495 {
    padding-top: 495px; }
  .pr-md-495 {
    padding-right: 495px; }
  .pl-md-495 {
    padding-left: 495px; }
  .pb-md-495 {
    padding-bottom: 495px; }
  .p-md-495 {
    padding: 495px; }
  .mt-md-495 {
    margin-top: 495px; }
  .mr-md-495 {
    margin-right: 495px; }
  .ml-md-495 {
    margin-left: 495px; }
  .mb-md-495 {
    margin-bottom: 495px; }
  .m-md-495 {
    margin: 495px; }
  .pt-md-500 {
    padding-top: 500px; }
  .pr-md-500 {
    padding-right: 500px; }
  .pl-md-500 {
    padding-left: 500px; }
  .pb-md-500 {
    padding-bottom: 500px; }
  .p-md-500 {
    padding: 500px; }
  .mt-md-500 {
    margin-top: 500px; }
  .mr-md-500 {
    margin-right: 500px; }
  .ml-md-500 {
    margin-left: 500px; }
  .mb-md-500 {
    margin-bottom: 500px; }
  .m-md-500 {
    margin: 500px; }
  .pt-md-10 {
    padding-top: 10px; }
  .pr-md-10 {
    padding-right: 10px; }
  .pl-md-10 {
    padding-left: 10px; }
  .pb-md-10 {
    padding-bottom: 10px; }
  .p-md-10 {
    padding: 10px; }
  .mt-md-10 {
    margin-top: 10px; }
  .mr-md-10 {
    margin-right: 10px; }
  .ml-md-10 {
    margin-left: 10px; }
  .mb-md-10 {
    margin-bottom: 10px; }
  .m-md-10 {
    margin: 10px; }
  .pt-md-20 {
    padding-top: 20px; }
  .pr-md-20 {
    padding-right: 20px; }
  .pl-md-20 {
    padding-left: 20px; }
  .pb-md-20 {
    padding-bottom: 20px; }
  .p-md-20 {
    padding: 20px; }
  .mt-md-20 {
    margin-top: 20px; }
  .mr-md-20 {
    margin-right: 20px; }
  .ml-md-20 {
    margin-left: 20px; }
  .mb-md-20 {
    margin-bottom: 20px; }
  .m-md-20 {
    margin: 20px; }
  .pt-md-30 {
    padding-top: 30px; }
  .pr-md-30 {
    padding-right: 30px; }
  .pl-md-30 {
    padding-left: 30px; }
  .pb-md-30 {
    padding-bottom: 30px; }
  .p-md-30 {
    padding: 30px; }
  .mt-md-30 {
    margin-top: 30px; }
  .mr-md-30 {
    margin-right: 30px; }
  .ml-md-30 {
    margin-left: 30px; }
  .mb-md-30 {
    margin-bottom: 30px; }
  .m-md-30 {
    margin: 30px; }
  .pt-md-40 {
    padding-top: 40px; }
  .pr-md-40 {
    padding-right: 40px; }
  .pl-md-40 {
    padding-left: 40px; }
  .pb-md-40 {
    padding-bottom: 40px; }
  .p-md-40 {
    padding: 40px; }
  .mt-md-40 {
    margin-top: 40px; }
  .mr-md-40 {
    margin-right: 40px; }
  .ml-md-40 {
    margin-left: 40px; }
  .mb-md-40 {
    margin-bottom: 40px; }
  .m-md-40 {
    margin: 40px; }
  .pt-md-50 {
    padding-top: 50px; }
  .pr-md-50 {
    padding-right: 50px; }
  .pl-md-50 {
    padding-left: 50px; }
  .pb-md-50 {
    padding-bottom: 50px; }
  .p-md-50 {
    padding: 50px; }
  .mt-md-50 {
    margin-top: 50px; }
  .mr-md-50 {
    margin-right: 50px; }
  .ml-md-50 {
    margin-left: 50px; }
  .mb-md-50 {
    margin-bottom: 50px; }
  .m-md-50 {
    margin: 50px; }
  .pt-md-60 {
    padding-top: 60px; }
  .pr-md-60 {
    padding-right: 60px; }
  .pl-md-60 {
    padding-left: 60px; }
  .pb-md-60 {
    padding-bottom: 60px; }
  .p-md-60 {
    padding: 60px; }
  .mt-md-60 {
    margin-top: 60px; }
  .mr-md-60 {
    margin-right: 60px; }
  .ml-md-60 {
    margin-left: 60px; }
  .mb-md-60 {
    margin-bottom: 60px; }
  .m-md-60 {
    margin: 60px; }
  .pt-md-70 {
    padding-top: 70px; }
  .pr-md-70 {
    padding-right: 70px; }
  .pl-md-70 {
    padding-left: 70px; }
  .pb-md-70 {
    padding-bottom: 70px; }
  .p-md-70 {
    padding: 70px; }
  .mt-md-70 {
    margin-top: 70px; }
  .mr-md-70 {
    margin-right: 70px; }
  .ml-md-70 {
    margin-left: 70px; }
  .mb-md-70 {
    margin-bottom: 70px; }
  .m-md-70 {
    margin: 70px; }
  .pt-md-80 {
    padding-top: 80px; }
  .pr-md-80 {
    padding-right: 80px; }
  .pl-md-80 {
    padding-left: 80px; }
  .pb-md-80 {
    padding-bottom: 80px; }
  .p-md-80 {
    padding: 80px; }
  .mt-md-80 {
    margin-top: 80px; }
  .mr-md-80 {
    margin-right: 80px; }
  .ml-md-80 {
    margin-left: 80px; }
  .mb-md-80 {
    margin-bottom: 80px; }
  .m-md-80 {
    margin: 80px; }
  .pt-md-90 {
    padding-top: 90px; }
  .pr-md-90 {
    padding-right: 90px; }
  .pl-md-90 {
    padding-left: 90px; }
  .pb-md-90 {
    padding-bottom: 90px; }
  .p-md-90 {
    padding: 90px; }
  .mt-md-90 {
    margin-top: 90px; }
  .mr-md-90 {
    margin-right: 90px; }
  .ml-md-90 {
    margin-left: 90px; }
  .mb-md-90 {
    margin-bottom: 90px; }
  .m-md-90 {
    margin: 90px; }
  .pt-md-100 {
    padding-top: 100px; }
  .pr-md-100 {
    padding-right: 100px; }
  .pl-md-100 {
    padding-left: 100px; }
  .pb-md-100 {
    padding-bottom: 100px; }
  .p-md-100 {
    padding: 100px; }
  .mt-md-100 {
    margin-top: 100px; }
  .mr-md-100 {
    margin-right: 100px; }
  .ml-md-100 {
    margin-left: 100px; }
  .mb-md-100 {
    margin-bottom: 100px; }
  .m-md-100 {
    margin: 100px; } }

@media (min-width: 992px) {
  .pt-lg-1 {
    padding-top: 1px; }
  .pr-lg-1 {
    padding-right: 1px; }
  .pl-lg-1 {
    padding-left: 1px; }
  .pb-lg-1 {
    padding-bottom: 1px; }
  .p-lg-1 {
    padding: 1px; }
  .mt-lg-1 {
    margin-top: 1px; }
  .mr-lg-1 {
    margin-right: 1px; }
  .ml-lg-1 {
    margin-left: 1px; }
  .mb-lg-1 {
    margin-bottom: 1px; }
  .m-lg-1 {
    margin: 1px; }
  .pt-lg-2 {
    padding-top: 2px; }
  .pr-lg-2 {
    padding-right: 2px; }
  .pl-lg-2 {
    padding-left: 2px; }
  .pb-lg-2 {
    padding-bottom: 2px; }
  .p-lg-2 {
    padding: 2px; }
  .mt-lg-2 {
    margin-top: 2px; }
  .mr-lg-2 {
    margin-right: 2px; }
  .ml-lg-2 {
    margin-left: 2px; }
  .mb-lg-2 {
    margin-bottom: 2px; }
  .m-lg-2 {
    margin: 2px; }
  .pt-lg-3 {
    padding-top: 3px; }
  .pr-lg-3 {
    padding-right: 3px; }
  .pl-lg-3 {
    padding-left: 3px; }
  .pb-lg-3 {
    padding-bottom: 3px; }
  .p-lg-3 {
    padding: 3px; }
  .mt-lg-3 {
    margin-top: 3px; }
  .mr-lg-3 {
    margin-right: 3px; }
  .ml-lg-3 {
    margin-left: 3px; }
  .mb-lg-3 {
    margin-bottom: 3px; }
  .m-lg-3 {
    margin: 3px; }
  .pt-lg-4 {
    padding-top: 4px; }
  .pr-lg-4 {
    padding-right: 4px; }
  .pl-lg-4 {
    padding-left: 4px; }
  .pb-lg-4 {
    padding-bottom: 4px; }
  .p-lg-4 {
    padding: 4px; }
  .mt-lg-4 {
    margin-top: 4px; }
  .mr-lg-4 {
    margin-right: 4px; }
  .ml-lg-4 {
    margin-left: 4px; }
  .mb-lg-4 {
    margin-bottom: 4px; }
  .m-lg-4 {
    margin: 4px; }
  .pt-lg-5 {
    padding-top: 5px; }
  .pr-lg-5 {
    padding-right: 5px; }
  .pl-lg-5 {
    padding-left: 5px; }
  .pb-lg-5 {
    padding-bottom: 5px; }
  .p-lg-5 {
    padding: 5px; }
  .mt-lg-5 {
    margin-top: 5px; }
  .mr-lg-5 {
    margin-right: 5px; }
  .ml-lg-5 {
    margin-left: 5px; }
  .mb-lg-5 {
    margin-bottom: 5px; }
  .m-lg-5 {
    margin: 5px; }
  .pt-lg-6 {
    padding-top: 6px; }
  .pr-lg-6 {
    padding-right: 6px; }
  .pl-lg-6 {
    padding-left: 6px; }
  .pb-lg-6 {
    padding-bottom: 6px; }
  .p-lg-6 {
    padding: 6px; }
  .mt-lg-6 {
    margin-top: 6px; }
  .mr-lg-6 {
    margin-right: 6px; }
  .ml-lg-6 {
    margin-left: 6px; }
  .mb-lg-6 {
    margin-bottom: 6px; }
  .m-lg-6 {
    margin: 6px; }
  .pt-lg-7 {
    padding-top: 7px; }
  .pr-lg-7 {
    padding-right: 7px; }
  .pl-lg-7 {
    padding-left: 7px; }
  .pb-lg-7 {
    padding-bottom: 7px; }
  .p-lg-7 {
    padding: 7px; }
  .mt-lg-7 {
    margin-top: 7px; }
  .mr-lg-7 {
    margin-right: 7px; }
  .ml-lg-7 {
    margin-left: 7px; }
  .mb-lg-7 {
    margin-bottom: 7px; }
  .m-lg-7 {
    margin: 7px; }
  .pt-lg-8 {
    padding-top: 8px; }
  .pr-lg-8 {
    padding-right: 8px; }
  .pl-lg-8 {
    padding-left: 8px; }
  .pb-lg-8 {
    padding-bottom: 8px; }
  .p-lg-8 {
    padding: 8px; }
  .mt-lg-8 {
    margin-top: 8px; }
  .mr-lg-8 {
    margin-right: 8px; }
  .ml-lg-8 {
    margin-left: 8px; }
  .mb-lg-8 {
    margin-bottom: 8px; }
  .m-lg-8 {
    margin: 8px; }
  .pt-lg-9 {
    padding-top: 9px; }
  .pr-lg-9 {
    padding-right: 9px; }
  .pl-lg-9 {
    padding-left: 9px; }
  .pb-lg-9 {
    padding-bottom: 9px; }
  .p-lg-9 {
    padding: 9px; }
  .mt-lg-9 {
    margin-top: 9px; }
  .mr-lg-9 {
    margin-right: 9px; }
  .ml-lg-9 {
    margin-left: 9px; }
  .mb-lg-9 {
    margin-bottom: 9px; }
  .m-lg-9 {
    margin: 9px; }
  .pt-lg-10 {
    padding-top: 10px; }
  .pr-lg-10 {
    padding-right: 10px; }
  .pl-lg-10 {
    padding-left: 10px; }
  .pb-lg-10 {
    padding-bottom: 10px; }
  .p-lg-10 {
    padding: 10px; }
  .mt-lg-10 {
    margin-top: 10px; }
  .mr-lg-10 {
    margin-right: 10px; }
  .ml-lg-10 {
    margin-left: 10px; }
  .mb-lg-10 {
    margin-bottom: 10px; }
  .m-lg-10 {
    margin: 10px; }
  .pt-lg-11 {
    padding-top: 11px; }
  .pr-lg-11 {
    padding-right: 11px; }
  .pl-lg-11 {
    padding-left: 11px; }
  .pb-lg-11 {
    padding-bottom: 11px; }
  .p-lg-11 {
    padding: 11px; }
  .mt-lg-11 {
    margin-top: 11px; }
  .mr-lg-11 {
    margin-right: 11px; }
  .ml-lg-11 {
    margin-left: 11px; }
  .mb-lg-11 {
    margin-bottom: 11px; }
  .m-lg-11 {
    margin: 11px; }
  .pt-lg-12 {
    padding-top: 12px; }
  .pr-lg-12 {
    padding-right: 12px; }
  .pl-lg-12 {
    padding-left: 12px; }
  .pb-lg-12 {
    padding-bottom: 12px; }
  .p-lg-12 {
    padding: 12px; }
  .mt-lg-12 {
    margin-top: 12px; }
  .mr-lg-12 {
    margin-right: 12px; }
  .ml-lg-12 {
    margin-left: 12px; }
  .mb-lg-12 {
    margin-bottom: 12px; }
  .m-lg-12 {
    margin: 12px; }
  .pt-lg-13 {
    padding-top: 13px; }
  .pr-lg-13 {
    padding-right: 13px; }
  .pl-lg-13 {
    padding-left: 13px; }
  .pb-lg-13 {
    padding-bottom: 13px; }
  .p-lg-13 {
    padding: 13px; }
  .mt-lg-13 {
    margin-top: 13px; }
  .mr-lg-13 {
    margin-right: 13px; }
  .ml-lg-13 {
    margin-left: 13px; }
  .mb-lg-13 {
    margin-bottom: 13px; }
  .m-lg-13 {
    margin: 13px; }
  .pt-lg-14 {
    padding-top: 14px; }
  .pr-lg-14 {
    padding-right: 14px; }
  .pl-lg-14 {
    padding-left: 14px; }
  .pb-lg-14 {
    padding-bottom: 14px; }
  .p-lg-14 {
    padding: 14px; }
  .mt-lg-14 {
    margin-top: 14px; }
  .mr-lg-14 {
    margin-right: 14px; }
  .ml-lg-14 {
    margin-left: 14px; }
  .mb-lg-14 {
    margin-bottom: 14px; }
  .m-lg-14 {
    margin: 14px; }
  .pt-lg-15 {
    padding-top: 15px; }
  .pr-lg-15 {
    padding-right: 15px; }
  .pl-lg-15 {
    padding-left: 15px; }
  .pb-lg-15 {
    padding-bottom: 15px; }
  .p-lg-15 {
    padding: 15px; }
  .mt-lg-15 {
    margin-top: 15px; }
  .mr-lg-15 {
    margin-right: 15px; }
  .ml-lg-15 {
    margin-left: 15px; }
  .mb-lg-15 {
    margin-bottom: 15px; }
  .m-lg-15 {
    margin: 15px; }
  .pt-lg-16 {
    padding-top: 16px; }
  .pr-lg-16 {
    padding-right: 16px; }
  .pl-lg-16 {
    padding-left: 16px; }
  .pb-lg-16 {
    padding-bottom: 16px; }
  .p-lg-16 {
    padding: 16px; }
  .mt-lg-16 {
    margin-top: 16px; }
  .mr-lg-16 {
    margin-right: 16px; }
  .ml-lg-16 {
    margin-left: 16px; }
  .mb-lg-16 {
    margin-bottom: 16px; }
  .m-lg-16 {
    margin: 16px; }
  .pt-lg-17 {
    padding-top: 17px; }
  .pr-lg-17 {
    padding-right: 17px; }
  .pl-lg-17 {
    padding-left: 17px; }
  .pb-lg-17 {
    padding-bottom: 17px; }
  .p-lg-17 {
    padding: 17px; }
  .mt-lg-17 {
    margin-top: 17px; }
  .mr-lg-17 {
    margin-right: 17px; }
  .ml-lg-17 {
    margin-left: 17px; }
  .mb-lg-17 {
    margin-bottom: 17px; }
  .m-lg-17 {
    margin: 17px; }
  .pt-lg-18 {
    padding-top: 18px; }
  .pr-lg-18 {
    padding-right: 18px; }
  .pl-lg-18 {
    padding-left: 18px; }
  .pb-lg-18 {
    padding-bottom: 18px; }
  .p-lg-18 {
    padding: 18px; }
  .mt-lg-18 {
    margin-top: 18px; }
  .mr-lg-18 {
    margin-right: 18px; }
  .ml-lg-18 {
    margin-left: 18px; }
  .mb-lg-18 {
    margin-bottom: 18px; }
  .m-lg-18 {
    margin: 18px; }
  .pt-lg-19 {
    padding-top: 19px; }
  .pr-lg-19 {
    padding-right: 19px; }
  .pl-lg-19 {
    padding-left: 19px; }
  .pb-lg-19 {
    padding-bottom: 19px; }
  .p-lg-19 {
    padding: 19px; }
  .mt-lg-19 {
    margin-top: 19px; }
  .mr-lg-19 {
    margin-right: 19px; }
  .ml-lg-19 {
    margin-left: 19px; }
  .mb-lg-19 {
    margin-bottom: 19px; }
  .m-lg-19 {
    margin: 19px; }
  .pt-lg-20 {
    padding-top: 20px; }
  .pr-lg-20 {
    padding-right: 20px; }
  .pl-lg-20 {
    padding-left: 20px; }
  .pb-lg-20 {
    padding-bottom: 20px; }
  .p-lg-20 {
    padding: 20px; }
  .mt-lg-20 {
    margin-top: 20px; }
  .mr-lg-20 {
    margin-right: 20px; }
  .ml-lg-20 {
    margin-left: 20px; }
  .mb-lg-20 {
    margin-bottom: 20px; }
  .m-lg-20 {
    margin: 20px; }
  .pt-lg-5 {
    padding-top: 5px; }
  .pr-lg-5 {
    padding-right: 5px; }
  .pl-lg-5 {
    padding-left: 5px; }
  .pb-lg-5 {
    padding-bottom: 5px; }
  .p-lg-5 {
    padding: 5px; }
  .mt-lg-5 {
    margin-top: 5px; }
  .mr-lg-5 {
    margin-right: 5px; }
  .ml-lg-5 {
    margin-left: 5px; }
  .mb-lg-5 {
    margin-bottom: 5px; }
  .m-lg-5 {
    margin: 5px; }
  .pt-lg-10 {
    padding-top: 10px; }
  .pr-lg-10 {
    padding-right: 10px; }
  .pl-lg-10 {
    padding-left: 10px; }
  .pb-lg-10 {
    padding-bottom: 10px; }
  .p-lg-10 {
    padding: 10px; }
  .mt-lg-10 {
    margin-top: 10px; }
  .mr-lg-10 {
    margin-right: 10px; }
  .ml-lg-10 {
    margin-left: 10px; }
  .mb-lg-10 {
    margin-bottom: 10px; }
  .m-lg-10 {
    margin: 10px; }
  .pt-lg-15 {
    padding-top: 15px; }
  .pr-lg-15 {
    padding-right: 15px; }
  .pl-lg-15 {
    padding-left: 15px; }
  .pb-lg-15 {
    padding-bottom: 15px; }
  .p-lg-15 {
    padding: 15px; }
  .mt-lg-15 {
    margin-top: 15px; }
  .mr-lg-15 {
    margin-right: 15px; }
  .ml-lg-15 {
    margin-left: 15px; }
  .mb-lg-15 {
    margin-bottom: 15px; }
  .m-lg-15 {
    margin: 15px; }
  .pt-lg-20 {
    padding-top: 20px; }
  .pr-lg-20 {
    padding-right: 20px; }
  .pl-lg-20 {
    padding-left: 20px; }
  .pb-lg-20 {
    padding-bottom: 20px; }
  .p-lg-20 {
    padding: 20px; }
  .mt-lg-20 {
    margin-top: 20px; }
  .mr-lg-20 {
    margin-right: 20px; }
  .ml-lg-20 {
    margin-left: 20px; }
  .mb-lg-20 {
    margin-bottom: 20px; }
  .m-lg-20 {
    margin: 20px; }
  .pt-lg-25 {
    padding-top: 25px; }
  .pr-lg-25 {
    padding-right: 25px; }
  .pl-lg-25 {
    padding-left: 25px; }
  .pb-lg-25 {
    padding-bottom: 25px; }
  .p-lg-25 {
    padding: 25px; }
  .mt-lg-25 {
    margin-top: 25px; }
  .mr-lg-25 {
    margin-right: 25px; }
  .ml-lg-25 {
    margin-left: 25px; }
  .mb-lg-25 {
    margin-bottom: 25px; }
  .m-lg-25 {
    margin: 25px; }
  .pt-lg-30 {
    padding-top: 30px; }
  .pr-lg-30 {
    padding-right: 30px; }
  .pl-lg-30 {
    padding-left: 30px; }
  .pb-lg-30 {
    padding-bottom: 30px; }
  .p-lg-30 {
    padding: 30px; }
  .mt-lg-30 {
    margin-top: 30px; }
  .mr-lg-30 {
    margin-right: 30px; }
  .ml-lg-30 {
    margin-left: 30px; }
  .mb-lg-30 {
    margin-bottom: 30px; }
  .m-lg-30 {
    margin: 30px; }
  .pt-lg-35 {
    padding-top: 35px; }
  .pr-lg-35 {
    padding-right: 35px; }
  .pl-lg-35 {
    padding-left: 35px; }
  .pb-lg-35 {
    padding-bottom: 35px; }
  .p-lg-35 {
    padding: 35px; }
  .mt-lg-35 {
    margin-top: 35px; }
  .mr-lg-35 {
    margin-right: 35px; }
  .ml-lg-35 {
    margin-left: 35px; }
  .mb-lg-35 {
    margin-bottom: 35px; }
  .m-lg-35 {
    margin: 35px; }
  .pt-lg-40 {
    padding-top: 40px; }
  .pr-lg-40 {
    padding-right: 40px; }
  .pl-lg-40 {
    padding-left: 40px; }
  .pb-lg-40 {
    padding-bottom: 40px; }
  .p-lg-40 {
    padding: 40px; }
  .mt-lg-40 {
    margin-top: 40px; }
  .mr-lg-40 {
    margin-right: 40px; }
  .ml-lg-40 {
    margin-left: 40px; }
  .mb-lg-40 {
    margin-bottom: 40px; }
  .m-lg-40 {
    margin: 40px; }
  .pt-lg-45 {
    padding-top: 45px; }
  .pr-lg-45 {
    padding-right: 45px; }
  .pl-lg-45 {
    padding-left: 45px; }
  .pb-lg-45 {
    padding-bottom: 45px; }
  .p-lg-45 {
    padding: 45px; }
  .mt-lg-45 {
    margin-top: 45px; }
  .mr-lg-45 {
    margin-right: 45px; }
  .ml-lg-45 {
    margin-left: 45px; }
  .mb-lg-45 {
    margin-bottom: 45px; }
  .m-lg-45 {
    margin: 45px; }
  .pt-lg-50 {
    padding-top: 50px; }
  .pr-lg-50 {
    padding-right: 50px; }
  .pl-lg-50 {
    padding-left: 50px; }
  .pb-lg-50 {
    padding-bottom: 50px; }
  .p-lg-50 {
    padding: 50px; }
  .mt-lg-50 {
    margin-top: 50px; }
  .mr-lg-50 {
    margin-right: 50px; }
  .ml-lg-50 {
    margin-left: 50px; }
  .mb-lg-50 {
    margin-bottom: 50px; }
  .m-lg-50 {
    margin: 50px; }
  .pt-lg-55 {
    padding-top: 55px; }
  .pr-lg-55 {
    padding-right: 55px; }
  .pl-lg-55 {
    padding-left: 55px; }
  .pb-lg-55 {
    padding-bottom: 55px; }
  .p-lg-55 {
    padding: 55px; }
  .mt-lg-55 {
    margin-top: 55px; }
  .mr-lg-55 {
    margin-right: 55px; }
  .ml-lg-55 {
    margin-left: 55px; }
  .mb-lg-55 {
    margin-bottom: 55px; }
  .m-lg-55 {
    margin: 55px; }
  .pt-lg-60 {
    padding-top: 60px; }
  .pr-lg-60 {
    padding-right: 60px; }
  .pl-lg-60 {
    padding-left: 60px; }
  .pb-lg-60 {
    padding-bottom: 60px; }
  .p-lg-60 {
    padding: 60px; }
  .mt-lg-60 {
    margin-top: 60px; }
  .mr-lg-60 {
    margin-right: 60px; }
  .ml-lg-60 {
    margin-left: 60px; }
  .mb-lg-60 {
    margin-bottom: 60px; }
  .m-lg-60 {
    margin: 60px; }
  .pt-lg-65 {
    padding-top: 65px; }
  .pr-lg-65 {
    padding-right: 65px; }
  .pl-lg-65 {
    padding-left: 65px; }
  .pb-lg-65 {
    padding-bottom: 65px; }
  .p-lg-65 {
    padding: 65px; }
  .mt-lg-65 {
    margin-top: 65px; }
  .mr-lg-65 {
    margin-right: 65px; }
  .ml-lg-65 {
    margin-left: 65px; }
  .mb-lg-65 {
    margin-bottom: 65px; }
  .m-lg-65 {
    margin: 65px; }
  .pt-lg-70 {
    padding-top: 70px; }
  .pr-lg-70 {
    padding-right: 70px; }
  .pl-lg-70 {
    padding-left: 70px; }
  .pb-lg-70 {
    padding-bottom: 70px; }
  .p-lg-70 {
    padding: 70px; }
  .mt-lg-70 {
    margin-top: 70px; }
  .mr-lg-70 {
    margin-right: 70px; }
  .ml-lg-70 {
    margin-left: 70px; }
  .mb-lg-70 {
    margin-bottom: 70px; }
  .m-lg-70 {
    margin: 70px; }
  .pt-lg-75 {
    padding-top: 75px; }
  .pr-lg-75 {
    padding-right: 75px; }
  .pl-lg-75 {
    padding-left: 75px; }
  .pb-lg-75 {
    padding-bottom: 75px; }
  .p-lg-75 {
    padding: 75px; }
  .mt-lg-75 {
    margin-top: 75px; }
  .mr-lg-75 {
    margin-right: 75px; }
  .ml-lg-75 {
    margin-left: 75px; }
  .mb-lg-75 {
    margin-bottom: 75px; }
  .m-lg-75 {
    margin: 75px; }
  .pt-lg-80 {
    padding-top: 80px; }
  .pr-lg-80 {
    padding-right: 80px; }
  .pl-lg-80 {
    padding-left: 80px; }
  .pb-lg-80 {
    padding-bottom: 80px; }
  .p-lg-80 {
    padding: 80px; }
  .mt-lg-80 {
    margin-top: 80px; }
  .mr-lg-80 {
    margin-right: 80px; }
  .ml-lg-80 {
    margin-left: 80px; }
  .mb-lg-80 {
    margin-bottom: 80px; }
  .m-lg-80 {
    margin: 80px; }
  .pt-lg-85 {
    padding-top: 85px; }
  .pr-lg-85 {
    padding-right: 85px; }
  .pl-lg-85 {
    padding-left: 85px; }
  .pb-lg-85 {
    padding-bottom: 85px; }
  .p-lg-85 {
    padding: 85px; }
  .mt-lg-85 {
    margin-top: 85px; }
  .mr-lg-85 {
    margin-right: 85px; }
  .ml-lg-85 {
    margin-left: 85px; }
  .mb-lg-85 {
    margin-bottom: 85px; }
  .m-lg-85 {
    margin: 85px; }
  .pt-lg-90 {
    padding-top: 90px; }
  .pr-lg-90 {
    padding-right: 90px; }
  .pl-lg-90 {
    padding-left: 90px; }
  .pb-lg-90 {
    padding-bottom: 90px; }
  .p-lg-90 {
    padding: 90px; }
  .mt-lg-90 {
    margin-top: 90px; }
  .mr-lg-90 {
    margin-right: 90px; }
  .ml-lg-90 {
    margin-left: 90px; }
  .mb-lg-90 {
    margin-bottom: 90px; }
  .m-lg-90 {
    margin: 90px; }
  .pt-lg-95 {
    padding-top: 95px; }
  .pr-lg-95 {
    padding-right: 95px; }
  .pl-lg-95 {
    padding-left: 95px; }
  .pb-lg-95 {
    padding-bottom: 95px; }
  .p-lg-95 {
    padding: 95px; }
  .mt-lg-95 {
    margin-top: 95px; }
  .mr-lg-95 {
    margin-right: 95px; }
  .ml-lg-95 {
    margin-left: 95px; }
  .mb-lg-95 {
    margin-bottom: 95px; }
  .m-lg-95 {
    margin: 95px; }
  .pt-lg-100 {
    padding-top: 100px; }
  .pr-lg-100 {
    padding-right: 100px; }
  .pl-lg-100 {
    padding-left: 100px; }
  .pb-lg-100 {
    padding-bottom: 100px; }
  .p-lg-100 {
    padding: 100px; }
  .mt-lg-100 {
    margin-top: 100px; }
  .mr-lg-100 {
    margin-right: 100px; }
  .ml-lg-100 {
    margin-left: 100px; }
  .mb-lg-100 {
    margin-bottom: 100px; }
  .m-lg-100 {
    margin: 100px; }
  .pt-lg-105 {
    padding-top: 105px; }
  .pr-lg-105 {
    padding-right: 105px; }
  .pl-lg-105 {
    padding-left: 105px; }
  .pb-lg-105 {
    padding-bottom: 105px; }
  .p-lg-105 {
    padding: 105px; }
  .mt-lg-105 {
    margin-top: 105px; }
  .mr-lg-105 {
    margin-right: 105px; }
  .ml-lg-105 {
    margin-left: 105px; }
  .mb-lg-105 {
    margin-bottom: 105px; }
  .m-lg-105 {
    margin: 105px; }
  .pt-lg-110 {
    padding-top: 110px; }
  .pr-lg-110 {
    padding-right: 110px; }
  .pl-lg-110 {
    padding-left: 110px; }
  .pb-lg-110 {
    padding-bottom: 110px; }
  .p-lg-110 {
    padding: 110px; }
  .mt-lg-110 {
    margin-top: 110px; }
  .mr-lg-110 {
    margin-right: 110px; }
  .ml-lg-110 {
    margin-left: 110px; }
  .mb-lg-110 {
    margin-bottom: 110px; }
  .m-lg-110 {
    margin: 110px; }
  .pt-lg-115 {
    padding-top: 115px; }
  .pr-lg-115 {
    padding-right: 115px; }
  .pl-lg-115 {
    padding-left: 115px; }
  .pb-lg-115 {
    padding-bottom: 115px; }
  .p-lg-115 {
    padding: 115px; }
  .mt-lg-115 {
    margin-top: 115px; }
  .mr-lg-115 {
    margin-right: 115px; }
  .ml-lg-115 {
    margin-left: 115px; }
  .mb-lg-115 {
    margin-bottom: 115px; }
  .m-lg-115 {
    margin: 115px; }
  .pt-lg-120 {
    padding-top: 120px; }
  .pr-lg-120 {
    padding-right: 120px; }
  .pl-lg-120 {
    padding-left: 120px; }
  .pb-lg-120 {
    padding-bottom: 120px; }
  .p-lg-120 {
    padding: 120px; }
  .mt-lg-120 {
    margin-top: 120px; }
  .mr-lg-120 {
    margin-right: 120px; }
  .ml-lg-120 {
    margin-left: 120px; }
  .mb-lg-120 {
    margin-bottom: 120px; }
  .m-lg-120 {
    margin: 120px; }
  .pt-lg-125 {
    padding-top: 125px; }
  .pr-lg-125 {
    padding-right: 125px; }
  .pl-lg-125 {
    padding-left: 125px; }
  .pb-lg-125 {
    padding-bottom: 125px; }
  .p-lg-125 {
    padding: 125px; }
  .mt-lg-125 {
    margin-top: 125px; }
  .mr-lg-125 {
    margin-right: 125px; }
  .ml-lg-125 {
    margin-left: 125px; }
  .mb-lg-125 {
    margin-bottom: 125px; }
  .m-lg-125 {
    margin: 125px; }
  .pt-lg-130 {
    padding-top: 130px; }
  .pr-lg-130 {
    padding-right: 130px; }
  .pl-lg-130 {
    padding-left: 130px; }
  .pb-lg-130 {
    padding-bottom: 130px; }
  .p-lg-130 {
    padding: 130px; }
  .mt-lg-130 {
    margin-top: 130px; }
  .mr-lg-130 {
    margin-right: 130px; }
  .ml-lg-130 {
    margin-left: 130px; }
  .mb-lg-130 {
    margin-bottom: 130px; }
  .m-lg-130 {
    margin: 130px; }
  .pt-lg-135 {
    padding-top: 135px; }
  .pr-lg-135 {
    padding-right: 135px; }
  .pl-lg-135 {
    padding-left: 135px; }
  .pb-lg-135 {
    padding-bottom: 135px; }
  .p-lg-135 {
    padding: 135px; }
  .mt-lg-135 {
    margin-top: 135px; }
  .mr-lg-135 {
    margin-right: 135px; }
  .ml-lg-135 {
    margin-left: 135px; }
  .mb-lg-135 {
    margin-bottom: 135px; }
  .m-lg-135 {
    margin: 135px; }
  .pt-lg-140 {
    padding-top: 140px; }
  .pr-lg-140 {
    padding-right: 140px; }
  .pl-lg-140 {
    padding-left: 140px; }
  .pb-lg-140 {
    padding-bottom: 140px; }
  .p-lg-140 {
    padding: 140px; }
  .mt-lg-140 {
    margin-top: 140px; }
  .mr-lg-140 {
    margin-right: 140px; }
  .ml-lg-140 {
    margin-left: 140px; }
  .mb-lg-140 {
    margin-bottom: 140px; }
  .m-lg-140 {
    margin: 140px; }
  .pt-lg-145 {
    padding-top: 145px; }
  .pr-lg-145 {
    padding-right: 145px; }
  .pl-lg-145 {
    padding-left: 145px; }
  .pb-lg-145 {
    padding-bottom: 145px; }
  .p-lg-145 {
    padding: 145px; }
  .mt-lg-145 {
    margin-top: 145px; }
  .mr-lg-145 {
    margin-right: 145px; }
  .ml-lg-145 {
    margin-left: 145px; }
  .mb-lg-145 {
    margin-bottom: 145px; }
  .m-lg-145 {
    margin: 145px; }
  .pt-lg-150 {
    padding-top: 150px; }
  .pr-lg-150 {
    padding-right: 150px; }
  .pl-lg-150 {
    padding-left: 150px; }
  .pb-lg-150 {
    padding-bottom: 150px; }
  .p-lg-150 {
    padding: 150px; }
  .mt-lg-150 {
    margin-top: 150px; }
  .mr-lg-150 {
    margin-right: 150px; }
  .ml-lg-150 {
    margin-left: 150px; }
  .mb-lg-150 {
    margin-bottom: 150px; }
  .m-lg-150 {
    margin: 150px; }
  .pt-lg-155 {
    padding-top: 155px; }
  .pr-lg-155 {
    padding-right: 155px; }
  .pl-lg-155 {
    padding-left: 155px; }
  .pb-lg-155 {
    padding-bottom: 155px; }
  .p-lg-155 {
    padding: 155px; }
  .mt-lg-155 {
    margin-top: 155px; }
  .mr-lg-155 {
    margin-right: 155px; }
  .ml-lg-155 {
    margin-left: 155px; }
  .mb-lg-155 {
    margin-bottom: 155px; }
  .m-lg-155 {
    margin: 155px; }
  .pt-lg-160 {
    padding-top: 160px; }
  .pr-lg-160 {
    padding-right: 160px; }
  .pl-lg-160 {
    padding-left: 160px; }
  .pb-lg-160 {
    padding-bottom: 160px; }
  .p-lg-160 {
    padding: 160px; }
  .mt-lg-160 {
    margin-top: 160px; }
  .mr-lg-160 {
    margin-right: 160px; }
  .ml-lg-160 {
    margin-left: 160px; }
  .mb-lg-160 {
    margin-bottom: 160px; }
  .m-lg-160 {
    margin: 160px; }
  .pt-lg-165 {
    padding-top: 165px; }
  .pr-lg-165 {
    padding-right: 165px; }
  .pl-lg-165 {
    padding-left: 165px; }
  .pb-lg-165 {
    padding-bottom: 165px; }
  .p-lg-165 {
    padding: 165px; }
  .mt-lg-165 {
    margin-top: 165px; }
  .mr-lg-165 {
    margin-right: 165px; }
  .ml-lg-165 {
    margin-left: 165px; }
  .mb-lg-165 {
    margin-bottom: 165px; }
  .m-lg-165 {
    margin: 165px; }
  .pt-lg-170 {
    padding-top: 170px; }
  .pr-lg-170 {
    padding-right: 170px; }
  .pl-lg-170 {
    padding-left: 170px; }
  .pb-lg-170 {
    padding-bottom: 170px; }
  .p-lg-170 {
    padding: 170px; }
  .mt-lg-170 {
    margin-top: 170px; }
  .mr-lg-170 {
    margin-right: 170px; }
  .ml-lg-170 {
    margin-left: 170px; }
  .mb-lg-170 {
    margin-bottom: 170px; }
  .m-lg-170 {
    margin: 170px; }
  .pt-lg-175 {
    padding-top: 175px; }
  .pr-lg-175 {
    padding-right: 175px; }
  .pl-lg-175 {
    padding-left: 175px; }
  .pb-lg-175 {
    padding-bottom: 175px; }
  .p-lg-175 {
    padding: 175px; }
  .mt-lg-175 {
    margin-top: 175px; }
  .mr-lg-175 {
    margin-right: 175px; }
  .ml-lg-175 {
    margin-left: 175px; }
  .mb-lg-175 {
    margin-bottom: 175px; }
  .m-lg-175 {
    margin: 175px; }
  .pt-lg-180 {
    padding-top: 180px; }
  .pr-lg-180 {
    padding-right: 180px; }
  .pl-lg-180 {
    padding-left: 180px; }
  .pb-lg-180 {
    padding-bottom: 180px; }
  .p-lg-180 {
    padding: 180px; }
  .mt-lg-180 {
    margin-top: 180px; }
  .mr-lg-180 {
    margin-right: 180px; }
  .ml-lg-180 {
    margin-left: 180px; }
  .mb-lg-180 {
    margin-bottom: 180px; }
  .m-lg-180 {
    margin: 180px; }
  .pt-lg-185 {
    padding-top: 185px; }
  .pr-lg-185 {
    padding-right: 185px; }
  .pl-lg-185 {
    padding-left: 185px; }
  .pb-lg-185 {
    padding-bottom: 185px; }
  .p-lg-185 {
    padding: 185px; }
  .mt-lg-185 {
    margin-top: 185px; }
  .mr-lg-185 {
    margin-right: 185px; }
  .ml-lg-185 {
    margin-left: 185px; }
  .mb-lg-185 {
    margin-bottom: 185px; }
  .m-lg-185 {
    margin: 185px; }
  .pt-lg-190 {
    padding-top: 190px; }
  .pr-lg-190 {
    padding-right: 190px; }
  .pl-lg-190 {
    padding-left: 190px; }
  .pb-lg-190 {
    padding-bottom: 190px; }
  .p-lg-190 {
    padding: 190px; }
  .mt-lg-190 {
    margin-top: 190px; }
  .mr-lg-190 {
    margin-right: 190px; }
  .ml-lg-190 {
    margin-left: 190px; }
  .mb-lg-190 {
    margin-bottom: 190px; }
  .m-lg-190 {
    margin: 190px; }
  .pt-lg-195 {
    padding-top: 195px; }
  .pr-lg-195 {
    padding-right: 195px; }
  .pl-lg-195 {
    padding-left: 195px; }
  .pb-lg-195 {
    padding-bottom: 195px; }
  .p-lg-195 {
    padding: 195px; }
  .mt-lg-195 {
    margin-top: 195px; }
  .mr-lg-195 {
    margin-right: 195px; }
  .ml-lg-195 {
    margin-left: 195px; }
  .mb-lg-195 {
    margin-bottom: 195px; }
  .m-lg-195 {
    margin: 195px; }
  .pt-lg-200 {
    padding-top: 200px; }
  .pr-lg-200 {
    padding-right: 200px; }
  .pl-lg-200 {
    padding-left: 200px; }
  .pb-lg-200 {
    padding-bottom: 200px; }
  .p-lg-200 {
    padding: 200px; }
  .mt-lg-200 {
    margin-top: 200px; }
  .mr-lg-200 {
    margin-right: 200px; }
  .ml-lg-200 {
    margin-left: 200px; }
  .mb-lg-200 {
    margin-bottom: 200px; }
  .m-lg-200 {
    margin: 200px; }
  .pt-lg-205 {
    padding-top: 205px; }
  .pr-lg-205 {
    padding-right: 205px; }
  .pl-lg-205 {
    padding-left: 205px; }
  .pb-lg-205 {
    padding-bottom: 205px; }
  .p-lg-205 {
    padding: 205px; }
  .mt-lg-205 {
    margin-top: 205px; }
  .mr-lg-205 {
    margin-right: 205px; }
  .ml-lg-205 {
    margin-left: 205px; }
  .mb-lg-205 {
    margin-bottom: 205px; }
  .m-lg-205 {
    margin: 205px; }
  .pt-lg-210 {
    padding-top: 210px; }
  .pr-lg-210 {
    padding-right: 210px; }
  .pl-lg-210 {
    padding-left: 210px; }
  .pb-lg-210 {
    padding-bottom: 210px; }
  .p-lg-210 {
    padding: 210px; }
  .mt-lg-210 {
    margin-top: 210px; }
  .mr-lg-210 {
    margin-right: 210px; }
  .ml-lg-210 {
    margin-left: 210px; }
  .mb-lg-210 {
    margin-bottom: 210px; }
  .m-lg-210 {
    margin: 210px; }
  .pt-lg-215 {
    padding-top: 215px; }
  .pr-lg-215 {
    padding-right: 215px; }
  .pl-lg-215 {
    padding-left: 215px; }
  .pb-lg-215 {
    padding-bottom: 215px; }
  .p-lg-215 {
    padding: 215px; }
  .mt-lg-215 {
    margin-top: 215px; }
  .mr-lg-215 {
    margin-right: 215px; }
  .ml-lg-215 {
    margin-left: 215px; }
  .mb-lg-215 {
    margin-bottom: 215px; }
  .m-lg-215 {
    margin: 215px; }
  .pt-lg-220 {
    padding-top: 220px; }
  .pr-lg-220 {
    padding-right: 220px; }
  .pl-lg-220 {
    padding-left: 220px; }
  .pb-lg-220 {
    padding-bottom: 220px; }
  .p-lg-220 {
    padding: 220px; }
  .mt-lg-220 {
    margin-top: 220px; }
  .mr-lg-220 {
    margin-right: 220px; }
  .ml-lg-220 {
    margin-left: 220px; }
  .mb-lg-220 {
    margin-bottom: 220px; }
  .m-lg-220 {
    margin: 220px; }
  .pt-lg-225 {
    padding-top: 225px; }
  .pr-lg-225 {
    padding-right: 225px; }
  .pl-lg-225 {
    padding-left: 225px; }
  .pb-lg-225 {
    padding-bottom: 225px; }
  .p-lg-225 {
    padding: 225px; }
  .mt-lg-225 {
    margin-top: 225px; }
  .mr-lg-225 {
    margin-right: 225px; }
  .ml-lg-225 {
    margin-left: 225px; }
  .mb-lg-225 {
    margin-bottom: 225px; }
  .m-lg-225 {
    margin: 225px; }
  .pt-lg-230 {
    padding-top: 230px; }
  .pr-lg-230 {
    padding-right: 230px; }
  .pl-lg-230 {
    padding-left: 230px; }
  .pb-lg-230 {
    padding-bottom: 230px; }
  .p-lg-230 {
    padding: 230px; }
  .mt-lg-230 {
    margin-top: 230px; }
  .mr-lg-230 {
    margin-right: 230px; }
  .ml-lg-230 {
    margin-left: 230px; }
  .mb-lg-230 {
    margin-bottom: 230px; }
  .m-lg-230 {
    margin: 230px; }
  .pt-lg-235 {
    padding-top: 235px; }
  .pr-lg-235 {
    padding-right: 235px; }
  .pl-lg-235 {
    padding-left: 235px; }
  .pb-lg-235 {
    padding-bottom: 235px; }
  .p-lg-235 {
    padding: 235px; }
  .mt-lg-235 {
    margin-top: 235px; }
  .mr-lg-235 {
    margin-right: 235px; }
  .ml-lg-235 {
    margin-left: 235px; }
  .mb-lg-235 {
    margin-bottom: 235px; }
  .m-lg-235 {
    margin: 235px; }
  .pt-lg-240 {
    padding-top: 240px; }
  .pr-lg-240 {
    padding-right: 240px; }
  .pl-lg-240 {
    padding-left: 240px; }
  .pb-lg-240 {
    padding-bottom: 240px; }
  .p-lg-240 {
    padding: 240px; }
  .mt-lg-240 {
    margin-top: 240px; }
  .mr-lg-240 {
    margin-right: 240px; }
  .ml-lg-240 {
    margin-left: 240px; }
  .mb-lg-240 {
    margin-bottom: 240px; }
  .m-lg-240 {
    margin: 240px; }
  .pt-lg-245 {
    padding-top: 245px; }
  .pr-lg-245 {
    padding-right: 245px; }
  .pl-lg-245 {
    padding-left: 245px; }
  .pb-lg-245 {
    padding-bottom: 245px; }
  .p-lg-245 {
    padding: 245px; }
  .mt-lg-245 {
    margin-top: 245px; }
  .mr-lg-245 {
    margin-right: 245px; }
  .ml-lg-245 {
    margin-left: 245px; }
  .mb-lg-245 {
    margin-bottom: 245px; }
  .m-lg-245 {
    margin: 245px; }
  .pt-lg-250 {
    padding-top: 250px; }
  .pr-lg-250 {
    padding-right: 250px; }
  .pl-lg-250 {
    padding-left: 250px; }
  .pb-lg-250 {
    padding-bottom: 250px; }
  .p-lg-250 {
    padding: 250px; }
  .mt-lg-250 {
    margin-top: 250px; }
  .mr-lg-250 {
    margin-right: 250px; }
  .ml-lg-250 {
    margin-left: 250px; }
  .mb-lg-250 {
    margin-bottom: 250px; }
  .m-lg-250 {
    margin: 250px; }
  .pt-lg-255 {
    padding-top: 255px; }
  .pr-lg-255 {
    padding-right: 255px; }
  .pl-lg-255 {
    padding-left: 255px; }
  .pb-lg-255 {
    padding-bottom: 255px; }
  .p-lg-255 {
    padding: 255px; }
  .mt-lg-255 {
    margin-top: 255px; }
  .mr-lg-255 {
    margin-right: 255px; }
  .ml-lg-255 {
    margin-left: 255px; }
  .mb-lg-255 {
    margin-bottom: 255px; }
  .m-lg-255 {
    margin: 255px; }
  .pt-lg-260 {
    padding-top: 260px; }
  .pr-lg-260 {
    padding-right: 260px; }
  .pl-lg-260 {
    padding-left: 260px; }
  .pb-lg-260 {
    padding-bottom: 260px; }
  .p-lg-260 {
    padding: 260px; }
  .mt-lg-260 {
    margin-top: 260px; }
  .mr-lg-260 {
    margin-right: 260px; }
  .ml-lg-260 {
    margin-left: 260px; }
  .mb-lg-260 {
    margin-bottom: 260px; }
  .m-lg-260 {
    margin: 260px; }
  .pt-lg-265 {
    padding-top: 265px; }
  .pr-lg-265 {
    padding-right: 265px; }
  .pl-lg-265 {
    padding-left: 265px; }
  .pb-lg-265 {
    padding-bottom: 265px; }
  .p-lg-265 {
    padding: 265px; }
  .mt-lg-265 {
    margin-top: 265px; }
  .mr-lg-265 {
    margin-right: 265px; }
  .ml-lg-265 {
    margin-left: 265px; }
  .mb-lg-265 {
    margin-bottom: 265px; }
  .m-lg-265 {
    margin: 265px; }
  .pt-lg-270 {
    padding-top: 270px; }
  .pr-lg-270 {
    padding-right: 270px; }
  .pl-lg-270 {
    padding-left: 270px; }
  .pb-lg-270 {
    padding-bottom: 270px; }
  .p-lg-270 {
    padding: 270px; }
  .mt-lg-270 {
    margin-top: 270px; }
  .mr-lg-270 {
    margin-right: 270px; }
  .ml-lg-270 {
    margin-left: 270px; }
  .mb-lg-270 {
    margin-bottom: 270px; }
  .m-lg-270 {
    margin: 270px; }
  .pt-lg-275 {
    padding-top: 275px; }
  .pr-lg-275 {
    padding-right: 275px; }
  .pl-lg-275 {
    padding-left: 275px; }
  .pb-lg-275 {
    padding-bottom: 275px; }
  .p-lg-275 {
    padding: 275px; }
  .mt-lg-275 {
    margin-top: 275px; }
  .mr-lg-275 {
    margin-right: 275px; }
  .ml-lg-275 {
    margin-left: 275px; }
  .mb-lg-275 {
    margin-bottom: 275px; }
  .m-lg-275 {
    margin: 275px; }
  .pt-lg-280 {
    padding-top: 280px; }
  .pr-lg-280 {
    padding-right: 280px; }
  .pl-lg-280 {
    padding-left: 280px; }
  .pb-lg-280 {
    padding-bottom: 280px; }
  .p-lg-280 {
    padding: 280px; }
  .mt-lg-280 {
    margin-top: 280px; }
  .mr-lg-280 {
    margin-right: 280px; }
  .ml-lg-280 {
    margin-left: 280px; }
  .mb-lg-280 {
    margin-bottom: 280px; }
  .m-lg-280 {
    margin: 280px; }
  .pt-lg-285 {
    padding-top: 285px; }
  .pr-lg-285 {
    padding-right: 285px; }
  .pl-lg-285 {
    padding-left: 285px; }
  .pb-lg-285 {
    padding-bottom: 285px; }
  .p-lg-285 {
    padding: 285px; }
  .mt-lg-285 {
    margin-top: 285px; }
  .mr-lg-285 {
    margin-right: 285px; }
  .ml-lg-285 {
    margin-left: 285px; }
  .mb-lg-285 {
    margin-bottom: 285px; }
  .m-lg-285 {
    margin: 285px; }
  .pt-lg-290 {
    padding-top: 290px; }
  .pr-lg-290 {
    padding-right: 290px; }
  .pl-lg-290 {
    padding-left: 290px; }
  .pb-lg-290 {
    padding-bottom: 290px; }
  .p-lg-290 {
    padding: 290px; }
  .mt-lg-290 {
    margin-top: 290px; }
  .mr-lg-290 {
    margin-right: 290px; }
  .ml-lg-290 {
    margin-left: 290px; }
  .mb-lg-290 {
    margin-bottom: 290px; }
  .m-lg-290 {
    margin: 290px; }
  .pt-lg-295 {
    padding-top: 295px; }
  .pr-lg-295 {
    padding-right: 295px; }
  .pl-lg-295 {
    padding-left: 295px; }
  .pb-lg-295 {
    padding-bottom: 295px; }
  .p-lg-295 {
    padding: 295px; }
  .mt-lg-295 {
    margin-top: 295px; }
  .mr-lg-295 {
    margin-right: 295px; }
  .ml-lg-295 {
    margin-left: 295px; }
  .mb-lg-295 {
    margin-bottom: 295px; }
  .m-lg-295 {
    margin: 295px; }
  .pt-lg-300 {
    padding-top: 300px; }
  .pr-lg-300 {
    padding-right: 300px; }
  .pl-lg-300 {
    padding-left: 300px; }
  .pb-lg-300 {
    padding-bottom: 300px; }
  .p-lg-300 {
    padding: 300px; }
  .mt-lg-300 {
    margin-top: 300px; }
  .mr-lg-300 {
    margin-right: 300px; }
  .ml-lg-300 {
    margin-left: 300px; }
  .mb-lg-300 {
    margin-bottom: 300px; }
  .m-lg-300 {
    margin: 300px; }
  .pt-lg-305 {
    padding-top: 305px; }
  .pr-lg-305 {
    padding-right: 305px; }
  .pl-lg-305 {
    padding-left: 305px; }
  .pb-lg-305 {
    padding-bottom: 305px; }
  .p-lg-305 {
    padding: 305px; }
  .mt-lg-305 {
    margin-top: 305px; }
  .mr-lg-305 {
    margin-right: 305px; }
  .ml-lg-305 {
    margin-left: 305px; }
  .mb-lg-305 {
    margin-bottom: 305px; }
  .m-lg-305 {
    margin: 305px; }
  .pt-lg-310 {
    padding-top: 310px; }
  .pr-lg-310 {
    padding-right: 310px; }
  .pl-lg-310 {
    padding-left: 310px; }
  .pb-lg-310 {
    padding-bottom: 310px; }
  .p-lg-310 {
    padding: 310px; }
  .mt-lg-310 {
    margin-top: 310px; }
  .mr-lg-310 {
    margin-right: 310px; }
  .ml-lg-310 {
    margin-left: 310px; }
  .mb-lg-310 {
    margin-bottom: 310px; }
  .m-lg-310 {
    margin: 310px; }
  .pt-lg-315 {
    padding-top: 315px; }
  .pr-lg-315 {
    padding-right: 315px; }
  .pl-lg-315 {
    padding-left: 315px; }
  .pb-lg-315 {
    padding-bottom: 315px; }
  .p-lg-315 {
    padding: 315px; }
  .mt-lg-315 {
    margin-top: 315px; }
  .mr-lg-315 {
    margin-right: 315px; }
  .ml-lg-315 {
    margin-left: 315px; }
  .mb-lg-315 {
    margin-bottom: 315px; }
  .m-lg-315 {
    margin: 315px; }
  .pt-lg-320 {
    padding-top: 320px; }
  .pr-lg-320 {
    padding-right: 320px; }
  .pl-lg-320 {
    padding-left: 320px; }
  .pb-lg-320 {
    padding-bottom: 320px; }
  .p-lg-320 {
    padding: 320px; }
  .mt-lg-320 {
    margin-top: 320px; }
  .mr-lg-320 {
    margin-right: 320px; }
  .ml-lg-320 {
    margin-left: 320px; }
  .mb-lg-320 {
    margin-bottom: 320px; }
  .m-lg-320 {
    margin: 320px; }
  .pt-lg-325 {
    padding-top: 325px; }
  .pr-lg-325 {
    padding-right: 325px; }
  .pl-lg-325 {
    padding-left: 325px; }
  .pb-lg-325 {
    padding-bottom: 325px; }
  .p-lg-325 {
    padding: 325px; }
  .mt-lg-325 {
    margin-top: 325px; }
  .mr-lg-325 {
    margin-right: 325px; }
  .ml-lg-325 {
    margin-left: 325px; }
  .mb-lg-325 {
    margin-bottom: 325px; }
  .m-lg-325 {
    margin: 325px; }
  .pt-lg-330 {
    padding-top: 330px; }
  .pr-lg-330 {
    padding-right: 330px; }
  .pl-lg-330 {
    padding-left: 330px; }
  .pb-lg-330 {
    padding-bottom: 330px; }
  .p-lg-330 {
    padding: 330px; }
  .mt-lg-330 {
    margin-top: 330px; }
  .mr-lg-330 {
    margin-right: 330px; }
  .ml-lg-330 {
    margin-left: 330px; }
  .mb-lg-330 {
    margin-bottom: 330px; }
  .m-lg-330 {
    margin: 330px; }
  .pt-lg-335 {
    padding-top: 335px; }
  .pr-lg-335 {
    padding-right: 335px; }
  .pl-lg-335 {
    padding-left: 335px; }
  .pb-lg-335 {
    padding-bottom: 335px; }
  .p-lg-335 {
    padding: 335px; }
  .mt-lg-335 {
    margin-top: 335px; }
  .mr-lg-335 {
    margin-right: 335px; }
  .ml-lg-335 {
    margin-left: 335px; }
  .mb-lg-335 {
    margin-bottom: 335px; }
  .m-lg-335 {
    margin: 335px; }
  .pt-lg-340 {
    padding-top: 340px; }
  .pr-lg-340 {
    padding-right: 340px; }
  .pl-lg-340 {
    padding-left: 340px; }
  .pb-lg-340 {
    padding-bottom: 340px; }
  .p-lg-340 {
    padding: 340px; }
  .mt-lg-340 {
    margin-top: 340px; }
  .mr-lg-340 {
    margin-right: 340px; }
  .ml-lg-340 {
    margin-left: 340px; }
  .mb-lg-340 {
    margin-bottom: 340px; }
  .m-lg-340 {
    margin: 340px; }
  .pt-lg-345 {
    padding-top: 345px; }
  .pr-lg-345 {
    padding-right: 345px; }
  .pl-lg-345 {
    padding-left: 345px; }
  .pb-lg-345 {
    padding-bottom: 345px; }
  .p-lg-345 {
    padding: 345px; }
  .mt-lg-345 {
    margin-top: 345px; }
  .mr-lg-345 {
    margin-right: 345px; }
  .ml-lg-345 {
    margin-left: 345px; }
  .mb-lg-345 {
    margin-bottom: 345px; }
  .m-lg-345 {
    margin: 345px; }
  .pt-lg-350 {
    padding-top: 350px; }
  .pr-lg-350 {
    padding-right: 350px; }
  .pl-lg-350 {
    padding-left: 350px; }
  .pb-lg-350 {
    padding-bottom: 350px; }
  .p-lg-350 {
    padding: 350px; }
  .mt-lg-350 {
    margin-top: 350px; }
  .mr-lg-350 {
    margin-right: 350px; }
  .ml-lg-350 {
    margin-left: 350px; }
  .mb-lg-350 {
    margin-bottom: 350px; }
  .m-lg-350 {
    margin: 350px; }
  .pt-lg-355 {
    padding-top: 355px; }
  .pr-lg-355 {
    padding-right: 355px; }
  .pl-lg-355 {
    padding-left: 355px; }
  .pb-lg-355 {
    padding-bottom: 355px; }
  .p-lg-355 {
    padding: 355px; }
  .mt-lg-355 {
    margin-top: 355px; }
  .mr-lg-355 {
    margin-right: 355px; }
  .ml-lg-355 {
    margin-left: 355px; }
  .mb-lg-355 {
    margin-bottom: 355px; }
  .m-lg-355 {
    margin: 355px; }
  .pt-lg-360 {
    padding-top: 360px; }
  .pr-lg-360 {
    padding-right: 360px; }
  .pl-lg-360 {
    padding-left: 360px; }
  .pb-lg-360 {
    padding-bottom: 360px; }
  .p-lg-360 {
    padding: 360px; }
  .mt-lg-360 {
    margin-top: 360px; }
  .mr-lg-360 {
    margin-right: 360px; }
  .ml-lg-360 {
    margin-left: 360px; }
  .mb-lg-360 {
    margin-bottom: 360px; }
  .m-lg-360 {
    margin: 360px; }
  .pt-lg-365 {
    padding-top: 365px; }
  .pr-lg-365 {
    padding-right: 365px; }
  .pl-lg-365 {
    padding-left: 365px; }
  .pb-lg-365 {
    padding-bottom: 365px; }
  .p-lg-365 {
    padding: 365px; }
  .mt-lg-365 {
    margin-top: 365px; }
  .mr-lg-365 {
    margin-right: 365px; }
  .ml-lg-365 {
    margin-left: 365px; }
  .mb-lg-365 {
    margin-bottom: 365px; }
  .m-lg-365 {
    margin: 365px; }
  .pt-lg-370 {
    padding-top: 370px; }
  .pr-lg-370 {
    padding-right: 370px; }
  .pl-lg-370 {
    padding-left: 370px; }
  .pb-lg-370 {
    padding-bottom: 370px; }
  .p-lg-370 {
    padding: 370px; }
  .mt-lg-370 {
    margin-top: 370px; }
  .mr-lg-370 {
    margin-right: 370px; }
  .ml-lg-370 {
    margin-left: 370px; }
  .mb-lg-370 {
    margin-bottom: 370px; }
  .m-lg-370 {
    margin: 370px; }
  .pt-lg-375 {
    padding-top: 375px; }
  .pr-lg-375 {
    padding-right: 375px; }
  .pl-lg-375 {
    padding-left: 375px; }
  .pb-lg-375 {
    padding-bottom: 375px; }
  .p-lg-375 {
    padding: 375px; }
  .mt-lg-375 {
    margin-top: 375px; }
  .mr-lg-375 {
    margin-right: 375px; }
  .ml-lg-375 {
    margin-left: 375px; }
  .mb-lg-375 {
    margin-bottom: 375px; }
  .m-lg-375 {
    margin: 375px; }
  .pt-lg-380 {
    padding-top: 380px; }
  .pr-lg-380 {
    padding-right: 380px; }
  .pl-lg-380 {
    padding-left: 380px; }
  .pb-lg-380 {
    padding-bottom: 380px; }
  .p-lg-380 {
    padding: 380px; }
  .mt-lg-380 {
    margin-top: 380px; }
  .mr-lg-380 {
    margin-right: 380px; }
  .ml-lg-380 {
    margin-left: 380px; }
  .mb-lg-380 {
    margin-bottom: 380px; }
  .m-lg-380 {
    margin: 380px; }
  .pt-lg-385 {
    padding-top: 385px; }
  .pr-lg-385 {
    padding-right: 385px; }
  .pl-lg-385 {
    padding-left: 385px; }
  .pb-lg-385 {
    padding-bottom: 385px; }
  .p-lg-385 {
    padding: 385px; }
  .mt-lg-385 {
    margin-top: 385px; }
  .mr-lg-385 {
    margin-right: 385px; }
  .ml-lg-385 {
    margin-left: 385px; }
  .mb-lg-385 {
    margin-bottom: 385px; }
  .m-lg-385 {
    margin: 385px; }
  .pt-lg-390 {
    padding-top: 390px; }
  .pr-lg-390 {
    padding-right: 390px; }
  .pl-lg-390 {
    padding-left: 390px; }
  .pb-lg-390 {
    padding-bottom: 390px; }
  .p-lg-390 {
    padding: 390px; }
  .mt-lg-390 {
    margin-top: 390px; }
  .mr-lg-390 {
    margin-right: 390px; }
  .ml-lg-390 {
    margin-left: 390px; }
  .mb-lg-390 {
    margin-bottom: 390px; }
  .m-lg-390 {
    margin: 390px; }
  .pt-lg-395 {
    padding-top: 395px; }
  .pr-lg-395 {
    padding-right: 395px; }
  .pl-lg-395 {
    padding-left: 395px; }
  .pb-lg-395 {
    padding-bottom: 395px; }
  .p-lg-395 {
    padding: 395px; }
  .mt-lg-395 {
    margin-top: 395px; }
  .mr-lg-395 {
    margin-right: 395px; }
  .ml-lg-395 {
    margin-left: 395px; }
  .mb-lg-395 {
    margin-bottom: 395px; }
  .m-lg-395 {
    margin: 395px; }
  .pt-lg-400 {
    padding-top: 400px; }
  .pr-lg-400 {
    padding-right: 400px; }
  .pl-lg-400 {
    padding-left: 400px; }
  .pb-lg-400 {
    padding-bottom: 400px; }
  .p-lg-400 {
    padding: 400px; }
  .mt-lg-400 {
    margin-top: 400px; }
  .mr-lg-400 {
    margin-right: 400px; }
  .ml-lg-400 {
    margin-left: 400px; }
  .mb-lg-400 {
    margin-bottom: 400px; }
  .m-lg-400 {
    margin: 400px; }
  .pt-lg-405 {
    padding-top: 405px; }
  .pr-lg-405 {
    padding-right: 405px; }
  .pl-lg-405 {
    padding-left: 405px; }
  .pb-lg-405 {
    padding-bottom: 405px; }
  .p-lg-405 {
    padding: 405px; }
  .mt-lg-405 {
    margin-top: 405px; }
  .mr-lg-405 {
    margin-right: 405px; }
  .ml-lg-405 {
    margin-left: 405px; }
  .mb-lg-405 {
    margin-bottom: 405px; }
  .m-lg-405 {
    margin: 405px; }
  .pt-lg-410 {
    padding-top: 410px; }
  .pr-lg-410 {
    padding-right: 410px; }
  .pl-lg-410 {
    padding-left: 410px; }
  .pb-lg-410 {
    padding-bottom: 410px; }
  .p-lg-410 {
    padding: 410px; }
  .mt-lg-410 {
    margin-top: 410px; }
  .mr-lg-410 {
    margin-right: 410px; }
  .ml-lg-410 {
    margin-left: 410px; }
  .mb-lg-410 {
    margin-bottom: 410px; }
  .m-lg-410 {
    margin: 410px; }
  .pt-lg-415 {
    padding-top: 415px; }
  .pr-lg-415 {
    padding-right: 415px; }
  .pl-lg-415 {
    padding-left: 415px; }
  .pb-lg-415 {
    padding-bottom: 415px; }
  .p-lg-415 {
    padding: 415px; }
  .mt-lg-415 {
    margin-top: 415px; }
  .mr-lg-415 {
    margin-right: 415px; }
  .ml-lg-415 {
    margin-left: 415px; }
  .mb-lg-415 {
    margin-bottom: 415px; }
  .m-lg-415 {
    margin: 415px; }
  .pt-lg-420 {
    padding-top: 420px; }
  .pr-lg-420 {
    padding-right: 420px; }
  .pl-lg-420 {
    padding-left: 420px; }
  .pb-lg-420 {
    padding-bottom: 420px; }
  .p-lg-420 {
    padding: 420px; }
  .mt-lg-420 {
    margin-top: 420px; }
  .mr-lg-420 {
    margin-right: 420px; }
  .ml-lg-420 {
    margin-left: 420px; }
  .mb-lg-420 {
    margin-bottom: 420px; }
  .m-lg-420 {
    margin: 420px; }
  .pt-lg-425 {
    padding-top: 425px; }
  .pr-lg-425 {
    padding-right: 425px; }
  .pl-lg-425 {
    padding-left: 425px; }
  .pb-lg-425 {
    padding-bottom: 425px; }
  .p-lg-425 {
    padding: 425px; }
  .mt-lg-425 {
    margin-top: 425px; }
  .mr-lg-425 {
    margin-right: 425px; }
  .ml-lg-425 {
    margin-left: 425px; }
  .mb-lg-425 {
    margin-bottom: 425px; }
  .m-lg-425 {
    margin: 425px; }
  .pt-lg-430 {
    padding-top: 430px; }
  .pr-lg-430 {
    padding-right: 430px; }
  .pl-lg-430 {
    padding-left: 430px; }
  .pb-lg-430 {
    padding-bottom: 430px; }
  .p-lg-430 {
    padding: 430px; }
  .mt-lg-430 {
    margin-top: 430px; }
  .mr-lg-430 {
    margin-right: 430px; }
  .ml-lg-430 {
    margin-left: 430px; }
  .mb-lg-430 {
    margin-bottom: 430px; }
  .m-lg-430 {
    margin: 430px; }
  .pt-lg-435 {
    padding-top: 435px; }
  .pr-lg-435 {
    padding-right: 435px; }
  .pl-lg-435 {
    padding-left: 435px; }
  .pb-lg-435 {
    padding-bottom: 435px; }
  .p-lg-435 {
    padding: 435px; }
  .mt-lg-435 {
    margin-top: 435px; }
  .mr-lg-435 {
    margin-right: 435px; }
  .ml-lg-435 {
    margin-left: 435px; }
  .mb-lg-435 {
    margin-bottom: 435px; }
  .m-lg-435 {
    margin: 435px; }
  .pt-lg-440 {
    padding-top: 440px; }
  .pr-lg-440 {
    padding-right: 440px; }
  .pl-lg-440 {
    padding-left: 440px; }
  .pb-lg-440 {
    padding-bottom: 440px; }
  .p-lg-440 {
    padding: 440px; }
  .mt-lg-440 {
    margin-top: 440px; }
  .mr-lg-440 {
    margin-right: 440px; }
  .ml-lg-440 {
    margin-left: 440px; }
  .mb-lg-440 {
    margin-bottom: 440px; }
  .m-lg-440 {
    margin: 440px; }
  .pt-lg-445 {
    padding-top: 445px; }
  .pr-lg-445 {
    padding-right: 445px; }
  .pl-lg-445 {
    padding-left: 445px; }
  .pb-lg-445 {
    padding-bottom: 445px; }
  .p-lg-445 {
    padding: 445px; }
  .mt-lg-445 {
    margin-top: 445px; }
  .mr-lg-445 {
    margin-right: 445px; }
  .ml-lg-445 {
    margin-left: 445px; }
  .mb-lg-445 {
    margin-bottom: 445px; }
  .m-lg-445 {
    margin: 445px; }
  .pt-lg-450 {
    padding-top: 450px; }
  .pr-lg-450 {
    padding-right: 450px; }
  .pl-lg-450 {
    padding-left: 450px; }
  .pb-lg-450 {
    padding-bottom: 450px; }
  .p-lg-450 {
    padding: 450px; }
  .mt-lg-450 {
    margin-top: 450px; }
  .mr-lg-450 {
    margin-right: 450px; }
  .ml-lg-450 {
    margin-left: 450px; }
  .mb-lg-450 {
    margin-bottom: 450px; }
  .m-lg-450 {
    margin: 450px; }
  .pt-lg-455 {
    padding-top: 455px; }
  .pr-lg-455 {
    padding-right: 455px; }
  .pl-lg-455 {
    padding-left: 455px; }
  .pb-lg-455 {
    padding-bottom: 455px; }
  .p-lg-455 {
    padding: 455px; }
  .mt-lg-455 {
    margin-top: 455px; }
  .mr-lg-455 {
    margin-right: 455px; }
  .ml-lg-455 {
    margin-left: 455px; }
  .mb-lg-455 {
    margin-bottom: 455px; }
  .m-lg-455 {
    margin: 455px; }
  .pt-lg-460 {
    padding-top: 460px; }
  .pr-lg-460 {
    padding-right: 460px; }
  .pl-lg-460 {
    padding-left: 460px; }
  .pb-lg-460 {
    padding-bottom: 460px; }
  .p-lg-460 {
    padding: 460px; }
  .mt-lg-460 {
    margin-top: 460px; }
  .mr-lg-460 {
    margin-right: 460px; }
  .ml-lg-460 {
    margin-left: 460px; }
  .mb-lg-460 {
    margin-bottom: 460px; }
  .m-lg-460 {
    margin: 460px; }
  .pt-lg-465 {
    padding-top: 465px; }
  .pr-lg-465 {
    padding-right: 465px; }
  .pl-lg-465 {
    padding-left: 465px; }
  .pb-lg-465 {
    padding-bottom: 465px; }
  .p-lg-465 {
    padding: 465px; }
  .mt-lg-465 {
    margin-top: 465px; }
  .mr-lg-465 {
    margin-right: 465px; }
  .ml-lg-465 {
    margin-left: 465px; }
  .mb-lg-465 {
    margin-bottom: 465px; }
  .m-lg-465 {
    margin: 465px; }
  .pt-lg-470 {
    padding-top: 470px; }
  .pr-lg-470 {
    padding-right: 470px; }
  .pl-lg-470 {
    padding-left: 470px; }
  .pb-lg-470 {
    padding-bottom: 470px; }
  .p-lg-470 {
    padding: 470px; }
  .mt-lg-470 {
    margin-top: 470px; }
  .mr-lg-470 {
    margin-right: 470px; }
  .ml-lg-470 {
    margin-left: 470px; }
  .mb-lg-470 {
    margin-bottom: 470px; }
  .m-lg-470 {
    margin: 470px; }
  .pt-lg-475 {
    padding-top: 475px; }
  .pr-lg-475 {
    padding-right: 475px; }
  .pl-lg-475 {
    padding-left: 475px; }
  .pb-lg-475 {
    padding-bottom: 475px; }
  .p-lg-475 {
    padding: 475px; }
  .mt-lg-475 {
    margin-top: 475px; }
  .mr-lg-475 {
    margin-right: 475px; }
  .ml-lg-475 {
    margin-left: 475px; }
  .mb-lg-475 {
    margin-bottom: 475px; }
  .m-lg-475 {
    margin: 475px; }
  .pt-lg-480 {
    padding-top: 480px; }
  .pr-lg-480 {
    padding-right: 480px; }
  .pl-lg-480 {
    padding-left: 480px; }
  .pb-lg-480 {
    padding-bottom: 480px; }
  .p-lg-480 {
    padding: 480px; }
  .mt-lg-480 {
    margin-top: 480px; }
  .mr-lg-480 {
    margin-right: 480px; }
  .ml-lg-480 {
    margin-left: 480px; }
  .mb-lg-480 {
    margin-bottom: 480px; }
  .m-lg-480 {
    margin: 480px; }
  .pt-lg-485 {
    padding-top: 485px; }
  .pr-lg-485 {
    padding-right: 485px; }
  .pl-lg-485 {
    padding-left: 485px; }
  .pb-lg-485 {
    padding-bottom: 485px; }
  .p-lg-485 {
    padding: 485px; }
  .mt-lg-485 {
    margin-top: 485px; }
  .mr-lg-485 {
    margin-right: 485px; }
  .ml-lg-485 {
    margin-left: 485px; }
  .mb-lg-485 {
    margin-bottom: 485px; }
  .m-lg-485 {
    margin: 485px; }
  .pt-lg-490 {
    padding-top: 490px; }
  .pr-lg-490 {
    padding-right: 490px; }
  .pl-lg-490 {
    padding-left: 490px; }
  .pb-lg-490 {
    padding-bottom: 490px; }
  .p-lg-490 {
    padding: 490px; }
  .mt-lg-490 {
    margin-top: 490px; }
  .mr-lg-490 {
    margin-right: 490px; }
  .ml-lg-490 {
    margin-left: 490px; }
  .mb-lg-490 {
    margin-bottom: 490px; }
  .m-lg-490 {
    margin: 490px; }
  .pt-lg-495 {
    padding-top: 495px; }
  .pr-lg-495 {
    padding-right: 495px; }
  .pl-lg-495 {
    padding-left: 495px; }
  .pb-lg-495 {
    padding-bottom: 495px; }
  .p-lg-495 {
    padding: 495px; }
  .mt-lg-495 {
    margin-top: 495px; }
  .mr-lg-495 {
    margin-right: 495px; }
  .ml-lg-495 {
    margin-left: 495px; }
  .mb-lg-495 {
    margin-bottom: 495px; }
  .m-lg-495 {
    margin: 495px; }
  .pt-lg-500 {
    padding-top: 500px; }
  .pr-lg-500 {
    padding-right: 500px; }
  .pl-lg-500 {
    padding-left: 500px; }
  .pb-lg-500 {
    padding-bottom: 500px; }
  .p-lg-500 {
    padding: 500px; }
  .mt-lg-500 {
    margin-top: 500px; }
  .mr-lg-500 {
    margin-right: 500px; }
  .ml-lg-500 {
    margin-left: 500px; }
  .mb-lg-500 {
    margin-bottom: 500px; }
  .m-lg-500 {
    margin: 500px; }
  .pt-lg-10 {
    padding-top: 10px; }
  .pr-lg-10 {
    padding-right: 10px; }
  .pl-lg-10 {
    padding-left: 10px; }
  .pb-lg-10 {
    padding-bottom: 10px; }
  .p-lg-10 {
    padding: 10px; }
  .mt-lg-10 {
    margin-top: 10px; }
  .mr-lg-10 {
    margin-right: 10px; }
  .ml-lg-10 {
    margin-left: 10px; }
  .mb-lg-10 {
    margin-bottom: 10px; }
  .m-lg-10 {
    margin: 10px; }
  .pt-lg-20 {
    padding-top: 20px; }
  .pr-lg-20 {
    padding-right: 20px; }
  .pl-lg-20 {
    padding-left: 20px; }
  .pb-lg-20 {
    padding-bottom: 20px; }
  .p-lg-20 {
    padding: 20px; }
  .mt-lg-20 {
    margin-top: 20px; }
  .mr-lg-20 {
    margin-right: 20px; }
  .ml-lg-20 {
    margin-left: 20px; }
  .mb-lg-20 {
    margin-bottom: 20px; }
  .m-lg-20 {
    margin: 20px; }
  .pt-lg-30 {
    padding-top: 30px; }
  .pr-lg-30 {
    padding-right: 30px; }
  .pl-lg-30 {
    padding-left: 30px; }
  .pb-lg-30 {
    padding-bottom: 30px; }
  .p-lg-30 {
    padding: 30px; }
  .mt-lg-30 {
    margin-top: 30px; }
  .mr-lg-30 {
    margin-right: 30px; }
  .ml-lg-30 {
    margin-left: 30px; }
  .mb-lg-30 {
    margin-bottom: 30px; }
  .m-lg-30 {
    margin: 30px; }
  .pt-lg-40 {
    padding-top: 40px; }
  .pr-lg-40 {
    padding-right: 40px; }
  .pl-lg-40 {
    padding-left: 40px; }
  .pb-lg-40 {
    padding-bottom: 40px; }
  .p-lg-40 {
    padding: 40px; }
  .mt-lg-40 {
    margin-top: 40px; }
  .mr-lg-40 {
    margin-right: 40px; }
  .ml-lg-40 {
    margin-left: 40px; }
  .mb-lg-40 {
    margin-bottom: 40px; }
  .m-lg-40 {
    margin: 40px; }
  .pt-lg-50 {
    padding-top: 50px; }
  .pr-lg-50 {
    padding-right: 50px; }
  .pl-lg-50 {
    padding-left: 50px; }
  .pb-lg-50 {
    padding-bottom: 50px; }
  .p-lg-50 {
    padding: 50px; }
  .mt-lg-50 {
    margin-top: 50px; }
  .mr-lg-50 {
    margin-right: 50px; }
  .ml-lg-50 {
    margin-left: 50px; }
  .mb-lg-50 {
    margin-bottom: 50px; }
  .m-lg-50 {
    margin: 50px; }
  .pt-lg-60 {
    padding-top: 60px; }
  .pr-lg-60 {
    padding-right: 60px; }
  .pl-lg-60 {
    padding-left: 60px; }
  .pb-lg-60 {
    padding-bottom: 60px; }
  .p-lg-60 {
    padding: 60px; }
  .mt-lg-60 {
    margin-top: 60px; }
  .mr-lg-60 {
    margin-right: 60px; }
  .ml-lg-60 {
    margin-left: 60px; }
  .mb-lg-60 {
    margin-bottom: 60px; }
  .m-lg-60 {
    margin: 60px; }
  .pt-lg-70 {
    padding-top: 70px; }
  .pr-lg-70 {
    padding-right: 70px; }
  .pl-lg-70 {
    padding-left: 70px; }
  .pb-lg-70 {
    padding-bottom: 70px; }
  .p-lg-70 {
    padding: 70px; }
  .mt-lg-70 {
    margin-top: 70px; }
  .mr-lg-70 {
    margin-right: 70px; }
  .ml-lg-70 {
    margin-left: 70px; }
  .mb-lg-70 {
    margin-bottom: 70px; }
  .m-lg-70 {
    margin: 70px; }
  .pt-lg-80 {
    padding-top: 80px; }
  .pr-lg-80 {
    padding-right: 80px; }
  .pl-lg-80 {
    padding-left: 80px; }
  .pb-lg-80 {
    padding-bottom: 80px; }
  .p-lg-80 {
    padding: 80px; }
  .mt-lg-80 {
    margin-top: 80px; }
  .mr-lg-80 {
    margin-right: 80px; }
  .ml-lg-80 {
    margin-left: 80px; }
  .mb-lg-80 {
    margin-bottom: 80px; }
  .m-lg-80 {
    margin: 80px; }
  .pt-lg-90 {
    padding-top: 90px; }
  .pr-lg-90 {
    padding-right: 90px; }
  .pl-lg-90 {
    padding-left: 90px; }
  .pb-lg-90 {
    padding-bottom: 90px; }
  .p-lg-90 {
    padding: 90px; }
  .mt-lg-90 {
    margin-top: 90px; }
  .mr-lg-90 {
    margin-right: 90px; }
  .ml-lg-90 {
    margin-left: 90px; }
  .mb-lg-90 {
    margin-bottom: 90px; }
  .m-lg-90 {
    margin: 90px; }
  .pt-lg-100 {
    padding-top: 100px; }
  .pr-lg-100 {
    padding-right: 100px; }
  .pl-lg-100 {
    padding-left: 100px; }
  .pb-lg-100 {
    padding-bottom: 100px; }
  .p-lg-100 {
    padding: 100px; }
  .mt-lg-100 {
    margin-top: 100px; }
  .mr-lg-100 {
    margin-right: 100px; }
  .ml-lg-100 {
    margin-left: 100px; }
  .mb-lg-100 {
    margin-bottom: 100px; }
  .m-lg-100 {
    margin: 100px; } }

@media (min-width: 1200px) {
  .pt-xl-1 {
    padding-top: 1px; }
  .pr-xl-1 {
    padding-right: 1px; }
  .pl-xl-1 {
    padding-left: 1px; }
  .pb-xl-1 {
    padding-bottom: 1px; }
  .p-xl-1 {
    padding: 1px; }
  .mt-xl-1 {
    margin-top: 1px; }
  .mr-xl-1 {
    margin-right: 1px; }
  .ml-xl-1 {
    margin-left: 1px; }
  .mb-xl-1 {
    margin-bottom: 1px; }
  .m-xl-1 {
    margin: 1px; }
  .pt-xl-2 {
    padding-top: 2px; }
  .pr-xl-2 {
    padding-right: 2px; }
  .pl-xl-2 {
    padding-left: 2px; }
  .pb-xl-2 {
    padding-bottom: 2px; }
  .p-xl-2 {
    padding: 2px; }
  .mt-xl-2 {
    margin-top: 2px; }
  .mr-xl-2 {
    margin-right: 2px; }
  .ml-xl-2 {
    margin-left: 2px; }
  .mb-xl-2 {
    margin-bottom: 2px; }
  .m-xl-2 {
    margin: 2px; }
  .pt-xl-3 {
    padding-top: 3px; }
  .pr-xl-3 {
    padding-right: 3px; }
  .pl-xl-3 {
    padding-left: 3px; }
  .pb-xl-3 {
    padding-bottom: 3px; }
  .p-xl-3 {
    padding: 3px; }
  .mt-xl-3 {
    margin-top: 3px; }
  .mr-xl-3 {
    margin-right: 3px; }
  .ml-xl-3 {
    margin-left: 3px; }
  .mb-xl-3 {
    margin-bottom: 3px; }
  .m-xl-3 {
    margin: 3px; }
  .pt-xl-4 {
    padding-top: 4px; }
  .pr-xl-4 {
    padding-right: 4px; }
  .pl-xl-4 {
    padding-left: 4px; }
  .pb-xl-4 {
    padding-bottom: 4px; }
  .p-xl-4 {
    padding: 4px; }
  .mt-xl-4 {
    margin-top: 4px; }
  .mr-xl-4 {
    margin-right: 4px; }
  .ml-xl-4 {
    margin-left: 4px; }
  .mb-xl-4 {
    margin-bottom: 4px; }
  .m-xl-4 {
    margin: 4px; }
  .pt-xl-5 {
    padding-top: 5px; }
  .pr-xl-5 {
    padding-right: 5px; }
  .pl-xl-5 {
    padding-left: 5px; }
  .pb-xl-5 {
    padding-bottom: 5px; }
  .p-xl-5 {
    padding: 5px; }
  .mt-xl-5 {
    margin-top: 5px; }
  .mr-xl-5 {
    margin-right: 5px; }
  .ml-xl-5 {
    margin-left: 5px; }
  .mb-xl-5 {
    margin-bottom: 5px; }
  .m-xl-5 {
    margin: 5px; }
  .pt-xl-6 {
    padding-top: 6px; }
  .pr-xl-6 {
    padding-right: 6px; }
  .pl-xl-6 {
    padding-left: 6px; }
  .pb-xl-6 {
    padding-bottom: 6px; }
  .p-xl-6 {
    padding: 6px; }
  .mt-xl-6 {
    margin-top: 6px; }
  .mr-xl-6 {
    margin-right: 6px; }
  .ml-xl-6 {
    margin-left: 6px; }
  .mb-xl-6 {
    margin-bottom: 6px; }
  .m-xl-6 {
    margin: 6px; }
  .pt-xl-7 {
    padding-top: 7px; }
  .pr-xl-7 {
    padding-right: 7px; }
  .pl-xl-7 {
    padding-left: 7px; }
  .pb-xl-7 {
    padding-bottom: 7px; }
  .p-xl-7 {
    padding: 7px; }
  .mt-xl-7 {
    margin-top: 7px; }
  .mr-xl-7 {
    margin-right: 7px; }
  .ml-xl-7 {
    margin-left: 7px; }
  .mb-xl-7 {
    margin-bottom: 7px; }
  .m-xl-7 {
    margin: 7px; }
  .pt-xl-8 {
    padding-top: 8px; }
  .pr-xl-8 {
    padding-right: 8px; }
  .pl-xl-8 {
    padding-left: 8px; }
  .pb-xl-8 {
    padding-bottom: 8px; }
  .p-xl-8 {
    padding: 8px; }
  .mt-xl-8 {
    margin-top: 8px; }
  .mr-xl-8 {
    margin-right: 8px; }
  .ml-xl-8 {
    margin-left: 8px; }
  .mb-xl-8 {
    margin-bottom: 8px; }
  .m-xl-8 {
    margin: 8px; }
  .pt-xl-9 {
    padding-top: 9px; }
  .pr-xl-9 {
    padding-right: 9px; }
  .pl-xl-9 {
    padding-left: 9px; }
  .pb-xl-9 {
    padding-bottom: 9px; }
  .p-xl-9 {
    padding: 9px; }
  .mt-xl-9 {
    margin-top: 9px; }
  .mr-xl-9 {
    margin-right: 9px; }
  .ml-xl-9 {
    margin-left: 9px; }
  .mb-xl-9 {
    margin-bottom: 9px; }
  .m-xl-9 {
    margin: 9px; }
  .pt-xl-10 {
    padding-top: 10px; }
  .pr-xl-10 {
    padding-right: 10px; }
  .pl-xl-10 {
    padding-left: 10px; }
  .pb-xl-10 {
    padding-bottom: 10px; }
  .p-xl-10 {
    padding: 10px; }
  .mt-xl-10 {
    margin-top: 10px; }
  .mr-xl-10 {
    margin-right: 10px; }
  .ml-xl-10 {
    margin-left: 10px; }
  .mb-xl-10 {
    margin-bottom: 10px; }
  .m-xl-10 {
    margin: 10px; }
  .pt-xl-11 {
    padding-top: 11px; }
  .pr-xl-11 {
    padding-right: 11px; }
  .pl-xl-11 {
    padding-left: 11px; }
  .pb-xl-11 {
    padding-bottom: 11px; }
  .p-xl-11 {
    padding: 11px; }
  .mt-xl-11 {
    margin-top: 11px; }
  .mr-xl-11 {
    margin-right: 11px; }
  .ml-xl-11 {
    margin-left: 11px; }
  .mb-xl-11 {
    margin-bottom: 11px; }
  .m-xl-11 {
    margin: 11px; }
  .pt-xl-12 {
    padding-top: 12px; }
  .pr-xl-12 {
    padding-right: 12px; }
  .pl-xl-12 {
    padding-left: 12px; }
  .pb-xl-12 {
    padding-bottom: 12px; }
  .p-xl-12 {
    padding: 12px; }
  .mt-xl-12 {
    margin-top: 12px; }
  .mr-xl-12 {
    margin-right: 12px; }
  .ml-xl-12 {
    margin-left: 12px; }
  .mb-xl-12 {
    margin-bottom: 12px; }
  .m-xl-12 {
    margin: 12px; }
  .pt-xl-13 {
    padding-top: 13px; }
  .pr-xl-13 {
    padding-right: 13px; }
  .pl-xl-13 {
    padding-left: 13px; }
  .pb-xl-13 {
    padding-bottom: 13px; }
  .p-xl-13 {
    padding: 13px; }
  .mt-xl-13 {
    margin-top: 13px; }
  .mr-xl-13 {
    margin-right: 13px; }
  .ml-xl-13 {
    margin-left: 13px; }
  .mb-xl-13 {
    margin-bottom: 13px; }
  .m-xl-13 {
    margin: 13px; }
  .pt-xl-14 {
    padding-top: 14px; }
  .pr-xl-14 {
    padding-right: 14px; }
  .pl-xl-14 {
    padding-left: 14px; }
  .pb-xl-14 {
    padding-bottom: 14px; }
  .p-xl-14 {
    padding: 14px; }
  .mt-xl-14 {
    margin-top: 14px; }
  .mr-xl-14 {
    margin-right: 14px; }
  .ml-xl-14 {
    margin-left: 14px; }
  .mb-xl-14 {
    margin-bottom: 14px; }
  .m-xl-14 {
    margin: 14px; }
  .pt-xl-15 {
    padding-top: 15px; }
  .pr-xl-15 {
    padding-right: 15px; }
  .pl-xl-15 {
    padding-left: 15px; }
  .pb-xl-15 {
    padding-bottom: 15px; }
  .p-xl-15 {
    padding: 15px; }
  .mt-xl-15 {
    margin-top: 15px; }
  .mr-xl-15 {
    margin-right: 15px; }
  .ml-xl-15 {
    margin-left: 15px; }
  .mb-xl-15 {
    margin-bottom: 15px; }
  .m-xl-15 {
    margin: 15px; }
  .pt-xl-16 {
    padding-top: 16px; }
  .pr-xl-16 {
    padding-right: 16px; }
  .pl-xl-16 {
    padding-left: 16px; }
  .pb-xl-16 {
    padding-bottom: 16px; }
  .p-xl-16 {
    padding: 16px; }
  .mt-xl-16 {
    margin-top: 16px; }
  .mr-xl-16 {
    margin-right: 16px; }
  .ml-xl-16 {
    margin-left: 16px; }
  .mb-xl-16 {
    margin-bottom: 16px; }
  .m-xl-16 {
    margin: 16px; }
  .pt-xl-17 {
    padding-top: 17px; }
  .pr-xl-17 {
    padding-right: 17px; }
  .pl-xl-17 {
    padding-left: 17px; }
  .pb-xl-17 {
    padding-bottom: 17px; }
  .p-xl-17 {
    padding: 17px; }
  .mt-xl-17 {
    margin-top: 17px; }
  .mr-xl-17 {
    margin-right: 17px; }
  .ml-xl-17 {
    margin-left: 17px; }
  .mb-xl-17 {
    margin-bottom: 17px; }
  .m-xl-17 {
    margin: 17px; }
  .pt-xl-18 {
    padding-top: 18px; }
  .pr-xl-18 {
    padding-right: 18px; }
  .pl-xl-18 {
    padding-left: 18px; }
  .pb-xl-18 {
    padding-bottom: 18px; }
  .p-xl-18 {
    padding: 18px; }
  .mt-xl-18 {
    margin-top: 18px; }
  .mr-xl-18 {
    margin-right: 18px; }
  .ml-xl-18 {
    margin-left: 18px; }
  .mb-xl-18 {
    margin-bottom: 18px; }
  .m-xl-18 {
    margin: 18px; }
  .pt-xl-19 {
    padding-top: 19px; }
  .pr-xl-19 {
    padding-right: 19px; }
  .pl-xl-19 {
    padding-left: 19px; }
  .pb-xl-19 {
    padding-bottom: 19px; }
  .p-xl-19 {
    padding: 19px; }
  .mt-xl-19 {
    margin-top: 19px; }
  .mr-xl-19 {
    margin-right: 19px; }
  .ml-xl-19 {
    margin-left: 19px; }
  .mb-xl-19 {
    margin-bottom: 19px; }
  .m-xl-19 {
    margin: 19px; }
  .pt-xl-20 {
    padding-top: 20px; }
  .pr-xl-20 {
    padding-right: 20px; }
  .pl-xl-20 {
    padding-left: 20px; }
  .pb-xl-20 {
    padding-bottom: 20px; }
  .p-xl-20 {
    padding: 20px; }
  .mt-xl-20 {
    margin-top: 20px; }
  .mr-xl-20 {
    margin-right: 20px; }
  .ml-xl-20 {
    margin-left: 20px; }
  .mb-xl-20 {
    margin-bottom: 20px; }
  .m-xl-20 {
    margin: 20px; }
  .pt-xl-5 {
    padding-top: 5px; }
  .pr-xl-5 {
    padding-right: 5px; }
  .pl-xl-5 {
    padding-left: 5px; }
  .pb-xl-5 {
    padding-bottom: 5px; }
  .p-xl-5 {
    padding: 5px; }
  .mt-xl-5 {
    margin-top: 5px; }
  .mr-xl-5 {
    margin-right: 5px; }
  .ml-xl-5 {
    margin-left: 5px; }
  .mb-xl-5 {
    margin-bottom: 5px; }
  .m-xl-5 {
    margin: 5px; }
  .pt-xl-10 {
    padding-top: 10px; }
  .pr-xl-10 {
    padding-right: 10px; }
  .pl-xl-10 {
    padding-left: 10px; }
  .pb-xl-10 {
    padding-bottom: 10px; }
  .p-xl-10 {
    padding: 10px; }
  .mt-xl-10 {
    margin-top: 10px; }
  .mr-xl-10 {
    margin-right: 10px; }
  .ml-xl-10 {
    margin-left: 10px; }
  .mb-xl-10 {
    margin-bottom: 10px; }
  .m-xl-10 {
    margin: 10px; }
  .pt-xl-15 {
    padding-top: 15px; }
  .pr-xl-15 {
    padding-right: 15px; }
  .pl-xl-15 {
    padding-left: 15px; }
  .pb-xl-15 {
    padding-bottom: 15px; }
  .p-xl-15 {
    padding: 15px; }
  .mt-xl-15 {
    margin-top: 15px; }
  .mr-xl-15 {
    margin-right: 15px; }
  .ml-xl-15 {
    margin-left: 15px; }
  .mb-xl-15 {
    margin-bottom: 15px; }
  .m-xl-15 {
    margin: 15px; }
  .pt-xl-20 {
    padding-top: 20px; }
  .pr-xl-20 {
    padding-right: 20px; }
  .pl-xl-20 {
    padding-left: 20px; }
  .pb-xl-20 {
    padding-bottom: 20px; }
  .p-xl-20 {
    padding: 20px; }
  .mt-xl-20 {
    margin-top: 20px; }
  .mr-xl-20 {
    margin-right: 20px; }
  .ml-xl-20 {
    margin-left: 20px; }
  .mb-xl-20 {
    margin-bottom: 20px; }
  .m-xl-20 {
    margin: 20px; }
  .pt-xl-25 {
    padding-top: 25px; }
  .pr-xl-25 {
    padding-right: 25px; }
  .pl-xl-25 {
    padding-left: 25px; }
  .pb-xl-25 {
    padding-bottom: 25px; }
  .p-xl-25 {
    padding: 25px; }
  .mt-xl-25 {
    margin-top: 25px; }
  .mr-xl-25 {
    margin-right: 25px; }
  .ml-xl-25 {
    margin-left: 25px; }
  .mb-xl-25 {
    margin-bottom: 25px; }
  .m-xl-25 {
    margin: 25px; }
  .pt-xl-30 {
    padding-top: 30px; }
  .pr-xl-30 {
    padding-right: 30px; }
  .pl-xl-30 {
    padding-left: 30px; }
  .pb-xl-30 {
    padding-bottom: 30px; }
  .p-xl-30 {
    padding: 30px; }
  .mt-xl-30 {
    margin-top: 30px; }
  .mr-xl-30 {
    margin-right: 30px; }
  .ml-xl-30 {
    margin-left: 30px; }
  .mb-xl-30 {
    margin-bottom: 30px; }
  .m-xl-30 {
    margin: 30px; }
  .pt-xl-35 {
    padding-top: 35px; }
  .pr-xl-35 {
    padding-right: 35px; }
  .pl-xl-35 {
    padding-left: 35px; }
  .pb-xl-35 {
    padding-bottom: 35px; }
  .p-xl-35 {
    padding: 35px; }
  .mt-xl-35 {
    margin-top: 35px; }
  .mr-xl-35 {
    margin-right: 35px; }
  .ml-xl-35 {
    margin-left: 35px; }
  .mb-xl-35 {
    margin-bottom: 35px; }
  .m-xl-35 {
    margin: 35px; }
  .pt-xl-40 {
    padding-top: 40px; }
  .pr-xl-40 {
    padding-right: 40px; }
  .pl-xl-40 {
    padding-left: 40px; }
  .pb-xl-40 {
    padding-bottom: 40px; }
  .p-xl-40 {
    padding: 40px; }
  .mt-xl-40 {
    margin-top: 40px; }
  .mr-xl-40 {
    margin-right: 40px; }
  .ml-xl-40 {
    margin-left: 40px; }
  .mb-xl-40 {
    margin-bottom: 40px; }
  .m-xl-40 {
    margin: 40px; }
  .pt-xl-45 {
    padding-top: 45px; }
  .pr-xl-45 {
    padding-right: 45px; }
  .pl-xl-45 {
    padding-left: 45px; }
  .pb-xl-45 {
    padding-bottom: 45px; }
  .p-xl-45 {
    padding: 45px; }
  .mt-xl-45 {
    margin-top: 45px; }
  .mr-xl-45 {
    margin-right: 45px; }
  .ml-xl-45 {
    margin-left: 45px; }
  .mb-xl-45 {
    margin-bottom: 45px; }
  .m-xl-45 {
    margin: 45px; }
  .pt-xl-50 {
    padding-top: 50px; }
  .pr-xl-50 {
    padding-right: 50px; }
  .pl-xl-50 {
    padding-left: 50px; }
  .pb-xl-50 {
    padding-bottom: 50px; }
  .p-xl-50 {
    padding: 50px; }
  .mt-xl-50 {
    margin-top: 50px; }
  .mr-xl-50 {
    margin-right: 50px; }
  .ml-xl-50 {
    margin-left: 50px; }
  .mb-xl-50 {
    margin-bottom: 50px; }
  .m-xl-50 {
    margin: 50px; }
  .pt-xl-55 {
    padding-top: 55px; }
  .pr-xl-55 {
    padding-right: 55px; }
  .pl-xl-55 {
    padding-left: 55px; }
  .pb-xl-55 {
    padding-bottom: 55px; }
  .p-xl-55 {
    padding: 55px; }
  .mt-xl-55 {
    margin-top: 55px; }
  .mr-xl-55 {
    margin-right: 55px; }
  .ml-xl-55 {
    margin-left: 55px; }
  .mb-xl-55 {
    margin-bottom: 55px; }
  .m-xl-55 {
    margin: 55px; }
  .pt-xl-60 {
    padding-top: 60px; }
  .pr-xl-60 {
    padding-right: 60px; }
  .pl-xl-60 {
    padding-left: 60px; }
  .pb-xl-60 {
    padding-bottom: 60px; }
  .p-xl-60 {
    padding: 60px; }
  .mt-xl-60 {
    margin-top: 60px; }
  .mr-xl-60 {
    margin-right: 60px; }
  .ml-xl-60 {
    margin-left: 60px; }
  .mb-xl-60 {
    margin-bottom: 60px; }
  .m-xl-60 {
    margin: 60px; }
  .pt-xl-65 {
    padding-top: 65px; }
  .pr-xl-65 {
    padding-right: 65px; }
  .pl-xl-65 {
    padding-left: 65px; }
  .pb-xl-65 {
    padding-bottom: 65px; }
  .p-xl-65 {
    padding: 65px; }
  .mt-xl-65 {
    margin-top: 65px; }
  .mr-xl-65 {
    margin-right: 65px; }
  .ml-xl-65 {
    margin-left: 65px; }
  .mb-xl-65 {
    margin-bottom: 65px; }
  .m-xl-65 {
    margin: 65px; }
  .pt-xl-70 {
    padding-top: 70px; }
  .pr-xl-70 {
    padding-right: 70px; }
  .pl-xl-70 {
    padding-left: 70px; }
  .pb-xl-70 {
    padding-bottom: 70px; }
  .p-xl-70 {
    padding: 70px; }
  .mt-xl-70 {
    margin-top: 70px; }
  .mr-xl-70 {
    margin-right: 70px; }
  .ml-xl-70 {
    margin-left: 70px; }
  .mb-xl-70 {
    margin-bottom: 70px; }
  .m-xl-70 {
    margin: 70px; }
  .pt-xl-75 {
    padding-top: 75px; }
  .pr-xl-75 {
    padding-right: 75px; }
  .pl-xl-75 {
    padding-left: 75px; }
  .pb-xl-75 {
    padding-bottom: 75px; }
  .p-xl-75 {
    padding: 75px; }
  .mt-xl-75 {
    margin-top: 75px; }
  .mr-xl-75 {
    margin-right: 75px; }
  .ml-xl-75 {
    margin-left: 75px; }
  .mb-xl-75 {
    margin-bottom: 75px; }
  .m-xl-75 {
    margin: 75px; }
  .pt-xl-80 {
    padding-top: 80px; }
  .pr-xl-80 {
    padding-right: 80px; }
  .pl-xl-80 {
    padding-left: 80px; }
  .pb-xl-80 {
    padding-bottom: 80px; }
  .p-xl-80 {
    padding: 80px; }
  .mt-xl-80 {
    margin-top: 80px; }
  .mr-xl-80 {
    margin-right: 80px; }
  .ml-xl-80 {
    margin-left: 80px; }
  .mb-xl-80 {
    margin-bottom: 80px; }
  .m-xl-80 {
    margin: 80px; }
  .pt-xl-85 {
    padding-top: 85px; }
  .pr-xl-85 {
    padding-right: 85px; }
  .pl-xl-85 {
    padding-left: 85px; }
  .pb-xl-85 {
    padding-bottom: 85px; }
  .p-xl-85 {
    padding: 85px; }
  .mt-xl-85 {
    margin-top: 85px; }
  .mr-xl-85 {
    margin-right: 85px; }
  .ml-xl-85 {
    margin-left: 85px; }
  .mb-xl-85 {
    margin-bottom: 85px; }
  .m-xl-85 {
    margin: 85px; }
  .pt-xl-90 {
    padding-top: 90px; }
  .pr-xl-90 {
    padding-right: 90px; }
  .pl-xl-90 {
    padding-left: 90px; }
  .pb-xl-90 {
    padding-bottom: 90px; }
  .p-xl-90 {
    padding: 90px; }
  .mt-xl-90 {
    margin-top: 90px; }
  .mr-xl-90 {
    margin-right: 90px; }
  .ml-xl-90 {
    margin-left: 90px; }
  .mb-xl-90 {
    margin-bottom: 90px; }
  .m-xl-90 {
    margin: 90px; }
  .pt-xl-95 {
    padding-top: 95px; }
  .pr-xl-95 {
    padding-right: 95px; }
  .pl-xl-95 {
    padding-left: 95px; }
  .pb-xl-95 {
    padding-bottom: 95px; }
  .p-xl-95 {
    padding: 95px; }
  .mt-xl-95 {
    margin-top: 95px; }
  .mr-xl-95 {
    margin-right: 95px; }
  .ml-xl-95 {
    margin-left: 95px; }
  .mb-xl-95 {
    margin-bottom: 95px; }
  .m-xl-95 {
    margin: 95px; }
  .pt-xl-100 {
    padding-top: 100px; }
  .pr-xl-100 {
    padding-right: 100px; }
  .pl-xl-100 {
    padding-left: 100px; }
  .pb-xl-100 {
    padding-bottom: 100px; }
  .p-xl-100 {
    padding: 100px; }
  .mt-xl-100 {
    margin-top: 100px; }
  .mr-xl-100 {
    margin-right: 100px; }
  .ml-xl-100 {
    margin-left: 100px; }
  .mb-xl-100 {
    margin-bottom: 100px; }
  .m-xl-100 {
    margin: 100px; }
  .pt-xl-105 {
    padding-top: 105px; }
  .pr-xl-105 {
    padding-right: 105px; }
  .pl-xl-105 {
    padding-left: 105px; }
  .pb-xl-105 {
    padding-bottom: 105px; }
  .p-xl-105 {
    padding: 105px; }
  .mt-xl-105 {
    margin-top: 105px; }
  .mr-xl-105 {
    margin-right: 105px; }
  .ml-xl-105 {
    margin-left: 105px; }
  .mb-xl-105 {
    margin-bottom: 105px; }
  .m-xl-105 {
    margin: 105px; }
  .pt-xl-110 {
    padding-top: 110px; }
  .pr-xl-110 {
    padding-right: 110px; }
  .pl-xl-110 {
    padding-left: 110px; }
  .pb-xl-110 {
    padding-bottom: 110px; }
  .p-xl-110 {
    padding: 110px; }
  .mt-xl-110 {
    margin-top: 110px; }
  .mr-xl-110 {
    margin-right: 110px; }
  .ml-xl-110 {
    margin-left: 110px; }
  .mb-xl-110 {
    margin-bottom: 110px; }
  .m-xl-110 {
    margin: 110px; }
  .pt-xl-115 {
    padding-top: 115px; }
  .pr-xl-115 {
    padding-right: 115px; }
  .pl-xl-115 {
    padding-left: 115px; }
  .pb-xl-115 {
    padding-bottom: 115px; }
  .p-xl-115 {
    padding: 115px; }
  .mt-xl-115 {
    margin-top: 115px; }
  .mr-xl-115 {
    margin-right: 115px; }
  .ml-xl-115 {
    margin-left: 115px; }
  .mb-xl-115 {
    margin-bottom: 115px; }
  .m-xl-115 {
    margin: 115px; }
  .pt-xl-120 {
    padding-top: 120px; }
  .pr-xl-120 {
    padding-right: 120px; }
  .pl-xl-120 {
    padding-left: 120px; }
  .pb-xl-120 {
    padding-bottom: 120px; }
  .p-xl-120 {
    padding: 120px; }
  .mt-xl-120 {
    margin-top: 120px; }
  .mr-xl-120 {
    margin-right: 120px; }
  .ml-xl-120 {
    margin-left: 120px; }
  .mb-xl-120 {
    margin-bottom: 120px; }
  .m-xl-120 {
    margin: 120px; }
  .pt-xl-125 {
    padding-top: 125px; }
  .pr-xl-125 {
    padding-right: 125px; }
  .pl-xl-125 {
    padding-left: 125px; }
  .pb-xl-125 {
    padding-bottom: 125px; }
  .p-xl-125 {
    padding: 125px; }
  .mt-xl-125 {
    margin-top: 125px; }
  .mr-xl-125 {
    margin-right: 125px; }
  .ml-xl-125 {
    margin-left: 125px; }
  .mb-xl-125 {
    margin-bottom: 125px; }
  .m-xl-125 {
    margin: 125px; }
  .pt-xl-130 {
    padding-top: 130px; }
  .pr-xl-130 {
    padding-right: 130px; }
  .pl-xl-130 {
    padding-left: 130px; }
  .pb-xl-130 {
    padding-bottom: 130px; }
  .p-xl-130 {
    padding: 130px; }
  .mt-xl-130 {
    margin-top: 130px; }
  .mr-xl-130 {
    margin-right: 130px; }
  .ml-xl-130 {
    margin-left: 130px; }
  .mb-xl-130 {
    margin-bottom: 130px; }
  .m-xl-130 {
    margin: 130px; }
  .pt-xl-135 {
    padding-top: 135px; }
  .pr-xl-135 {
    padding-right: 135px; }
  .pl-xl-135 {
    padding-left: 135px; }
  .pb-xl-135 {
    padding-bottom: 135px; }
  .p-xl-135 {
    padding: 135px; }
  .mt-xl-135 {
    margin-top: 135px; }
  .mr-xl-135 {
    margin-right: 135px; }
  .ml-xl-135 {
    margin-left: 135px; }
  .mb-xl-135 {
    margin-bottom: 135px; }
  .m-xl-135 {
    margin: 135px; }
  .pt-xl-140 {
    padding-top: 140px; }
  .pr-xl-140 {
    padding-right: 140px; }
  .pl-xl-140 {
    padding-left: 140px; }
  .pb-xl-140 {
    padding-bottom: 140px; }
  .p-xl-140 {
    padding: 140px; }
  .mt-xl-140 {
    margin-top: 140px; }
  .mr-xl-140 {
    margin-right: 140px; }
  .ml-xl-140 {
    margin-left: 140px; }
  .mb-xl-140 {
    margin-bottom: 140px; }
  .m-xl-140 {
    margin: 140px; }
  .pt-xl-145 {
    padding-top: 145px; }
  .pr-xl-145 {
    padding-right: 145px; }
  .pl-xl-145 {
    padding-left: 145px; }
  .pb-xl-145 {
    padding-bottom: 145px; }
  .p-xl-145 {
    padding: 145px; }
  .mt-xl-145 {
    margin-top: 145px; }
  .mr-xl-145 {
    margin-right: 145px; }
  .ml-xl-145 {
    margin-left: 145px; }
  .mb-xl-145 {
    margin-bottom: 145px; }
  .m-xl-145 {
    margin: 145px; }
  .pt-xl-150 {
    padding-top: 150px; }
  .pr-xl-150 {
    padding-right: 150px; }
  .pl-xl-150 {
    padding-left: 150px; }
  .pb-xl-150 {
    padding-bottom: 150px; }
  .p-xl-150 {
    padding: 150px; }
  .mt-xl-150 {
    margin-top: 150px; }
  .mr-xl-150 {
    margin-right: 150px; }
  .ml-xl-150 {
    margin-left: 150px; }
  .mb-xl-150 {
    margin-bottom: 150px; }
  .m-xl-150 {
    margin: 150px; }
  .pt-xl-155 {
    padding-top: 155px; }
  .pr-xl-155 {
    padding-right: 155px; }
  .pl-xl-155 {
    padding-left: 155px; }
  .pb-xl-155 {
    padding-bottom: 155px; }
  .p-xl-155 {
    padding: 155px; }
  .mt-xl-155 {
    margin-top: 155px; }
  .mr-xl-155 {
    margin-right: 155px; }
  .ml-xl-155 {
    margin-left: 155px; }
  .mb-xl-155 {
    margin-bottom: 155px; }
  .m-xl-155 {
    margin: 155px; }
  .pt-xl-160 {
    padding-top: 160px; }
  .pr-xl-160 {
    padding-right: 160px; }
  .pl-xl-160 {
    padding-left: 160px; }
  .pb-xl-160 {
    padding-bottom: 160px; }
  .p-xl-160 {
    padding: 160px; }
  .mt-xl-160 {
    margin-top: 160px; }
  .mr-xl-160 {
    margin-right: 160px; }
  .ml-xl-160 {
    margin-left: 160px; }
  .mb-xl-160 {
    margin-bottom: 160px; }
  .m-xl-160 {
    margin: 160px; }
  .pt-xl-165 {
    padding-top: 165px; }
  .pr-xl-165 {
    padding-right: 165px; }
  .pl-xl-165 {
    padding-left: 165px; }
  .pb-xl-165 {
    padding-bottom: 165px; }
  .p-xl-165 {
    padding: 165px; }
  .mt-xl-165 {
    margin-top: 165px; }
  .mr-xl-165 {
    margin-right: 165px; }
  .ml-xl-165 {
    margin-left: 165px; }
  .mb-xl-165 {
    margin-bottom: 165px; }
  .m-xl-165 {
    margin: 165px; }
  .pt-xl-170 {
    padding-top: 170px; }
  .pr-xl-170 {
    padding-right: 170px; }
  .pl-xl-170 {
    padding-left: 170px; }
  .pb-xl-170 {
    padding-bottom: 170px; }
  .p-xl-170 {
    padding: 170px; }
  .mt-xl-170 {
    margin-top: 170px; }
  .mr-xl-170 {
    margin-right: 170px; }
  .ml-xl-170 {
    margin-left: 170px; }
  .mb-xl-170 {
    margin-bottom: 170px; }
  .m-xl-170 {
    margin: 170px; }
  .pt-xl-175 {
    padding-top: 175px; }
  .pr-xl-175 {
    padding-right: 175px; }
  .pl-xl-175 {
    padding-left: 175px; }
  .pb-xl-175 {
    padding-bottom: 175px; }
  .p-xl-175 {
    padding: 175px; }
  .mt-xl-175 {
    margin-top: 175px; }
  .mr-xl-175 {
    margin-right: 175px; }
  .ml-xl-175 {
    margin-left: 175px; }
  .mb-xl-175 {
    margin-bottom: 175px; }
  .m-xl-175 {
    margin: 175px; }
  .pt-xl-180 {
    padding-top: 180px; }
  .pr-xl-180 {
    padding-right: 180px; }
  .pl-xl-180 {
    padding-left: 180px; }
  .pb-xl-180 {
    padding-bottom: 180px; }
  .p-xl-180 {
    padding: 180px; }
  .mt-xl-180 {
    margin-top: 180px; }
  .mr-xl-180 {
    margin-right: 180px; }
  .ml-xl-180 {
    margin-left: 180px; }
  .mb-xl-180 {
    margin-bottom: 180px; }
  .m-xl-180 {
    margin: 180px; }
  .pt-xl-185 {
    padding-top: 185px; }
  .pr-xl-185 {
    padding-right: 185px; }
  .pl-xl-185 {
    padding-left: 185px; }
  .pb-xl-185 {
    padding-bottom: 185px; }
  .p-xl-185 {
    padding: 185px; }
  .mt-xl-185 {
    margin-top: 185px; }
  .mr-xl-185 {
    margin-right: 185px; }
  .ml-xl-185 {
    margin-left: 185px; }
  .mb-xl-185 {
    margin-bottom: 185px; }
  .m-xl-185 {
    margin: 185px; }
  .pt-xl-190 {
    padding-top: 190px; }
  .pr-xl-190 {
    padding-right: 190px; }
  .pl-xl-190 {
    padding-left: 190px; }
  .pb-xl-190 {
    padding-bottom: 190px; }
  .p-xl-190 {
    padding: 190px; }
  .mt-xl-190 {
    margin-top: 190px; }
  .mr-xl-190 {
    margin-right: 190px; }
  .ml-xl-190 {
    margin-left: 190px; }
  .mb-xl-190 {
    margin-bottom: 190px; }
  .m-xl-190 {
    margin: 190px; }
  .pt-xl-195 {
    padding-top: 195px; }
  .pr-xl-195 {
    padding-right: 195px; }
  .pl-xl-195 {
    padding-left: 195px; }
  .pb-xl-195 {
    padding-bottom: 195px; }
  .p-xl-195 {
    padding: 195px; }
  .mt-xl-195 {
    margin-top: 195px; }
  .mr-xl-195 {
    margin-right: 195px; }
  .ml-xl-195 {
    margin-left: 195px; }
  .mb-xl-195 {
    margin-bottom: 195px; }
  .m-xl-195 {
    margin: 195px; }
  .pt-xl-200 {
    padding-top: 200px; }
  .pr-xl-200 {
    padding-right: 200px; }
  .pl-xl-200 {
    padding-left: 200px; }
  .pb-xl-200 {
    padding-bottom: 200px; }
  .p-xl-200 {
    padding: 200px; }
  .mt-xl-200 {
    margin-top: 200px; }
  .mr-xl-200 {
    margin-right: 200px; }
  .ml-xl-200 {
    margin-left: 200px; }
  .mb-xl-200 {
    margin-bottom: 200px; }
  .m-xl-200 {
    margin: 200px; }
  .pt-xl-205 {
    padding-top: 205px; }
  .pr-xl-205 {
    padding-right: 205px; }
  .pl-xl-205 {
    padding-left: 205px; }
  .pb-xl-205 {
    padding-bottom: 205px; }
  .p-xl-205 {
    padding: 205px; }
  .mt-xl-205 {
    margin-top: 205px; }
  .mr-xl-205 {
    margin-right: 205px; }
  .ml-xl-205 {
    margin-left: 205px; }
  .mb-xl-205 {
    margin-bottom: 205px; }
  .m-xl-205 {
    margin: 205px; }
  .pt-xl-210 {
    padding-top: 210px; }
  .pr-xl-210 {
    padding-right: 210px; }
  .pl-xl-210 {
    padding-left: 210px; }
  .pb-xl-210 {
    padding-bottom: 210px; }
  .p-xl-210 {
    padding: 210px; }
  .mt-xl-210 {
    margin-top: 210px; }
  .mr-xl-210 {
    margin-right: 210px; }
  .ml-xl-210 {
    margin-left: 210px; }
  .mb-xl-210 {
    margin-bottom: 210px; }
  .m-xl-210 {
    margin: 210px; }
  .pt-xl-215 {
    padding-top: 215px; }
  .pr-xl-215 {
    padding-right: 215px; }
  .pl-xl-215 {
    padding-left: 215px; }
  .pb-xl-215 {
    padding-bottom: 215px; }
  .p-xl-215 {
    padding: 215px; }
  .mt-xl-215 {
    margin-top: 215px; }
  .mr-xl-215 {
    margin-right: 215px; }
  .ml-xl-215 {
    margin-left: 215px; }
  .mb-xl-215 {
    margin-bottom: 215px; }
  .m-xl-215 {
    margin: 215px; }
  .pt-xl-220 {
    padding-top: 220px; }
  .pr-xl-220 {
    padding-right: 220px; }
  .pl-xl-220 {
    padding-left: 220px; }
  .pb-xl-220 {
    padding-bottom: 220px; }
  .p-xl-220 {
    padding: 220px; }
  .mt-xl-220 {
    margin-top: 220px; }
  .mr-xl-220 {
    margin-right: 220px; }
  .ml-xl-220 {
    margin-left: 220px; }
  .mb-xl-220 {
    margin-bottom: 220px; }
  .m-xl-220 {
    margin: 220px; }
  .pt-xl-225 {
    padding-top: 225px; }
  .pr-xl-225 {
    padding-right: 225px; }
  .pl-xl-225 {
    padding-left: 225px; }
  .pb-xl-225 {
    padding-bottom: 225px; }
  .p-xl-225 {
    padding: 225px; }
  .mt-xl-225 {
    margin-top: 225px; }
  .mr-xl-225 {
    margin-right: 225px; }
  .ml-xl-225 {
    margin-left: 225px; }
  .mb-xl-225 {
    margin-bottom: 225px; }
  .m-xl-225 {
    margin: 225px; }
  .pt-xl-230 {
    padding-top: 230px; }
  .pr-xl-230 {
    padding-right: 230px; }
  .pl-xl-230 {
    padding-left: 230px; }
  .pb-xl-230 {
    padding-bottom: 230px; }
  .p-xl-230 {
    padding: 230px; }
  .mt-xl-230 {
    margin-top: 230px; }
  .mr-xl-230 {
    margin-right: 230px; }
  .ml-xl-230 {
    margin-left: 230px; }
  .mb-xl-230 {
    margin-bottom: 230px; }
  .m-xl-230 {
    margin: 230px; }
  .pt-xl-235 {
    padding-top: 235px; }
  .pr-xl-235 {
    padding-right: 235px; }
  .pl-xl-235 {
    padding-left: 235px; }
  .pb-xl-235 {
    padding-bottom: 235px; }
  .p-xl-235 {
    padding: 235px; }
  .mt-xl-235 {
    margin-top: 235px; }
  .mr-xl-235 {
    margin-right: 235px; }
  .ml-xl-235 {
    margin-left: 235px; }
  .mb-xl-235 {
    margin-bottom: 235px; }
  .m-xl-235 {
    margin: 235px; }
  .pt-xl-240 {
    padding-top: 240px; }
  .pr-xl-240 {
    padding-right: 240px; }
  .pl-xl-240 {
    padding-left: 240px; }
  .pb-xl-240 {
    padding-bottom: 240px; }
  .p-xl-240 {
    padding: 240px; }
  .mt-xl-240 {
    margin-top: 240px; }
  .mr-xl-240 {
    margin-right: 240px; }
  .ml-xl-240 {
    margin-left: 240px; }
  .mb-xl-240 {
    margin-bottom: 240px; }
  .m-xl-240 {
    margin: 240px; }
  .pt-xl-245 {
    padding-top: 245px; }
  .pr-xl-245 {
    padding-right: 245px; }
  .pl-xl-245 {
    padding-left: 245px; }
  .pb-xl-245 {
    padding-bottom: 245px; }
  .p-xl-245 {
    padding: 245px; }
  .mt-xl-245 {
    margin-top: 245px; }
  .mr-xl-245 {
    margin-right: 245px; }
  .ml-xl-245 {
    margin-left: 245px; }
  .mb-xl-245 {
    margin-bottom: 245px; }
  .m-xl-245 {
    margin: 245px; }
  .pt-xl-250 {
    padding-top: 250px; }
  .pr-xl-250 {
    padding-right: 250px; }
  .pl-xl-250 {
    padding-left: 250px; }
  .pb-xl-250 {
    padding-bottom: 250px; }
  .p-xl-250 {
    padding: 250px; }
  .mt-xl-250 {
    margin-top: 250px; }
  .mr-xl-250 {
    margin-right: 250px; }
  .ml-xl-250 {
    margin-left: 250px; }
  .mb-xl-250 {
    margin-bottom: 250px; }
  .m-xl-250 {
    margin: 250px; }
  .pt-xl-255 {
    padding-top: 255px; }
  .pr-xl-255 {
    padding-right: 255px; }
  .pl-xl-255 {
    padding-left: 255px; }
  .pb-xl-255 {
    padding-bottom: 255px; }
  .p-xl-255 {
    padding: 255px; }
  .mt-xl-255 {
    margin-top: 255px; }
  .mr-xl-255 {
    margin-right: 255px; }
  .ml-xl-255 {
    margin-left: 255px; }
  .mb-xl-255 {
    margin-bottom: 255px; }
  .m-xl-255 {
    margin: 255px; }
  .pt-xl-260 {
    padding-top: 260px; }
  .pr-xl-260 {
    padding-right: 260px; }
  .pl-xl-260 {
    padding-left: 260px; }
  .pb-xl-260 {
    padding-bottom: 260px; }
  .p-xl-260 {
    padding: 260px; }
  .mt-xl-260 {
    margin-top: 260px; }
  .mr-xl-260 {
    margin-right: 260px; }
  .ml-xl-260 {
    margin-left: 260px; }
  .mb-xl-260 {
    margin-bottom: 260px; }
  .m-xl-260 {
    margin: 260px; }
  .pt-xl-265 {
    padding-top: 265px; }
  .pr-xl-265 {
    padding-right: 265px; }
  .pl-xl-265 {
    padding-left: 265px; }
  .pb-xl-265 {
    padding-bottom: 265px; }
  .p-xl-265 {
    padding: 265px; }
  .mt-xl-265 {
    margin-top: 265px; }
  .mr-xl-265 {
    margin-right: 265px; }
  .ml-xl-265 {
    margin-left: 265px; }
  .mb-xl-265 {
    margin-bottom: 265px; }
  .m-xl-265 {
    margin: 265px; }
  .pt-xl-270 {
    padding-top: 270px; }
  .pr-xl-270 {
    padding-right: 270px; }
  .pl-xl-270 {
    padding-left: 270px; }
  .pb-xl-270 {
    padding-bottom: 270px; }
  .p-xl-270 {
    padding: 270px; }
  .mt-xl-270 {
    margin-top: 270px; }
  .mr-xl-270 {
    margin-right: 270px; }
  .ml-xl-270 {
    margin-left: 270px; }
  .mb-xl-270 {
    margin-bottom: 270px; }
  .m-xl-270 {
    margin: 270px; }
  .pt-xl-275 {
    padding-top: 275px; }
  .pr-xl-275 {
    padding-right: 275px; }
  .pl-xl-275 {
    padding-left: 275px; }
  .pb-xl-275 {
    padding-bottom: 275px; }
  .p-xl-275 {
    padding: 275px; }
  .mt-xl-275 {
    margin-top: 275px; }
  .mr-xl-275 {
    margin-right: 275px; }
  .ml-xl-275 {
    margin-left: 275px; }
  .mb-xl-275 {
    margin-bottom: 275px; }
  .m-xl-275 {
    margin: 275px; }
  .pt-xl-280 {
    padding-top: 280px; }
  .pr-xl-280 {
    padding-right: 280px; }
  .pl-xl-280 {
    padding-left: 280px; }
  .pb-xl-280 {
    padding-bottom: 280px; }
  .p-xl-280 {
    padding: 280px; }
  .mt-xl-280 {
    margin-top: 280px; }
  .mr-xl-280 {
    margin-right: 280px; }
  .ml-xl-280 {
    margin-left: 280px; }
  .mb-xl-280 {
    margin-bottom: 280px; }
  .m-xl-280 {
    margin: 280px; }
  .pt-xl-285 {
    padding-top: 285px; }
  .pr-xl-285 {
    padding-right: 285px; }
  .pl-xl-285 {
    padding-left: 285px; }
  .pb-xl-285 {
    padding-bottom: 285px; }
  .p-xl-285 {
    padding: 285px; }
  .mt-xl-285 {
    margin-top: 285px; }
  .mr-xl-285 {
    margin-right: 285px; }
  .ml-xl-285 {
    margin-left: 285px; }
  .mb-xl-285 {
    margin-bottom: 285px; }
  .m-xl-285 {
    margin: 285px; }
  .pt-xl-290 {
    padding-top: 290px; }
  .pr-xl-290 {
    padding-right: 290px; }
  .pl-xl-290 {
    padding-left: 290px; }
  .pb-xl-290 {
    padding-bottom: 290px; }
  .p-xl-290 {
    padding: 290px; }
  .mt-xl-290 {
    margin-top: 290px; }
  .mr-xl-290 {
    margin-right: 290px; }
  .ml-xl-290 {
    margin-left: 290px; }
  .mb-xl-290 {
    margin-bottom: 290px; }
  .m-xl-290 {
    margin: 290px; }
  .pt-xl-295 {
    padding-top: 295px; }
  .pr-xl-295 {
    padding-right: 295px; }
  .pl-xl-295 {
    padding-left: 295px; }
  .pb-xl-295 {
    padding-bottom: 295px; }
  .p-xl-295 {
    padding: 295px; }
  .mt-xl-295 {
    margin-top: 295px; }
  .mr-xl-295 {
    margin-right: 295px; }
  .ml-xl-295 {
    margin-left: 295px; }
  .mb-xl-295 {
    margin-bottom: 295px; }
  .m-xl-295 {
    margin: 295px; }
  .pt-xl-300 {
    padding-top: 300px; }
  .pr-xl-300 {
    padding-right: 300px; }
  .pl-xl-300 {
    padding-left: 300px; }
  .pb-xl-300 {
    padding-bottom: 300px; }
  .p-xl-300 {
    padding: 300px; }
  .mt-xl-300 {
    margin-top: 300px; }
  .mr-xl-300 {
    margin-right: 300px; }
  .ml-xl-300 {
    margin-left: 300px; }
  .mb-xl-300 {
    margin-bottom: 300px; }
  .m-xl-300 {
    margin: 300px; }
  .pt-xl-305 {
    padding-top: 305px; }
  .pr-xl-305 {
    padding-right: 305px; }
  .pl-xl-305 {
    padding-left: 305px; }
  .pb-xl-305 {
    padding-bottom: 305px; }
  .p-xl-305 {
    padding: 305px; }
  .mt-xl-305 {
    margin-top: 305px; }
  .mr-xl-305 {
    margin-right: 305px; }
  .ml-xl-305 {
    margin-left: 305px; }
  .mb-xl-305 {
    margin-bottom: 305px; }
  .m-xl-305 {
    margin: 305px; }
  .pt-xl-310 {
    padding-top: 310px; }
  .pr-xl-310 {
    padding-right: 310px; }
  .pl-xl-310 {
    padding-left: 310px; }
  .pb-xl-310 {
    padding-bottom: 310px; }
  .p-xl-310 {
    padding: 310px; }
  .mt-xl-310 {
    margin-top: 310px; }
  .mr-xl-310 {
    margin-right: 310px; }
  .ml-xl-310 {
    margin-left: 310px; }
  .mb-xl-310 {
    margin-bottom: 310px; }
  .m-xl-310 {
    margin: 310px; }
  .pt-xl-315 {
    padding-top: 315px; }
  .pr-xl-315 {
    padding-right: 315px; }
  .pl-xl-315 {
    padding-left: 315px; }
  .pb-xl-315 {
    padding-bottom: 315px; }
  .p-xl-315 {
    padding: 315px; }
  .mt-xl-315 {
    margin-top: 315px; }
  .mr-xl-315 {
    margin-right: 315px; }
  .ml-xl-315 {
    margin-left: 315px; }
  .mb-xl-315 {
    margin-bottom: 315px; }
  .m-xl-315 {
    margin: 315px; }
  .pt-xl-320 {
    padding-top: 320px; }
  .pr-xl-320 {
    padding-right: 320px; }
  .pl-xl-320 {
    padding-left: 320px; }
  .pb-xl-320 {
    padding-bottom: 320px; }
  .p-xl-320 {
    padding: 320px; }
  .mt-xl-320 {
    margin-top: 320px; }
  .mr-xl-320 {
    margin-right: 320px; }
  .ml-xl-320 {
    margin-left: 320px; }
  .mb-xl-320 {
    margin-bottom: 320px; }
  .m-xl-320 {
    margin: 320px; }
  .pt-xl-325 {
    padding-top: 325px; }
  .pr-xl-325 {
    padding-right: 325px; }
  .pl-xl-325 {
    padding-left: 325px; }
  .pb-xl-325 {
    padding-bottom: 325px; }
  .p-xl-325 {
    padding: 325px; }
  .mt-xl-325 {
    margin-top: 325px; }
  .mr-xl-325 {
    margin-right: 325px; }
  .ml-xl-325 {
    margin-left: 325px; }
  .mb-xl-325 {
    margin-bottom: 325px; }
  .m-xl-325 {
    margin: 325px; }
  .pt-xl-330 {
    padding-top: 330px; }
  .pr-xl-330 {
    padding-right: 330px; }
  .pl-xl-330 {
    padding-left: 330px; }
  .pb-xl-330 {
    padding-bottom: 330px; }
  .p-xl-330 {
    padding: 330px; }
  .mt-xl-330 {
    margin-top: 330px; }
  .mr-xl-330 {
    margin-right: 330px; }
  .ml-xl-330 {
    margin-left: 330px; }
  .mb-xl-330 {
    margin-bottom: 330px; }
  .m-xl-330 {
    margin: 330px; }
  .pt-xl-335 {
    padding-top: 335px; }
  .pr-xl-335 {
    padding-right: 335px; }
  .pl-xl-335 {
    padding-left: 335px; }
  .pb-xl-335 {
    padding-bottom: 335px; }
  .p-xl-335 {
    padding: 335px; }
  .mt-xl-335 {
    margin-top: 335px; }
  .mr-xl-335 {
    margin-right: 335px; }
  .ml-xl-335 {
    margin-left: 335px; }
  .mb-xl-335 {
    margin-bottom: 335px; }
  .m-xl-335 {
    margin: 335px; }
  .pt-xl-340 {
    padding-top: 340px; }
  .pr-xl-340 {
    padding-right: 340px; }
  .pl-xl-340 {
    padding-left: 340px; }
  .pb-xl-340 {
    padding-bottom: 340px; }
  .p-xl-340 {
    padding: 340px; }
  .mt-xl-340 {
    margin-top: 340px; }
  .mr-xl-340 {
    margin-right: 340px; }
  .ml-xl-340 {
    margin-left: 340px; }
  .mb-xl-340 {
    margin-bottom: 340px; }
  .m-xl-340 {
    margin: 340px; }
  .pt-xl-345 {
    padding-top: 345px; }
  .pr-xl-345 {
    padding-right: 345px; }
  .pl-xl-345 {
    padding-left: 345px; }
  .pb-xl-345 {
    padding-bottom: 345px; }
  .p-xl-345 {
    padding: 345px; }
  .mt-xl-345 {
    margin-top: 345px; }
  .mr-xl-345 {
    margin-right: 345px; }
  .ml-xl-345 {
    margin-left: 345px; }
  .mb-xl-345 {
    margin-bottom: 345px; }
  .m-xl-345 {
    margin: 345px; }
  .pt-xl-350 {
    padding-top: 350px; }
  .pr-xl-350 {
    padding-right: 350px; }
  .pl-xl-350 {
    padding-left: 350px; }
  .pb-xl-350 {
    padding-bottom: 350px; }
  .p-xl-350 {
    padding: 350px; }
  .mt-xl-350 {
    margin-top: 350px; }
  .mr-xl-350 {
    margin-right: 350px; }
  .ml-xl-350 {
    margin-left: 350px; }
  .mb-xl-350 {
    margin-bottom: 350px; }
  .m-xl-350 {
    margin: 350px; }
  .pt-xl-355 {
    padding-top: 355px; }
  .pr-xl-355 {
    padding-right: 355px; }
  .pl-xl-355 {
    padding-left: 355px; }
  .pb-xl-355 {
    padding-bottom: 355px; }
  .p-xl-355 {
    padding: 355px; }
  .mt-xl-355 {
    margin-top: 355px; }
  .mr-xl-355 {
    margin-right: 355px; }
  .ml-xl-355 {
    margin-left: 355px; }
  .mb-xl-355 {
    margin-bottom: 355px; }
  .m-xl-355 {
    margin: 355px; }
  .pt-xl-360 {
    padding-top: 360px; }
  .pr-xl-360 {
    padding-right: 360px; }
  .pl-xl-360 {
    padding-left: 360px; }
  .pb-xl-360 {
    padding-bottom: 360px; }
  .p-xl-360 {
    padding: 360px; }
  .mt-xl-360 {
    margin-top: 360px; }
  .mr-xl-360 {
    margin-right: 360px; }
  .ml-xl-360 {
    margin-left: 360px; }
  .mb-xl-360 {
    margin-bottom: 360px; }
  .m-xl-360 {
    margin: 360px; }
  .pt-xl-365 {
    padding-top: 365px; }
  .pr-xl-365 {
    padding-right: 365px; }
  .pl-xl-365 {
    padding-left: 365px; }
  .pb-xl-365 {
    padding-bottom: 365px; }
  .p-xl-365 {
    padding: 365px; }
  .mt-xl-365 {
    margin-top: 365px; }
  .mr-xl-365 {
    margin-right: 365px; }
  .ml-xl-365 {
    margin-left: 365px; }
  .mb-xl-365 {
    margin-bottom: 365px; }
  .m-xl-365 {
    margin: 365px; }
  .pt-xl-370 {
    padding-top: 370px; }
  .pr-xl-370 {
    padding-right: 370px; }
  .pl-xl-370 {
    padding-left: 370px; }
  .pb-xl-370 {
    padding-bottom: 370px; }
  .p-xl-370 {
    padding: 370px; }
  .mt-xl-370 {
    margin-top: 370px; }
  .mr-xl-370 {
    margin-right: 370px; }
  .ml-xl-370 {
    margin-left: 370px; }
  .mb-xl-370 {
    margin-bottom: 370px; }
  .m-xl-370 {
    margin: 370px; }
  .pt-xl-375 {
    padding-top: 375px; }
  .pr-xl-375 {
    padding-right: 375px; }
  .pl-xl-375 {
    padding-left: 375px; }
  .pb-xl-375 {
    padding-bottom: 375px; }
  .p-xl-375 {
    padding: 375px; }
  .mt-xl-375 {
    margin-top: 375px; }
  .mr-xl-375 {
    margin-right: 375px; }
  .ml-xl-375 {
    margin-left: 375px; }
  .mb-xl-375 {
    margin-bottom: 375px; }
  .m-xl-375 {
    margin: 375px; }
  .pt-xl-380 {
    padding-top: 380px; }
  .pr-xl-380 {
    padding-right: 380px; }
  .pl-xl-380 {
    padding-left: 380px; }
  .pb-xl-380 {
    padding-bottom: 380px; }
  .p-xl-380 {
    padding: 380px; }
  .mt-xl-380 {
    margin-top: 380px; }
  .mr-xl-380 {
    margin-right: 380px; }
  .ml-xl-380 {
    margin-left: 380px; }
  .mb-xl-380 {
    margin-bottom: 380px; }
  .m-xl-380 {
    margin: 380px; }
  .pt-xl-385 {
    padding-top: 385px; }
  .pr-xl-385 {
    padding-right: 385px; }
  .pl-xl-385 {
    padding-left: 385px; }
  .pb-xl-385 {
    padding-bottom: 385px; }
  .p-xl-385 {
    padding: 385px; }
  .mt-xl-385 {
    margin-top: 385px; }
  .mr-xl-385 {
    margin-right: 385px; }
  .ml-xl-385 {
    margin-left: 385px; }
  .mb-xl-385 {
    margin-bottom: 385px; }
  .m-xl-385 {
    margin: 385px; }
  .pt-xl-390 {
    padding-top: 390px; }
  .pr-xl-390 {
    padding-right: 390px; }
  .pl-xl-390 {
    padding-left: 390px; }
  .pb-xl-390 {
    padding-bottom: 390px; }
  .p-xl-390 {
    padding: 390px; }
  .mt-xl-390 {
    margin-top: 390px; }
  .mr-xl-390 {
    margin-right: 390px; }
  .ml-xl-390 {
    margin-left: 390px; }
  .mb-xl-390 {
    margin-bottom: 390px; }
  .m-xl-390 {
    margin: 390px; }
  .pt-xl-395 {
    padding-top: 395px; }
  .pr-xl-395 {
    padding-right: 395px; }
  .pl-xl-395 {
    padding-left: 395px; }
  .pb-xl-395 {
    padding-bottom: 395px; }
  .p-xl-395 {
    padding: 395px; }
  .mt-xl-395 {
    margin-top: 395px; }
  .mr-xl-395 {
    margin-right: 395px; }
  .ml-xl-395 {
    margin-left: 395px; }
  .mb-xl-395 {
    margin-bottom: 395px; }
  .m-xl-395 {
    margin: 395px; }
  .pt-xl-400 {
    padding-top: 400px; }
  .pr-xl-400 {
    padding-right: 400px; }
  .pl-xl-400 {
    padding-left: 400px; }
  .pb-xl-400 {
    padding-bottom: 400px; }
  .p-xl-400 {
    padding: 400px; }
  .mt-xl-400 {
    margin-top: 400px; }
  .mr-xl-400 {
    margin-right: 400px; }
  .ml-xl-400 {
    margin-left: 400px; }
  .mb-xl-400 {
    margin-bottom: 400px; }
  .m-xl-400 {
    margin: 400px; }
  .pt-xl-405 {
    padding-top: 405px; }
  .pr-xl-405 {
    padding-right: 405px; }
  .pl-xl-405 {
    padding-left: 405px; }
  .pb-xl-405 {
    padding-bottom: 405px; }
  .p-xl-405 {
    padding: 405px; }
  .mt-xl-405 {
    margin-top: 405px; }
  .mr-xl-405 {
    margin-right: 405px; }
  .ml-xl-405 {
    margin-left: 405px; }
  .mb-xl-405 {
    margin-bottom: 405px; }
  .m-xl-405 {
    margin: 405px; }
  .pt-xl-410 {
    padding-top: 410px; }
  .pr-xl-410 {
    padding-right: 410px; }
  .pl-xl-410 {
    padding-left: 410px; }
  .pb-xl-410 {
    padding-bottom: 410px; }
  .p-xl-410 {
    padding: 410px; }
  .mt-xl-410 {
    margin-top: 410px; }
  .mr-xl-410 {
    margin-right: 410px; }
  .ml-xl-410 {
    margin-left: 410px; }
  .mb-xl-410 {
    margin-bottom: 410px; }
  .m-xl-410 {
    margin: 410px; }
  .pt-xl-415 {
    padding-top: 415px; }
  .pr-xl-415 {
    padding-right: 415px; }
  .pl-xl-415 {
    padding-left: 415px; }
  .pb-xl-415 {
    padding-bottom: 415px; }
  .p-xl-415 {
    padding: 415px; }
  .mt-xl-415 {
    margin-top: 415px; }
  .mr-xl-415 {
    margin-right: 415px; }
  .ml-xl-415 {
    margin-left: 415px; }
  .mb-xl-415 {
    margin-bottom: 415px; }
  .m-xl-415 {
    margin: 415px; }
  .pt-xl-420 {
    padding-top: 420px; }
  .pr-xl-420 {
    padding-right: 420px; }
  .pl-xl-420 {
    padding-left: 420px; }
  .pb-xl-420 {
    padding-bottom: 420px; }
  .p-xl-420 {
    padding: 420px; }
  .mt-xl-420 {
    margin-top: 420px; }
  .mr-xl-420 {
    margin-right: 420px; }
  .ml-xl-420 {
    margin-left: 420px; }
  .mb-xl-420 {
    margin-bottom: 420px; }
  .m-xl-420 {
    margin: 420px; }
  .pt-xl-425 {
    padding-top: 425px; }
  .pr-xl-425 {
    padding-right: 425px; }
  .pl-xl-425 {
    padding-left: 425px; }
  .pb-xl-425 {
    padding-bottom: 425px; }
  .p-xl-425 {
    padding: 425px; }
  .mt-xl-425 {
    margin-top: 425px; }
  .mr-xl-425 {
    margin-right: 425px; }
  .ml-xl-425 {
    margin-left: 425px; }
  .mb-xl-425 {
    margin-bottom: 425px; }
  .m-xl-425 {
    margin: 425px; }
  .pt-xl-430 {
    padding-top: 430px; }
  .pr-xl-430 {
    padding-right: 430px; }
  .pl-xl-430 {
    padding-left: 430px; }
  .pb-xl-430 {
    padding-bottom: 430px; }
  .p-xl-430 {
    padding: 430px; }
  .mt-xl-430 {
    margin-top: 430px; }
  .mr-xl-430 {
    margin-right: 430px; }
  .ml-xl-430 {
    margin-left: 430px; }
  .mb-xl-430 {
    margin-bottom: 430px; }
  .m-xl-430 {
    margin: 430px; }
  .pt-xl-435 {
    padding-top: 435px; }
  .pr-xl-435 {
    padding-right: 435px; }
  .pl-xl-435 {
    padding-left: 435px; }
  .pb-xl-435 {
    padding-bottom: 435px; }
  .p-xl-435 {
    padding: 435px; }
  .mt-xl-435 {
    margin-top: 435px; }
  .mr-xl-435 {
    margin-right: 435px; }
  .ml-xl-435 {
    margin-left: 435px; }
  .mb-xl-435 {
    margin-bottom: 435px; }
  .m-xl-435 {
    margin: 435px; }
  .pt-xl-440 {
    padding-top: 440px; }
  .pr-xl-440 {
    padding-right: 440px; }
  .pl-xl-440 {
    padding-left: 440px; }
  .pb-xl-440 {
    padding-bottom: 440px; }
  .p-xl-440 {
    padding: 440px; }
  .mt-xl-440 {
    margin-top: 440px; }
  .mr-xl-440 {
    margin-right: 440px; }
  .ml-xl-440 {
    margin-left: 440px; }
  .mb-xl-440 {
    margin-bottom: 440px; }
  .m-xl-440 {
    margin: 440px; }
  .pt-xl-445 {
    padding-top: 445px; }
  .pr-xl-445 {
    padding-right: 445px; }
  .pl-xl-445 {
    padding-left: 445px; }
  .pb-xl-445 {
    padding-bottom: 445px; }
  .p-xl-445 {
    padding: 445px; }
  .mt-xl-445 {
    margin-top: 445px; }
  .mr-xl-445 {
    margin-right: 445px; }
  .ml-xl-445 {
    margin-left: 445px; }
  .mb-xl-445 {
    margin-bottom: 445px; }
  .m-xl-445 {
    margin: 445px; }
  .pt-xl-450 {
    padding-top: 450px; }
  .pr-xl-450 {
    padding-right: 450px; }
  .pl-xl-450 {
    padding-left: 450px; }
  .pb-xl-450 {
    padding-bottom: 450px; }
  .p-xl-450 {
    padding: 450px; }
  .mt-xl-450 {
    margin-top: 450px; }
  .mr-xl-450 {
    margin-right: 450px; }
  .ml-xl-450 {
    margin-left: 450px; }
  .mb-xl-450 {
    margin-bottom: 450px; }
  .m-xl-450 {
    margin: 450px; }
  .pt-xl-455 {
    padding-top: 455px; }
  .pr-xl-455 {
    padding-right: 455px; }
  .pl-xl-455 {
    padding-left: 455px; }
  .pb-xl-455 {
    padding-bottom: 455px; }
  .p-xl-455 {
    padding: 455px; }
  .mt-xl-455 {
    margin-top: 455px; }
  .mr-xl-455 {
    margin-right: 455px; }
  .ml-xl-455 {
    margin-left: 455px; }
  .mb-xl-455 {
    margin-bottom: 455px; }
  .m-xl-455 {
    margin: 455px; }
  .pt-xl-460 {
    padding-top: 460px; }
  .pr-xl-460 {
    padding-right: 460px; }
  .pl-xl-460 {
    padding-left: 460px; }
  .pb-xl-460 {
    padding-bottom: 460px; }
  .p-xl-460 {
    padding: 460px; }
  .mt-xl-460 {
    margin-top: 460px; }
  .mr-xl-460 {
    margin-right: 460px; }
  .ml-xl-460 {
    margin-left: 460px; }
  .mb-xl-460 {
    margin-bottom: 460px; }
  .m-xl-460 {
    margin: 460px; }
  .pt-xl-465 {
    padding-top: 465px; }
  .pr-xl-465 {
    padding-right: 465px; }
  .pl-xl-465 {
    padding-left: 465px; }
  .pb-xl-465 {
    padding-bottom: 465px; }
  .p-xl-465 {
    padding: 465px; }
  .mt-xl-465 {
    margin-top: 465px; }
  .mr-xl-465 {
    margin-right: 465px; }
  .ml-xl-465 {
    margin-left: 465px; }
  .mb-xl-465 {
    margin-bottom: 465px; }
  .m-xl-465 {
    margin: 465px; }
  .pt-xl-470 {
    padding-top: 470px; }
  .pr-xl-470 {
    padding-right: 470px; }
  .pl-xl-470 {
    padding-left: 470px; }
  .pb-xl-470 {
    padding-bottom: 470px; }
  .p-xl-470 {
    padding: 470px; }
  .mt-xl-470 {
    margin-top: 470px; }
  .mr-xl-470 {
    margin-right: 470px; }
  .ml-xl-470 {
    margin-left: 470px; }
  .mb-xl-470 {
    margin-bottom: 470px; }
  .m-xl-470 {
    margin: 470px; }
  .pt-xl-475 {
    padding-top: 475px; }
  .pr-xl-475 {
    padding-right: 475px; }
  .pl-xl-475 {
    padding-left: 475px; }
  .pb-xl-475 {
    padding-bottom: 475px; }
  .p-xl-475 {
    padding: 475px; }
  .mt-xl-475 {
    margin-top: 475px; }
  .mr-xl-475 {
    margin-right: 475px; }
  .ml-xl-475 {
    margin-left: 475px; }
  .mb-xl-475 {
    margin-bottom: 475px; }
  .m-xl-475 {
    margin: 475px; }
  .pt-xl-480 {
    padding-top: 480px; }
  .pr-xl-480 {
    padding-right: 480px; }
  .pl-xl-480 {
    padding-left: 480px; }
  .pb-xl-480 {
    padding-bottom: 480px; }
  .p-xl-480 {
    padding: 480px; }
  .mt-xl-480 {
    margin-top: 480px; }
  .mr-xl-480 {
    margin-right: 480px; }
  .ml-xl-480 {
    margin-left: 480px; }
  .mb-xl-480 {
    margin-bottom: 480px; }
  .m-xl-480 {
    margin: 480px; }
  .pt-xl-485 {
    padding-top: 485px; }
  .pr-xl-485 {
    padding-right: 485px; }
  .pl-xl-485 {
    padding-left: 485px; }
  .pb-xl-485 {
    padding-bottom: 485px; }
  .p-xl-485 {
    padding: 485px; }
  .mt-xl-485 {
    margin-top: 485px; }
  .mr-xl-485 {
    margin-right: 485px; }
  .ml-xl-485 {
    margin-left: 485px; }
  .mb-xl-485 {
    margin-bottom: 485px; }
  .m-xl-485 {
    margin: 485px; }
  .pt-xl-490 {
    padding-top: 490px; }
  .pr-xl-490 {
    padding-right: 490px; }
  .pl-xl-490 {
    padding-left: 490px; }
  .pb-xl-490 {
    padding-bottom: 490px; }
  .p-xl-490 {
    padding: 490px; }
  .mt-xl-490 {
    margin-top: 490px; }
  .mr-xl-490 {
    margin-right: 490px; }
  .ml-xl-490 {
    margin-left: 490px; }
  .mb-xl-490 {
    margin-bottom: 490px; }
  .m-xl-490 {
    margin: 490px; }
  .pt-xl-495 {
    padding-top: 495px; }
  .pr-xl-495 {
    padding-right: 495px; }
  .pl-xl-495 {
    padding-left: 495px; }
  .pb-xl-495 {
    padding-bottom: 495px; }
  .p-xl-495 {
    padding: 495px; }
  .mt-xl-495 {
    margin-top: 495px; }
  .mr-xl-495 {
    margin-right: 495px; }
  .ml-xl-495 {
    margin-left: 495px; }
  .mb-xl-495 {
    margin-bottom: 495px; }
  .m-xl-495 {
    margin: 495px; }
  .pt-xl-500 {
    padding-top: 500px; }
  .pr-xl-500 {
    padding-right: 500px; }
  .pl-xl-500 {
    padding-left: 500px; }
  .pb-xl-500 {
    padding-bottom: 500px; }
  .p-xl-500 {
    padding: 500px; }
  .mt-xl-500 {
    margin-top: 500px; }
  .mr-xl-500 {
    margin-right: 500px; }
  .ml-xl-500 {
    margin-left: 500px; }
  .mb-xl-500 {
    margin-bottom: 500px; }
  .m-xl-500 {
    margin: 500px; }
  .pt-xl-10 {
    padding-top: 10px; }
  .pr-xl-10 {
    padding-right: 10px; }
  .pl-xl-10 {
    padding-left: 10px; }
  .pb-xl-10 {
    padding-bottom: 10px; }
  .p-xl-10 {
    padding: 10px; }
  .mt-xl-10 {
    margin-top: 10px; }
  .mr-xl-10 {
    margin-right: 10px; }
  .ml-xl-10 {
    margin-left: 10px; }
  .mb-xl-10 {
    margin-bottom: 10px; }
  .m-xl-10 {
    margin: 10px; }
  .pt-xl-20 {
    padding-top: 20px; }
  .pr-xl-20 {
    padding-right: 20px; }
  .pl-xl-20 {
    padding-left: 20px; }
  .pb-xl-20 {
    padding-bottom: 20px; }
  .p-xl-20 {
    padding: 20px; }
  .mt-xl-20 {
    margin-top: 20px; }
  .mr-xl-20 {
    margin-right: 20px; }
  .ml-xl-20 {
    margin-left: 20px; }
  .mb-xl-20 {
    margin-bottom: 20px; }
  .m-xl-20 {
    margin: 20px; }
  .pt-xl-30 {
    padding-top: 30px; }
  .pr-xl-30 {
    padding-right: 30px; }
  .pl-xl-30 {
    padding-left: 30px; }
  .pb-xl-30 {
    padding-bottom: 30px; }
  .p-xl-30 {
    padding: 30px; }
  .mt-xl-30 {
    margin-top: 30px; }
  .mr-xl-30 {
    margin-right: 30px; }
  .ml-xl-30 {
    margin-left: 30px; }
  .mb-xl-30 {
    margin-bottom: 30px; }
  .m-xl-30 {
    margin: 30px; }
  .pt-xl-40 {
    padding-top: 40px; }
  .pr-xl-40 {
    padding-right: 40px; }
  .pl-xl-40 {
    padding-left: 40px; }
  .pb-xl-40 {
    padding-bottom: 40px; }
  .p-xl-40 {
    padding: 40px; }
  .mt-xl-40 {
    margin-top: 40px; }
  .mr-xl-40 {
    margin-right: 40px; }
  .ml-xl-40 {
    margin-left: 40px; }
  .mb-xl-40 {
    margin-bottom: 40px; }
  .m-xl-40 {
    margin: 40px; }
  .pt-xl-50 {
    padding-top: 50px; }
  .pr-xl-50 {
    padding-right: 50px; }
  .pl-xl-50 {
    padding-left: 50px; }
  .pb-xl-50 {
    padding-bottom: 50px; }
  .p-xl-50 {
    padding: 50px; }
  .mt-xl-50 {
    margin-top: 50px; }
  .mr-xl-50 {
    margin-right: 50px; }
  .ml-xl-50 {
    margin-left: 50px; }
  .mb-xl-50 {
    margin-bottom: 50px; }
  .m-xl-50 {
    margin: 50px; }
  .pt-xl-60 {
    padding-top: 60px; }
  .pr-xl-60 {
    padding-right: 60px; }
  .pl-xl-60 {
    padding-left: 60px; }
  .pb-xl-60 {
    padding-bottom: 60px; }
  .p-xl-60 {
    padding: 60px; }
  .mt-xl-60 {
    margin-top: 60px; }
  .mr-xl-60 {
    margin-right: 60px; }
  .ml-xl-60 {
    margin-left: 60px; }
  .mb-xl-60 {
    margin-bottom: 60px; }
  .m-xl-60 {
    margin: 60px; }
  .pt-xl-70 {
    padding-top: 70px; }
  .pr-xl-70 {
    padding-right: 70px; }
  .pl-xl-70 {
    padding-left: 70px; }
  .pb-xl-70 {
    padding-bottom: 70px; }
  .p-xl-70 {
    padding: 70px; }
  .mt-xl-70 {
    margin-top: 70px; }
  .mr-xl-70 {
    margin-right: 70px; }
  .ml-xl-70 {
    margin-left: 70px; }
  .mb-xl-70 {
    margin-bottom: 70px; }
  .m-xl-70 {
    margin: 70px; }
  .pt-xl-80 {
    padding-top: 80px; }
  .pr-xl-80 {
    padding-right: 80px; }
  .pl-xl-80 {
    padding-left: 80px; }
  .pb-xl-80 {
    padding-bottom: 80px; }
  .p-xl-80 {
    padding: 80px; }
  .mt-xl-80 {
    margin-top: 80px; }
  .mr-xl-80 {
    margin-right: 80px; }
  .ml-xl-80 {
    margin-left: 80px; }
  .mb-xl-80 {
    margin-bottom: 80px; }
  .m-xl-80 {
    margin: 80px; }
  .pt-xl-90 {
    padding-top: 90px; }
  .pr-xl-90 {
    padding-right: 90px; }
  .pl-xl-90 {
    padding-left: 90px; }
  .pb-xl-90 {
    padding-bottom: 90px; }
  .p-xl-90 {
    padding: 90px; }
  .mt-xl-90 {
    margin-top: 90px; }
  .mr-xl-90 {
    margin-right: 90px; }
  .ml-xl-90 {
    margin-left: 90px; }
  .mb-xl-90 {
    margin-bottom: 90px; }
  .m-xl-90 {
    margin: 90px; }
  .pt-xl-100 {
    padding-top: 100px; }
  .pr-xl-100 {
    padding-right: 100px; }
  .pl-xl-100 {
    padding-left: 100px; }
  .pb-xl-100 {
    padding-bottom: 100px; }
  .p-xl-100 {
    padding: 100px; }
  .mt-xl-100 {
    margin-top: 100px; }
  .mr-xl-100 {
    margin-right: 100px; }
  .ml-xl-100 {
    margin-left: 100px; }
  .mb-xl-100 {
    margin-bottom: 100px; }
  .m-xl-100 {
    margin: 100px; } }