/*
COLOUR OPTIONS

Slate dark - RGBA(24,0,1,1)
Slate - RGBA(80,61,62,1)
Slate light - RGBA(136,121,122,1)
Slate wash - RGBA(224,213,214,1)
Red dark - RGBA(157,4,8,1)
Red - RGBA(227,30,36,1)
Red light - RGBA(210,105,108,1)
Red wash - RGBA(249,216,217,1)
White - RGBA(255,255,255,1)
Black - RGBA(0,0,0,1)

<link href="https://fonts.googleapis.com/css2?family=Karla:wght@400;700&family=Teko:wght@300;400;600;700&display=swap" rel="stylesheet">
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;700&family=Teko:wght@300;400;600;700&display=swap');
font-family: 'Karla', sans-serif;
font-family: 'Teko', sans-serif;

/* ------------------------------ IMMEDIATE SEMANTIC OVERRIDES ------------------------------ */
html {
    font-size: 10px;
    line-height: 10px;
    font-family: 'Karla', sans-serif;
    color: rgba(24,0,1,1);
}
body {
    font-size: 10px;
    line-height: 10px;
    font-family: 'Karla', sans-serif;
    font-weight: 500;
    color: rgba(24,0,1,1);
	overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6,p,li, button, input, optgroup, select, textarea { word-wrap: break-word; }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
}

h1 { font-weight: 700; font-size: 6rem; line-height: 1; margin: 0 0 4rem 0; font-family: 'Teko', sans-serif; }
h2 { font-weight: 700; font-size: 5rem; line-height: 1; margin: 0 0 3rem 0; font-family: 'Teko', sans-serif; }
h3 { font-weight: 700; font-size: 4rem; line-height: 1; margin: 0 0 2.5rem 0; font-family: 'Teko', sans-serif; }
h4 { font-weight: 700; font-size: 3rem; line-height: 1; margin: 0 0 2rem 0; font-family: 'Teko', sans-serif; }
h5 { font-weight: 700; font-size: 2rem; line-height: 1; margin: 0 0 1rem 0; font-family: 'Teko', sans-serif; }
h6 { font-weight: 700; font-size: 1.7rem; line-height: 1; margin: 0 0 1rem 0; font-family: 'Teko', sans-serif; }

a { color: RGBA(27,30,36,1) }
a:hover { color: RGBA(24,0,1,1) }

p,
ul,
ol { font-size: 1.8rem; line-height: 1.4; margin-bottom: 1.8rem; color: RGBA(80,61,62,1) }

ul.no_bullets,
ol.no_bullets { list-style: none; padding-left: 0; margin-left: 0; }
ul.no_bullets li,
ol.no_bullets li { list-style: none; padding-left: 0; padding-bottom: 1rem; margin-left: 0; }
ul li i.first { margin: 0 1rem 0 0; }
ul li { list-style: square; }
blockquote ul li { padding: 0.5rem 0; }

/* Heading sizes */
h1.heading_large { font-size: 7rem; margin: 0 0 5rem 0; }
h2.heading_large { font-size: 6rem; margin: 0 0 4rem 0; }
h3.heading_large { font-size: 5rem; margin: 0 0 3rem 0; }
h4.heading_large { font-size: 4rem; margin: 0 0 2rem 0; }
h5.heading_large { font-size: 3rem; margin: 0 0 1rem 0; }
h6.heading_large { font-size: 2rem; margin: 0 0 1rem 0; }

h1.heading_small { font-size: 5rem; margin: 0 0 3rem 0; }
h2.heading_small { font-size: 4rem; margin: 0 0 2.5rem 0; }
h3.heading_small { font-size: 3rem; margin: 0 0 2rem 0; }
h4.heading_small { font-size: 2rem; margin: 0 0 1rem 0; }
h5.heading_small { font-size: 1.7rem; margin: 0 0 1rem 0; }
h6.heading_small { font-size: 1.7rem; margin: 0 0 1rem 0; }

h1.heading_tiny,
h2.heading_tiny,
h3.heading_tiny,
h4.heading_tiny,
h5.heading_tiny,
h6.heading_tiny { font-size: 2rem; margin: 0 0 2rem 0; }



/* Paragraph, List sizes */
p.text_large, ul.text_large, ol.text_large , li.text_large { font-size: 2rem; }
p.text_small, ul.text_small, ol.text_small, li.text_small { font-size: 1.5rem; }
p.text_tiny, ul.text_tiny, ol.text_tiny, li.text_tiny, span.text_tiny { font-size: 1.2rem; }

a.cta_button,
input.cta_button,
button.cta_button,
a.ui.button.cta_button,
input.ui.button.cta_button,
button.ui.button.cta_button {
    display: inline-block;
    padding: 2rem 3rem 1.5rem 3rem;
    margin: 0.5rem 0 2rem 0;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 2rem;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
    border: 0.2rem rgba(0,0,0,0) solid;
	background-color: transparent;
	border-radius: 0;
	position: relative;
	font-family: 'Teko', sans-serif;
	-webkit-box-shadow: inset 0px 2.8rem 0px 0px rgba(255,255,255,0.2);
	-moz-box-shadow: inset 0px 2.8rem 0px 0px rgba(255,255,255,0.2);
	box-shadow: inset 0px 2.8rem 0px 0px rgba(255,255,255,0.2);
}

a.cta_button + a.cta_button {
    margin: 0.5rem 0 2rem 0.5rem;
}

input.cta_button {
    position: relative;
    left: 1.5rem;
    margin: 0;
}

input.cta_button.position_reset {
  left: 0;
}

    a.cta_button_small,
    button.cta_button_small {
        padding: 1rem 1.5rem;
    }

    a.cta_button i,
    button.cta_button i {
        display: inline-block;
        text-align: right;
        line-height: 1.7rem;
        width: 3rem;
        margin: 0;
    }

    a.cta_button i.first,
    button.cta_button i.first {
        text-align: left;
    }

    table {
        border-collapse: collapse;
        width: 100%;
        font-size: 1.5rem;
        line-height: 2rem;
        margin: 2rem auto;
    }

        table th {
            padding: 1rem 1.5rem;
            background-color: rgba(92,92,97,0.4);
            text-align: left;
        }

        table tr:nth-child(odd) {
            background-color: rgba(92,92,97,0.1);
        }

        table td {
            padding: 1rem 1.5rem;
        }

    table.data {
        font-size: 1.4rem;
        line-height: 1.7rem;
        margin: 2rem auto;
    }

        table.data th {
            padding: 0.75rem 1.25rem;
        }

        table.data td {
            padding: 0.75rem 1.25rem;
        }

    blockquote {
      padding: 5rem;
      margin: 0;
    }

hr {
    height: 0;
    border: none;
    margin: 2rem 0 2rem 0;
    border-bottom: 0.1rem rgba(157,4,8,1) solid;
}

hr.hr_block {
	width: 100%;
	height: 1rem;
	display: block;
	margin: 0;
	border: none;
}

hr.hr_black_red {
	background: transparent url('images/black_red_bars.gif') top left repeat-x;
	background-size: auto 100%;
}

hr.hr_red_white {
	background: transparent url('images/red_white_bars.gif') top left repeat-x;
	background-size: auto 100%;
}

hr.hr_white_black {
	background: transparent url('images/white_black_bars.gif') top left repeat-x;
	background-size: auto 100%;
}

.ui.form {
    font-size: 1.6rem;
    line-height: 2.2rem;
    background: transparent;
    border: none;
    padding: 0;
    -webkit-border-radius: 0rem;
    -moz-border-radius: 0rem;
    border-radius: 0rem;
}

.ui.form .grouped.fields .field {
  margin-top: .25em;
  margin-bottom: .25em;
}

/*
.ui.form label {
    display: none;
}
*/

.top_border_red { border-top: 2px solid rgba(227,30,36,1) }

.ui.form .ui.checkbox label {
  display: block;
  margin-right: 3rem;
  margin-bottom: 0.5rem;
}
.ui.form .ui.checkbox {
  font-size: 1em;
}
.ui.form .ui.checkbox + label {
	width: calc(25% - 4rem);
	max-width: 30rem;
}

.ui.form input.check {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.5rem;
  cursor: pointer;
}

.ui.form label.show_label {
  display: block;
}

.ui.form label.check_label {
  display: inline-block;
  cursor: pointer;
  color: #FFF;
}

.ui.form .ui.checkbox label {
  font-size: 1.3rem;
}

.ui.form textarea.textarea_short {
  height: 8rem;
}

.ui.form input:focus,
.ui.form textarea:focus {
    color: rgba(0,0,0,1) !important;
	border-color: #000 !important;
	border-width: 0.2rem !important;
}
form.ui.form.main_booking .ui.fluid.dropdown.active,
form.ui.form.page_booking .ui.fluid.dropdown.active {
	border-width: 0.4rem !important;
}

.unknown .ui.form label,
.ie9 .ui.form label,
.ie8 .ui.form label,
.ie7 .ui.form label {
    display: block;
}

.ui.message {
  margin: 2em 0em;
  padding: 2em;
  font-size: 1.6rem;
}

.ui.message>.close.icon {
    top: .5em;
    right: .5em;
}

.ui.form .field>label.text_white,
.ui.checkbox label.text_white , .ui.checkbox+label.text_white {
    color: #FFF;
}
.ui.checkbox label.text_white , .ui.checkbox+label.text_white {
    font-size: 1.4rem;
    padding-left: 3rem;
}

.ui.dropdown .menu>.item {
    line-height: 2rem;
    font-size: 1.5rem;
}

.ui.selection.dropdown .menu>.item {
    padding: 1.5rem 1.14285714rem !important;
}

form.ui.form .ui.selection.dropdown {
    font-size: 1.4rem;
	line-height: 2rem;
}

form.ui.form.main_booking .ui.fluid.dropdown,
form.ui.form.page_booking .ui.fluid.dropdown,
form.ui.form.main_booking .ui.input,
form.ui.form.page_booking .ui.input {
	margin: 0.5rem 0;
	border: 0.2rem RGBA(24,0,1,1) solid;
	background-color: transparent;
	color: RGBA(24,0,1,1);
    font-size: 2.4rem;
	line-height: 2.4rem;
	padding: 2rem 2rem 1rem 2rem;
	font-family: 'Teko', sans-serif;
	text-transform: uppercase;
}

form.ui.form.main_booking .ui.input,
form.ui.form.page_booking .ui.input.postcode_input{
	height:2.71em;
	padding: 2rem;
}
form.ui.form.main_booking .ui.input::placeholder,
form.ui.form.page_booking .ui.input.postcode_input::placeholder{
	color: RGBA(24,0,1,1);
    opacity: 1;
}

form.ui.form.page_booking .ui.input {
	padding: 0;
	margin: 0.2rem 0 0 0;
}

form.ui.form.page_booking .ui.input>input::-webkit-input-placeholder{color: RGBA(24,0,1,1);}
form.ui.form.page_booking .ui.input>input::-moz-placeholder{color: RGBA(24,0,1,1);}
form.ui.form.main_booking .ui.input>input:-ms-input-placeholder,
form.ui.form.page_booking .ui.input.postcode_input>input:-ms-input-placeholder,
form.ui.form.page_booking .ui.input>input:-ms-input-placeholder{color: RGBA(24,0,1,1);}

form.ui.form.page_booking .ui.input input {
	background-color: transparent;
	font-family: 'Teko', sans-serif;
	text-transform: uppercase;
	color: RGBA(24,0,1,1) !important;
	height: 6.1rem;
}
form.ui.form.page_booking .ui.input i {
	color: RGBA(24,0,1,1) !important;
	opacity: 1;
}

form.ui.form.main_booking .ui.default.dropdown:not(.button)>.text,
form.ui.form.main_booking .ui.dropdown:not(.button)>.default.text,
form.ui.form.page_booking .ui.default.dropdown:not(.button)>.text,
form.ui.form.page_booking .ui.dropdown:not(.button)>.default.text {
	color: RGBA(24,0,1,1);
}

form.ui.form.main_booking .cta_button,
form.ui.form.page_booking .cta_button {
	height: 6.5rem;
	margin-left: 0.5rem;
}

.ui.form.main_booking .field .dropdown .menu>.item,
.ui.form.page_booking .field .dropdown .menu>.item {
    font-size: 2.4rem;
	line-height: 2.4rem;
	min-height: 4rem;
}

.ui.form.main_booking .ui.selection.dropdown .menu {
    max-height: 10rem !important;
}

.ui.form.page_booking .ui.selection.dropdown .menu {
    max-height: 20rem !important;
}

form.ui.form input,
form.ui.form textarea,
form.ui.form .ui.selection.dropdown {
	-webkit-border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	border-radius: 0 !important;
}

.recaptcha {
    position: relative;
    left: 1.5rem;
    padding-top: 1rem;
    margin-bottom: 1rem;
}

.ui.horizontal.divider:before,
.ui.horizontal.divider:after { background-image: none; border-top: 1px #f0efef solid; }
.ui.grid .row+.ui.divider { margin-left: 0; margin-right: 0; }
.ui.horizontal.divider.reposition i { position: relative; top: -1rem;}




.ui.calendar .ui.popup{max-width:none;padding:0;border:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
.ui.calendar .calendar:focus{outline:0}
.ui.calendar .ui.popup .ui.grid{display:block;white-space:nowrap}
.ui.calendar .ui.popup .ui.grid>.column{width:auto}
.ui.calendar .ui.table.minute,.ui.calendar .ui.table.month,.ui.calendar .ui.table.year{min-width:15em}
.ui.calendar .ui.table.day{min-width:28em; max-width: 100%; font-size: 1.6rem;}
.ui.calendar .ui.table tr td,.ui.calendar .ui.table tr th{padding:.5em;white-space:nowrap}
.ui.calendar .ui.table tr th{border-left:none}
.ui.calendar .ui.table tr th .icon{margin:0}
.ui.calendar .ui.table tr:first-child th{position:relative;padding-left:0;padding-right:0}
.ui.calendar .ui.table.day tr:first-child th{border:none}
.ui.calendar .ui.table.day tr:nth-child(2) th{padding-top:.2em;padding-bottom:.3em}
.ui.calendar .ui.table tr td{padding-left:.1em;padding-right:.1em}
.ui.calendar .ui.table tr .link{cursor:pointer}
.ui.calendar .ui.table tr .prev.link{width:14.28571429%;position:absolute;left:0}
.ui.calendar .ui.table tr .next.link{width:14.28571429%;position:absolute;right:0}
.ui.calendar .ui.table tr .disabled{pointer-events:auto;cursor:default;color:rgba(40,40,40,.3)}
.ui.calendar .ui.table tr .adjacent:not(.disabled){color:rgba(0,0,0,.6);background:rgba(0,0,0,.03)}
.ui.calendar .ui.table tr td.today{font-weight:700}
.ui.calendar .ui.table tr td.range{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95);-webkit-box-shadow:none;box-shadow:none}
.ui.calendar .ui.table.inverted tr td.range{background:rgba(255,255,255,.08);color:#fff;-webkit-box-shadow:none;box-shadow:none}
.ui.calendar:not(.disabled) .calendar.active .ui.table tbody tr td.focus,.ui.calendar:not(.disabled) .calendar:focus .ui.table tbody tr td.focus{-webkit-box-shadow:inset 0 0 0 1px #85b7d9;box-shadow:inset 0 0 0 1px #85b7d9}
.ui.calendar:not(.disabled) .calendar.active .ui.table.inverted tbody tr td.focus,.ui.calendar:not(.disabled) .calendar:focus .ui.table.inverted tbody tr td.focus{-webkit-box-shadow:inset 0 0 0 1px #85b7d9;box-shadow:inset 0 0 0 1px #85b7d9}
.ui.disabled.calendar{opacity:.45}
.ui.disabled.calendar .ui.table tr .link,.ui.disabled.calendar>.input{pointer-events:none}













/* Addition of widescreen monitor */

@media only screen and (min-width: 1400px) {

    .ui.container {
        width: 1300px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .ui.grid.container {
        width: calc( 1300px  +  2rem ) !important;
    }

    .ui.relaxed.grid.container {
        width: calc( 1300px  +  3rem ) !important;
    }

    .ui.very.relaxed.grid.container {
        width: calc( 1300px  +  5rem ) !important;
    }

}

@media only screen and (min-width: 1600px) {

    .ui.container {
        width: 1500px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .ui.grid.container {
        width: calc( 1500px  +  2rem ) !important;
    }

    .ui.relaxed.grid.container {
        width: calc( 1500px  +  3rem ) !important;
    }

    .ui.very.relaxed.grid.container {
        width: calc( 1500px  +  5rem ) !important;
    }

}

/* ------------------------------ LAYOUT SETTINGS ------------------------------ */

/* Responsive classes */
.widescreen_show { display: none; }
.widescreen_hide { display: block; }
.large_monitor_show { display: none; }
.large_monitor_hide { display: block; }
.small_monitor_show { display: none; }
.small_monitor_hide { display: block; }
.tablet_hide { display: none; }
.tablet_hide { display: block; }
.mobile_show { display: none; }
.mobile_hide { display: block; }
.small_mobile_show { display: none; }
.small_mobile_hide { display: block; }

/* Panel padding */
.padding_top_massive { padding-top: 15rem; }
.padding_top_huge { padding-top: 10rem; }
.padding_top_large { padding-top: 8rem; }
.padding_top_medium { padding-top: 6rem; }
.padding_top_small { padding-top: 4rem; }
.padding_top_tiny { padding-top: 2rem; }
.padding_top_none { padding-top: 0; }

.padding_bottom_massive { padding-bottom: 15rem; }
.padding_bottom_huge { padding-bottom: 10rem; }
.padding_bottom_large { padding-bottom: 8rem; }
.padding_bottom_medium { padding-bottom: 6rem; }
.padding_bottom_small { padding-bottom: 4rem; }
.padding_bottom_tiny { padding-bottom: 2rem; }
.padding_bottom_none { padding-bottom: 0; }

/* Opacity */
.opacity_100 { opacity: 1; }
.opacity_90 { opacity: 0.9; }
.opacity_80 { opacity: 0.8; }
.opacity_70 { opacity: 0.7; }
.opacity_60 { opacity: 0.6; }
.opacity_50 { opacity: 0.5; }
.opacity_40 { opacity: 0.4; }
.opacity_30 { opacity: 0.3; }
.opacity_20 { opacity: 0.2; }
.opacity_10 { opacity: 0.1; }
.opacity_0 { opacity: 0; }
/* Block height */
.height_16_10 { width: 100%; min-height: 62.5vw; height: auto; overflow: hidden; }
.height_16_9 { width: 100%; min-height: 56.25vw; height: auto; overflow: hidden; }
.height_16_8 { width: 100%; min-height: 50vw; height: auto; overflow: hidden; }
.height_16_7 { width: 100%; min-height: 43.75vw; height: auto; overflow: hidden; }
.height_16_6 { width: 100%; min-height: 37.5vw; height: auto; overflow: hidden; }
.height_16_5 { width: 100%; min-height: 31.25vw; height: auto; overflow: hidden; }
.height_16_4 { width: 100%; min-height: 25vw; height: auto; overflow: hidden; }
.height_16_3 { width: 100%; min-height: 18.75vw; height: auto; overflow: hidden; }
.height_16_2 { width: 100%; min-height: 12.5vw; height: auto; overflow: hidden; }
.height_auto { width: 100%; height: auto; }

/* Width */
.width_100p { width: 100%; }
.width_90p { width: 90%; }
.width_80p { width: 80%; }
.width_70p { width: 70%; }
.width_60p { width: 60%; }
.width_50p { width: 50%; }
.width_40p { width: 40%; }
.width_30p { width: 30%; }
.width_20p { width: 20%; }
.width_10p { width: 10%; }
.width_0 { width: 0; }
.width_10rem { width: 10rem; }
.width_9rem { width: 9rem; }
.width_8rem { width: 8rem; }
.width_7rem { width: 7rem; }
.width_6rem { width: 6rem; }
.width_5rem { width: 5rem; }
.width_4rem { width: 4rem; }
.width_3rem { width: 3rem; }
.width_2rem { width: 2rem; }
.width_1rem { width: 1rem; }

/* Width images */
.width_100p img,
.width_90p img,
.width_80p img,
.width_70p img,
.width_60p img,
.width_50p img,
.width_40p img,
.width_30p img,
.width_20p img,
.width_10p img,
.width_10rem img,
.width_9rem img,
.width_8rem img,
.width_7rem img,
.width_6rem img,
.width_5rem img,
.width_4rem img,
.width_3rem img,
.width_2rem img,
.width_1rem img,
.width_0 { display: block; width: 100%; height: auto; }

a.width_100p,
a.width_90p,
a.width_80p,
a.width_70p,
a.width_60p,
a.width_50p,
a.width_40p,
a.width_30p,
a.width_20p,
a.width_10p,
a.width_0 { display: block; }


/* Alignment */
.text_align_center { text-align: center; margin-left: auto; margin-right: auto; }
.text_align_left { text-align: left; }
.text_align_right { text-align: right; }

/* Floating */
.float_left { float: left; }
.float_right{ float: right; }
.clear_both { clear: both; height: 0; line-height: 0; font-size: 0; padding: 0; margin: 0; }
.ui.image.left.floated { margin: 0 2rem 2rem 0; }
.ui.image.right.floated { margin: 0 0 2rem 2rem; }

/* Text case */
.ui.text_uppercase,
.text_uppercase { text-transform: uppercase; }
.ui.text_lowercase,
.text_lowercase { text-transform: none; }
.ui.text_capitalise,
.text_capitalise { text-transform: capitalize; }

.ui.text_weight_light,
.text_weight_light { font-weight: 300; }
.ui.text_weight_regular,
.text_weight_regular { font-weight: 500; }
.ui.text_weight_bold,
.text_weight_bold { font-weight: 700; }
.ui.text_weight_extra_bold,
.text_weight_extra_bold { font-weight: 900; }

.ui.text_karla,
.text_karla { font-family: 'Karla', sans-serif !important; }
.ui.text_teko,
.text_teko { font-family: 'Teko', sans-serif !important; }

/* Margins */
.margin_auto { margin-left: auto !important; margin-right: auto !important; }
.margin_0 { margin: 0 !important; }
.margin_top_0 { margin-top: 0 !important; }
.margin_top_1 { margin-top: 1rem !important; }
.margin_top_2 { margin-top: 2rem !important; }
.margin_top_3 { margin-top: 3rem !important; }
.margin_top_4 { margin-top: 4rem !important; }
.margin_right_0 { margin-right: 0 !important; }
.margin_right_1 { margin-right: 1rem !important; }
.margin_right_2 { margin-right: 2rem !important; }
.margin_right_3 { margin-right: 3rem !important; }
.margin_right_4 { margin-right: 4rem !important; }
.margin_bottom_0 { margin-bottom: 0 !important; }
.margin_bottom_05 { margin-bottom: 0.5rem !important; }
.margin_bottom_1 { margin-bottom: 1rem !important; }
.margin_bottom_2 { margin-bottom: 2rem !important; }
.margin_bottom_3 { margin-bottom: 3rem !important; }
.margin_bottom_4 { margin-bottom: 4rem !important; }
.margin_left_0 { margin-left: 0 !important; }
.margin_left_1 { margin-left: 1rem !important; }
.margin_left_2 { margin-left: 2rem !important; }
.margin_left_3 { margin-left: 3rem !important; }
.margin_left_4 { margin-left: 4rem !important; }

/* Padding */
.padding_0 { padding: 0 !important; }
.padding_1 { padding: 1rem !important; }
.padding_2 { padding: 2rem !important; }
.padding_3 { padding: 3rem !important; }
.padding_4 { padding: 4rem !important; }
.padding_top_0 { padding-top: 0 !important; }
.padding_top_1 { padding-top: 1rem !important; }
.padding_top_2 { padding-top: 2rem !important; }
.padding_top_3 { padding-top: 3rem !important; }
.padding_top_4 { padding-top: 4rem !important; }
.padding_right_0 { padding-right: 0 !important; }
.padding_right_1 { padding-right: 1rem !important; }
.padding_right_2 { padding-right: 2rem !important; }
.padding_right_3 { padding-right: 3rem !important; }
.padding_right_4 { padding-right: 4rem !important; }
.padding_bottom_0 { padding-bottom: 0 !important; }
.padding_bottom_1 { padding-bottom: 1rem !important; }
.padding_bottom_2 { padding-bottom: 2rem !important; }
.padding_bottom_3 { padding-bottom: 3rem !important; }
.padding_bottom_4 { padding-bottom: 4rem !important; }
.padding_left_0 { padding-left: 0 !important; }
.padding_left_1 { padding-left: 1rem !important; }
.padding_left_2 { padding-left: 2rem !important; }
.padding_left_3 { padding-left: 3rem !important; }
.padding_left_4 { padding-left: 4rem !important; }

/* Single border */
.button.single_border { border: 1px #000 solid; }
.text_underline { text-decoration: underline; }
.text_hover_underline:hover { text-decoration: underline; }

/* Divider icons */
.ui.divider .icon { font-size: 2rem; line-height: 2rem; color: #CCC; }
.ui.divider { margin-bottom: 2rem; }

/* Accessibility */
.accessibility_panel { display: block; height: 0; overflow: hidden;	position: absolute;	top: -10000px; }
.dev_notification { display: block; width: 8rem; height: 8rem; position: fixed; top: 0; right: 0;  z-index: 100; background: transparent url('images/dev_link.png') top right no-repeat; background-size: cover; text-indent: -10000px; }

/*Form updates*/
.textarea_small { height: 10rem; }

/* Javascript onClick click areas */
.js_click { cursor: pointer; }

.hidden { opacity:0 !important; }
.visible { opacity: 1 !important; }
.hide { display: none !important; }

.site_border { height: 0.5rem; width: 100%; }

/* ------------------------------ HEADER STYLES ------------------------------ */

header {
  width: 100%;
  height: 20rem;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  position: fixed;
  z-index: 2;
  background-color: rgba(255,255,255,1);
}

header.header2 {
	height: 8.2rem;
	background-color: rgba(255,255,255,1);
	border-bottom: 0.2rem RGBA(157,4,8,1) solid;
}

.social_contact {
	height: 5rem;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

header.header2 .social_contact {
	height: 0;
	opacity: 0;
}

.logo_nav {
	height: 15rem;
}

header.header2 .logo_nav {
	height: 8rem;
}

    header a.site_logo {
        display: block;
        width: auto;
        height: 15rem;
		margin: 0;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
		position: relative;
    }

    header a.site_logo img.colour_logo {
		opacity: 0;
	}

    header.header2 a.site_logo {
        height: 8rem;
		margin: 0;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
	}

        header a.site_logo img {
			display: block;
			width: auto;
			height: 100%;
			-webkit-transition: all 0.5s ease-out;
			-moz-transition: all 0.5s ease-out;
			transition: all 0.5s ease-out;
			position: absolute;
			top: 0;
			left: 0;
        }

	header h6 {
		padding: 1rem 0;
	}

  header a#menu-icon {
            display: none;
        }

        header nav {
            float: right;
            width: auto;
        }


            header nav ul {
                display: block;
                height: auto;
                margin: 0;
                padding: 0;
                padding: 4.5rem 0 0 0;
				font-size: 0;
                -webkit-transition: all 0.5s ease-out;
                -moz-transition: all 0.5s ease-out;
                transition: all 0.5s ease-out;
            }

                header.header2 nav ul {
                    padding: 0;
				}

                header nav ul li {
                    list-style: none;
                    margin: 0;
					padding: 0;
					font-size: 0;
                    display: inline-block;
                    position: relative;
                }

                    header nav ul li a {
                        margin: 0;
                        display: inline-block;
                        color: RGBA(157,4,8,1);
                        -webkit-transition: all 0.5s ease-out;
                        -moz-transition: all 0.5s ease-out;
                        transition: all 0.5s ease-out;
                        font-weight: 700;
                        height: 6rem;
                        font-size: 2.4rem;
                        line-height: 6rem;
                        padding: 0 3rem;
						text-transform: uppercase;
						font-family: 'Teko', sans-serif;
						-webkit-transform: skewX(-20deg);
						transform: skewX(-20deg);
						-webkit-box-shadow: inset 0px 2.8rem 0px 0px rgba(255,255,255,0.2);
						-moz-box-shadow: inset 0px 2.8rem 0px 0px rgba(255,255,255,0.2);
						box-shadow: inset 0px 2.8rem 0px 0px rgba(255,255,255,0.2);
                    }

                    header nav ul li a span {
						-webkit-transform: skewX(20deg);
						transform: skewX(20deg);
						display: block;
					}

                    header.header2 nav ul li a {
                        height: 8rem;
                        line-height: 8rem;
                        margin: 0;
                    }

                    header nav ul li a.active,
                    header nav ul li a:hover,
                    header nav ul li:hover a {
                        color: rgba(255,255,255,1);
						background-color: rgba(157,4,8,1);
                    }

                    header nav ul li.contact a {
						background-color: rgba(227,30,36,1);
                        color: rgba(255,255,255,1) !important;
					}

                    header nav li.home,
                    header nav li ul,
                    header nav li span.submenu_button {
                        display: none;
                    }

                        header nav li:hover ul {
                            display: block;
                            position: absolute;
                            z-index: 2;
                            top: 6rem;
                            left: 0;
                            margin: 0;
							padding: 0;
                        }

                        header.header2 nav li:hover ul {
                            top: 8rem;
						}

                        header nav li:hover ul li ul {
                          display: none;
                        }

                        header nav li:hover ul li {
                            display: block;
                            margin: 0;
                            padding: 0;
                            min-width: 21rem;
							position: relative;
							left: -1.1rem;
                        }

                        header.header2 nav li:hover ul li {
							left: -1.4rem;
                        }

                            header nav li ul li a,
                            header nav ul li:hover ul li a,
							header nav ul li.contact:hover ul li a:link {
                                margin: 0;
                                padding: 0;
                                display: block;
                                height: auto;
                                text-transform: none;
                                font-weight: 300;
                                color: RGBA(255,255,255,1) !important;
                                -webkit-transition: all 0.5s ease-out;
                                -moz-transition: all 0.5s ease-out;
                                transition: all 0.5s ease-out;
                                font-size: 2rem !important;
                                line-height: 2rem;
                                padding: 1rem 2rem;
								border: none;
								border-bottom: 0.1rem rgba(255,255,255,1) solid;
								-moz-transform: skew(0, 0deg);
								-webkit-transform: skew(0, 0deg);
								-o-transform: skew(0, 0deg);
								-ms-transform: skew(0, 0deg);
								transform: skew(0, 0deg);
								-webkit-box-shadow: inset 0px 0px 0px 0px rgba(255,255,255,0.2);
								-moz-box-shadow: inset 0px 0px 0px 0px rgba(255,255,255,0.2);
								box-shadow: inset 0px 0px 0px 0px rgba(255,255,255,0.2);
                            }

                    header nav li ul li a span {
						-webkit-transform: skewX(0);
						transform: skewX(0);
						display: block;
					}

                            header.header2 nav li ul li a {
                                font-size: 1.3rem !important;
                                line-height: 2rem;
                                padding: 0.75rem 1.5rem;
                                height: auto;
                            }

                            header nav li:hover ul li a:hover,
                            header nav li:hover ul li a.active,
                            header nav li ul li:hover a,
                            header nav li:hover ul li a.active,
							header nav ul li.contact ul li a:hover {
                                background-color: RGBA(24,0,1,1) !important;
                                color: RGBA(255,255,255,1) !important;
                            }

                        header nav li:hover ul li:hover ul {
                            display: none;
                        }

  .social_icons {
    position: fixed;
    z-index: 5;
    right: 0;
    top: 50%;
    margin-top: -13.5rem;
    width: 5rem;
    padding: 0.5rem 0 0 0.5rem;
    height: auto;
    background-color: rgba(51,50,43,1);
  }

    .social_icons a {
      display: block;
      width: 4.5rem;
      height: 4.5rem;
      background-color: transparent;
      color: #FFF;
      text-align: center;
      font-size: 2.4rem;
      line-height: 4.5rem;
      padding: 0;
      margin-bottom: 0.5rem;
      -webkit-transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      background: rgb(8,114,183);
      background: linear-gradient(45deg, rgba(8,114,183,1) 0%, rgba(59,165,192,1) 50%, rgba(71,212,212,1) 100%);
  }

  .social_icons a:hover {
      color: #FFF;
      background: rgb(71,212,212);
      background: linear-gradient(45deg, rgba(71,212,212,1) 0%, rgba(71,215,164,1) 100%);
  }

      .social_icons a i {
          margin: 0 !important;
          width: 5rem;
          text-align: center;
      }

/* ------------------------------ FOOTER STYLES ------------------------------ */

.breadcrumbs a:before {
    display: inline-block;
    content: '\00bb';
    padding: 0 0.5rem;
}

.breadcrumbs a.crumb1:before,
a.social_share:before {
    display: none;
}

.breadcrumbs a,
a.social_share {
  color: RGBA(210,105,108,1);
}

.breadcrumbs a:hover {
  text-decoration: underline !important;
}

.breadcrumbs a:hover,
a.social_share:hover {
  color: rgba(255,255,255,1);
}

footer ul li {
	padding-bottom: 1rem;
}


.cd-top {
        display: block;
        height: 6rem;
        width: 6rem;
        position: fixed;
        z-index: 100000;
        bottom: 8.5rem;
        right: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
        white-space: nowrap;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
        line-height: 6rem;
        font-size: 3rem;
        text-align: center;
        text-decoration: none;
        background-color: RGBA(157,4,8,1);
        color: RGBA(255,255,255,1);
    }

.cd-top:hover {
    color: RGBA(255,255,255,1);
	background-color: RGBA(227,30,36,1);
  }

.cd-top i {
        text-align: center;
        color: RGBA(255,255,255,1);
    }
.cd-top:hover i  {
    color: RGBA(255,255,255,1);
  }

    .cd-top.cd-is-visible,
    .cd-top.cd-fade-out,
    .no-touch .cd-top:hover {
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
        opacity: 1;
    }

    .cd-top.cd-is-visible {
        visibility: visible;
        opacity: 1;
    }

    .cd-top.cd-fade-out {
        opacity: 1;
    }

    ul.tweet_list {
        margin: 0;
        padding: 0;
    }

        ul.tweet_list li {
            margin: 0 0 2rem 0;
            padding: 0 0 2rem 0;
            list-style: none;
            font-size: 1.4rem;
            line-height: 2rem;
            border-bottom: 0.1rem rgba(255,255,255,1) solid;
            color: rgba(255,255,255,1);
        }

        ul.tweet_list li a {
            color: RGBA(255,222,89,1);
        }

        ul.tweet_list li a:hover {
            color: rgba(255,255,255,1);
        }

        a.tweet_avatar {
            display: block;
            width: 6rem;
            height: 6rem;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            border-radius: 50%;
            overflow: hidden;
            float: left;
            margin: 0 2rem 2rem 0;
            position: relative;
            top: 0.5rem;
        }

            a.tweet_avatar img {
                display: block;
                width: 100%;
                height: auto;
            }

            .tweet_time {
                font-weight: 800;
                display: block;
            }

            .tweet_join {
                display: none;
            }

/* ------------------------------ TEMPLATE STYLES ------------------------------ */

main {
  padding-top: 20rem;
}

main .an_fade,
main .an_fadeInUp,
main .an_fade_left,
main .an_fade_right,
main .an_zoom_in {
    opacity: 0;
}

/* BLOCKS */
.block {
    width: 100%;
    height: auto;
    position: relative;
}

    .block_image {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .block_image_top {
        background-position: top center;
    }

    .block_image_middle {
        background-position: center center;
    }

    .block_image_bottom {
        background-position: bottom center;
    }
    .wide_container {
      padding-left: 2rem;
      padding-right: 2rem;
    }

    .iframe .wide_container,
    .gallery_block .wide_container {
      padding-left: 0;
      padding-right: 0;
    }

	/* .iframe_outer {
		height: 50rem;
	} */

	.custom_form .inner_responsive_padding {
		padding: 10rem;
	}

    .block_image + div {
      position: relative;
      z-index: 1;
    }

/* HERO */

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* DATA FEEDS */

.case_study_feed_block {
	display: inline-block;
}

	.case_study_feed_block .ui.grid>.column:not(.row) {
		padding-top: 0;
		padding-bottom: 0;
	}

	.case_study_copy {
		padding: 10% 5%;
	}

	a.image_block {
		display: block;
		position: relative;
	}

	a.image_block span {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
		background-color: #F00;
		z-index: 2;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		text-align: center;
	}

	a.image_block strong.content_type {
		display: block;
		position: absolute;
		top: 1rem;
		left: 1rem;
		width: auto;
		height: auto;
		background-color: RGBA(180,25,94,1);
		color: rgba(255,255,255,1);
		text-transform: uppercase;
		font-size: 1.3rem;
		line-height: 1.3rem;
		padding: 0.75rem;
		z-index: 1;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		text-align: center;
	}

	a.image_block:hover span {
		opacity: 1;
	}

	a.image_block span strong {
		display: block;
		color: rgba(255,255,255,1);
		font-size: 2rem;
		font-weight: 300;
		text-transform: uppercase;
		line-height: 100%;
		text-align: right;
		position: absolute;
		bottom: 3rem;
		right: 3rem;
	}

/* FEATURES */

a.feature_image {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	display: block;
	width: 100%;
	position: relative;
	padding-bottom: 2rem;
}

.feature_column a,
.feature_column h4 {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.feature_column:hover a.feature_image,
.column:hover a.feature_image,
.feature_column:hover h4 {
  opacity: 0.8;
}

a.feature_image .image_surround {
	position: relative;
}

a.feature_image .image_surround img {
	display: block;
	width: 100%;
	height: auto;
}

	a.feature_image span {
		opacity: 0;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		transform: rotate(45deg);
	}

	a.feature_image h1,
	a.feature_image h2,
	a.feature_image h3,
	a.feature_image h4,
	a.feature_image h5,
	a.feature_image h6,
	a.feature_image p { color: inherit; }

	a.feature_image:hover h1,
	a.feature_image:hover h2,
	a.feature_image:hover h3,
	a.feature_image:hover h4,
	a.feature_image:hover h5,
	a.feature_image:hover h6,
	a.feature_image:hover p { color: inherit; }

/* Accordion */
    .title {
        margin-top: 1rem;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }

    .title.active,
    .title:hover {
        margin-left: 4rem;
    }

        .title h5 {
            -webkit-transition: all 0.2s ease-in-out;
            -moz-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
            padding: 1rem;
        }

        .title:hover h5,
        .title.active h5 {
            background-color: #adc911;
            color: #fff;
        }

        .title.active .icon.opener,
        .title .icon.closer {
            display: none;
        }

        .title.active .icon.closer {
            display: inline-block;
        }

        .title.active .icon.opener {
            display: none;
        }

    .accordion .content {
        padding: 2rem 2rem 2rem 2rem;
        margin-left: 6rem;
        background-color: #FFF;
    }


/* VIDEO */

    #video {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        width: 100%;
        margin: 0;
    }

    #video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/* Gallery */

.gallery {
    font-size: 0;
	text-align: center;
}

.page_gallery .gallery {
	text-align: left;
}

.popup-gallery,
.gallery_links {
    display: inline-block;
    width: 20%;
    content: '';
    font-size: 0;
}

.popup-gallery a,
.gallery_links a {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    margin-bottom: -0.5rem;
}

    .popup-gallery img,
    .gallery_links img {
        display: block !important;
    }

        .popup-gallery span.zoom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: auto;
            background: -moz-linear-gradient(-45deg, rgba(246,243,236,0.5) 0%, rgba(185,177,162,0.5) 100%); /* FF3.6-15 */
            background: -webkit-linear-gradient(-45deg, rgba(246,243,236,0.5) 0%,rgba(185,177,162,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
            background: linear-gradient(135deg, rgba(246,243,236,0.5) 0%,rgba(185,177,162,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4df6f3ec', endColorstr='#4db9b1a2',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
            font-size: 4rem;
            line-height: 7rem;
            color: #FFFFFF;
            font-weight: 700;
            -webkit-transition: all 0.4s ease-in-out;
            -moz-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
            padding: 40rem 0 0 0;
            text-align: center;
        }

        .popup-gallery:hover span.zoom {
            padding-top: 0;
        }

    .mfp-title,
    .mfp-counter {
        font-size: 1.8rem !important;
        line-height: 2.2rem !important;
    }

/* Search results */

ul.article_list {
    list-style: none;
    padding: 0 !important;
}

    ul.article_list li {
        list-style: none;
        display: block;
    }

/* News */

    ul.news_feed,
    ul.case_study_feed,
    ul.job_feed {
        margin: 0;
        padding: 0;
    }

    ul.job_feed {
      border: none;
    }

        ul.news_feed li,
        ul.case_study_feed li {
            margin: 0;
            padding: 0;
            list-style: none;
        }

/* Case study */

.case_study_feed .tags {
	line-height: 1.8rem;
	font-size: 1.4rem;
	font-weight: 300;
}

/* Logo carousel */

.carousel_logo_link p,
.carousel_logo_link h5 {
	color: inherit !important;
}

.feature_column.statistics:focus,
.carousel_logo_link:focus {
	outline: 0px solid transparent !important;
}

.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
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 5rem;
    height: 5rem;
	text-align: center;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background:  RGBA(180,25,94,1);
	color: #FFF;
	z-index: 5;
}

.slick-prev:before,
.slick-next:before {
    font-size: 3.5rem;
    line-height: 4.5rem;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	position: relative;
	top: -0.2rem;
}

.slick-prev:hover,
.slick-next:hover {
    background:  RGBA(111,8,54,1);
}


.slick-next {
    right: -5rem;
}

.slick-prev {
    left: -5rem;
}

.slick-prev:before {
    content: '‹';
}

.slick-next:before {
    content: '›';
}

/* Statistics */

.statistic_link {
  display: block;
  width: 100%;
  height: auto;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.statistic_link p {
  color: inherit;
}

p.statistic_icon {
    margin-bottom: 1rem;
}

p.statistic_icon i {
	display: inline-block;
	text-align: center;
	margin: 0;
	padding: 0;
    font-size: 6rem;
	width: 9rem;
	height: 9rem;
    line-height: 9rem;
}

p.statistic_icon i.border {
	border: 0.1rem #000 solid;
}

p.statistic_title {
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 2.8rem;
    margin-bottom: 0.5rem;
}

p.statistic_summary {
    font-size: 1.4rem;
    font-weight: 300;
}

	a.statistic_link span {
		opacity: 0;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		transform: rotate(45deg);
	}

	a.statistic_link:hover span.tl_triangle {
		opacity: 1;
		display: inline-block;
		position: absolute;
		line-height: 0px;
		top: -2.5rem;
		left: -2.5rem;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 5rem 5rem 0 0;
		border-color: #F00 transparent transparent transparent;
		background: transparent;
	}

	a.statistic_link:hover span.br_triangle {
		opacity: 1;
		display: inline-block;
		position: absolute;
		line-height: 0px;
		bottom: -2.5rem;
		right: -2.5rem;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 0 5rem 5rem;
		border-color: transparent transparent #F00 transparent;
		background: transparent;
	}

/* Downloads */

.download {
    margin-bottom: 2rem;
}

    p.download_icon {
        font-size: 4rem;
    }

/* Pagination*/

.pag_above,
.pag_below {
    height: 5rem;
    padding: 0.5rem 0;
    margin: 2rem auto;
    text-align: center;
}

    .pag_above > div,
    .pag_below > div {
        height: 5rem;
        text-align: center;
        width: auto;
    }

    .pag_above > div a,
    .pag_below > div a,
    .pag_above > div span,
    .pag_below > div span {
        display: inline-block;
        width: 5rem;
        height: 5rem;
        margin: 0 0 0 0.7rem;
        padding: 0;
        text-align: center;
        font-size: 2.3rem;
        line-height: 5rem;
        text-decoration: none;
        cursor: pointer;
        font-weight: 800;
        background: RGBA(80,61,62,1);
        color: rgba(255,255,255,1);
    }

    .pag_above > div a:hover,
    .pag_below > div a:hover {
        background: RGBA(227,30,36,1);
        color: rgba(255,255,255,1);
    }

    .pag_above > div a.jp-current,
    .pag_below > div a.jp-current {
        background: RGBA(157,4,8,1);
        color: rgba(255,255,255,1);
    }

    .pag_above > div a.jp-next,
    .pag_below > div a.jp-next,
    .pag_above > div a.jp-previous,
    .pag_below > div a.jp-previous {
        display: none;
    }

/* ------------------------------ RESPONSIVE STYLES ------------------------------ */

/* Widescreen Monitor */
@media only screen and (min-width: 1400px) {

    .widescreen_show { display: block !important; }
    .widescreen_hide { display: none !important; }

	.custom_form .inner_responsive_padding {
		padding: 8rem;
	}


}

/* Large Monitor */
@media only screen and (max-width: 1600px) {

	.custom_form .inner_responsive_padding {
		padding: 7rem;
	}

}

/* Large Monitor */
@media only screen and (max-width: 1399px) {

    .large_monitor_show { display: block !important; }
    .large_monitor_hide { display: none !important; }

    blockquote {
      padding: 4rem;
    }

    table.data {
        font-size: 1.3rem;
        line-height: 1.6rem;
        margin: 2rem auto;
    }

        table.data th {
            padding: 0.5rem 0.75rem;
        }

        table.data td {
            padding: 0.5rem 0.75rem;
        }

	.custom_form .inner_responsive_padding {
		padding: 6rem;
	}

	header nav ul li a {
		height: 6rem;
		font-size: 2rem;
		line-height: 6rem;
		padding: 0 2rem;
	}

	header nav li ul li a,
	header nav ul li:hover ul li a,
	header nav ul li.contact:hover ul li a:link  {
        padding: 1rem 1.5rem;
	}

	header a.site_logo {
        height: 11rem;
		margin: 2rem 0;
    }

    header.header2 a.site_logo {
        height: 6rem;
		margin: 1rem 0;
	}

}

/* Small Monitor */
@media only screen and (max-width: 1199px) {

    .small_monitor_show { display: block !important; }
    .small_monitor_hide { display: none !important; }

    /* Panel padding */
    .padding_top_massive { padding-top: 11rem; }
    .padding_top_huge { padding-top: 7.5rem; }
    .padding_top_large { padding-top: 6rem; }
    .padding_top_medium { padding-top: 4.5rem; }
    .padding_top_small { padding-top: 3rem; }
    .padding_top_tiny { padding-top: 1.5rem; }
    .padding_top_none { padding-top: 0; }
    .padding_bottom_massive { padding-bottom: 11rem; }
    .padding_bottom_huge { padding-bottom: 7.5rem; }
    .padding_bottom_large { padding-bottom: 6rem; }
    .padding_bottom_medium { padding-bottom: 4.5rem; }
    .padding_bottom_small { padding-bottom: 3rem; }
    .padding_bottom_tiny { padding-bottom: 1.5rem; }
    .padding_bottom_none { padding-bottom: 0; }


    h1 { font-size: 2.8rem; margin: 0 0 2.8rem 0; }
    h2 { font-size: 2.4rem; margin: 0 0 2.4rem 0; }
    h3 { font-size: 2rem; margin: 0 0 2rem 0; }
    h4 { font-size: 1.9rem; margin: 0 0 1.9rem 0; }
    h5 { font-size: 1.7rem; margin: 0 0 1.7rem 0; }
    h6 { font-size: 1.6rem; margin: 0 0 1.6rem 0; }

    p,
    ul,
    ol { font-size: 1.6rem; margin-bottom: 1.6rem; }

    /* Heading sizes */
    h1.heading_large { font-size: 3.2rem; margin: 0 0 3.2rem 0; }
    h2.heading_large { font-size: 2.8rem; margin: 0 0 2.8rem 0; }
    h3.heading_large { font-size: 2.4rem; margin: 0 0 2.4rem 0; }
    h4.heading_large { font-size: 2rem; margin: 0 0 2rem 0; }
    h5.heading_large { font-size: 1.9rem; margin: 0 0 1.9rem 0; }
    h6.heading_large { font-size: 1.8rem; margin: 0 0 1.8rem 0; }

    h1.heading_small { font-size: 2.4rem; margin: 0 0 2.4rem 0; }
    h2.heading_small { font-size: 2rem; margin: 0 0 2rem 0; }
    h3.heading_small { font-size: 1.9rem; margin: 0 0 1.9rem 0; }
    h4.heading_small { font-size: 1.7rem; margin: 0 0 1.7rem 0; }
    h5.heading_small { font-size: 1.6rem; margin: 0 0 1.6rem 0; }
    h6.heading_small { font-size: 1.5rem; margin: 0 0 1.5rem 0; }

    /* Paragraph, List sizes */
    p.text_large, ul.text_large, ol.text_large { font-size: 2.2rem; }
    p.text_small, ul.text_small, ol.text_small { font-size: 1.4rem; }
    p.text_tiny, ul.text_tiny, ol.text_tiny, span.text_tiny { font-size: 1.2rem; }

    table.data {
        font-size: 1.2rem;
        line-height: 1.5rem;
        margin: 2rem auto;
    }

        table.data th {
            padding: 0.25rem 0.5rem;
        }

        table.data td {
            padding: 0.25rem 0.5rem;
        }

    blockquote {
      padding: 3rem;
    }

    .popup-gallery {
        width: 33.33%;
    }

	.custom_form .inner_responsive_padding {
		padding: 5rem;
	}

}

/* Tablet */
@media only screen and (max-width: 991px) {

    .tablet_show { display: block !important; }
    .tablet_show_inline_block { display: inline-block  !important; }
    .cta_button.tablet_show { display: inline-block !important; }
    .tablet_hide { display: none !important; }

    /* Panel padding */
    .padding_top_massive { padding-top: 7rem; }
    .padding_top_huge { padding-top: 5rem; }
    .padding_top_large { padding-top: 4rem; }
    .padding_top_medium { padding-top: 3rem; }
    .padding_top_small { padding-top: 2rem; }
    .padding_top_tiny { padding-top: 1rem; }
    .padding_top_none { padding-top: 0; }
    .padding_bottom_massive { padding-top: 7rem; }
    .padding_bottom_huge { padding-bottom: 5rem; }
    .padding_bottom_large { padding-bottom: 4rem; }
    .padding_bottom_medium { padding-bottom: 3rem; }
    .padding_bottom_small { padding-bottom: 2rem; }
    .padding_bottom_tiny { padding-bottom: 1rem; }
    .padding_bottom_none { padding-bottom: 0; }

    /* Width */
    .tablet_width_100p { width: 100%; }
    .tablet_width_90p { width: 90%; }
    .tablet_width_80p { width: 80%; }
    .tablet_width_70p { width: 70%; }
    .tablet_width_60p { width: 60%; }
    .tablet_width_50p { width: 50%; }
    .tablet_width_40p { width: 40%; }
    .tablet_width_30p { width: 30%; }
    .tablet_width_20p { width: 20%; }
    .tablet_width_10p { width: 10%; }
    .tablet_width_0 { width: 0; }

    /*Height*/
    .height_16_10 { width: 100%; min-height: 40rem; height: auto; overflow: hidden; padding-top: 2rem; padding-bottom: 2rem; }
    .height_16_9 { width: 100%; min-height: 35rem; height: auto; overflow: hidden; padding-top: 2rem; padding-bottom: 2rem; }
    .height_16_8 { width: 100%; min-height: 35rem; height: auto; overflow: hidden; padding-top: 2rem; padding-bottom: 2rem; }
    .height_16_7 { width: 100%; min-height: 30rem; height: auto; overflow: hidden; padding-top: 2rem; padding-bottom: 2rem; }
    .height_16_6 { width: 100%; min-height: 30rem; height: auto; overflow: hidden; padding-top: 2rem; padding-bottom: 2rem; }
    .height_16_5 { width: 100%; min-height: 25rem; height: auto; overflow: hidden; padding-top: 2rem; padding-bottom: 2rem; }
    .height_16_4 { width: 100%; min-height: 25rem; height: auto; overflow: hidden; padding-top: 2rem; padding-bottom: 2rem; }
    .height_16_3 { width: 100%; min-height: 20rem; height: auto; overflow: hidden; padding-top: 2rem; padding-bottom: 2rem; }
    .height_16_2 { width: 100%; min-height: 20rem; height: auto; overflow: hidden; padding-top: 2rem; padding-bottom: 2rem; }
    .height_auto { width: 100%; height: auto; }
    .mobile_height_auto { width: 100%; height: auto !important; min-height: 5rem !important; }

    .height_16_10 #map { width: 100%; height: 80vh; overflow: hidden; }
    .height_16_8 #map { width: 100%; height: 70vh; overflow: hidden; }
    .height_16_6 #map { width: 100%; height: 65vh; overflow: hidden; }
    .height_16_4 #map { width: 100%; height: 60vh; overflow: hidden; }

    body .ui.three.column.grid .column.third_33 {
        width: 100% !important;
    }

    h1 { font-size: 2.4rem; margin: 0 0 2.4rem 0; }
    h2 { font-size: 2rem; margin: 0 0 2rem 0; }
    h3 { font-size: 1.9rem; margin: 0 0 1.9rem 0; }
    h4 { font-size: 1.7rem; margin: 0 0 1.7rem 0; }
    h5 { font-size: 1.6rem; margin: 0 0 1.6rem 0; }
    h6 { font-size: 1.5rem; margin: 0 0 1.5rem 0; }

    p,
    ul,
    ol { font-size: 1.5rem; margin-bottom: 1.5rem; }

    /* Heading sizes */
    h1.heading_large { font-size: 2.8rem; margin: 0 0 2.8rem 0; }
    h2.heading_large { font-size: 2.4rem; margin: 0 0 2.4rem 0; }
    h3.heading_large { font-size: 2rem; margin: 0 0 2rem 0; }
    h4.heading_large { font-size: 1.9rem; margin: 0 0 1.9rem 0; }
    h5.heading_large { font-size: 1.8rem; margin: 0 0 1.8rem 0; }
    h6.heading_large { font-size: 1.7rem; margin: 0 0 1.7rem 0; }

    h1.heading_small { font-size: 2rem; margin: 0 0 2rem 0; }
    h2.heading_small { font-size: 1.9rem; margin: 0 0 1.9rem 0; }
    h3.heading_small { font-size: 1.7rem; margin: 0 0 1.7rem 0; }
    h4.heading_small { font-size: 1.6rem; margin: 0 0 1.6rem 0; }
    h5.heading_small { font-size: 1.5rem; margin: 0 0 1.5rem 0; }
    h6.heading_small { font-size: 1.4rem; margin: 0 0 1.4rem 0; }

    /* Paragraph, List sizes */
    p.text_large, ul.text_large, ol.text_large { font-size: 2.1rem; }
    p.text_small, ul.text_small, ol.text_small { font-size: 1.3rem; }
    p.text_tiny, ul.text_tiny, ol.text_tiny, span.text_tiny { font-size: 1.1rem; }

header,
header.header2 {
  position: static;
  height: auto;
}

header a.site_logo,
header.header2 a.site_logo {
    width:30rem;
    height: auto;
	margin: 0 auto;
}

header a.site_logo img,
header.header2 a.site_logo img {
    width: 100%;
    height: auto;
}

header .social_contact {
	height: 6.5rem;
}

header .logo_nav {
	min-height: 11rem;
	height: auto;
}

header .ui.container {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

header .ui.container .column.mobile_navigation {
  width: 100% !important;
  padding: 0 !important;
}

header nav {
  float: none;
  width: 100%;
  position: relative;
}

	header .social_links {
		padding: 0;
	}

	header .social_links a {
		line-height: 6rem;
		text-align: center;
		font-size: 2.75rem;
        display: inline-block;
        width: 6rem;
        height: 6rem;
        color: #FFF;
	}

	header .social_links a:hover {
        background-color: RGBA(157,4,8,1);
	}

    header a#menu-icon {
        display: inline-block;
        width: 6rem;
        height: 6rem;
        margin: 0;
        color: #FFF;
        line-height: 2rem;
        text-align: center;
        font-size: 2rem;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        cursor: pointer;
		float: left;
    }

    header a#menu-icon i {
		display: inline-block;
		text-align: center !important;
		margin: 0 !important;
		padding: 0 !important;
		line-height: 4rem;
		text-align: center;
		font-size: 2.75rem;
    }

    header a#menu-icon span {
		font-size: 1.2rem;
		line-height: 2rem;
	}

    header a#menu-icon .close.icon,
    header a.icon_change .content.icon {
      display: none !important;
    }

    header a#menu-icon.icon_change .close.icon {
      display: inline-block !important;
    }

    header a#menu-icon:hover,
    header a#menu-icon:active {
        background-color: RGBA(157,4,8,1);
    }

    header ul.navigation {
		display: none;
		overflow-x: hidden;
    }

        header ul.navigation.display,
        header ul.navigation.display li ul {
            width: 100%;
            margin: 0;
            padding: 0;
            display: block;
            height: auto;
            background-color: RGBA(24,0,1,1);
            position: static;
        }

        header ul.navigation.display li ul {
            padding: 0;
        }

        header ul.navigation.display li {
            width: 100%;
            margin: 0;
            padding: 0;
            display: block;
            height: auto;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

        header ul.navigation.display li a,
        header ul.navigation.display li.contact a {
            min-width: auto;
            width: 100%;
            margin: 0;
            padding: 0 2rem;
            display: block;
            height: 6rem;
            font-size: 2rem;
            line-height: 6rem;
            color: RGBA(255,255,255,1) !important;
            background-color: RGBA(24,0,1,1);
            border: none;
			font-weight: 300;
			-webkit-transform: skewX(0);
			transform: skewX(0);
			position: relative;
        }

        header ul.navigation.display li a span,
        header ul.navigation.display li.contact a span {
			-webkit-transform: skewX(0);
			transform: skewX(0);
			display: inline !important;
		}

            header ul.navigation.display li a.active {
				background-color: RGBA(157,4,8,1) !important;
                color: rgba(255,255,255,1) !important;
            }

            header ul.navigation.display li a:hover,
            header ul.navigation li a:hover {
				background-color: RGBA(157,4,8,1) !important;
                color: rgba(255,255,255,1) !important;
            }

        header ul.navigation.display li ul,
        header ul.navigation.display li ul li ul {
            display: none;
        }

        header nav li span.submenu_button,
        header ul.navigation.display li ul.display {
            display: block;
        }

        header ul.navigation.display li ul {
			width: 100%;
        }

        header ul.navigation.display li ul li {
			width: 100%;
        }

            header ul.navigation.display li ul li a {
                padding: 1rem 2rem 1rem 4rem;
                display: block;
                min-height: 4.5rem;
                height: auto;
                font-size: 1.8rem;
                line-height: 2.5rem;
                border: none;
				width: 100%;
            }

            header ul.navigation.display li ul li a.active,
            header ul.navigation.display li ul li a:hover {
                background-color: RGBA(104,195,203,1);
                color: rgba(255,255,255,1);
            }

            .display span.submenu_button {
                display: block;
				position: absolute;
				top: 0;
				right: 0;
                width: 6rem;
                height: 6rem;
				margin: 0;
                background-color: RGBA(227,30,36,1);
                color: RGBA(255,255,255,1);
                text-align: center;
                font-size: 2rem;
                line-height: 5.5rem;
                cursor: pointer;
                -webkit-transition: all 0.5s ease-in-out;
                -moz-transition: all 0.5s ease-in-out;
                transition: all 0.5s ease-in-out;
            }

            .display li li span.submenu_button {
                display: none !important;
            }

            .display span.submenu_button i {
                padding: 0;
                width: auto;
            }

            .display span.submenu_button i.minus {
                display: none;
            }

            .display span.submenu_button.minus i.minus {
                display: inline-block;
            }

            .display span.submenu_button.minus i.plus {
                display: none;
            }

	.hero {
		padding-top: 0;
	}

  .social_icons {
    position: static;
    z-index: auto;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0.5rem;
    width: 100%;
    text-align: right;
    padding: 0.5rem;
    height: auto;
    background-color: rgba(51,50,43,1);
    display: none;
  }

  .social_icons.display {
    display: block;
  }

    .social_icons a {
      display: inline-block;
      width: 5rem;
      height: 5rem;
      background-color: transparent;
      color: #FFF;
      text-align: center;
      font-size: 2.4rem;
      line-height: 5rem;
      padding: 0;
      margin: 0 0 0 0.5rem;
      -webkit-transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      background: rgb(8,114,183);
      background: linear-gradient(45deg, rgba(8,114,183,1) 0%, rgba(59,165,192,1) 50%, rgba(71,212,212,1) 100%);
  }

  .social_icons a:hover {
      color: #FFF;
      background: rgb(71,212,212);
      background: linear-gradient(45deg, rgba(71,212,212,1) 0%, rgba(71,215,164,1) 100%);
  }

      .social_icons a i {
          margin: 0 !important;
          width: 5rem;
          text-align: center;
      }

main {
  padding-top: 0;
}
    .wide_container {
      padding-left: 0;
      padding-right: 0;
    }

    .wide_container.responsive_padding {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .popup-gallery,
    .gallery_links {
        width: 50%;
    }

	footer .ui.container {
	  width: 100% !important;
	  margin: 0 !important;
	  padding: 1rem !important;
	}

	footer {
		padding-bottom: 14rem !important;
	}

	.custom_form .inner_responsive_padding {
		padding: 4rem;
	}

	hr.hr_block {
		height: 0.5rem;
	}

	.block.hero .block_image {
		opacity: 0.3;
	}

	.ui.form.main_booking .ui.selection.dropdown .menu {
		max-height: 12rem !important;
	}

}

/* Mobile */
@media only screen and (max-width: 767px) {

    .mobile_show { display: block !important; }
    .mobile_hide { display: none !important; }

    /* Panel padding */
    .padding_top_massive { padding-top: 3.5rem; }
    .padding_top_huge { padding-top: 2.5rem; }
    .padding_top_large { padding-top: 2rem; }
    .padding_top_medium { padding-top: 1.5rem; }
    .padding_top_small { padding-top: 1rem; }
    .padding_top_tiny { padding-top: 0.5rem; }
    .padding_top_none { padding-top: 0; }
    .padding_bottom_massive { padding-top: 3.5rem; }
    .padding_bottom_huge { padding-bottom: 2.5rem; }
    .padding_bottom_large { padding-bottom: 2rem; }
    .padding_bottom_medium { padding-bottom: 1.5rem; }
    .padding_bottom_small { padding-bottom: 1rem; }
    .padding_bottom_tiny { padding-bottom: 0.5rem; }
    .padding_bottom_none { padding-bottom: 0; }

    /* Width */
    .mobile_width_100p { width: 100%; }
    .mobile_width_90p { width: 90%; }
    .mobile_width_80p { width: 80%; }
    .mobile_width_70p { width: 70%; }
    .mobile_width_60p { width: 60%; }
    .mobile_width_50p { width: 50%; }
    .mobile_width_40p { width: 40%; }
    .mobile_width_30p { width: 30%; }
    .mobile_width_20p { width: 20%; }
    .mobile_width_10p { width: 10%; }
    .mobile_width_0 { width: 0; }

    /*Height*/
    .height_16_10 { width: 100%; min-height: 30rem; height: auto; overflow: hidden; padding-top: 2rem; padding-bottom: 2rem; }
    .height_16_9 { width: 100%; min-height: 25rem; height: auto; overflow: hidden; padding-top: 2rem; padding-bottom: 2rem; }
    .height_16_8 { width: 100%; min-height: 25rem; height: auto; overflow: hidden; padding-top: 2rem; padding-bottom: 2rem; }
    .height_16_7 { width: 100%; min-height: 20rem; height: auto; overflow: hidden; padding-top: 2rem; padding-bottom: 2rem; }
    .height_16_6 { width: 100%; min-height: 20rem; height: auto; overflow: hidden; padding-top: 2rem; padding-bottom: 2rem; }
    .height_16_5 { width: 100%; min-height: 15rem; height: auto; overflow: hidden; padding-top: 2rem; padding-bottom: 2rem; }
    .height_16_4 { width: 100%; min-height: 15rem; height: auto; overflow: hidden; padding-top: 2rem; padding-bottom: 2rem; }
    .height_16_3 { width: 100%; min-height: 10rem; height: auto; overflow: hidden; padding-top: 2rem; padding-bottom: 2rem; }
    .height_16_2 { width: 100%; min-height: 10rem; height: auto; overflow: hidden; padding-top: 2rem; padding-bottom: 2rem; }
    .height_auto { width: 100%; height: auto; }
    .mobile_height_auto { width: 100%; height: auto !important; min-height: 5rem !important; }

    .height_16_10 #map { width: 100%; height: 80vh; overflow: hidden; }
    .height_16_8 #map { width: 100%; height: 70vh; overflow: hidden; }
    .height_16_6 #map { width: 100%; height: 65vh; overflow: hidden; }
    .height_16_4 #map { width: 100%; height: 60vh; overflow: hidden; }

    /* Alignment */
    .mobile_text_align_left { text-align: left !important; }
    .mobile_text_align_right { text-align: right !important; }

    h1 { font-size: 2rem; margin: 0 0 2rem 0; }
    h2 { font-size: 1.9rem; margin: 0 0 1.9rem 0; }
    h3 { font-size: 1.7rem; margin: 0 0 1.7rem 0; }
    h4 { font-size: 1.6rem; margin: 0 0 1.6rem 0; }
    h5 { font-size: 1.5rem; margin: 0 0 1.5rem 0; }
    h6 { font-size: 1.4rem; margin: 0 0 1.4rem 0; }

    p,
    ul,
    ol { font-size: 1.4rem; margin-bottom: 1.4rem; }

    /* Heading sizes */
    h1.heading_large { font-size: 2.4rem; margin: 0 0 2.4rem 0; }
    h2.heading_large { font-size: 2rem; margin: 0 0 2rem 0; }
    h3.heading_large { font-size: 1.9rem; margin: 0 0 1.9rem 0; }
    h4.heading_large { font-size: 1.8rem; margin: 0 0 1.8rem 0; }
    h5.heading_large { font-size: 1.7rem; margin: 0 0 1.7rem 0; }
    h6.heading_large { font-size: 1.6rem; margin: 0 0 1.6rem 0; }

    h1.heading_small { font-size: 1.9rem; margin: 0 0 1.9rem 0; }
    h2.heading_small { font-size: 1.7rem; margin: 0 0 1.7rem 0; }
    h3.heading_small { font-size: 1.6rem; margin: 0 0 1.6rem 0; }
    h4.heading_small { font-size: 1.5rem; margin: 0 0 1.5rem 0; }
    h5.heading_small { font-size: 1.4rem; margin: 0 0 1.4rem 0; }
    h6.heading_small { font-size: 1.3rem; margin: 0 0 1.3rem 0; }

    /* Paragraph, List sizes */
    p.text_large, ul.text_large, ol.text_large { font-size: 1.8rem; }
    p.text_small, ul.text_small, ol.text_small { font-size: 1.2rem; }
    p.text_tiny, ul.text_tiny, ol.text_tiny, span.text_tiny { font-size: 1.1rem; }

    footer.padding_bottom_medium { padding-bottom: 14rem; }

    .wide_container .three.column.grid .responsive_padding {
      padding-left: 0rem;
      padding-right: 0rem;
    }

    .ui.grid {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

	.custom_form .inner_responsive_padding {
		padding: 2rem 0;
	}

	form.ui.form.main_booking .cta_button {
		margin-left: auto;
		margin-right: auto;
	}

}

/* Medium Mobile */
@media only screen and (max-width: 450px) {

}

/* Small Mobile */
@media only screen and (max-width: 399px) {

    .small_mobile_show { display: block !important; }
    .small_mobile_hide { display: none !important; }

    /* Width */
    .small_mobile_width_100p { width: 100%; }
    .small_mobile_width_90p { width: 90%; }
    .small_mobile_width_80p { width: 80%; }
    .small_mobile_width_70p { width: 70%; }
    .small_mobile_width_60p { width: 60%; }
    .small_mobile_width_50p { width: 50%; }
    .small_mobile_width_40p { width: 40%; }
    .small_mobile_width_30p { width: 30%; }
    .small_mobile_width_20p { width: 20%; }
    .small_mobile_width_10p { width: 10%; }
    .small_mobile_width_0 { width: 0; }

}

/* Background colours */

.ui.background_slate_dark_100, .background_slate_dark_100 { background-color: rgba(24,0,1,1) !important; }
.ui.background_slate_dark_90, .background_slate_dark_90 { background-color: rgba(24,0,1,0.9) !important; }
.ui.background_slate_dark_80, .background_slate_dark_80 { background-color: rgba(24,0,1,0.8) !important; }
.ui.background_slate_dark_70, .background_slate_dark_70 { background-color: rgba(24,0,1,0.7) !important; }
.ui.background_slate_dark_60, .background_slate_dark_60 { background-color: rgba(24,0,1,0.6) !important; }
.ui.background_slate_dark_50, .background_slate_dark_50 { background-color: rgba(24,0,1,0.5) !important; }
.ui.background_slate_dark_40, .background_slate_dark_40 { background-color: rgba(24,0,1,0.4) !important; }
.ui.background_slate_dark_30, .background_slate_dark_30 { background-color: rgba(24,0,1,0.3) !important; }
.ui.background_slate_dark_20, .background_slate_dark_20 { background-color: rgba(24,0,1,0.2) !important; }
.ui.background_slate_dark_10, .background_slate_dark_10 { background-color: rgba(24,0,1,0.1) !important; }

.ui.background_slate_100, .background_slate_100 { background-color: rgba(80,61,62,1) !important; }
.ui.background_slate_90, .background_slate_90 { background-color: rgba(80,61,62,0.9) !important; }
.ui.background_slate_80, .background_slate_80 { background-color: rgba(80,61,62,0.8) !important; }
.ui.background_slate_70, .background_slate_70 { background-color: rgba(80,61,62,0.7) !important; }
.ui.background_slate_60, .background_slate_60 { background-color: rgba(80,61,62,0.6) !important; }
.ui.background_slate_50, .background_slate_50 { background-color: rgba(80,61,62,0.5) !important; }
.ui.background_slate_40, .background_slate_40 { background-color: rgba(80,61,62,0.4) !important; }
.ui.background_slate_30, .background_slate_30 { background-color: rgba(80,61,62,0.3) !important; }
.ui.background_slate_20, .background_slate_20 { background-color: rgba(80,61,62,0.2) !important; }
.ui.background_slate_10, .background_slate_10 { background-color: rgba(80,61,62,0.1) !important; }

.ui.background_slate_light_100, .background_slate_light_100 { background-color: rgba(136,121,122,1) !important; }
.ui.background_slate_light_90, .background_slate_light_90 { background-color: rgba(136,121,122,0.9) !important; }
.ui.background_slate_light_80, .background_slate_light_80 { background-color: rgba(136,121,122,0.8) !important; }
.ui.background_slate_light_70, .background_slate_light_70 { background-color: rgba(136,121,122,0.7) !important; }
.ui.background_slate_light_60, .background_slate_light_60 { background-color: rgba(136,121,122,0.6) !important; }
.ui.background_slate_light_50, .background_slate_light_50 { background-color: rgba(136,121,122,0.5) !important; }
.ui.background_slate_light_40, .background_slate_light_40 { background-color: rgba(136,121,122,0.4) !important; }
.ui.background_slate_light_30, .background_slate_light_30 { background-color: rgba(136,121,122,0.3) !important; }
.ui.background_slate_light_20, .background_slate_light_20 { background-color: rgba(136,121,122,0.2) !important; }
.ui.background_slate_light_10, .background_slate_light_10 { background-color: rgba(136,121,122,0.1) !important; }

.ui.background_slate_wash_100, .background_slate_wash_100 { background-color: rgba(224,213,214,1) !important; }
.ui.background_slate_wash_90, .background_slate_wash_90 { background-color: rgba(224,213,214,0.9) !important; }
.ui.background_slate_wash_80, .background_slate_wash_80 { background-color: rgba(224,213,214,0.8) !important; }
.ui.background_slate_wash_70, .background_slate_wash_70 { background-color: rgba(224,213,214,0.7) !important; }
.ui.background_slate_wash_60, .background_slate_wash_60 { background-color: rgba(224,213,214,0.6) !important; }
.ui.background_slate_wash_50, .background_slate_wash_50 { background-color: rgba(224,213,214,0.5) !important; }
.ui.background_slate_wash_40, .background_slate_wash_40 { background-color: rgba(224,213,214,0.4) !important; }
.ui.background_slate_wash_30, .background_slate_wash_30 { background-color: rgba(224,213,214,0.3) !important; }
.ui.background_slate_wash_20, .background_slate_wash_20 { background-color: rgba(224,213,214,0.2) !important; }
.ui.background_slate_wash_10, .background_slate_wash_10 { background-color: rgba(224,213,214,0.1) !important; }

.ui.background_red_dark_100, .background_red_dark_100 { background-color: rgba(157,4,8,1) !important; }
.ui.background_red_dark_90, .background_red_dark_90 { background-color: rgba(157,4,8,0.9) !important; }
.ui.background_red_dark_80, .background_red_dark_80 { background-color: rgba(157,4,8,0.8) !important; }
.ui.background_red_dark_70, .background_red_dark_70 { background-color: rgba(157,4,8,0.7) !important; }
.ui.background_red_dark_60, .background_red_dark_60 { background-color: rgba(157,4,8,0.6) !important; }
.ui.background_red_dark_50, .background_red_dark_50 { background-color: rgba(157,4,8,0.5) !important; }
.ui.background_red_dark_40, .background_red_dark_40 { background-color: rgba(157,4,8,0.4) !important; }
.ui.background_red_dark_30, .background_red_dark_30 { background-color: rgba(157,4,8,0.3) !important; }
.ui.background_red_dark_20, .background_red_dark_20 { background-color: rgba(157,4,8,0.2) !important; }
.ui.background_red_dark_10, .background_red_dark_10 { background-color: rgba(157,4,8,0.1) !important; }

.ui.background_red_100, .background_red_100 { background-color: rgba(227,30,36,1) !important; }
.ui.background_red_90, .background_red_90 { background-color: rgba(227,30,36,0.9) !important; }
.ui.background_red_80, .background_red_80 { background-color: rgba(227,30,36,0.8) !important; }
.ui.background_red_70, .background_red_70 { background-color: rgba(227,30,36,0.7) !important; }
.ui.background_red_60, .background_red_60 { background-color: rgba(227,30,36,0.6) !important; }
.ui.background_red_50, .background_red_50 { background-color: rgba(227,30,36,0.5) !important; }
.ui.background_red_40, .background_red_40 { background-color: rgba(227,30,36,0.4) !important; }
.ui.background_red_30, .background_red_30 { background-color: rgba(227,30,36,0.3) !important; }
.ui.background_red_20, .background_red_20 { background-color: rgba(227,30,36,0.2) !important; }
.ui.background_red_10, .background_red_10 { background-color: rgba(227,30,36,0.1) !important; }

.ui.background_red_light_100, .background_red_light_100 { background-color: rgba(210,105,108,1) !important; }
.ui.background_red_light_90, .background_red_light_90 { background-color: rgba(210,105,108,0.9) !important; }
.ui.background_red_light_80, .background_red_light_80 { background-color: rgba(210,105,108,0.8) !important; }
.ui.background_red_light_70, .background_red_light_70 { background-color: rgba(210,105,108,0.7) !important; }
.ui.background_red_light_60, .background_red_light_60 { background-color: rgba(210,105,108,0.6) !important; }
.ui.background_red_light_50, .background_red_light_50 { background-color: rgba(210,105,108,0.5) !important; }
.ui.background_red_light_40, .background_red_light_40 { background-color: rgba(210,105,108,0.4) !important; }
.ui.background_red_light_30, .background_red_light_30 { background-color: rgba(210,105,108,0.3) !important; }
.ui.background_red_light_20, .background_red_light_20 { background-color: rgba(210,105,108,0.2) !important; }
.ui.background_red_light_10, .background_red_light_10 { background-color: rgba(210,105,108,0.1) !important; }

.ui.background_red_wash_100, .background_red_wash_100 { background-color: rgba(249,216,217,1) !important; }
.ui.background_red_wash_90, .background_red_wash_90 { background-color: rgba(249,216,217,0.9) !important; }
.ui.background_red_wash_80, .background_red_wash_80 { background-color: rgba(249,216,217,0.8) !important; }
.ui.background_red_wash_70, .background_red_wash_70 { background-color: rgba(249,216,217,0.7) !important; }
.ui.background_red_wash_60, .background_red_wash_60 { background-color: rgba(249,216,217,0.6) !important; }
.ui.background_red_wash_50, .background_red_wash_50 { background-color: rgba(249,216,217,0.5) !important; }
.ui.background_red_wash_40, .background_red_wash_40 { background-color: rgba(249,216,217,0.4) !important; }
.ui.background_red_wash_30, .background_red_wash_30 { background-color: rgba(249,216,217,0.3) !important; }
.ui.background_red_wash_20, .background_red_wash_20 { background-color: rgba(249,216,217,0.2) !important; }
.ui.background_red_wash_10, .background_red_wash_10 { background-color: rgba(249,216,217,0.1) !important; }

.ui.background_white_100, .background_white_100 { background-color: rgba(255,255,255,1) !important; }
.ui.background_white_90, .background_white_90 { background-color: rgba(255,255,255,0.9) !important; }
.ui.background_white_80, .background_white_80 { background-color: rgba(255,255,255,0.8) !important; }
.ui.background_white_70, .background_white_70 { background-color: rgba(255,255,255,0.7) !important; }
.ui.background_white_60, .background_white_60 { background-color: rgba(255,255,255,0.6) !important; }
.ui.background_white_50, .background_white_50 { background-color: rgba(255,255,255,0.5) !important; }
.ui.background_white_40, .background_white_40 { background-color: rgba(255,255,255,0.4) !important; }
.ui.background_white_30, .background_white_30 { background-color: rgba(255,255,255,0.3) !important; }
.ui.background_white_20, .background_white_20 { background-color: rgba(255,255,255,0.2) !important; }
.ui.background_white_10, .background_white_10 { background-color: rgba(255,255,255,0.1) !important; }

.ui.background_black_100, .background_black_100 { background-color: rgba(0,0,0,1) !important; }
.ui.background_black_90, .background_black_90 { background-color: rgba(0,0,0,0.9) !important; }
.ui.background_black_80, .background_black_80 { background-color: rgba(0,0,0,0.8) !important; }
.ui.background_black_70, .background_black_70 { background-color: rgba(0,0,0,0.7) !important; }
.ui.background_black_60, .background_black_60 { background-color: rgba(0,0,0,0.6) !important; }
.ui.background_black_50, .background_black_50 { background-color: rgba(0,0,0,0.5) !important; }
.ui.background_black_40, .background_black_40 { background-color: rgba(0,0,0,0.4) !important; }
.ui.background_black_30, .background_black_30 { background-color: rgba(0,0,0,0.3) !important; }
.ui.background_black_20, .background_black_20 { background-color: rgba(0,0,0,0.2) !important; }
.ui.background_black_10, .background_black_10 { background-color: rgba(0,0,0,0.1) !important; }

/* Background hover colours */

.ui.background_hover_slate_dark_100:hover, .background_hover_slate_dark_100:hover { background-color: rgba(24,0,1,1) !important; }
.ui.background_hover_slate_dark_90:hover, .background_hover_slate_dark_90:hover { background-color: rgba(24,0,1,0.9) !important; }
.ui.background_hover_slate_dark_80:hover, .background_hover_slate_dark_80:hover { background-color: rgba(24,0,1,0.8) !important; }
.ui.background_hover_slate_dark_70:hover, .background_hover_slate_dark_70:hover { background-color: rgba(24,0,1,0.7) !important; }
.ui.background_hover_slate_dark_60:hover, .background_hover_slate_dark_60:hover { background-color: rgba(24,0,1,0.6) !important; }
.ui.background_hover_slate_dark_50:hover, .background_hover_slate_dark_50:hover { background-color: rgba(24,0,1,0.5) !important; }
.ui.background_hover_slate_dark_40:hover, .background_hover_slate_dark_40:hover { background-color: rgba(24,0,1,0.4) !important; }
.ui.background_hover_slate_dark_30:hover, .background_hover_slate_dark_30:hover { background-color: rgba(24,0,1,0.3) !important; }
.ui.background_hover_slate_dark_20:hover, .background_hover_slate_dark_20:hover { background-color: rgba(24,0,1,0.2) !important; }
.ui.background_hover_slate_dark_10:hover, .background_hover_slate_dark_10:hover { background-color: rgba(24,0,1,0.1) !important; }

.ui.background_hover_slate_100:hover, .background_hover_slate_100:hover { background-color: rgba(80,61,62,1) !important; }
.ui.background_hover_slate_90:hover, .background_hover_slate_90:hover { background-color: rgba(80,61,62,0.9) !important; }
.ui.background_hover_slate_80:hover, .background_hover_slate_80:hover { background-color: rgba(80,61,62,0.8) !important; }
.ui.background_hover_slate_70:hover, .background_hover_slate_70:hover { background-color: rgba(80,61,62,0.7) !important; }
.ui.background_hover_slate_60:hover, .background_hover_slate_60:hover { background-color: rgba(80,61,62,0.6) !important; }
.ui.background_hover_slate_50:hover, .background_hover_slate_50:hover { background-color: rgba(80,61,62,0.5) !important; }
.ui.background_hover_slate_40:hover, .background_hover_slate_40:hover { background-color: rgba(80,61,62,0.4) !important; }
.ui.background_hover_slate_30:hover, .background_hover_slate_30:hover { background-color: rgba(80,61,62,0.3) !important; }
.ui.background_hover_slate_20:hover, .background_hover_slate_20:hover { background-color: rgba(80,61,62,0.2) !important; }
.ui.background_hover_slate_10:hover, .background_hover_slate_10:hover { background-color: rgba(80,61,62,0.1) !important; }

.ui.background_hover_slate_light_100:hover, .background_hover_slate_light_100:hover { background-color: rgba(136,121,122,1) !important; }
.ui.background_hover_slate_light_90:hover, .background_hover_slate_light_90:hover { background-color: rgba(136,121,122,0.9) !important; }
.ui.background_hover_slate_light_80:hover, .background_hover_slate_light_80:hover { background-color: rgba(136,121,122,0.8) !important; }
.ui.background_hover_slate_light_70:hover, .background_hover_slate_light_70:hover { background-color: rgba(136,121,122,0.7) !important; }
.ui.background_hover_slate_light_60:hover, .background_hover_slate_light_60:hover { background-color: rgba(136,121,122,0.6) !important; }
.ui.background_hover_slate_light_50:hover, .background_hover_slate_light_50:hover { background-color: rgba(136,121,122,0.5) !important; }
.ui.background_hover_slate_light_40:hover, .background_hover_slate_light_40:hover { background-color: rgba(136,121,122,0.4) !important; }
.ui.background_hover_slate_light_30:hover, .background_hover_slate_light_30:hover { background-color: rgba(136,121,122,0.3) !important; }
.ui.background_hover_slate_light_20:hover, .background_hover_slate_light_20:hover { background-color: rgba(136,121,122,0.2) !important; }
.ui.background_hover_slate_light_10:hover, .background_hover_slate_light_10:hover { background-color: rgba(136,121,122,0.1) !important; }

.ui.background_hover_slate_wash_100:hover, .background_hover_slate_wash_100:hover { background-color: rgba(224,213,214,1) !important; }
.ui.background_hover_slate_wash_90:hover, .background_hover_slate_wash_90:hover { background-color: rgba(224,213,214,0.9) !important; }
.ui.background_hover_slate_wash_80:hover, .background_hover_slate_wash_80:hover { background-color: rgba(224,213,214,0.8) !important; }
.ui.background_hover_slate_wash_70:hover, .background_hover_slate_wash_70:hover { background-color: rgba(224,213,214,0.7) !important; }
.ui.background_hover_slate_wash_60:hover, .background_hover_slate_wash_60:hover { background-color: rgba(224,213,214,0.6) !important; }
.ui.background_hover_slate_wash_50:hover, .background_hover_slate_wash_50:hover { background-color: rgba(224,213,214,0.5) !important; }
.ui.background_hover_slate_wash_40:hover, .background_hover_slate_wash_40:hover { background-color: rgba(224,213,214,0.4) !important; }
.ui.background_hover_slate_wash_30:hover, .background_hover_slate_wash_30:hover { background-color: rgba(224,213,214,0.3) !important; }
.ui.background_hover_slate_wash_20:hover, .background_hover_slate_wash_20:hover { background-color: rgba(224,213,214,0.2) !important; }
.ui.background_hover_slate_wash_10:hover, .background_hover_slate_wash_10:hover { background-color: rgba(224,213,214,0.1) !important; }

.ui.background_hover_red_dark_100:hover, .background_hover_red_dark_100:hover { background-color: rgba(157,4,8,1) !important; }
.ui.background_hover_red_dark_90:hover, .background_hover_red_dark_90:hover { background-color: rgba(157,4,8,0.9) !important; }
.ui.background_hover_red_dark_80:hover, .background_hover_red_dark_80:hover { background-color: rgba(157,4,8,0.8) !important; }
.ui.background_hover_red_dark_70:hover, .background_hover_red_dark_70:hover { background-color: rgba(157,4,8,0.7) !important; }
.ui.background_hover_red_dark_60:hover, .background_hover_red_dark_60:hover { background-color: rgba(157,4,8,0.6) !important; }
.ui.background_hover_red_dark_50:hover, .background_hover_red_dark_50:hover { background-color: rgba(157,4,8,0.5) !important; }
.ui.background_hover_red_dark_40:hover, .background_hover_red_dark_40:hover { background-color: rgba(157,4,8,0.4) !important; }
.ui.background_hover_red_dark_30:hover, .background_hover_red_dark_30:hover { background-color: rgba(157,4,8,0.3) !important; }
.ui.background_hover_red_dark_20:hover, .background_hover_red_dark_20:hover { background-color: rgba(157,4,8,0.2) !important; }
.ui.background_hover_red_dark_10:hover, .background_hover_red_dark_10:hover { background-color: rgba(157,4,8,0.1) !important; }

.ui.background_hover_red_100:hover, .background_hover_red_100:hover { background-color: rgba(227,30,36,1) !important; }
.ui.background_hover_red_90:hover, .background_hover_red_90:hover { background-color: rgba(227,30,36,0.9) !important; }
.ui.background_hover_red_80:hover, .background_hover_red_80:hover { background-color: rgba(227,30,36,0.8) !important; }
.ui.background_hover_red_70:hover, .background_hover_red_70:hover { background-color: rgba(227,30,36,0.7) !important; }
.ui.background_hover_red_60:hover, .background_hover_red_60:hover { background-color: rgba(227,30,36,0.6) !important; }
.ui.background_hover_red_50:hover, .background_hover_red_50:hover { background-color: rgba(227,30,36,0.5) !important; }
.ui.background_hover_red_40:hover, .background_hover_red_40:hover { background-color: rgba(227,30,36,0.4) !important; }
.ui.background_hover_red_30:hover, .background_hover_red_30:hover { background-color: rgba(227,30,36,0.3) !important; }
.ui.background_hover_red_20:hover, .background_hover_red_20:hover { background-color: rgba(227,30,36,0.2) !important; }
.ui.background_hover_red_10:hover, .background_hover_red_10:hover { background-color: rgba(227,30,36,0.1) !important; }

.ui.background_hover_red_light_100:hover, .background_hover_red_light_100:hover { background-color: rgba(210,105,108,1) !important; }
.ui.background_hover_red_light_90:hover, .background_hover_red_light_90:hover { background-color: rgba(210,105,108,0.9) !important; }
.ui.background_hover_red_light_80:hover, .background_hover_red_light_80:hover { background-color: rgba(210,105,108,0.8) !important; }
.ui.background_hover_red_light_70:hover, .background_hover_red_light_70:hover { background-color: rgba(210,105,108,0.7) !important; }
.ui.background_hover_red_light_60:hover, .background_hover_red_light_60:hover { background-color: rgba(210,105,108,0.6) !important; }
.ui.background_hover_red_light_50:hover, .background_hover_red_light_50:hover { background-color: rgba(210,105,108,0.5) !important; }
.ui.background_hover_red_light_40:hover, .background_hover_red_light_40:hover { background-color: rgba(210,105,108,0.4) !important; }
.ui.background_hover_red_light_30:hover, .background_hover_red_light_30:hover { background-color: rgba(210,105,108,0.3) !important; }
.ui.background_hover_red_light_20:hover, .background_hover_red_light_20:hover { background-color: rgba(210,105,108,0.2) !important; }
.ui.background_hover_red_light_10:hover, .background_hover_red_light_10:hover { background-color: rgba(210,105,108,0.1) !important; }

.ui.background_hover_red_wash_100:hover, .background_hover_red_wash_100:hover { background-color: rgba(249,216,217,1) !important; }
.ui.background_hover_red_wash_90:hover, .background_hover_red_wash_90:hover { background-color: rgba(249,216,217,0.9) !important; }
.ui.background_hover_red_wash_80:hover, .background_hover_red_wash_80:hover { background-color: rgba(249,216,217,0.8) !important; }
.ui.background_hover_red_wash_70:hover, .background_hover_red_wash_70:hover { background-color: rgba(249,216,217,0.7) !important; }
.ui.background_hover_red_wash_60:hover, .background_hover_red_wash_60:hover { background-color: rgba(249,216,217,0.6) !important; }
.ui.background_hover_red_wash_50:hover, .background_hover_red_wash_50:hover { background-color: rgba(249,216,217,0.5) !important; }
.ui.background_hover_red_wash_40:hover, .background_hover_red_wash_40:hover { background-color: rgba(249,216,217,0.4) !important; }
.ui.background_hover_red_wash_30:hover, .background_hover_red_wash_30:hover { background-color: rgba(249,216,217,0.3) !important; }
.ui.background_hover_red_wash_20:hover, .background_hover_red_wash_20:hover { background-color: rgba(249,216,217,0.2) !important; }
.ui.background_hover_red_wash_10:hover, .background_hover_red_wash_10:hover { background-color: rgba(249,216,217,0.1) !important; }

.ui.background_hover_white_100:hover, .background_hover_white_100:hover { background-color: rgba(255,255,255,1) !important; }
.ui.background_hover_white_90:hover, .background_hover_white_90:hover { background-color: rgba(255,255,255,0.9) !important; }
.ui.background_hover_white_80:hover, .background_hover_white_80:hover { background-color: rgba(255,255,255,0.8) !important; }
.ui.background_hover_white_70:hover, .background_hover_white_70:hover { background-color: rgba(255,255,255,0.7) !important; }
.ui.background_hover_white_60:hover, .background_hover_white_60:hover { background-color: rgba(255,255,255,0.6) !important; }
.ui.background_hover_white_50:hover, .background_hover_white_50:hover { background-color: rgba(255,255,255,0.5) !important; }
.ui.background_hover_white_40:hover, .background_hover_white_40:hover { background-color: rgba(255,255,255,0.4) !important; }
.ui.background_hover_white_30:hover, .background_hover_white_30:hover { background-color: rgba(255,255,255,0.3) !important; }
.ui.background_hover_white_20:hover, .background_hover_white_20:hover { background-color: rgba(255,255,255,0.2) !important; }
.ui.background_hover_white_10:hover, .background_hover_white_10:hover { background-color: rgba(255,255,255,0.1) !important; }

.ui.background_hover_black_100:hover, .background_hover_black_100:hover { background-color: rgba(0,0,0,1) !important; }
.ui.background_hover_black_90:hover, .background_hover_black_90:hover { background-color: rgba(0,0,0,0.9) !important; }
.ui.background_hover_black_80:hover, .background_hover_black_80:hover { background-color: rgba(0,0,0,0.8) !important; }
.ui.background_hover_black_70:hover, .background_hover_black_70:hover { background-color: rgba(0,0,0,0.7) !important; }
.ui.background_hover_black_60:hover, .background_hover_black_60:hover { background-color: rgba(0,0,0,0.6) !important; }
.ui.background_hover_black_50:hover, .background_hover_black_50:hover { background-color: rgba(0,0,0,0.5) !important; }
.ui.background_hover_black_40:hover, .background_hover_black_40:hover { background-color: rgba(0,0,0,0.4) !important; }
.ui.background_hover_black_30:hover, .background_hover_black_30:hover { background-color: rgba(0,0,0,0.3) !important; }
.ui.background_hover_black_20:hover, .background_hover_black_20:hover { background-color: rgba(0,0,0,0.2) !important; }
.ui.background_hover_black_10:hover, .background_hover_black_10:hover { background-color: rgba(0,0,0,0.1) !important; }

/* Text colours */

.ui.text_slate_dark_100, .text_slate_dark_100 { color: rgba(24,0,1,1) !important; }
.ui.text_slate_dark_90, .text_slate_dark_90 { color: rgba(24,0,1,0.9) !important; }
.ui.text_slate_dark_80, .text_slate_dark_80 { color: rgba(24,0,1,0.8) !important; }
.ui.text_slate_dark_70, .text_slate_dark_70 { color: rgba(24,0,1,0.7) !important; }
.ui.text_slate_dark_60, .text_slate_dark_60 { color: rgba(24,0,1,0.6) !important; }
.ui.text_slate_dark_50, .text_slate_dark_50 { color: rgba(24,0,1,0.5) !important; }
.ui.text_slate_dark_40, .text_slate_dark_40 { color: rgba(24,0,1,0.4) !important; }
.ui.text_slate_dark_30, .text_slate_dark_30 { color: rgba(24,0,1,0.3) !important; }
.ui.text_slate_dark_20, .text_slate_dark_20 { color: rgba(24,0,1,0.2) !important; }
.ui.text_slate_dark_10, .text_slate_dark_10 { color: rgba(24,0,1,0.1) !important; }

.ui.text_slate_100, .text_slate_100 { color: rgba(80,61,62,1) !important; }
.ui.text_slate_90, .text_slate_90 { color: rgba(80,61,62,0.9) !important; }
.ui.text_slate_80, .text_slate_80 { color: rgba(80,61,62,0.8) !important; }
.ui.text_slate_70, .text_slate_70 { color: rgba(80,61,62,0.7) !important; }
.ui.text_slate_60, .text_slate_60 { color: rgba(80,61,62,0.6) !important; }
.ui.text_slate_50, .text_slate_50 { color: rgba(80,61,62,0.5) !important; }
.ui.text_slate_40, .text_slate_40 { color: rgba(80,61,62,0.4) !important; }
.ui.text_slate_30, .text_slate_30 { color: rgba(80,61,62,0.3) !important; }
.ui.text_slate_20, .text_slate_20 { color: rgba(80,61,62,0.2) !important; }
.ui.text_slate_10, .text_slate_10 { color: rgba(80,61,62,0.1) !important; }

.ui.text_slate_light_100, .text_slate_light_100 { color: rgba(136,121,122,1) !important; }
.ui.text_slate_light_90, .text_slate_light_90 { color: rgba(136,121,122,0.9) !important; }
.ui.text_slate_light_80, .text_slate_light_80 { color: rgba(136,121,122,0.8) !important; }
.ui.text_slate_light_70, .text_slate_light_70 { color: rgba(136,121,122,0.7) !important; }
.ui.text_slate_light_60, .text_slate_light_60 { color: rgba(136,121,122,0.6) !important; }
.ui.text_slate_light_50, .text_slate_light_50 { color: rgba(136,121,122,0.5) !important; }
.ui.text_slate_light_40, .text_slate_light_40 { color: rgba(136,121,122,0.4) !important; }
.ui.text_slate_light_30, .text_slate_light_30 { color: rgba(136,121,122,0.3) !important; }
.ui.text_slate_light_20, .text_slate_light_20 { color: rgba(136,121,122,0.2) !important; }
.ui.text_slate_light_10, .text_slate_light_10 { color: rgba(136,121,122,0.1) !important; }

.ui.text_slate_wash_100, .text_slate_wash_100 { color: rgba(224,213,214,1) !important; }
.ui.text_slate_wash_90, .text_slate_wash_90 { color: rgba(224,213,214,0.9) !important; }
.ui.text_slate_wash_80, .text_slate_wash_80 { color: rgba(224,213,214,0.8) !important; }
.ui.text_slate_wash_70, .text_slate_wash_70 { color: rgba(224,213,214,0.7) !important; }
.ui.text_slate_wash_60, .text_slate_wash_60 { color: rgba(224,213,214,0.6) !important; }
.ui.text_slate_wash_50, .text_slate_wash_50 { color: rgba(224,213,214,0.5) !important; }
.ui.text_slate_wash_40, .text_slate_wash_40 { color: rgba(224,213,214,0.4) !important; }
.ui.text_slate_wash_30, .text_slate_wash_30 { color: rgba(224,213,214,0.3) !important; }
.ui.text_slate_wash_20, .text_slate_wash_20 { color: rgba(224,213,214,0.2) !important; }
.ui.text_slate_wash_10, .text_slate_wash_10 { color: rgba(224,213,214,0.1) !important; }

.ui.text_red_dark_100, .text_red_dark_100 { color: rgba(157,4,8,1) !important; }
.ui.text_red_dark_90, .text_red_dark_90 { color: rgba(157,4,8,0.9) !important; }
.ui.text_red_dark_80, .text_red_dark_80 { color: rgba(157,4,8,0.8) !important; }
.ui.text_red_dark_70, .text_red_dark_70 { color: rgba(157,4,8,0.7) !important; }
.ui.text_red_dark_60, .text_red_dark_60 { color: rgba(157,4,8,0.6) !important; }
.ui.text_red_dark_50, .text_red_dark_50 { color: rgba(157,4,8,0.5) !important; }
.ui.text_red_dark_40, .text_red_dark_40 { color: rgba(157,4,8,0.4) !important; }
.ui.text_red_dark_30, .text_red_dark_30 { color: rgba(157,4,8,0.3) !important; }
.ui.text_red_dark_20, .text_red_dark_20 { color: rgba(157,4,8,0.2) !important; }
.ui.text_red_dark_10, .text_red_dark_10 { color: rgba(157,4,8,0.1) !important; }

.ui.text_red_100, .text_red_100 { color: rgba(227,30,36,1) !important; }
.ui.text_red_90, .text_red_90 { color: rgba(227,30,36,0.9) !important; }
.ui.text_red_80, .text_red_80 { color: rgba(227,30,36,0.8) !important; }
.ui.text_red_70, .text_red_70 { color: rgba(227,30,36,0.7) !important; }
.ui.text_red_60, .text_red_60 { color: rgba(227,30,36,0.6) !important; }
.ui.text_red_50, .text_red_50 { color: rgba(227,30,36,0.5) !important; }
.ui.text_red_40, .text_red_40 { color: rgba(227,30,36,0.4) !important; }
.ui.text_red_30, .text_red_30 { color: rgba(227,30,36,0.3) !important; }
.ui.text_red_20, .text_red_20 { color: rgba(227,30,36,0.2) !important; }
.ui.text_red_10, .text_red_10 { color: rgba(227,30,36,0.1) !important; }

.ui.text_red_light_100, .text_red_light_100 { color: rgba(210,105,108,1) !important; }
.ui.text_red_light_90, .text_red_light_90 { color: rgba(210,105,108,0.9) !important; }
.ui.text_red_light_80, .text_red_light_80 { color: rgba(210,105,108,0.8) !important; }
.ui.text_red_light_70, .text_red_light_70 { color: rgba(210,105,108,0.7) !important; }
.ui.text_red_light_60, .text_red_light_60 { color: rgba(210,105,108,0.6) !important; }
.ui.text_red_light_50, .text_red_light_50 { color: rgba(210,105,108,0.5) !important; }
.ui.text_red_light_40, .text_red_light_40 { color: rgba(210,105,108,0.4) !important; }
.ui.text_red_light_30, .text_red_light_30 { color: rgba(210,105,108,0.3) !important; }
.ui.text_red_light_20, .text_red_light_20 { color: rgba(210,105,108,0.2) !important; }
.ui.text_red_light_10, .text_red_light_10 { color: rgba(210,105,108,0.1) !important; }

.ui.text_red_wash_100, .text_red_wash_100 { color: rgba(249,216,217,1) !important; }
.ui.text_red_wash_90, .text_red_wash_90 { color: rgba(249,216,217,0.9) !important; }
.ui.text_red_wash_80, .text_red_wash_80 { color: rgba(249,216,217,0.8) !important; }
.ui.text_red_wash_70, .text_red_wash_70 { color: rgba(249,216,217,0.7) !important; }
.ui.text_red_wash_60, .text_red_wash_60 { color: rgba(249,216,217,0.6) !important; }
.ui.text_red_wash_50, .text_red_wash_50 { color: rgba(249,216,217,0.5) !important; }
.ui.text_red_wash_40, .text_red_wash_40 { color: rgba(249,216,217,0.4) !important; }
.ui.text_red_wash_30, .text_red_wash_30 { color: rgba(249,216,217,0.3) !important; }
.ui.text_red_wash_20, .text_red_wash_20 { color: rgba(249,216,217,0.2) !important; }
.ui.text_red_wash_10, .text_red_wash_10 { color: rgba(249,216,217,0.1) !important; }

.ui.text_white_100, .text_white_100 { color: rgba(255,255,255,1) !important; }
.ui.text_white_90, .text_white_90 { color: rgba(255,255,255,0.9) !important; }
.ui.text_white_80, .text_white_80 { color: rgba(255,255,255,0.8) !important; }
.ui.text_white_70, .text_white_70 { color: rgba(255,255,255,0.7) !important; }
.ui.text_white_60, .text_white_60 { color: rgba(255,255,255,0.6) !important; }
.ui.text_white_50, .text_white_50 { color: rgba(255,255,255,0.5) !important; }
.ui.text_white_40, .text_white_40 { color: rgba(255,255,255,0.4) !important; }
.ui.text_white_30, .text_white_30 { color: rgba(255,255,255,0.3) !important; }
.ui.text_white_20, .text_white_20 { color: rgba(255,255,255,0.2) !important; }
.ui.text_white_10, .text_white_10 { color: rgba(255,255,255,0.1) !important; }

.ui.text_black_100, .text_black_100 { color: rgba(0,0,0,1) !important; }
.ui.text_black_90, .text_black_90 { color: rgba(0,0,0,0.9) !important; }
.ui.text_black_80, .text_black_80 { color: rgba(0,0,0,0.8) !important; }
.ui.text_black_70, .text_black_70 { color: rgba(0,0,0,0.7) !important; }
.ui.text_black_60, .text_black_60 { color: rgba(0,0,0,0.6) !important; }
.ui.text_black_50, .text_black_50 { color: rgba(0,0,0,0.5) !important; }
.ui.text_black_40, .text_black_40 { color: rgba(0,0,0,0.4) !important; }
.ui.text_black_30, .text_black_30 { color: rgba(0,0,0,0.3) !important; }
.ui.text_black_20, .text_black_20 { color: rgba(0,0,0,0.2) !important; }
.ui.text_black_10, .text_black_10 { color: rgba(0,0,0,0.1) !important; }

/* Text hover colours */

.ui.text_hover_slate_dark_100:hover, .text_hover_slate_dark_100:hover { color: rgba(24,0,1,1) !important; }
.ui.text_hover_slate_dark_90:hover, .text_hover_slate_dark_90:hover { color: rgba(24,0,1,0.9) !important; }
.ui.text_hover_slate_dark_80:hover, .text_hover_slate_dark_80:hover { color: rgba(24,0,1,0.8) !important; }
.ui.text_hover_slate_dark_70:hover, .text_hover_slate_dark_70:hover { color: rgba(24,0,1,0.7) !important; }
.ui.text_hover_slate_dark_60:hover, .text_hover_slate_dark_60:hover { color: rgba(24,0,1,0.6) !important; }
.ui.text_hover_slate_dark_50:hover, .text_hover_slate_dark_50:hover { color: rgba(24,0,1,0.5) !important; }
.ui.text_hover_slate_dark_40:hover, .text_hover_slate_dark_40:hover { color: rgba(24,0,1,0.4) !important; }
.ui.text_hover_slate_dark_30:hover, .text_hover_slate_dark_30:hover { color: rgba(24,0,1,0.3) !important; }
.ui.text_hover_slate_dark_20:hover, .text_hover_slate_dark_20:hover { color: rgba(24,0,1,0.2) !important; }
.ui.text_hover_slate_dark_10:hover, .text_hover_slate_dark_10:hover { color: rgba(24,0,1,0.1) !important; }

.ui.text_hover_slate_100:hover, .text_hover_slate_100:hover { color: rgba(80,61,62,1) !important; }
.ui.text_hover_slate_90:hover, .text_hover_slate_90:hover { color: rgba(80,61,62,0.9) !important; }
.ui.text_hover_slate_80:hover, .text_hover_slate_80:hover { color: rgba(80,61,62,0.8) !important; }
.ui.text_hover_slate_70:hover, .text_hover_slate_70:hover { color: rgba(80,61,62,0.7) !important; }
.ui.text_hover_slate_60:hover, .text_hover_slate_60:hover { color: rgba(80,61,62,0.6) !important; }
.ui.text_hover_slate_50:hover, .text_hover_slate_50:hover { color: rgba(80,61,62,0.5) !important; }
.ui.text_hover_slate_40:hover, .text_hover_slate_40:hover { color: rgba(80,61,62,0.4) !important; }
.ui.text_hover_slate_30:hover, .text_hover_slate_30:hover { color: rgba(80,61,62,0.3) !important; }
.ui.text_hover_slate_20:hover, .text_hover_slate_20:hover { color: rgba(80,61,62,0.2) !important; }
.ui.text_hover_slate_10:hover, .text_hover_slate_10:hover { color: rgba(80,61,62,0.1) !important; }

.ui.text_hover_slate_light_100:hover, .text_hover_slate_light_100:hover { color: rgba(136,121,122,1) !important; }
.ui.text_hover_slate_light_90:hover, .text_hover_slate_light_90:hover { color: rgba(136,121,122,0.9) !important; }
.ui.text_hover_slate_light_80:hover, .text_hover_slate_light_80:hover { color: rgba(136,121,122,0.8) !important; }
.ui.text_hover_slate_light_70:hover, .text_hover_slate_light_70:hover { color: rgba(136,121,122,0.7) !important; }
.ui.text_hover_slate_light_60:hover, .text_hover_slate_light_60:hover { color: rgba(136,121,122,0.6) !important; }
.ui.text_hover_slate_light_50:hover, .text_hover_slate_light_50:hover { color: rgba(136,121,122,0.5) !important; }
.ui.text_hover_slate_light_40:hover, .text_hover_slate_light_40:hover { color: rgba(136,121,122,0.4) !important; }
.ui.text_hover_slate_light_30:hover, .text_hover_slate_light_30:hover { color: rgba(136,121,122,0.3) !important; }
.ui.text_hover_slate_light_20:hover, .text_hover_slate_light_20:hover { color: rgba(136,121,122,0.2) !important; }
.ui.text_hover_slate_light_10:hover, .text_hover_slate_light_10:hover { color: rgba(136,121,122,0.1) !important; }

.ui.text_hover_slate_wash_100:hover, .text_hover_slate_wash_100:hover { color: rgba(224,213,214,1) !important; }
.ui.text_hover_slate_wash_90:hover, .text_hover_slate_wash_90:hover { color: rgba(224,213,214,0.9) !important; }
.ui.text_hover_slate_wash_80:hover, .text_hover_slate_wash_80:hover { color: rgba(224,213,214,0.8) !important; }
.ui.text_hover_slate_wash_70:hover, .text_hover_slate_wash_70:hover { color: rgba(224,213,214,0.7) !important; }
.ui.text_hover_slate_wash_60:hover, .text_hover_slate_wash_60:hover { color: rgba(224,213,214,0.6) !important; }
.ui.text_hover_slate_wash_50:hover, .text_hover_slate_wash_50:hover { color: rgba(224,213,214,0.5) !important; }
.ui.text_hover_slate_wash_40:hover, .text_hover_slate_wash_40:hover { color: rgba(224,213,214,0.4) !important; }
.ui.text_hover_slate_wash_30:hover, .text_hover_slate_wash_30:hover { color: rgba(224,213,214,0.3) !important; }
.ui.text_hover_slate_wash_20:hover, .text_hover_slate_wash_20:hover { color: rgba(224,213,214,0.2) !important; }
.ui.text_hover_slate_wash_10:hover, .text_hover_slate_wash_10:hover { color: rgba(224,213,214,0.1) !important; }

.ui.text_hover_red_dark_100:hover, .text_hover_red_dark_100:hover { color: rgba(157,4,8,1) !important; }
.ui.text_hover_red_dark_90:hover, .text_hover_red_dark_90:hover { color: rgba(157,4,8,0.9) !important; }
.ui.text_hover_red_dark_80:hover, .text_hover_red_dark_80:hover { color: rgba(157,4,8,0.8) !important; }
.ui.text_hover_red_dark_70:hover, .text_hover_red_dark_70:hover { color: rgba(157,4,8,0.7) !important; }
.ui.text_hover_red_dark_60:hover, .text_hover_red_dark_60:hover { color: rgba(157,4,8,0.6) !important; }
.ui.text_hover_red_dark_50:hover, .text_hover_red_dark_50:hover { color: rgba(157,4,8,0.5) !important; }
.ui.text_hover_red_dark_40:hover, .text_hover_red_dark_40:hover { color: rgba(157,4,8,0.4) !important; }
.ui.text_hover_red_dark_30:hover, .text_hover_red_dark_30:hover { color: rgba(157,4,8,0.3) !important; }
.ui.text_hover_red_dark_20:hover, .text_hover_red_dark_20:hover { color: rgba(157,4,8,0.2) !important; }
.ui.text_hover_red_dark_10:hover, .text_hover_red_dark_10:hover { color: rgba(157,4,8,0.1) !important; }

.ui.text_hover_red_100:hover, .text_hover_red_100:hover { color: rgba(227,30,36,1) !important; }
.ui.text_hover_red_90:hover, .text_hover_red_90:hover { color: rgba(227,30,36,0.9) !important; }
.ui.text_hover_red_80:hover, .text_hover_red_80:hover { color: rgba(227,30,36,0.8) !important; }
.ui.text_hover_red_70:hover, .text_hover_red_70:hover { color: rgba(227,30,36,0.7) !important; }
.ui.text_hover_red_60:hover, .text_hover_red_60:hover { color: rgba(227,30,36,0.6) !important; }
.ui.text_hover_red_50:hover, .text_hover_red_50:hover { color: rgba(227,30,36,0.5) !important; }
.ui.text_hover_red_40:hover, .text_hover_red_40:hover { color: rgba(227,30,36,0.4) !important; }
.ui.text_hover_red_30:hover, .text_hover_red_30:hover { color: rgba(227,30,36,0.3) !important; }
.ui.text_hover_red_20:hover, .text_hover_red_20:hover { color: rgba(227,30,36,0.2) !important; }
.ui.text_hover_red_10:hover, .text_hover_red_10:hover { color: rgba(227,30,36,0.1) !important; }

.ui.text_hover_red_light_100:hover, .text_hover_red_light_100:hover { color: rgba(210,105,108,1) !important; }
.ui.text_hover_red_light_90:hover, .text_hover_red_light_90:hover { color: rgba(210,105,108,0.9) !important; }
.ui.text_hover_red_light_80:hover, .text_hover_red_light_80:hover { color: rgba(210,105,108,0.8) !important; }
.ui.text_hover_red_light_70:hover, .text_hover_red_light_70:hover { color: rgba(210,105,108,0.7) !important; }
.ui.text_hover_red_light_60:hover, .text_hover_red_light_60:hover { color: rgba(210,105,108,0.6) !important; }
.ui.text_hover_red_light_50:hover, .text_hover_red_light_50:hover { color: rgba(210,105,108,0.5) !important; }
.ui.text_hover_red_light_40:hover, .text_hover_red_light_40:hover { color: rgba(210,105,108,0.4) !important; }
.ui.text_hover_red_light_30:hover, .text_hover_red_light_30:hover { color: rgba(210,105,108,0.3) !important; }
.ui.text_hover_red_light_20:hover, .text_hover_red_light_20:hover { color: rgba(210,105,108,0.2) !important; }
.ui.text_hover_red_light_10:hover, .text_hover_red_light_10:hover { color: rgba(210,105,108,0.1) !important; }

.ui.text_hover_red_wash_100:hover, .text_hover_red_wash_100:hover { color: rgba(249,216,217,1) !important; }
.ui.text_hover_red_wash_90:hover, .text_hover_red_wash_90:hover { color: rgba(249,216,217,0.9) !important; }
.ui.text_hover_red_wash_80:hover, .text_hover_red_wash_80:hover { color: rgba(249,216,217,0.8) !important; }
.ui.text_hover_red_wash_70:hover, .text_hover_red_wash_70:hover { color: rgba(249,216,217,0.7) !important; }
.ui.text_hover_red_wash_60:hover, .text_hover_red_wash_60:hover { color: rgba(249,216,217,0.6) !important; }
.ui.text_hover_red_wash_50:hover, .text_hover_red_wash_50:hover { color: rgba(249,216,217,0.5) !important; }
.ui.text_hover_red_wash_40:hover, .text_hover_red_wash_40:hover { color: rgba(249,216,217,0.4) !important; }
.ui.text_hover_red_wash_30:hover, .text_hover_red_wash_30:hover { color: rgba(249,216,217,0.3) !important; }
.ui.text_hover_red_wash_20:hover, .text_hover_red_wash_20:hover { color: rgba(249,216,217,0.2) !important; }
.ui.text_hover_red_wash_10:hover, .text_hover_red_wash_10:hover { color: rgba(249,216,217,0.1) !important; }

.ui.text_hover_white_100:hover, .text_hover_white_100:hover { color: rgba(255,255,255,1) !important; }
.ui.text_hover_white_90:hover, .text_hover_white_90:hover { color: rgba(255,255,255,0.9) !important; }
.ui.text_hover_white_80:hover, .text_hover_white_80:hover { color: rgba(255,255,255,0.8) !important; }
.ui.text_hover_white_70:hover, .text_hover_white_70:hover { color: rgba(255,255,255,0.7) !important; }
.ui.text_hover_white_60:hover, .text_hover_white_60:hover { color: rgba(255,255,255,0.6) !important; }
.ui.text_hover_white_50:hover, .text_hover_white_50:hover { color: rgba(255,255,255,0.5) !important; }
.ui.text_hover_white_40:hover, .text_hover_white_40:hover { color: rgba(255,255,255,0.4) !important; }
.ui.text_hover_white_30:hover, .text_hover_white_30:hover { color: rgba(255,255,255,0.3) !important; }
.ui.text_hover_white_20:hover, .text_hover_white_20:hover { color: rgba(255,255,255,0.2) !important; }
.ui.text_hover_white_10:hover, .text_hover_white_10:hover { color: rgba(255,255,255,0.1) !important; }

.ui.text_hover_black_100:hover, .text_hover_black_100:hover { color: rgba(0,0,0,1) !important; }
.ui.text_hover_black_90:hover, .text_hover_black_90:hover { color: rgba(0,0,0,0.9) !important; }
.ui.text_hover_black_80:hover, .text_hover_black_80:hover { color: rgba(0,0,0,0.8) !important; }
.ui.text_hover_black_70:hover, .text_hover_black_70:hover { color: rgba(0,0,0,0.7) !important; }
.ui.text_hover_black_60:hover, .text_hover_black_60:hover { color: rgba(0,0,0,0.6) !important; }
.ui.text_hover_black_50:hover, .text_hover_black_50:hover { color: rgba(0,0,0,0.5) !important; }
.ui.text_hover_black_40:hover, .text_hover_black_40:hover { color: rgba(0,0,0,0.4) !important; }
.ui.text_hover_black_30:hover, .text_hover_black_30:hover { color: rgba(0,0,0,0.3) !important; }
.ui.text_hover_black_20:hover, .text_hover_black_20:hover { color: rgba(0,0,0,0.2) !important; }
.ui.text_hover_black_10:hover, .text_hover_black_10:hover { color: rgba(0,0,0,0.1) !important; }


/* Border colours */

.ui.border_slate_dark_100, .border_slate_dark_100 { border-color: rgba(24,0,1,1) !important; }
.ui.border_slate_dark_90, .border_slate_dark_90 { border-color: rgba(24,0,1,0.9) !important; }
.ui.border_slate_dark_80, .border_slate_dark_80 { border-color: rgba(24,0,1,0.8) !important; }
.ui.border_slate_dark_70, .border_slate_dark_70 { border-color: rgba(24,0,1,0.7) !important; }
.ui.border_slate_dark_60, .border_slate_dark_60 { border-color: rgba(24,0,1,0.6) !important; }
.ui.border_slate_dark_50, .border_slate_dark_50 { border-color: rgba(24,0,1,0.5) !important; }
.ui.border_slate_dark_40, .border_slate_dark_40 { border-color: rgba(24,0,1,0.4) !important; }
.ui.border_slate_dark_30, .border_slate_dark_30 { border-color: rgba(24,0,1,0.3) !important; }
.ui.border_slate_dark_20, .border_slate_dark_20 { border-color: rgba(24,0,1,0.2) !important; }
.ui.border_slate_dark_10, .border_slate_dark_10 { border-color: rgba(24,0,1,0.1) !important; }

.ui.border_slate_100, .border_slate_100 { border-color: rgba(80,61,62,1) !important; }
.ui.border_slate_90, .border_slate_90 { border-color: rgba(80,61,62,0.9) !important; }
.ui.border_slate_80, .border_slate_80 { border-color: rgba(80,61,62,0.8) !important; }
.ui.border_slate_70, .border_slate_70 { border-color: rgba(80,61,62,0.7) !important; }
.ui.border_slate_60, .border_slate_60 { border-color: rgba(80,61,62,0.6) !important; }
.ui.border_slate_50, .border_slate_50 { border-color: rgba(80,61,62,0.5) !important; }
.ui.border_slate_40, .border_slate_40 { border-color: rgba(80,61,62,0.4) !important; }
.ui.border_slate_30, .border_slate_30 { border-color: rgba(80,61,62,0.3) !important; }
.ui.border_slate_20, .border_slate_20 { border-color: rgba(80,61,62,0.2) !important; }
.ui.border_slate_10, .border_slate_10 { border-color: rgba(80,61,62,0.1) !important; }

.ui.border_slate_light_100, .border_slate_light_100 { border-color: rgba(136,121,122,1) !important; }
.ui.border_slate_light_90, .border_slate_light_90 { border-color: rgba(136,121,122,0.9) !important; }
.ui.border_slate_light_80, .border_slate_light_80 { border-color: rgba(136,121,122,0.8) !important; }
.ui.border_slate_light_70, .border_slate_light_70 { border-color: rgba(136,121,122,0.7) !important; }
.ui.border_slate_light_60, .border_slate_light_60 { border-color: rgba(136,121,122,0.6) !important; }
.ui.border_slate_light_50, .border_slate_light_50 { border-color: rgba(136,121,122,0.5) !important; }
.ui.border_slate_light_40, .border_slate_light_40 { border-color: rgba(136,121,122,0.4) !important; }
.ui.border_slate_light_30, .border_slate_light_30 { border-color: rgba(136,121,122,0.3) !important; }
.ui.border_slate_light_20, .border_slate_light_20 { border-color: rgba(136,121,122,0.2) !important; }
.ui.border_slate_light_10, .border_slate_light_10 { border-color: rgba(136,121,122,0.1) !important; }

.ui.border_slate_wash_100, .border_slate_wash_100 { border-color: rgba(224,213,214,1) !important; }
.ui.border_slate_wash_90, .border_slate_wash_90 { border-color: rgba(224,213,214,0.9) !important; }
.ui.border_slate_wash_80, .border_slate_wash_80 { border-color: rgba(224,213,214,0.8) !important; }
.ui.border_slate_wash_70, .border_slate_wash_70 { border-color: rgba(224,213,214,0.7) !important; }
.ui.border_slate_wash_60, .border_slate_wash_60 { border-color: rgba(224,213,214,0.6) !important; }
.ui.border_slate_wash_50, .border_slate_wash_50 { border-color: rgba(224,213,214,0.5) !important; }
.ui.border_slate_wash_40, .border_slate_wash_40 { border-color: rgba(224,213,214,0.4) !important; }
.ui.border_slate_wash_30, .border_slate_wash_30 { border-color: rgba(224,213,214,0.3) !important; }
.ui.border_slate_wash_20, .border_slate_wash_20 { border-color: rgba(224,213,214,0.2) !important; }
.ui.border_slate_wash_10, .border_slate_wash_10 { border-color: rgba(224,213,214,0.1) !important; }

.ui.border_red_dark_100, .border_red_dark_100 { border-color: rgba(157,4,8,1) !important; }
.ui.border_red_dark_90, .border_red_dark_90 { border-color: rgba(157,4,8,0.9) !important; }
.ui.border_red_dark_80, .border_red_dark_80 { border-color: rgba(157,4,8,0.8) !important; }
.ui.border_red_dark_70, .border_red_dark_70 { border-color: rgba(157,4,8,0.7) !important; }
.ui.border_red_dark_60, .border_red_dark_60 { border-color: rgba(157,4,8,0.6) !important; }
.ui.border_red_dark_50, .border_red_dark_50 { border-color: rgba(157,4,8,0.5) !important; }
.ui.border_red_dark_40, .border_red_dark_40 { border-color: rgba(157,4,8,0.4) !important; }
.ui.border_red_dark_30, .border_red_dark_30 { border-color: rgba(157,4,8,0.3) !important; }
.ui.border_red_dark_20, .border_red_dark_20 { border-color: rgba(157,4,8,0.2) !important; }
.ui.border_red_dark_10, .border_red_dark_10 { border-color: rgba(157,4,8,0.1) !important; }

.ui.border_red_100, .border_red_100 { border-color: rgba(227,30,36,1) !important; }
.ui.border_red_90, .border_red_90 { border-color: rgba(227,30,36,0.9) !important; }
.ui.border_red_80, .border_red_80 { border-color: rgba(227,30,36,0.8) !important; }
.ui.border_red_70, .border_red_70 { border-color: rgba(227,30,36,0.7) !important; }
.ui.border_red_60, .border_red_60 { border-color: rgba(227,30,36,0.6) !important; }
.ui.border_red_50, .border_red_50 { border-color: rgba(227,30,36,0.5) !important; }
.ui.border_red_40, .border_red_40 { border-color: rgba(227,30,36,0.4) !important; }
.ui.border_red_30, .border_red_30 { border-color: rgba(227,30,36,0.3) !important; }
.ui.border_red_20, .border_red_20 { border-color: rgba(227,30,36,0.2) !important; }
.ui.border_red_10, .border_red_10 { border-color: rgba(227,30,36,0.1) !important; }

.ui.border_red_light_100, .border_red_light_100 { border-color: rgba(210,105,108,1) !important; }
.ui.border_red_light_90, .border_red_light_90 { border-color: rgba(210,105,108,0.9) !important; }
.ui.border_red_light_80, .border_red_light_80 { border-color: rgba(210,105,108,0.8) !important; }
.ui.border_red_light_70, .border_red_light_70 { border-color: rgba(210,105,108,0.7) !important; }
.ui.border_red_light_60, .border_red_light_60 { border-color: rgba(210,105,108,0.6) !important; }
.ui.border_red_light_50, .border_red_light_50 { border-color: rgba(210,105,108,0.5) !important; }
.ui.border_red_light_40, .border_red_light_40 { border-color: rgba(210,105,108,0.4) !important; }
.ui.border_red_light_30, .border_red_light_30 { border-color: rgba(210,105,108,0.3) !important; }
.ui.border_red_light_20, .border_red_light_20 { border-color: rgba(210,105,108,0.2) !important; }
.ui.border_red_light_10, .border_red_light_10 { border-color: rgba(210,105,108,0.1) !important; }

.ui.border_red_wash_100, .border_red_wash_100 { border-color: rgba(249,216,217,1) !important; }
.ui.border_red_wash_90, .border_red_wash_90 { border-color: rgba(249,216,217,0.9) !important; }
.ui.border_red_wash_80, .border_red_wash_80 { border-color: rgba(249,216,217,0.8) !important; }
.ui.border_red_wash_70, .border_red_wash_70 { border-color: rgba(249,216,217,0.7) !important; }
.ui.border_red_wash_60, .border_red_wash_60 { border-color: rgba(249,216,217,0.6) !important; }
.ui.border_red_wash_50, .border_red_wash_50 { border-color: rgba(249,216,217,0.5) !important; }
.ui.border_red_wash_40, .border_red_wash_40 { border-color: rgba(249,216,217,0.4) !important; }
.ui.border_red_wash_30, .border_red_wash_30 { border-color: rgba(249,216,217,0.3) !important; }
.ui.border_red_wash_20, .border_red_wash_20 { border-color: rgba(249,216,217,0.2) !important; }
.ui.border_red_wash_10, .border_red_wash_10 { border-color: rgba(249,216,217,0.1) !important; }

.ui.border_white_100, .border_white_100 { border-color: rgba(255,255,255,1) !important; }
.ui.border_white_90, .border_white_90 { border-color: rgba(255,255,255,0.9) !important; }
.ui.border_white_80, .border_white_80 { border-color: rgba(255,255,255,0.8) !important; }
.ui.border_white_70, .border_white_70 { border-color: rgba(255,255,255,0.7) !important; }
.ui.border_white_60, .border_white_60 { border-color: rgba(255,255,255,0.6) !important; }
.ui.border_white_50, .border_white_50 { border-color: rgba(255,255,255,0.5) !important; }
.ui.border_white_40, .border_white_40 { border-color: rgba(255,255,255,0.4) !important; }
.ui.border_white_30, .border_white_30 { border-color: rgba(255,255,255,0.3) !important; }
.ui.border_white_20, .border_white_20 { border-color: rgba(255,255,255,0.2) !important; }
.ui.border_white_10, .border_white_10 { border-color: rgba(255,255,255,0.1) !important; }

.ui.border_black_100, .border_black_100 { border-color: rgba(0,0,0,1) !important; }
.ui.border_black_90, .border_black_90 { border-color: rgba(0,0,0,0.9) !important; }
.ui.border_black_80, .border_black_80 { border-color: rgba(0,0,0,0.8) !important; }
.ui.border_black_70, .border_black_70 { border-color: rgba(0,0,0,0.7) !important; }
.ui.border_black_60, .border_black_60 { border-color: rgba(0,0,0,0.6) !important; }
.ui.border_black_50, .border_black_50 { border-color: rgba(0,0,0,0.5) !important; }
.ui.border_black_40, .border_black_40 { border-color: rgba(0,0,0,0.4) !important; }
.ui.border_black_30, .border_black_30 { border-color: rgba(0,0,0,0.3) !important; }
.ui.border_black_20, .border_black_20 { border-color: rgba(0,0,0,0.2) !important; }
.ui.border_black_10, .border_black_10 { border-color: rgba(0,0,0,0.1) !important; }

/* Border hover colours */

.ui.border_hover_slate_dark_100:hover, .border_hover_slate_dark_100:hover { border-color: rgba(24,0,1,1) !important; }
.ui.border_hover_slate_dark_90:hover, .border_hover_slate_dark_90:hover { border-color: rgba(24,0,1,0.9) !important; }
.ui.border_hover_slate_dark_80:hover, .border_hover_slate_dark_80:hover { border-color: rgba(24,0,1,0.8) !important; }
.ui.border_hover_slate_dark_70:hover, .border_hover_slate_dark_70:hover { border-color: rgba(24,0,1,0.7) !important; }
.ui.border_hover_slate_dark_60:hover, .border_hover_slate_dark_60:hover { border-color: rgba(24,0,1,0.6) !important; }
.ui.border_hover_slate_dark_50:hover, .border_hover_slate_dark_50:hover { border-color: rgba(24,0,1,0.5) !important; }
.ui.border_hover_slate_dark_40:hover, .border_hover_slate_dark_40:hover { border-color: rgba(24,0,1,0.4) !important; }
.ui.border_hover_slate_dark_30:hover, .border_hover_slate_dark_30:hover { border-color: rgba(24,0,1,0.3) !important; }
.ui.border_hover_slate_dark_20:hover, .border_hover_slate_dark_20:hover { border-color: rgba(24,0,1,0.2) !important; }
.ui.border_hover_slate_dark_10:hover, .border_hover_slate_dark_10:hover { border-color: rgba(24,0,1,0.1) !important; }

.ui.border_hover_slate_100:hover, .border_hover_slate_100:hover { border-color: rgba(80,61,62,1) !important; }
.ui.border_hover_slate_90:hover, .border_hover_slate_90:hover { border-color: rgba(80,61,62,0.9) !important; }
.ui.border_hover_slate_80:hover, .border_hover_slate_80:hover { border-color: rgba(80,61,62,0.8) !important; }
.ui.border_hover_slate_70:hover, .border_hover_slate_70:hover { border-color: rgba(80,61,62,0.7) !important; }
.ui.border_hover_slate_60:hover, .border_hover_slate_60:hover { border-color: rgba(80,61,62,0.6) !important; }
.ui.border_hover_slate_50:hover, .border_hover_slate_50:hover { border-color: rgba(80,61,62,0.5) !important; }
.ui.border_hover_slate_40:hover, .border_hover_slate_40:hover { border-color: rgba(80,61,62,0.4) !important; }
.ui.border_hover_slate_30:hover, .border_hover_slate_30:hover { border-color: rgba(80,61,62,0.3) !important; }
.ui.border_hover_slate_20:hover, .border_hover_slate_20:hover { border-color: rgba(80,61,62,0.2) !important; }
.ui.border_hover_slate_10:hover, .border_hover_slate_10:hover { border-color: rgba(80,61,62,0.1) !important; }

.ui.border_hover_slate_light_100:hover, .border_hover_slate_light_100:hover { border-color: rgba(136,121,122,1) !important; }
.ui.border_hover_slate_light_90:hover, .border_hover_slate_light_90:hover { border-color: rgba(136,121,122,0.9) !important; }
.ui.border_hover_slate_light_80:hover, .border_hover_slate_light_80:hover { border-color: rgba(136,121,122,0.8) !important; }
.ui.border_hover_slate_light_70:hover, .border_hover_slate_light_70:hover { border-color: rgba(136,121,122,0.7) !important; }
.ui.border_hover_slate_light_60:hover, .border_hover_slate_light_60:hover { border-color: rgba(136,121,122,0.6) !important; }
.ui.border_hover_slate_light_50:hover, .border_hover_slate_light_50:hover { border-color: rgba(136,121,122,0.5) !important; }
.ui.border_hover_slate_light_40:hover, .border_hover_slate_light_40:hover { border-color: rgba(136,121,122,0.4) !important; }
.ui.border_hover_slate_light_30:hover, .border_hover_slate_light_30:hover { border-color: rgba(136,121,122,0.3) !important; }
.ui.border_hover_slate_light_20:hover, .border_hover_slate_light_20:hover { border-color: rgba(136,121,122,0.2) !important; }
.ui.border_hover_slate_light_10:hover, .border_hover_slate_light_10:hover { border-color: rgba(136,121,122,0.1) !important; }

.ui.border_hover_slate_wash_100:hover, .border_hover_slate_wash_100:hover { border-color: rgba(224,213,214,1) !important; }
.ui.border_hover_slate_wash_90:hover, .border_hover_slate_wash_90:hover { border-color: rgba(224,213,214,0.9) !important; }
.ui.border_hover_slate_wash_80:hover, .border_hover_slate_wash_80:hover { border-color: rgba(224,213,214,0.8) !important; }
.ui.border_hover_slate_wash_70:hover, .border_hover_slate_wash_70:hover { border-color: rgba(224,213,214,0.7) !important; }
.ui.border_hover_slate_wash_60:hover, .border_hover_slate_wash_60:hover { border-color: rgba(224,213,214,0.6) !important; }
.ui.border_hover_slate_wash_50:hover, .border_hover_slate_wash_50:hover { border-color: rgba(224,213,214,0.5) !important; }
.ui.border_hover_slate_wash_40:hover, .border_hover_slate_wash_40:hover { border-color: rgba(224,213,214,0.4) !important; }
.ui.border_hover_slate_wash_30:hover, .border_hover_slate_wash_30:hover { border-color: rgba(224,213,214,0.3) !important; }
.ui.border_hover_slate_wash_20:hover, .border_hover_slate_wash_20:hover { border-color: rgba(224,213,214,0.2) !important; }
.ui.border_hover_slate_wash_10:hover, .border_hover_slate_wash_10:hover { border-color: rgba(224,213,214,0.1) !important; }

.ui.border_hover_red_dark_100:hover, .border_hover_red_dark_100:hover { border-color: rgba(157,4,8,1) !important; }
.ui.border_hover_red_dark_90:hover, .border_hover_red_dark_90:hover { border-color: rgba(157,4,8,0.9) !important; }
.ui.border_hover_red_dark_80:hover, .border_hover_red_dark_80:hover { border-color: rgba(157,4,8,0.8) !important; }
.ui.border_hover_red_dark_70:hover, .border_hover_red_dark_70:hover { border-color: rgba(157,4,8,0.7) !important; }
.ui.border_hover_red_dark_60:hover, .border_hover_red_dark_60:hover { border-color: rgba(157,4,8,0.6) !important; }
.ui.border_hover_red_dark_50:hover, .border_hover_red_dark_50:hover { border-color: rgba(157,4,8,0.5) !important; }
.ui.border_hover_red_dark_40:hover, .border_hover_red_dark_40:hover { border-color: rgba(157,4,8,0.4) !important; }
.ui.border_hover_red_dark_30:hover, .border_hover_red_dark_30:hover { border-color: rgba(157,4,8,0.3) !important; }
.ui.border_hover_red_dark_20:hover, .border_hover_red_dark_20:hover { border-color: rgba(157,4,8,0.2) !important; }
.ui.border_hover_red_dark_10:hover, .border_hover_red_dark_10:hover { border-color: rgba(157,4,8,0.1) !important; }

.ui.border_hover_red_100:hover, .border_hover_red_100:hover { border-color: rgba(227,30,36,1) !important; }
.ui.border_hover_red_90:hover, .border_hover_red_90:hover { border-color: rgba(227,30,36,0.9) !important; }
.ui.border_hover_red_80:hover, .border_hover_red_80:hover { border-color: rgba(227,30,36,0.8) !important; }
.ui.border_hover_red_70:hover, .border_hover_red_70:hover { border-color: rgba(227,30,36,0.7) !important; }
.ui.border_hover_red_60:hover, .border_hover_red_60:hover { border-color: rgba(227,30,36,0.6) !important; }
.ui.border_hover_red_50:hover, .border_hover_red_50:hover { border-color: rgba(227,30,36,0.5) !important; }
.ui.border_hover_red_40:hover, .border_hover_red_40:hover { border-color: rgba(227,30,36,0.4) !important; }
.ui.border_hover_red_30:hover, .border_hover_red_30:hover { border-color: rgba(227,30,36,0.3) !important; }
.ui.border_hover_red_20:hover, .border_hover_red_20:hover { border-color: rgba(227,30,36,0.2) !important; }
.ui.border_hover_red_10:hover, .border_hover_red_10:hover { border-color: rgba(227,30,36,0.1) !important; }

.ui.border_hover_red_light_100:hover, .border_hover_red_light_100:hover { border-color: rgba(210,105,108,1) !important; }
.ui.border_hover_red_light_90:hover, .border_hover_red_light_90:hover { border-color: rgba(210,105,108,0.9) !important; }
.ui.border_hover_red_light_80:hover, .border_hover_red_light_80:hover { border-color: rgba(210,105,108,0.8) !important; }
.ui.border_hover_red_light_70:hover, .border_hover_red_light_70:hover { border-color: rgba(210,105,108,0.7) !important; }
.ui.border_hover_red_light_60:hover, .border_hover_red_light_60:hover { border-color: rgba(210,105,108,0.6) !important; }
.ui.border_hover_red_light_50:hover, .border_hover_red_light_50:hover { border-color: rgba(210,105,108,0.5) !important; }
.ui.border_hover_red_light_40:hover, .border_hover_red_light_40:hover { border-color: rgba(210,105,108,0.4) !important; }
.ui.border_hover_red_light_30:hover, .border_hover_red_light_30:hover { border-color: rgba(210,105,108,0.3) !important; }
.ui.border_hover_red_light_20:hover, .border_hover_red_light_20:hover { border-color: rgba(210,105,108,0.2) !important; }
.ui.border_hover_red_light_10:hover, .border_hover_red_light_10:hover { border-color: rgba(210,105,108,0.1) !important; }

.ui.border_hover_red_wash_100:hover, .border_hover_red_wash_100:hover { border-color: rgba(249,216,217,1) !important; }
.ui.border_hover_red_wash_90:hover, .border_hover_red_wash_90:hover { border-color: rgba(249,216,217,0.9) !important; }
.ui.border_hover_red_wash_80:hover, .border_hover_red_wash_80:hover { border-color: rgba(249,216,217,0.8) !important; }
.ui.border_hover_red_wash_70:hover, .border_hover_red_wash_70:hover { border-color: rgba(249,216,217,0.7) !important; }
.ui.border_hover_red_wash_60:hover, .border_hover_red_wash_60:hover { border-color: rgba(249,216,217,0.6) !important; }
.ui.border_hover_red_wash_50:hover, .border_hover_red_wash_50:hover { border-color: rgba(249,216,217,0.5) !important; }
.ui.border_hover_red_wash_40:hover, .border_hover_red_wash_40:hover { border-color: rgba(249,216,217,0.4) !important; }
.ui.border_hover_red_wash_30:hover, .border_hover_red_wash_30:hover { border-color: rgba(249,216,217,0.3) !important; }
.ui.border_hover_red_wash_20:hover, .border_hover_red_wash_20:hover { border-color: rgba(249,216,217,0.2) !important; }
.ui.border_hover_red_wash_10:hover, .border_hover_red_wash_10:hover { border-color: rgba(249,216,217,0.1) !important; }

.ui.border_hover_white_100:hover, .border_hover_white_100:hover { border-color: rgba(255,255,255,1) !important; }
.ui.border_hover_white_90:hover, .border_hover_white_90:hover { border-color: rgba(255,255,255,0.9) !important; }
.ui.border_hover_white_80:hover, .border_hover_white_80:hover { border-color: rgba(255,255,255,0.8) !important; }
.ui.border_hover_white_70:hover, .border_hover_white_70:hover { border-color: rgba(255,255,255,0.7) !important; }
.ui.border_hover_white_60:hover, .border_hover_white_60:hover { border-color: rgba(255,255,255,0.6) !important; }
.ui.border_hover_white_50:hover, .border_hover_white_50:hover { border-color: rgba(255,255,255,0.5) !important; }
.ui.border_hover_white_40:hover, .border_hover_white_40:hover { border-color: rgba(255,255,255,0.4) !important; }
.ui.border_hover_white_30:hover, .border_hover_white_30:hover { border-color: rgba(255,255,255,0.3) !important; }
.ui.border_hover_white_20:hover, .border_hover_white_20:hover { border-color: rgba(255,255,255,0.2) !important; }
.ui.border_hover_white_10:hover, .border_hover_white_10:hover { border-color: rgba(255,255,255,0.1) !important; }

.ui.border_hover_black_100:hover, .border_hover_black_100:hover { border-color: rgba(0,0,0,1) !important; }
.ui.border_hover_black_90:hover, .border_hover_black_90:hover { border-color: rgba(0,0,0,0.9) !important; }
.ui.border_hover_black_80:hover, .border_hover_black_80:hover { border-color: rgba(0,0,0,0.8) !important; }
.ui.border_hover_black_70:hover, .border_hover_black_70:hover { border-color: rgba(0,0,0,0.7) !important; }
.ui.border_hover_black_60:hover, .border_hover_black_60:hover { border-color: rgba(0,0,0,0.6) !important; }
.ui.border_hover_black_50:hover, .border_hover_black_50:hover { border-color: rgba(0,0,0,0.5) !important; }
.ui.border_hover_black_40:hover, .border_hover_black_40:hover { border-color: rgba(0,0,0,0.4) !important; }
.ui.border_hover_black_30:hover, .border_hover_black_30:hover { border-color: rgba(0,0,0,0.3) !important; }
.ui.border_hover_black_20:hover, .border_hover_black_20:hover { border-color: rgba(0,0,0,0.2) !important; }
.ui.border_hover_black_10:hover, .border_hover_black_10:hover { border-color: rgba(0,0,0,0.1) !important; }


/*----------------------------------------------------------HOVER CLASSES STYLES----------------------------------------------------------*/

@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    -ms-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    -ms-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    -ms-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    -ms-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    -ms-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    -ms-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    -ms-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    -ms-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    -ms-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    -ms-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    -ms-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    -ms-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    -ms-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    -ms-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    -ms-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    -ms-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    -ms-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -ms-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    -ms-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    -ms-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    -ms-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    -ms-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    -ms-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    -ms-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    -ms-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    -ms-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    -ms-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    -ms-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    -ms-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    -ms-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    -ms-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    -ms-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -ms-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    -ms-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    -ms-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    -ms-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    -ms-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    -ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    -ms-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    -ms-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    -ms-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    -ms-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    -ms-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    -ms-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    -ms-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    -ms-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    -ms-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    -ms-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    -ms-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -ms-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -ms-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -ms-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -ms-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -ms-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -ms-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -ms-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    -ms-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    -ms-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -ms-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes swipe {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  50% {
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
}


	/*ANIMATION TIMINGS*/
	.dur0_1 { -webkit-animation-duration: 0.1s; -moz-animation-duration: 0.1s; -o-animation-duration: 0.1s; animation-duration: 0.1s; }
	.dur0_2 { -webkit-animation-duration: 0.2s; -moz-animation-duration: 0.2s; -o-animation-duration: 0.2s; animation-duration: 0.2s; }
	.dur0_3 { -webkit-animation-duration: 0.3s; -moz-animation-duration: 0.3s; -o-animation-duration: 0.3s; animation-duration: 0.3s; }
	.dur0_4 { -webkit-animation-duration: 0.4s; -moz-animation-duration: 0.4s; -o-animation-duration: 0.4s; animation-duration: 0.4s; }
	.dur0_5 { -webkit-animation-duration: 0.5s; -moz-animation-duration: 0.5s; -o-animation-duration: 0.5s; animation-duration: 0.5s; }
	.dur0_6 { -webkit-animation-duration: 0.6s; -moz-animation-duration: 0.6s; -o-animation-duration: 0.6s; animation-duration: 0.6s; }
	.dur0_7 { -webkit-animation-duration: 0.7s; -moz-animation-duration: 0.7s; -o-animation-duration: 0.7s; animation-duration: 0.7s; }
	.dur0_8 { -webkit-animation-duration: 0.8s; -moz-animation-duration: 0.8s; -o-animation-duration: 0.8s; animation-duration: 0.8s; }
	.dur0_9 { -webkit-animation-duration: 0.9s; -moz-animation-duration: 0.9s; -o-animation-duration: 0.9s; animation-duration: 0.9s; }
	.dur1 { -webkit-animation-duration: 1s; -moz-animation-duration: 1s; -o-animation-duration: 1s; animation-duration: 1s; }
	.dur1_1 { -webkit-animation-duration: 1.1s; -moz-animation-duration: 1.1s; -o-animation-duration: 1.1s; animation-duration: 1.1s; }
	.dur1_2 { -webkit-animation-duration: 1.2s; -moz-animation-duration: 1.2s; -o-animation-duration: 1.2s; animation-duration: 1.2s; }
	.dur1_3 { -webkit-animation-duration: 1.3s; -moz-animation-duration: 1.3s; -o-animation-duration: 1.3s; animation-duration: 1.3s; }
	.dur1_4 { -webkit-animation-duration: 1.4s; -moz-animation-duration: 1.4s; -o-animation-duration: 1.4s; animation-duration: 1.4s; }
	.dur1_5 { -webkit-animation-duration: 1.5s; -moz-animation-duration: 1.5s; -o-animation-duration: 1.5s; animation-duration: 1.5s; }
	.dur1_6 { -webkit-animation-duration: 1.6s; -moz-animation-duration: 1.6s; -o-animation-duration: 1.6s; animation-duration: 1.6s; }
	.dur1_7 { -webkit-animation-duration: 1.7s; -moz-animation-duration: 1.7s; -o-animation-duration: 1.7s; animation-duration: 1.7s; }
	.dur1_8 { -webkit-animation-duration: 1.8s; -moz-animation-duration: 1.8s; -o-animation-duration: 1.8s; animation-duration: 1.8s; }
	.dur1_9 { -webkit-animation-duration: 1.9s; -moz-animation-duration: 1.9s; -o-animation-duration: 1.9s; animation-duration: 1.9s; }
	.dur2 { -webkit-animation-duration: 2s; -moz-animation-duration: 2s; -o-animation-duration: 2s; animation-duration: 2s; }
	.dur2_5 { -webkit-animation-duration: 2.5s; -moz-animation-duration: 2.5s; -o-animation-duration: 2.5s; animation-duration: 2.5s; }
	.dur3 { -webkit-animation-duration: 3s; -moz-animation-duration: 3s; -o-animation-duration: 3s; animation-duration: 3s; }
	.dur4 { -webkit-animation-duration: 4s; -moz-animation-duration: 4s; -o-animation-duration: 4s; animation-duration: 4s; }
	.dur5 { -webkit-animation-duration: 5s; -moz-animation-duration: 5s; -o-animation-duration: 5s; animation-duration: 5s; }
	.dur10 { -webkit-animation-duration: 10s; -moz-animation-duration: 10s; -o-animation-duration: 10s; animation-duration: 10s; }

	/*ANIMATION DELAYS*/
	.del0_2 { -webkit-animation-delay: 0.2s; -moz-animation-delay: 0.2s; -o-animation-delay: 0.2s; animation-delay: 0.2s; }
	.del0_4 { -webkit-animation-delay: 0.4s; -moz-animation-delay: 0.4s; -o-animation-delay: 0.4s; animation-delay: 0.4s; }
	.del0_6 { -webkit-animation-delay: 0.6s; -moz-animation-delay: 0.6s; -o-animation-delay: 0.6s; animation-delay: 0.6s; }
	.del0_8 { -webkit-animation-delay: 0.8s; -moz-animation-delay: 0.8s; -o-animation-delay: 0.8s; animation-delay: 0.8s; }
	.del0_5 { -webkit-animation-delay: 0.5s; -moz-animation-delay: 0.5s; -o-animation-delay: 0.5s; animation-delay: 0.5s; }
	.del1 { -webkit-animation-delay: 1s; -moz-animation-delay: 1s; -o-animation-delay: 1s; animation-delay: 1s; }
	.del1_5 { -webkit-animation-delay: 1.5s; -moz-animation-delay: 1.5s; -o-animation-delay: 1.5s; animation-delay: 1.5s; }
	.del2 { -webkit-animation-delay: 2s; -moz-animation-delay: 2s; -o-animation-delay: 2s; animation-delay: 2s; }
	.del2_2 { -webkit-animation-delay: 2.2s; -moz-animation-delay: 2.2s; -o-animation-delay: 2.2s; animation-delay: 2.2s; }
	.del2_4 { -webkit-animation-delay: 2.4s; -moz-animation-delay: 2.4s; -o-animation-delay: 2.4s; animation-delay: 2.4s; }
	.del2_6 { -webkit-animation-delay: 2.6s; -moz-animation-delay: 2.6s; -o-animation-delay: 2.6s; animation-delay: 2.6s; }
	.del2_8 { -webkit-animation-delay: 2.8s; -moz-animation-delay: 2.8s; -o-animation-delay: 2.8s; animation-delay: 2.8s; }
	.del2_5 { -webkit-animation-delay: 2.5s; -moz-animation-delay: 2.5s; -o-animation-delay: 2.5s; animation-delay: 2.5s; }
	.del3 { -webkit-animation-delay: 3s; -moz-animation-delay: 3s; -o-animation-delay: 3s; animation-delay: 3s; }
	.del4 { -webkit-animation-delay: 4s; -moz-animation-delay: 4s; -o-animation-delay: 4s; animation-delay: 4s; }
	.del5 { -webkit-animation-delay: 5s; -moz-animation-delay: 5s; -o-animation-delay: 5s; animation-delay: 5s; }
	.del10 { -webkit-animation-delay: 10s; -moz-animation-delay: 10s; -o-animation-delay: 10s; animation-delay: 10s; }
	.del15 { -webkit-animation-delay: 15s; -moz-animation-delay: 15s; -o-animation-delay: 15s; animation-delay: 15s; }
	.del20 { -webkit-animation-delay: 20s; -moz-animation-delay: 20s; -o-animation-delay: 20s; animation-delay: 20s; }
	.del30 { -webkit-animation-delay: 30s; -moz-animation-delay: 30s; -o-animation-delay: 30s; animation-delay: 30s; }
	.del45 { -webkit-animation-delay: 45s; -moz-animation-delay: 45s; -o-animation-delay: 45s; animation-delay: 45s; }
	.del60 { -webkit-animation-delay: 60s; -moz-animation-delay: 60s; -o-animation-delay: 60s; animation-delay: 60s; }
