﻿/*====================================================================================================================*/
/* Font Includes */
/*====================================================================================================================*/

@font-face {
    font-family: Roboto;
    /*noinspection CssUnknownTarget*/
    src: url('../fonts/Roboto-Thin.eot');
    /*noinspection CssUnknownTarget*/
    src: url('../fonts/Roboto-Thin.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Thin.woff2') format('woff2'),
    url('../fonts/Roboto-Thin.woff') format('woff'),
    url('../fonts/Roboto-Thin.ttf') format('truetype'),
    url('../fonts/Roboto-Thin.svg#robotothin') format('svg');
    font-weight: 200;
}

@font-face {
    font-family: Roboto;
    /*noinspection CssUnknownTarget*/
    src: url('../fonts/Roboto-Light.eot');
    /*noinspection CssUnknownTarget*/
    src: url('../fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Light.woff2') format('woff2'),
    url('../fonts/Roboto-Light.woff') format('woff'),
    url('../fonts/Roboto-Light.ttf') format('truetype'),
    url('../fonts/Roboto-Light.svg#robotolight') format('svg');
    font-weight: 300;
}

@font-face {
    font-family: Roboto;
    /*noinspection CssUnknownTarget*/
    src: url('../fonts/Roboto-Regular.eot');
    /*noinspection CssUnknownTarget*/
    src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Regular.woff2') format('woff2'),
    url('../fonts/Roboto-Regular.woff') format('woff'),
    url('../fonts/Roboto-Regular.ttf') format('truetype'),
    url('../fonts/Roboto-Regular.svg#robotoregular') format('svg');
    font-weight: 400;
}

@font-face {
    font-family: Roboto;
    /*noinspection CssUnknownTarget*/
    src: url('../fonts/Roboto-Medium.eot');
    /*noinspection CssUnknownTarget*/
    src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Medium.woff2') format('woff2'),
    url('../fonts/Roboto-Medium.woff') format('woff'),
    url('../fonts/Roboto-Medium.ttf') format('truetype'),
    url('../fonts/Roboto-Medium.svg#robotomedium') format('svg');
    font-weight: 500;
}

@font-face {
    font-family: Roboto;
    /*noinspection CssUnknownTarget*/
    src: url('../fonts/Roboto-Bold.eot');
    /*noinspection CssUnknownTarget*/
    src: url('../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Bold.woff2') format('woff2'),
    url('../fonts/Roboto-Bold.woff') format('woff'),
    url('../fonts/Roboto-Bold.ttf') format('truetype'),
    url('../fonts/Roboto-Bold.svg#robotobold') format('svg');
    font-weight: 700;
}

/*====================================================================================================================*/
/* HTML */
/*====================================================================================================================*/

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
}

:after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-family: 'Roboto', serif;
}

/*====================================================================================================================*/
/* Typography */
/*====================================================================================================================*/

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1;
    font-weight: normal;
}

h1, .h1 {
    font-size: 2.5rem;
}

h2, .h2 {
    font-size: 2rem;
}

h3, .h3 {
    font-size: 1.75rem;
}

h4, .h4 {
    font-size: 1.5rem;
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 15px;
}

a {
    color: #0097fc;
}

a:active, a:hover {
    outline: 0
}

a:hover, a:focus {
    color: #23527c;
}

code {
    padding: .3rem .4rem;
    font-size: 90%;
    color: #bd4147;
    background-color: #f8f9fa;
    border-radius: .25rem;
}

kbd {
    padding: .4rem .5rem;
    font-size: 100%;
    font-weight: 700;
    color: #fff;
    background-color: #212529;
    border-radius: .2rem;
}

pre {
    overflow: auto;
    background-color: #f9f9f9;
    padding: 15px;
    margin-bottom: 1rem;
}

abbr[title] {
    border-bottom: 1px dotted
}

b, strong {
    font-weight: 700
}

s, strike, del {
    text-decoration: line-through;
}

u {
    text-decoration: underline;
}

dfn {
    font-style: italic
}

mark {
    color: #000;
    background: #ff0
}

small, .small {
    font-size: 80%
}

sub, sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

i {
    font-style: normal;
}

[class^="icon-"],
[class*="icon-"] {
    display: inline-block;
    font-size: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

label {
    font-weight: bold;
    letter-spacing: .5px;
    margin-bottom: 5px;
    display: inline-block;
}

address {
    font-style: normal;
}

blockquote {
    margin: 0 20px 1rem;
    font-size: 1.25rem;
    background-color: #fafafa;
    border-left: 5px solid #00a3ff;
    padding: 15px;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1);
}

blockquote:after {
    content: '';
    display: table;
    clear: both;
}

blockquote footer {
    display: block;
    font-size: 80%;
    color: #575757;
    font-weight: bold;
}

blockquote footer.right {
    text-align: right;
}

blockquote footer:before {
    content: '—';
    margin-right: 10px;
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 0 0 15px;
}

figure figcaption {
    margin-top: 5px;
    text-align: center;
    color: #575757;
    font-style: italic;
    font-size: 14px;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    float: left;
    width: 100%;
    border-top: 1px solid #ccc;
}

[hidden], template {
    display: none !important;
}

iframe[seamless] {
    display: block;
}

.caret{
    position: relative;
    padding-right: 25px !important;
}

.caret:after {
    content: '';
    position: absolute;
    right: 8px;
    top: calc(50% - 3px);

    border-top: 5px solid;
    border-bottom: 0 solid transparent;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.open > .caret:after,
.caret.active:after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.badge {
    padding: 2px 7px;
    display: inline-block;
    line-height: normal;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;;
    letter-spacing: 1px;
    border-radius: 12px;
}

img {
    display: inline-block;
    vertical-align: middle;
    visibility: visible;
}

img:not([src]) {
    visibility: hidden;
}

@-moz-document url-prefix() {
    img:-moz-loading {
        visibility: hidden;
    }
}

.cover,
.thumb {
    position: relative;
    overflow: hidden;
}

.cover img,
.thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.thumb.contain img {
    object-fit: contain !important;
    -o-object-fit: contain !important;
}

.cover.hover,
.thumb.hover {
    background-color: #000;
}

.item:hover .cover.hover img,
.item:hover .thumb.hover img {
    opacity: .8;
}

.item:hover .cover.scale img,
.item:hover .thumb.scale img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.thumb .thumb-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    right: calc(50% - 25px);
    top: calc(50% - 25px);
    padding-left: 6px;
    font-size: 22px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    background: #9b28b0;
    background: linear-gradient(45deg, #9b28b0 0, #4052b6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9b28b0', endColorstr='#4052b6', GradientType=1), alpha(opacity=7);
    z-index: 1;
    opacity: .7;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.item:hover .thumb .thumb-icon {
    opacity: 1;
    filter: alpha(opacity=65);
}

.item .thumb .top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

@media (max-width: 575px) {

    .thumb-icon.xs {
        width: 36px;
        height: 36px;
        line-height: 36px;
        right: calc(50% - 18px);
        top: calc(50% - 18px);
        padding-left: 4px;
        font-size: 16px;
    }

}

.disabled,
[disabled] {
    cursor: not-allowed;
    pointer-events: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
    filter: alpha(opacity=65);
}

/*====================================================================================================================*/
/* List */
/*====================================================================================================================*/

ul, ol {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-left: 30px;
}

ul.type-none,
ol.type-none {
    list-style-type: none;
}

ul.type-circle {
    list-style-type: circle;
}

ul.type-disc {
    list-style-type: disc;
}

ul.type-square {
    list-style-type: square;
}

ul.list li:not(:last-child),
ol.list li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

ul.list li a,
ol.list li a {
    display: block;
    padding: 10px 15px;
    color: #333;
}

ul.list li.active a,
ol.list li.active a {
    background-color: #f2f2f2 !important;
}

ul.list li:hover > a,
ol.list li:hover > a {
    background-color: #f9f9f9;
}

/*====================================================================================================================*/
/* Select */
/*====================================================================================================================*/

select.btn {
    min-height: 38px;
}

/*====================================================================================================================*/
/* Input */
/*====================================================================================================================*/

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    height: auto
}

input[type=search] {
    -webkit-appearance: textfield
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

input[type=button],
input[type=reset],
input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

input[disabled] {
    cursor: default;
}

input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input:-moz-placeholder {
    color: rgb(134, 142, 150);
}

input::-moz-focus-inner {
    padding: 0;
    border: 0
}

.input {
    width: 100%;
    min-height: 38px;
    display: block;
    position: relative;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 8px 12px;
    overflow: hidden;
    line-height: 1.42857143;
    font-family: inherit;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.input:focus {
    border-color: rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.m-input {
    position: relative;
    border-bottom: 1px solid #ddd;
}

.m-input .input {
    padding: 8px 0 !important;
    background-color: transparent;
    border-color: transparent;
}

.m-input label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #b1b1b1;
    font-size: 12px;
    font-weight: normal !important;
    pointer-events: none;
    text-transform: uppercase;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.m-input .input-group label {
    left: 30px;
}

.m-input .input:focus ~ label,
.m-input .input:valid ~ label {
    top: -12px;
    left: 0;
    color: #666;
}

.m-input .bar:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    background-color: #2d71e2;
    left: 50%;
    bottom: -2px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.m-input .input:focus ~ .bar:after,
.m-input .input:valid ~ .bar:after {
    left: 0;
    width: 100%;
}

.m-input .btn {
    background: none;
    box-shadow: none;
    border: none;
    color: #575757;
    width: 30px;
    padding: 8px 0;
    text-align: center;
}

.m-input .error-message {
    display: none;
}

/*====================================================================================================================*/
/* Button */
/*====================================================================================================================*/

button {
    overflow: visible;
    text-transform: none;
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled] {
    cursor: default
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

.btn {
    display: inline-block;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 8px 14px;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    line-height: 1.42857143;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn:active {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.175);
}

.btn.lg {
    padding: 10px 16px;
    font-size: 1.15rem;
}

.btn.xs {
    padding: 6px 12px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.btn.circle {
    border-radius: 50%;
    width: 38px;
    height: 38px;
    line-height: 22px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center;
}

.btn.lg.circle {
    width: 52px;
    height: 52px;
}

.btn.xs.circle {
    padding: 0 !important;
    width: 32px;
    height: 32px;
    line-height: 32px;
}

.btn.block {
    text-align: center;
    width: 100%;
}

.btn-file {
    position: relative;
    overflow: hidden;
}

.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: 0;
    background: white;
    cursor: inherit;
    display: block;
}

@media (max-width: 768px) {

    .btn.lg {
        padding: 11px 15px;
        font-size: 1rem;
    }

    .btn.lg.circle {
        width: 48px;
    }

}

/*====================================================================================================================*/
/* Input Group */
/*====================================================================================================================*/

.input-group {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.input-group .input,
.input-group-addon,
.input-group-btn {
    display: flex;
    align-items: center;
}

.input-group .input {
    width: 1%;
    flex: 1 1 auto;
}

.input-group-addon,
.input-group-btn {
    white-space: nowrap;
    vertical-align: middle
}

.input-group-addon {
    padding: 8px 12px;
    font-size: 1rem;
    color: #555;
    border: 1px solid #ccc;
}

.input-group-addon:first-child {
    border-right: 0
}

.input-group-addon:last-child {
    border-left: 0
}

.input-count-box {
    position: relative;
}

.input-count-box .input {
    padding-right: 45px;
}

.max-length {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    padding: 12px 0;
    text-align: center;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    font-size: 11px;
    z-index: 3;
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap
}

.input-group-btn > .btn {
    position: relative;
}

.input-group-btn > .btn + .btn {
    margin-left: -1px;
}

.input-group-btn > .btn:active,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:hover {
    z-index: 2
}

.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
    margin-right: -1px
}

.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px
}

/*====================================================================================================================*/
/* Checkbox and Radio */
/*====================================================================================================================*/

.ckbox label {
    height: 18px;
    line-height: 20px;
    display: inline-block;
    padding-left: 25px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    position: relative;
}

.ckbox + .ckbox {
    margin-top: 10px !important;
}

.ckbox label:empty {
    padding-left: 18px;
}

.ckbox input[type="checkbox"],
.ckbox input[type="radio"] {
    display: none;
}

.ckbox input[type="checkbox"] ~ label:before {
    content: '\e912';
    font-family: icomoon, serif;
    position: absolute;
    width: 18px;
    height: 18px;
    line-height: 17px;
    text-align: center;
    border: 1px solid #999;
    border-radius: 2px;
    left: 0;
    top: 0;
    font-size: 0;
    color: #fff;
    padding-left: 1px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.ckbox input[type="checkbox"] ~ label:not(:empty):before,
.ckbox input[type="radio"] ~ label:not(:empty):before {
    margin-right: 7px;
}

.ckbox input[type="checkbox"]:checked ~ label:before {
    font-size: 12px;
    background-color: #0085ff;
    border-color: #0085ff;
}

.ckbox input[type="radio"] ~ label:before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #999;
    left: 0;
    top: 0;
    margin-right: 7px;
}

.ckbox input[type="radio"]:checked ~ label:before {
    border-color: #0085ff;
}

.ckbox input[type="radio"] ~ label:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    left: 4px;
    top: 4px;
    background-color: #0085ff;
    border-radius: 50%;

    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.ckbox input[type="radio"]:checked ~ label:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/*====================================================================================================================*/
/* Rating Input */
/*====================================================================================================================*/

.rating {
    border: none;
    padding: 0 !important;
    margin: 0;
}

.rating > input {
    display: none;
}

.rating > label:before {
    margin: 0 2px;
    font-size: 30px;
    line-height: 30px;
    display: inline-block;
    font-family: plankicon, serif;
    content: "\ea8b";
}

.rating.xs > label:before {
    font-size: 20px;
    line-height: 20px;
}

.rating.sm > label:before {
    font-size: 25px;
    line-height: 25px;
}

.rating > .half:before {
    font-family: plankicon, serif;
    content: "\ea8a";
    position: absolute;
}

.rating > label {
    font-weight: 300;
    color: #575757;
    float: right;
    margin: 0;
}

.rating > input:checked ~ label,
.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
    color: #ff8100;
}

.rating > input:checked ~ label:before,
.rating:not(:checked) > label:hover:before,
.rating:not(:checked) > label:hover ~ label:before {
    content: "\ea88";
}

.rating > input:checked + label:hover,
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label,
.rating > input:checked ~ label:hover ~ label {
    color: #ff8100;
}

/*====================================================================================================================*/
/* Rating stars */
/*====================================================================================================================*/

.rating-stars {
    font-size: 15px;
    height: 15px;
    line-height: 15px;
    color: #ff9b00;
    position: relative;
    width: 88px;
    z-index: 0;
    white-space: nowrap;
}

.rating-stars.md {
    font-size: 22px;
    height: 22px;
    line-height: 22px;
    width: 140px;
}

.rating-stars:before {
    font-family: 'plankicon', serif;
    content: "\ea88\ea88\ea88\ea88\ea88";
    color: #dcdcdc;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    z-index: 1
}

.rating-stars span {
    position: relative;
    width: 0;
    height: 15px;
    line-height: 15px;
    display: block;
    overflow: hidden;

    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.rating-stars.md span {
    height: 22px;
    line-height: 22px;
}

.rating-stars span:before {
    padding: 0;
    font-family: 'plankicon', serif;
    content: "\ea88\ea88\ea88\ea88\ea88";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2
}

.rating-stars:before,
.rating-stars span:before {
    letter-spacing: 3px;
}

.rating-stars.md:before,
.rating-stars.md span:before {
    letter-spacing: 7px;
}

.rating-stars + .rating-count small {
    display: inherit;
    vertical-align: middle;
    font-size: 13px;
    line-height: 18px;
}

/*====================================================================================================================*/
/* Progress */
/*====================================================================================================================*/

.progress {
    width: 100%;
    height: 10px;
    background-color: #ddd;
}

.progress .progress-bar {
    height: 10px;
    width: 0;
}

@media (max-width: 767px) {
    .progress {
        line-height: 1rem;
    }

    .progress-bar .progress {
        height: 1rem;
        line-height: 1rem;
    }
}

/*====================================================================================================================*/
/* Breadcrumb */
/*====================================================================================================================*/

.breadcrumb {
    line-height: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.breadcrumb > li {
    display: inline-block;
    vertical-align: middle;
    font-size: 11px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.breadcrumb > li + li:before {
    padding: 0 5px;
    color: rgba(0, 0, 0, 0.3);
    content: "●"
}

.breadcrumb > li,
.breadcrumb > li a {
    color: #555;
}

.breadcrumb.white > li + li:before,
.breadcrumb.white > .active,
.breadcrumb.white > li,
.breadcrumb.white > li a {
    color: rgba(255, 255, 255, 0.6) !important;
}

/*====================================================================================================================*/
/* Pagination */
/*====================================================================================================================*/

.pagination {
    text-align: center;
    padding: 10px 0;
}

.pagination a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 42px;
    color: #575757;
    cursor: default;
    border-radius: 4px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.pagination a.first,
.pagination a.last {
    border-radius: 50px;
    border: 2px solid #ff181e;
    font-size: 13px;
    color: #ff181e;
    font-weight: bold;
    width: auto;
    min-width: 40px;
    padding: 0 10px;
    line-height: 36px;
    cursor: pointer;
}

.pagination a.first:hover,
.pagination a.last:hover {
    background-color: #ff181e !important;
    color: #fff;
}

.pagination .page-numbers {
    display: inline-block;
}

.pagination .page-numbers a[href]:hover {
    background: #e6e6e6;
    cursor: pointer;
}

.pagination .page-numbers a.active {
    background: #ff181e !important;
    color: #fff;
}

@media (max-width: 767px) {

    .pagination a {
        width: 30px;
        height: 30px;
        line-height: 32px;
    }

    .pagination a.first,
    .pagination a.last {
        line-height: 26px;
        min-width: 30px;
    }

}

/*====================================================================================================================*/
/* Tooltip */
/*====================================================================================================================*/

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    opacity: 0;
}

.tooltip.show {
    opacity: 0.9;
}

.tooltip .arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem;
}

.tooltip .arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
    padding: 0.4rem 0;
}

.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
    bottom: 0;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
    top: 0;
    border-width: 0.4rem 0.4rem 0;
    border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
    padding: 0 0.4rem;
}

.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
    right: 0;
    border-width: 0.4rem 0.4rem 0.4rem 0;
    border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
    padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
    top: 0;
}

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    bottom: 0;
    border-width: 0 0.4rem 0.4rem;
    border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
    padding: 0 0.4rem;
}

.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
    left: 0;
    border-width: 0.4rem 0 0.4rem 0.4rem;
    border-left-color: #000;
}

.tooltip-inner {
    max-width: 300px;
    padding: 0.5rem 1rem;
    color: #fff;
    text-align: center;
    background-color: #000;
}

/*====================================================================================================================*/
/* Blocks */
/*====================================================================================================================*/

.panel {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.panel-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.panel-header .panel-title {
    font-size: 20px;
    line-height: 20px;
    margin: 0;
    display: block;
}

.panel-body {
    padding: 15px 20px;
}

.panel-footer {
    padding: 10px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

[class^="panel-"]:after,
[class*="panel-"]:after {
    content: '';
    display: table !important;
    clear: both;
}

.panel a {
    color: #222;
}

@media (max-width: 767px) {

    .panel-header,
    .panel-body,
    .panel-footer {
        padding: 10px;
    }

    .panel-header .panel-title {
        font-size: 20px;
    }
}

/*====================================================================================================================*/
/* Modal */
/*====================================================================================================================*/

 .modal {
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    height: 100%;
    padding: 10px;
    right: 0;
    bottom: 0;
    z-index: 999;
    overflow: auto;
}

.modal.bottom {
    padding: 0;
}

.modal.open {
    display: flex;
}

.modal.resized {
    padding: 0 !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 991;
}

.modal .modal-content {
    width: 700px;
    max-width: 100%;
    margin: auto;
    position: relative;
    z-index: 1;
}

.modal.bottom .modal-content {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.modal.resized .modal-content {
    margin: 0 auto !important;
}

.modal.lg .modal-content {
    width: 1000px;
}

.modal.xs .modal-content {
    width: 400px;
}

.modal.xs .panel {
    position: relative;
}

.modal.bottom .full-vh {
    bottom: initial;
    height: 100%;
}

.modal.bottom .full-vh .panel-body {
    max-height: calc(100% - 50px);
}

.modal.resized .modal-footer {
    padding: 5px 10px;
}

.modal .close:hover,
.modal .resize:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.modal .close {
    display: block;
    position: relative;
    float: right;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 22px;
    cursor: pointer;
    color: #ccc;
}

.modal .modal-footer .close {
    right: inherit;
    color: #fff;
}

.modal.bottom .close {
    right: inherit;
    height: auto;
    line-height: normal;
    font-size: 19px;
    color: #999;
}

.modal .resize i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
}

.modal.resized .resize i {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.modal .modal-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

@media (min-width: 992px) {

    .modal .close {
        right: -35px;
    }
}

@media (min-width: 768px) {

    .modal.resized {
        width: 400px !important;
        height: 265px !important;
        right: 15px !important;
        bottom: 15px !important;
    }

    .modal.resized .modal-content {
        width: 400px !important;
        height: 225px !important;
    }

}

@media (max-width: 767px) {

    .modal.resized {
        width: 250px;
        height: 181px;
        right: 10px;
        bottom: 60px;
    }

    .modal.resized .modal-content {
        width: 250px !important;
        height: 181px !important;
    }

}

/*====================================================================================================================*/
/* Dropdown Menu */
/*====================================================================================================================*/

.drop {
    position: relative;
    display: inline-block;
}

.drop .drop-menu {
    min-width: 100%;
    display: none;
    text-align: left;
    position: absolute;
    z-index: 990;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.drop.hover:hover .drop-menu,
.drop.open > .drop-menu {
    display: block;
}

.drop .drop-menu.right {
    right: 0;
    left: inherit;
}

.drop .drop-menu.top {
    bottom: 100%;
}

.drop .drop-menu .menu-header {
    border-bottom: 1px solid #ededed;
    padding: 15px;
}

.drop .drop-menu .menu-body {
    max-height: 350px;
    padding: 10px 0;
    list-style-type: none;
    margin: 0;
    overflow: auto;
}

.drop .drop-menu .menu-header + .menu-body {
    max-height: 300px;
    padding: 0;
}

.drop .drop-menu .menu-body .menu-empty {
    height: 150px;
    text-align: center;
    color: #575757;
}

.drop .drop-menu .menu-body .menu-empty i {
    display: block;
    font-size: 50px;
    color: rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.drop .drop-menu .menu-body .menu-item {
    display: block;
    padding: 10px 20px;
    cursor: pointer;
    white-space: nowrap;
    color: #222;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.drop .drop-menu.xs .menu-body .menu-item {
    padding: 6px 12px !important;
}

.drop .drop-menu .menu-body .menu-item .abbr {
    display: none;
}

.drop .drop-menu .menu-body .menu-item.selected {
    background: #16b3a6;
    color: #fff;
}

.drop.select .drop-menu .menu-body .menu-item {
    padding-right: 50px;
    position: relative;
}

.drop .drop-menu .menu-body .menu-item.selected:after {
    content: '\e944';
    font-family: plankicon, serif;
    position: absolute;
    right: 20px;
    top: calc(50% - 7px);
}

.drop .drop-menu .menu-body .menu-item:not(.selected):hover {
    background: rgba(0, 0, 0, 0.05);
}

.drop .drop-menu .menu-body .divider {
    display: block;
    padding: 0;
    height: 1px;
    margin: 10px 0;
    background-color: rgba(0, 0, 0, 0.1);
}

.drop .drop-menu .menu-footer {
    border-top: 1px solid #ededed;
    padding: 15px;
    text-align: center;
}

/*====================================================================================================================*/
/* Tab */
/*====================================================================================================================*/

.tab {
    width: 100%;
}

.tab-nav {
    width: 100%;
    list-style-type: none;
    padding: 0;
}

.tab-nav:after {
    content: '';
    display: table;
    clear: both;
}

.tab-nav li {
    float: left;
}

.tab-nav li [role="tab"] {
    width: 100%;
    font-weight: 300;
    display: block;
    font-size: 18px;
    position: relative;
    color: #c1c1c1;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.tab-nav li:last-child [role="tab"] {
    border-right: 0;
}

.tab-nav li.active [role="tab"] {
    color: #000;
}

.tab-nav li [role="tab"] a {
    color: inherit;
    display: block;
}

.tab-content .tab-panel {
    display: none;
}

.tab-content .tab-panel.active {
    display: block;
}

/*====================================================================================================================*/
/* Scrolling menu */
/*====================================================================================================================*/

.scrolling-menu {
    padding: 0;
    margin: 0;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    position: relative;

    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    flex-wrap: nowrap;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;

    text-align: center;
    list-style-type: none;
}

.scrolling-menu::-webkit-scrollbar {
    height: 0;
    width: 0;
}

.scrolling-menu.style-bordered li [role="tab"] {
    margin-bottom: 1px;
    border-bottom: 2px solid #ededed;
}

.scrolling-menu .line {
    content: '';
    display: block;
    position: absolute;
    height: 3px;
    background-color: #0085ff;
    bottom: 0;
    transition: .2s ease;
    pointer-events: none;
}

.scrolling-menu li:not(.line) {
    cursor: pointer;
    -webkit-box-flex: 1;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.scrolling-menu.justify li:not(.line) {
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.scrolling-menu li .menu-item {
    display: block;
    width: 100%;
    color: #575757;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

/*====================================================================================================================*/
/* Collapse */
/*====================================================================================================================*/

.collapse-content {
    display: none;
}

/*====================================================================================================================*/
/* Accordion */
/*====================================================================================================================*/

.accordion .accordion-title {
    display: block;
    padding: 10px 15px;
    cursor: pointer;
    background-color: #fff;
}

.accordion .accordion-panel:not(:last-child) {
    /*margin-bottom: 5px;*/
}

/*====================================================================================================================*/
/* Table */
/*====================================================================================================================*/

table {
    border-spacing: 0;
    border-collapse: collapse;
    background-color: transparent;
}

.table {
    width: 100%;
    max-width: 100%;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
    padding: 10px;
    line-height: 1.5;
    vertical-align: middle;
    border-top: 1px solid #ddd;
}

.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd
}

.table > tbody + tbody {
    border-top: 2px solid #ddd
}

.bordered {
    border: 1px solid #ddd
}

.bordered > tbody > tr > td,
.bordered > tbody > tr > th,
.bordered > tfoot > tr > td,
.bordered > tfoot > tr > th,
.bordered > thead > tr > td,
.bordered > thead > tr > th {
    border: 1px solid #ddd
}

.bordered > thead > tr > td,
.bordered > thead > tr > th {
    border-bottom-width: 2px
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9
}

.hovered > tbody > tr:hover {
    background-color: #f5f5f5
}

@media screen and (max-width: 767px) {

    .table-responsive {
        width: 100%;
        min-height: .01%;
        overflow-x: auto;
        margin-bottom: 15px;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd
    }

    .table-responsive > .table {
        margin-bottom: 0
    }

    .table-responsive > .table > tbody > tr > td,
    .table-responsive > .table > tbody > tr > th,
    .table-responsive > .table > tfoot > tr > td,
    .table-responsive > .table > tfoot > tr > th,
    .table-responsive > .table > thead > tr > td,
    .table-responsive > .table > thead > tr > th {
        white-space: nowrap
    }

    .table-responsive > .bordered {
        border: 0
    }

    .table-responsive > .bordered > tbody > tr > td:first-child,
    .table-responsive > .bordered > tbody > tr > th:first-child,
    .table-responsive > .bordered > tfoot > tr > td:first-child,
    .table-responsive > .bordered > tfoot > tr > th:first-child,
    .table-responsive > .bordered > thead > tr > td:first-child,
    .table-responsive > .bordered > thead > tr > th:first-child {
        border-left: 0
    }

    .table-responsive > .bordered > tbody > tr > td:last-child,
    .table-responsive > .bordered > tbody > tr > th:last-child,
    .table-responsive > .bordered > tfoot > tr > td:last-child,
    .table-responsive > .bordered > tfoot > tr > th:last-child,
    .table-responsive > .bordered > thead > tr > td:last-child,
    .table-responsive > .bordered > thead > tr > th:last-child {
        border-right: 0
    }

    .table-responsive > .bordered > tbody > tr:last-child > td,
    .table-responsive > .bordered > tbody > tr:last-child > th,
    .table-responsive > .bordered > tfoot > tr:last-child > td,
    .table-responsive > .bordered > tfoot > tr:last-child > th {
        border-bottom: 0
    }
}

/*====================================================================================================================*/
/* Responsive */
/*====================================================================================================================*/

.responsive {
    position: relative;
    display: block;
    padding: 0;
    overflow: hidden
}

.responsive .wrap,
.responsive object,
.responsive embed,
.responsive iframe,
.responsive video,
.responsive canvas {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.responsive:before {
    display: block;
    content: "";
}

.pb-in-25:before {
    padding-top: 25%;
}

.pb-in-40:before {
    padding-top: 40%;
}

.pb-in-56:before {
    padding-bottom: 56.25%
}

.pb-in-60:before {
    padding-bottom: 60%
}

.pb-in-75:before {
    padding-bottom: 75%
}

.pb-in-100:before {
    padding-bottom: 100%
}

/*====================================================================================================================*/
/* Prop */
/*====================================================================================================================*/

.border {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.no-border {
    border: none !important;
}

.border-top {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.border-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.border-left {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.border-right {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.no-shadow {
    box-shadow: none !important;
}

.no-resize {
    resize: none;
}

.o-hidden {
    overflow: hidden;
}

.o-auto {
    overflow: auto;
}

.no-appearance{
    -webkit-appearance: none;
    -moz-appearance: none;
}

.clear:after {
    content: '';
    display: table;
    clear: both;
}

.pointer {
    cursor: pointer;
}

.zoom-in {
    cursor: zoom-in;
}

.shadow {
    -webkit-box-shadow: 0 4px 6px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 6px 1px rgba(0, 0, 0, 0.15);
}

.relative {
    position: relative;
}

.tr-3s {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

@media (min-width: 992px) {

    .scroll {
        overflow: auto;
    }

    .scroll::-webkit-scrollbar {
        background: none;
        width: 6px;
        height: 0;
    }

    .scroll::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.3) !important;
        border-radius: 5px;
    }

}

/*====================================================================================================================*/
/* Border Radius */
/*====================================================================================================================*/

.radius-1 {
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.radius-2 {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.radius-3 {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.radius-4 {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.radius-5 {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.radius-10 {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.radius-15 {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

.radius-20 {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.radius-30 {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.radius-40 {
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
}

.radius-50 {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.radius-50p {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

/*====================================================================================================================*/
/*Align*/
/*====================================================================================================================*/

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.float-center {
    margin: auto;
    width: fit-content;
    width: -moz-fit-content;
}

@media (min-width: 1200px) {

    .float-lg-left {
        float: left;
    }

    .float-lg-right {
        float: right;
    }

    .float-lg-center {
        margin: auto;
    }

}

@media (min-width: 992px) and (max-width: 1199px) {

    .float-md-left {
        float: left;
    }

    .float-md-right {
        float: right;
    }

    .float-md-center {
        margin: auto;
    }

}

@media (min-width: 768px) and (max-width: 992px) {

    .float-sm-left {
        float: left;
    }

    .float-sm-right {
        float: right;
    }

    .float-sm-center {
        margin: auto;
    }

}

@media (max-width: 767px) and (min-width: 576px) {

    .float-xs-left {
        float: left;
    }

    .float-xs-right {
        float: right;
    }

    .float-xs-center {
        margin: auto;
    }

}

@media (max-width: 575px) {

    .float-xxs-left {
        float: left;
    }

    .float-xxs-right {
        float: right;
    }

    .float-xxs-center {
        margin: auto;
    }

}

/*====================================================================================================================*/
/* Background Colors */
/*====================================================================================================================*/

.bg-tr {
    background-color: transparent;
    color: currentColor;
}

.bg-white {
    background-color: #ffffff;
    color: #222;
}

.bg-black {
    background-color: #000;
    color: #fff;
}

.bg-gray {
    background-color: #f8f9fa;
}

.bg-red {
    background-color: #dd0000;
    color: #ffffff;
}

.bg-orange {
    background-color: #ff9b00;
    color: #fff;
}

.bg-gray.dark {
    background-color: #dddddd;
}

.bg-blue {
    background-color: #00c8ff;
    color: #ffffff;
}

.bg-blue.dark {
    background-color: #0085ff;
}

.bg-green {
    background-color: #00c06c;
    color: #fff !important;
}

.bg-green.dark {
    background-color: #00954f;
}

.bg-special a,
.bg-black a,
.bg-red a,
.bg-orange a,
.bg-blue a,
.bg-green a {
    color: #fff !important;
}

/*====================================================================================================================*/
/* Caption */
/*====================================================================================================================*/

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.caption-bg {
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .01) 0%, rgba(0, 0, 0, .9) 80%);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, .01) 0%, rgba(0, 0, 0, .9) 80%);
}

.caption .label {
    padding: 4px 10px;
    display: inline-block;
    margin-bottom: 5px;
    font-size: 12px;
    background: #FF4400;
    font-weight: normal;
    letter-spacing: 1px;
    color: #fff;
}

.caption .title {
    color: #fff;
    font-weight: 200;
    text-shadow: 1px 1px 0 #000;
}

.gradient-bg {
    background: -webkit-linear-gradient(top, rgb(255, 255, 255) 5%, rgba(42, 71, 94, 0.0) 70%);
    background: linear-gradient(to bottom, rgb(255, 255, 255) 5%, rgba(42, 71, 94, 0.0) 70%);
}

/*====================================================================================================================*/
/* Social Colors */
/*====================================================================================================================*/

.fb {
    background-color: #3b5998 !important;
}

.tw {
    background-color: #1da1f2 !important;
}

.gp {
    background-color: #dd4b39 !important;
}

.yt {
    background-color: #bb0000 !important;
}

.vk {
    background-color: #45668e !important;
}

.ln {
    background-color: #007bb5 !important;
}

.ins {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);

}

/*====================================================================================================================*/
/* Text */
/*====================================================================================================================*/

.thin {
    font-weight: 200;
}

.light {
    font-weight: 300;
}

.bold {
    font-weight: 600;
}

.text-justify {
    text-align: justify
}

.text-lowercase {
    text-transform: lowercase
}

.text-uppercase {
    text-transform: uppercase
}

.text-capitalize {
    text-transform: capitalize
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.us-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*====================================================================================================================*/
/* Text Colors */
/*====================================================================================================================*/

.text-black {
    color: #000;
}

.text-white {
    color: #ffffff;
}

.text-gray {
    color: #aaa;
}

.text-red {
    color: #dd0000;
}

.text-green {
    color: #00a75e;
}

.text-blue {
    color: #00a3ff !important;
}

.text-orange {
    color: #ff9b00;
}

/*====================================================================================================================*/
/* Line */
/*====================================================================================================================*/

.line-camp {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
}

.line-1 {
    word-break: break-all;
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    -ms-line-clamp: 1;
    -o-line-clamp: 1;
}

.line-2 {
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -ms-line-clamp: 2;
    -o-line-clamp: 2;
}

.line-3 {
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    -ms-line-clamp: 3;
    -o-line-clamp: 3;
}

.line-4 {
    -webkit-line-clamp: 4;
    -moz-line-clamp: 4;
    -ms-line-clamp: 4;
    -o-line-clamp: 4;
}

.line-5 {
    -webkit-line-clamp: 5;
    -moz-line-clamp: 5;
    -ms-line-clamp: 5;
    -o-line-clamp: 5;
}

.line-6 {
    -webkit-line-clamp: 6;
    -moz-line-clamp: 6;
    -ms-line-clamp: 6;
    -o-line-clamp: 6;
}

.break-all {
    word-break: break-all;
}

.no-wrap {
    white-space: nowrap;
}

/*====================================================================================================================*/
/* Display */
/*====================================================================================================================*/

.d-block {
    display: block
}

.d-block.center {
    margin-left: auto;
    margin-right: auto;
}

.d-in-block {
    display: inline-block
}

.d-none {
    display: none !important;
}

.d-inherit {
    display: inherit;
}

.d-flex {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

.d-flex-center {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.d-table {
    display: table
}

.d-row {
    display: table-row
}

.d-cell {
    display: table-cell;
}

.v-align-top {
    vertical-align: top;
}

.v-align-middle {
    vertical-align: middle;
}

.v-align-bottom {
    vertical-align: bottom;
}

.show-lg,
.show-md,
.show-sm,
.show-xs,
.show-xxs {
    display: none !important;
}

@media (min-width: 1200px) {

    .show-lg {
        display: block !important;
    }

    .hide-lg {
        display: none !important;
    }

}

@media (min-width: 992px) and (max-width: 1199px) {

    .show-md {
        display: block !important;
    }

    .hide-md {
        display: none !important;
    }

}

@media (min-width: 768px) and (max-width: 991px) {

    .show-sm {
        display: block !important;
    }

    .hide-sm {
        display: none !important;
    }

}

@media (min-width: 576px) and (max-width: 767px) {

    .show-xs {
        display: block !important;
    }

    .hide-xs {
        display: none !important;
    }

}

@media (max-width: 575px) {

    .show-xxs {
        display: block !important;
    }

    .hide-xxs {
        display: none !important;
    }

}

/*====================================================================================================================*/
/* Width */
/*====================================================================================================================*/

.w-100p {
    width: 100%;
}

.mw-100p {
    max-width: 100%;
}

@media (min-width: 1200px) {

    .w-lg-100p {
        width: 100%;
    }

}

@media (min-width: 992px) adn (max-width: 1199px) {

    .w-md-100p {
        width: 100%;
    }

}

@media (min-width: 768px) and (max-width: 991px) {

    .w-sm-100p {
        width: 100%;
    }

}

@media (max-width: 767px) {

    .w-xs-100p {
        width: 100%;
    }

}

/*====================================================================================================================*/
/* Align Row > Col*/
/*====================================================================================================================*/

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

/*====================================================================================================================*/
/* Align Col */
/*====================================================================================================================*/

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

/*====================================================================================================================*/
/* Container */
/*====================================================================================================================*/

.container.as-0 {
    padding-left: 0;
    padding-right: 0;
}

.container.as-2 {
    padding-left: 2.5px;
    padding-right: 2.5px;
}

.container.as-5 {
    padding-left: 5px;
    padding-right: 5px;
}

.container.as-7 {
    padding-left: 7px;
    padding-right: 7px;
}

.container.as-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.container.as-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.container.as-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.container-sm {
    margin-left: auto;
    margin-right: auto;
    max-width: 920px;
}

@media (max-width: 575px) {

    .container.xxs-0 {
        padding-left: 0;
        padding-right: 0;
    }

    .container.xxs-2 {
        padding-left: 2.5px;
        padding-right: 2.5px;
    }

    .container.xxs-5 {
        padding-left: 5px;
        padding-right: 5px;
    }

    .container.xxs-7 {
        padding-left: 7px;
        padding-right: 7px;
    }

    .container.xxs-10 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .container.xxs-15 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .container.xxs-20 {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 767px) {
    .container {
        width: 100%;
    }
}

@media (max-width: 767px) and (min-width: 576px) {

    .container.xs-0 {
        padding-left: 0;
        padding-right: 0;
    }

    .container.xs-2 {
        padding-left: 2.5px;
        padding-right: 2.5px;
    }

    .container.xs-5 {
        padding-left: 5px;
        padding-right: 5px;
    }

    .container.xs-7 {
        padding-left: 7px;
        padding-right: 7px;
    }

    .container.xs-10 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .container.xs-15 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .container.xs-20 {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .container {
        width: 750px;
        margin-left: auto;
        margin-right: auto;
    }

    .container.sm-0 {
        padding-left: 0;
        padding-right: 0;
    }

    .container.sm-2 {
        padding-left: 2.5px;
        padding-right: 2.5px;
    }

    .container.sm-5 {
        padding-left: 5px;
        padding-right: 5px;
    }

    .container.sm-7 {
        padding-left: 7px;
        padding-right: 7px;
    }

    .container.sm-10 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .container.sm-15 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .container.sm-20 {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {

    .container {
        width: 960px;
        margin-left: auto;
        margin-right: auto;
    }

    .container.md-0 {
        padding-left: 0;
        padding-right: 0;
    }

    .container.md-2 {
        padding-left: 2.5px;
        padding-right: 2.5px;
    }

    .container.md-5 {
        padding-left: 5px;
        padding-right: 5px;
    }

    .container.md-7 {
        padding-left: 7px;
        padding-right: 7px;
    }

    .container.md-10 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .container.md-15 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .container.md-20 {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 1200px ) {

    .container {
        width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .container.lg-0 {
        padding-left: 0;
        padding-right: 0;
    }

    .container.lg-2 {
        padding-left: 2.5px;
        padding-right: 2.5px;
    }

    .container.lg-5 {
        padding-left: 5px;
        padding-right: 5px;
    }

    .container.lg-7 {
        padding-left: 7px;
        padding-right: 7px;
    }

    .container.lg-10 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .container.lg-15 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .container.lg-20 {
        padding-left: 20px;
        padding-right: 20px;
    }

}

/*====================================================================================================================*/
/* Row */
/*====================================================================================================================*/

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row.as-0 {
    margin-left: 0;
    margin-right: 0;
}

.row.as-2 {
    margin-left: -2.5px;
    margin-right: -2.5px;
}

.row.as-5 {
    margin-left: -5px;
    margin-right: -5px;
}

.row.as-7 {
    margin-left: -7.5px;
    margin-right: -7.5px;
}

.row.as-10 {
    margin-left: -10px;
    margin-right: -10px;
}

.row.as-15 {
    margin-left: -15px;
    margin-right: -15px;
}

.row.as-20 {
    margin-left: -20px;
    margin-right: -20px;
}

.row.as-0 > .col {
    padding-left: 0;
    padding-right: 0;
}

.row.as-2 > .col {
    padding-left: 2.5px;
    padding-right: 2.5px;
}

.row.as-5 > .col {
    padding-left: 5px;
    padding-right: 5px;
}

.row.as-7 > .col {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.row.as-10 > .col {
    padding-left: 10px;
    padding-right: 10px;
}

.row.as-15 > .col {
    padding-left: 15px;
    padding-right: 15px;
}

.row.as-20 > .col {
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 575px) {

    .row.xxs-0 {
        margin-left: 0;
        margin-right: 0;
    }

    .row.xxs-2 {
        margin-left: -2.5px;
        margin-right: -2.5px;
    }

    .row.xxs-5 {
        margin-left: -5px;
        margin-right: -5px;
    }

    .row.xxs-7 {
        margin-left: -7.5px;
        margin-right: -7.5px;
    }

    .row.xxs-10 {
        margin-left: -10px;
        margin-right: -10px;
    }

    .row.xxs-15 {
        margin-left: -15px;
        margin-right: -15px;
    }

    .row.xxs-20 {
        margin-left: -20px;
        margin-right: -20px;
    }

    .row.xxs-0 > .col {
        padding-left: 0;
        padding-right: 0;
    }

    .row.xxs-2 > .col {
        padding-left: 2.5px;
        padding-right: 2.5px;
    }

    .row.xxs-5 > .col {
        padding-left: 5px;
        padding-right: 5px;
    }

    .row.xxs-7 > .col {
        padding-left: 7.5px;
        padding-right: 7.5px;
    }

    .row.xxs-10 > .col {
        padding-left: 10px;
        padding-right: 10px;
    }

    .row.xxs-15 > .col {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row.xxs-20 > .col {
        padding-left: 20px;
        padding-right: 20px;
    }

}

@media (max-width: 767px) and (min-width: 576px) {

    .row.xs-0 {
        margin-left: 0;
        margin-right: 0;
    }

    .row.xs-2 {
        margin-left: -2.5px;
        margin-right: -2.5px;
    }

    .row.xs-5 {
        margin-left: -5px;
        margin-right: -5px;
    }

    .row.xs-7 {
        margin-left: -7.5px;
        margin-right: -7.5px;
    }

    .row.xs-10 {
        margin-left: -10px;
        margin-right: -10px;
    }

    .row.xs-15 {
        margin-left: -15px;
        margin-right: -15px;
    }

    .row.xs-20 {
        margin-left: -20px;
        margin-right: -20px;
    }

    .row.xs-0 > .col {
        padding-left: 0;
        padding-right: 0;
    }

    .row.xs-2 > .col {
        padding-left: 2.5px;
        padding-right: 2.5px;
    }

    .row.xs-5 > .col {
        padding-left: 5px;
        padding-right: 5px;
    }

    .row.xs-7 > .col {
        padding-left: 7.5px;
        padding-right: 7.5px;
    }

    .row.xs-10 > .col {
        padding-left: 10px;
        padding-right: 10px;
    }

    .row.xs-15 > .col {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row.xs-20 > .col {
        padding-left: 20px;
        padding-right: 20px;
    }

}

@media (max-width: 991px) and (min-width: 768px) {

    .row.sm-0 {
        margin-left: 0;
        margin-right: 0;
    }

    .row.sm-2 {
        margin-left: -2.5px;
        margin-right: -2.5px;
    }

    .row.sm-5 {
        margin-left: -5px;
        margin-right: -5px;
    }

    .row.sm-7 {
        margin-left: -7.5px;
        margin-right: -7.5px;
    }

    .row.sm-10 {
        margin-left: -10px;
        margin-right: -10px;
    }

    .row.sm-15 {
        margin-left: -15px;
        margin-right: -15px;
    }

    .row.sm-20 {
        margin-left: -20px;
        margin-right: -20px;
    }

    .row.sm-0 > .col {
        padding-left: 0;
        padding-right: 0;
    }

    .row.sm-2 > .col {
        padding-left: 2.5px;
        padding-right: 2.5px;
    }

    .row.sm-5 > .col {
        padding-left: 5px;
        padding-right: 5px;
    }

    .row.sm-7 > .col {
        padding-left: 7.5px;
        padding-right: 7.5px;
    }

    .row.sm-10 > .col {
        padding-left: 10px;
        padding-right: 10px;
    }

    .row.sm-15 > .col {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row.sm-20 > .col {
        padding-left: 20px;
        padding-right: 20px;
    }

}

@media (max-width: 1199px) and (min-width: 992px) {

    .row.md-0 {
        margin-left: 0;
        margin-right: 0;
    }

    .row.md-2 {
        margin-left: -2.5px;
        margin-right: -2.5px;
    }

    .row.md-5 {
        margin-left: -5px;
        margin-right: -5px;
    }

    .row.md-7 {
        margin-left: -7.5px;
        margin-right: -7.5px;
    }

    .row.md-10 {
        margin-left: -10px;
        margin-right: -10px;
    }

    .row.md-15 {
        margin-left: -15px;
        margin-right: -15px;
    }

    .row.md-20 {
        margin-left: -20px;
        margin-right: -20px;
    }

    .row.md-0 > .col {
        padding-left: 0;
        padding-right: 0;
    }

    .row.md-2 > .col {
        padding-left: 2.5px;
        padding-right: 2.5px;
    }

    .row.md-5 > .col {
        padding-left: 5px;
        padding-right: 5px;
    }

    .row.md-7 > .col {
        padding-left: 7.5px;
        padding-right: 7.5px;
    }

    .row.md-10 > .col {
        padding-left: 10px;
        padding-right: 10px;
    }

    .row.md-15 > .col {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row.md-20 > .col {
        padding-left: 20px;
        padding-right: 20px;
    }

}

@media (min-width: 1200px) {

    .row.lg-0 {
        margin-left: 0;
        margin-right: 0;
    }

    .row.lg-2 {
        margin-left: -2.5px;
        margin-right: -2.5px;
    }

    .row.lg-5 {
        margin-left: -5px;
        margin-right: -5px;
    }

    .row.lg-7 {
        margin-left: -7.5px;
        margin-right: -7.5px;
    }

    .row.lg-10 {
        margin-left: -10px;
        margin-right: -10px;
    }

    .row.lg-15 {
        margin-left: -15px;
        margin-right: -15px;
    }

    .row.lg-20 {
        margin-left: -20px;
        margin-right: -20px;
    }

    .row.lg-0 > .col {
        padding-left: 0;
        padding-right: 0;
    }

    .row.lg-2 > .col {
        padding-left: 2.5px;
        padding-right: 2.5px;
    }

    .row.lg-5 > .col {
        padding-left: 5px;
        padding-right: 5px;
    }

    .row.lg-7 > .col {
        padding-left: 7.5px;
        padding-right: 7.5px;
    }

    .row.lg-10 > .col {
        padding-left: 10px;
        padding-right: 10px;
    }

    .row.lg-15 > .col {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row.lg-20 > .col {
        padding-left: 20px;
        padding-right: 20px;
    }

}

/*====================================================================================================================*/
/* Cols */
/*====================================================================================================================*/

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 2;
    max-width: 100%;
}

.col.as-1 {
    -ms-flex: 0 0 8.33333333%;
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%
}

.col.as-2 {
    -ms-flex: 0 0 16.66666667%;
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%
}

.col.as-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.col.as-4 {
    -ms-flex: 0 0 33.33333333%;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%
}

.col.as-5 {
    -ms-flex: 0 0 41.66666667%;
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%
}

.col.as-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.col.as-7 {
    -ms-flex: 0 0 58.33333333%;
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%
}

.col.as-8 {
    -ms-flex: 0 0 66.66666667%;
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%
}

.col.as-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
}

.col.as-10 {
    -ms-flex: 0 0 83.33333333%;
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
}

.col.as-11 {
    -ms-flex: 0 0 91.66666667%;
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
}

.col.as-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

/* As Margin Left*/
.col.as-ml-0 {
    margin-left: 0
}

.col.as-ml-1 {
    margin-left: 8.33333333%
}

.col.as-ml-2 {
    margin-left: 16.66666667%
}

.col.as-ml-3 {
    margin-left: 25%
}

.col.as-ml-4 {
    margin-left: 33.33333333%
}

.col.as-ml-5 {
    margin-left: 41.66666667%
}

.col.as-ml-6 {
    margin-left: 50%
}

.col.as-ml-7 {
    margin-left: 58.33333333%
}

.col.as-ml-8 {
    margin-left: 66.66666667%
}

.col.as-ml-9 {
    margin-left: 75%
}

.col.as-ml-10 {
    margin-left: 83.33333333%
}

.col.as-ml-11 {
    margin-left: 91.66666667%
}

.col.as-ml-12 {
    margin-left: 100%
}

/*As Margil Right*/
.col.as-mr-0 {
    margin-right: 0
}

.col.as-mr-1 {
    margin-right: 8.33333333%
}

.col.as-mr-2 {
    margin-right: 16.66666667%
}

.col.as-mr-3 {
    margin-right: 25%
}

.col.as-mr-4 {
    margin-right: 33.33333333%
}

.col.as-mr-5 {
    margin-right: 41.66666667%
}

.col.as-mr-6 {
    margin-right: 50%
}

.col.as-mr-7 {
    margin-right: 58.33333333%
}

.col.as-mr-8 {
    margin-right: 66.66666667%
}

.col.as-mr-9 {
    margin-right: 75%
}

.col.as-mr-10 {
    margin-right: 83.33333333%
}

.col.as-mr-11 {
    margin-right: 91.66666667%
}

.col.as-mr-12 {
    margin-right: 100%
}

/* ALL SIZE ORDER */
.col.as-or-1 {
    order: 1;
}

.col.as-or-2 {
    order: 2;
}

.col.as-or-3 {
    order: 3;
}

.col.as-or-4 {
    order: 4;
}

.col.as-or-5 {
    order: 5;
}

.col.as-or-6 {
    order: 6;
}

.col.as-or-7 {
    order: 7;
}

.col.as-or-8 {
    order: 8;
}

.col.as-or-9 {
    order: 9;
}

.col.as-or-10 {
    order: 10;
}

.col.as-or-11 {
    order: 11;
}

.col.as-or-12 {
    order: 12;
}

@media (max-width: 575px) {

    .col.xxs-1 {
        -ms-flex: 0 0 8.33333333%;
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%
    }

    .col.xxs-2 {
        -ms-flex: 0 0 16.66666667%;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%
    }

    .col.xxs-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col.xxs-4 {
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%
    }

    .col.xxs-5 {
        -ms-flex: 0 0 41.66666667%;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%
    }

    .col.xxs-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col.xxs-7 {
        -ms-flex: 0 0 58.33333333%;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%
    }

    .col.xxs-8 {
        -ms-flex: 0 0 66.66666667%;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%
    }

    .col.xxs-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col.xxs-10 {
        -ms-flex: 0 0 83.33333333%;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
    }

    .col.xxs-11 {
        -ms-flex: 0 0 91.66666667%;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
    }

    .col.xxs-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Xxs Margin Left*/
    .col.xxs-ml-0 {
        margin-left: 0
    }

    .col.xxs-ml-1 {
        margin-left: 8.33333333%
    }

    .col.xxs-ml-2 {
        margin-left: 16.66666667%
    }

    .col.xxs-ml-3 {
        margin-left: 25%
    }

    .col.xxs-ml-4 {
        margin-left: 33.33333333%
    }

    .col.xxs-ml-5 {
        margin-left: 41.66666667%
    }

    .col.xxs-ml-6 {
        margin-left: 50%
    }

    .col.xxs-ml-7 {
        margin-left: 58.33333333%
    }

    .col.xxs-ml-8 {
        margin-left: 66.66666667%
    }

    .col.xxs-ml-9 {
        margin-left: 75%
    }

    .col.xxs-ml-10 {
        margin-left: 83.33333333%
    }

    .col.xxs-ml-11 {
        margin-left: 91.66666667%
    }

    .col.xxs-ml-12 {
        margin-left: 100%
    }

    /*Xxs Margil Right*/
    .col.xxs-mr-0 {
        margin-right: 0
    }

    .col.xxs-mr-1 {
        margin-right: 8.33333333%
    }

    .col.xxs-mr-2 {
        margin-right: 16.66666667%
    }

    .col.xxs-mr-3 {
        margin-right: 25%
    }

    .col.xxs-mr-4 {
        margin-right: 33.33333333%
    }

    .col.xxs-mr-5 {
        margin-right: 41.66666667%
    }

    .col.xxs-mr-6 {
        margin-right: 50%
    }

    .col.xxs-mr-7 {
        margin-right: 58.33333333%
    }

    .col.xxs-mr-8 {
        margin-right: 66.66666667%
    }

    .col.xxs-mr-9 {
        margin-right: 75%
    }

    .col.xxs-mr-10 {
        margin-right: 83.33333333%
    }

    .col.xxs-mr-11 {
        margin-right: 91.66666667%
    }

    .col.xxs-mr-12 {
        margin-right: 100%
    }

    /* Xxs ORDER */
    .col.xxs-or-1 {
        order: 1;
    }

    .col.xxs-or-2 {
        order: 2;
    }

    .col.xxs-or-3 {
        order: 3;
    }

    .col.xxs-or-4 {
        order: 4;
    }

    .col.xxs-or-5 {
        order: 5;
    }

    .col.xxs-or-6 {
        order: 6;
    }

    .col.xxs-or-7 {
        order: 7;
    }

    .col.xxs-or-8 {
        order: 8;
    }

    .col.xxs-or-9 {
        order: 9;
    }

    .col.xxs-or-10 {
        order: 10;
    }

    .col.xxs-or-11 {
        order: 11;
    }

    .col.xxs-or-12 {
        order: 12;
    }

}

@media (max-width: 767px) and (min-width: 576px) {

    .col.xs-1 {
        -ms-flex: 0 0 8.33333333%;
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%
    }

    .col.xs-2 {
        -ms-flex: 0 0 16.66666667%;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%
    }

    .col.xs-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col.xs-4 {
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%
    }

    .col.xs-5 {
        -ms-flex: 0 0 41.66666667%;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%
    }

    .col.xs-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col.xs-7 {
        -ms-flex: 0 0 58.33333333%;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%
    }

    .col.xs-8 {
        -ms-flex: 0 0 66.66666667%;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%
    }

    .col.xs-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col.xs-10 {
        -ms-flex: 0 0 83.33333333%;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
    }

    .col.xs-11 {
        -ms-flex: 0 0 91.66666667%;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
    }

    .col.xs-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Xs Margin Left*/
    .col.xs-ml-0 {
        margin-left: 0
    }

    .col.xs-ml-1 {
        margin-left: 8.33333333%
    }

    .col.xs-ml-2 {
        margin-left: 16.66666667%
    }

    .col.xs-ml-3 {
        margin-left: 25%
    }

    .col.xs-ml-4 {
        margin-left: 33.33333333%
    }

    .col.xs-ml-5 {
        margin-left: 41.66666667%
    }

    .col.xs-ml-6 {
        margin-left: 50%
    }

    .col.xs-ml-7 {
        margin-left: 58.33333333%
    }

    .col.xs-ml-8 {
        margin-left: 66.66666667%
    }

    .col.xs-ml-9 {
        margin-left: 75%
    }

    .col.xs-ml-10 {
        margin-left: 83.33333333%
    }

    .col.xs-ml-11 {
        margin-left: 91.66666667%
    }

    .col.xs-ml-12 {
        margin-left: 100%
    }

    /*Xs Margil Right*/
    .col.xs-mr-0 {
        margin-right: 0
    }

    .col.xs-mr-1 {
        margin-right: 8.33333333%
    }

    .col.xs-mr-2 {
        margin-right: 16.66666667%
    }

    .col.xs-mr-3 {
        margin-right: 25%
    }

    .col.xs-mr-4 {
        margin-right: 33.33333333%
    }

    .col.xs-mr-5 {
        margin-right: 41.66666667%
    }

    .col.xs-mr-6 {
        margin-right: 50%
    }

    .col.xs-mr-7 {
        margin-right: 58.33333333%
    }

    .col.xs-mr-8 {
        margin-right: 66.66666667%
    }

    .col.xs-mr-9 {
        margin-right: 75%
    }

    .col.xs-mr-10 {
        margin-right: 83.33333333%
    }

    .col.xs-mr-11 {
        margin-right: 91.66666667%
    }

    .col.xs-mr-12 {
        margin-right: 100%
    }

    /* Xs ORDER */
    .col.xs-or-1 {
        order: 1;
    }

    .col.xs-or-2 {
        order: 2;
    }

    .col.xs-or-3 {
        order: 3;
    }

    .col.xs-or-4 {
        order: 4;
    }

    .col.xs-or-5 {
        order: 5;
    }

    .col.xs-or-6 {
        order: 6;
    }

    .col.xs-or-7 {
        order: 7;
    }

    .col.xs-or-8 {
        order: 8;
    }

    .col.xs-or-9 {
        order: 9;
    }

    .col.xs-or-10 {
        order: 10;
    }

    .col.xs-or-11 {
        order: 11;
    }

    .col.xs-or-12 {
        order: 12;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .col.sm-1 {
        -ms-flex: 0 0 8.33333333%;
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%
    }

    .col.sm-2 {
        -ms-flex: 0 0 16.66666667%;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%
    }

    .col.sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col.sm-4 {
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%
    }

    .col.sm-5 {
        -ms-flex: 0 0 41.66666667%;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%
    }

    .col.sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col.sm-7 {
        -ms-flex: 0 0 58.33333333%;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%
    }

    .col.sm-8 {
        -ms-flex: 0 0 66.66666667%;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%
    }

    .col.sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col.sm-10 {
        -ms-flex: 0 0 83.33333333%;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
    }

    .col.sm-11 {
        -ms-flex: 0 0 91.66666667%;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
    }

    .col.sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Sm Margin Left*/
    .col.sm-ml-0 {
        margin-left: 0
    }

    .col.sm-ml-1 {
        margin-left: 8.33333333%
    }

    .col.sm-ml-2 {
        margin-left: 16.66666667%
    }

    .col.sm-ml-3 {
        margin-left: 25%
    }

    .col.sm-ml-4 {
        margin-left: 33.33333333%
    }

    .col.sm-ml-5 {
        margin-left: 41.66666667%
    }

    .col.sm-ml-6 {
        margin-left: 50%
    }

    .col.sm-ml-7 {
        margin-left: 58.33333333%
    }

    .col.sm-ml-8 {
        margin-left: 66.66666667%
    }

    .col.sm-ml-9 {
        margin-left: 75%
    }

    .col.sm-ml-10 {
        margin-left: 83.33333333%
    }

    .col.sm-ml-11 {
        margin-left: 91.66666667%
    }

    .col.sm-ml-12 {
        margin-left: 100%
    }

    /*Sm Margil Right*/
    .col.sm-mr-0 {
        margin-right: 0
    }

    .col.sm-mr-1 {
        margin-right: 8.33333333%
    }

    .col.sm-mr-2 {
        margin-right: 16.66666667%
    }

    .col.sm-mr-3 {
        margin-right: 25%
    }

    .col.sm-mr-4 {
        margin-right: 33.33333333%
    }

    .col.sm-mr-5 {
        margin-right: 41.66666667%
    }

    .col.sm-mr-6 {
        margin-right: 50%
    }

    .col.sm-mr-7 {
        margin-right: 58.33333333%
    }

    .col.sm-mr-8 {
        margin-right: 66.66666667%
    }

    .col.sm-mr-9 {
        margin-right: 75%
    }

    .col.sm-mr-10 {
        margin-right: 83.33333333%
    }

    .col.sm-mr-11 {
        margin-right: 91.66666667%
    }

    .col.sm-mr-12 {
        margin-right: 100%
    }

    /* Sm ORDER */
    .col.sm-or-1 {
        order: 1;
    }

    .col.sm-or-2 {
        order: 2;
    }

    .col.sm-or-3 {
        order: 3;
    }

    .col.sm-or-4 {
        order: 4;
    }

    .col.sm-or-5 {
        order: 5;
    }

    .col.sm-or-6 {
        order: 6;
    }

    .col.sm-or-7 {
        order: 7;
    }

    .col.sm-or-8 {
        order: 8;
    }

    .col.sm-or-9 {
        order: 9;
    }

    .col.sm-or-10 {
        order: 10;
    }

    .col.sm-or-11 {
        order: 11;
    }

    .col.sm-or-12 {
        order: 12;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {

    /* Md Margin Left*/
    .col.md-ml-0 {
        margin-left: 0
    }

    .col.md-ml-1 {
        margin-left: 8.33333333%
    }

    .col.md-ml-2 {
        margin-left: 16.66666667%
    }

    .col.md-ml-3 {
        margin-left: 25%
    }

    .col.md-ml-4 {
        margin-left: 33.33333333%
    }

    .col.md-ml-5 {
        margin-left: 41.66666667%
    }

    .col.md-ml-6 {
        margin-left: 50%
    }

    .col.md-ml-7 {
        margin-left: 58.33333333%
    }

    .col.md-ml-8 {
        margin-left: 66.66666667%
    }

    .col.md-ml-9 {
        margin-left: 75%
    }

    .col.md-ml-10 {
        margin-left: 83.33333333%
    }

    .col.md-ml-11 {
        margin-left: 91.66666667%
    }

    .col.md-ml-12 {
        margin-left: 100%
    }

    /*Md Margil Right*/
    .col.md-mr-0 {
        margin-right: 0
    }

    .col.md-mr-1 {
        margin-right: 8.33333333%
    }

    .col.md-mr-2 {
        margin-right: 16.66666667%
    }

    .col.md-mr-3 {
        margin-right: 25%
    }

    .col.md-mr-4 {
        margin-right: 33.33333333%
    }

    .col.md-mr-5 {
        margin-right: 41.66666667%
    }

    .col.md-mr-6 {
        margin-right: 50%
    }

    .col.md-mr-7 {
        margin-right: 58.33333333%
    }

    .col.md-mr-8 {
        margin-right: 66.66666667%
    }

    .col.md-mr-9 {
        margin-right: 75%
    }

    .col.md-mr-10 {
        margin-right: 83.33333333%
    }

    .col.md-mr-11 {
        margin-right: 91.66666667%
    }

    .col.md-mr-12 {
        margin-right: 100%
    }

    /* MD ORDER */
    .col.md-or-1 {
        order: 1;
    }

    .col.md-or-2 {
        order: 2;
    }

    .col.md-or-3 {
        order: 3;
    }

    .col.md-or-4 {
        order: 4;
    }

    .col.md-or-5 {
        order: 5;
    }

    .col.md-or-6 {
        order: 6;
    }

    .col.md-or-7 {
        order: 7;
    }

    .col.md-or-8 {
        order: 8;
    }

    .col.md-or-9 {
        order: 9;
    }

    .col.md-or-10 {
        order: 10;
    }

    .col.md-or-11 {
        order: 11;
    }

    .col.md-or-12 {
        order: 12;
    }
}

@media (min-width: 992px) {

    .col.md-1 {
        -ms-flex: 0 0 8.33333333%;
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%
    }

    .col.md-2 {
        -ms-flex: 0 0 16.66666667%;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%
    }

    .col.md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col.md-4 {
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%
    }

    .col.md-5 {
        -ms-flex: 0 0 41.66666667%;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%
    }

    .col.md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col.md-7 {
        -ms-flex: 0 0 58.33333333%;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%
    }

    .col.md-8 {
        -ms-flex: 0 0 66.66666667%;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%
    }

    .col.md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col.md-10 {
        -ms-flex: 0 0 83.33333333%;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
    }

    .col.md-11 {
        -ms-flex: 0 0 91.66666667%;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
    }

    .col.md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

}

@media (min-width: 1200px) {

    .col.lg-1 {
        -ms-flex: 0 0 8.33333333%;
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%
    }

    .col.lg-2 {
        -ms-flex: 0 0 16.66666667%;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%
    }

    .col.lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col.lg-4 {
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%
    }

    .col.lg-5 {
        -ms-flex: 0 0 41.66666667%;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%
    }

    .col.lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col.lg-7 {
        -ms-flex: 0 0 58.33333333%;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%
    }

    .col.lg-8 {
        -ms-flex: 0 0 66.66666667%;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%
    }

    .col.lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col.lg-10 {
        -ms-flex: 0 0 83.33333333%;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
    }

    .col.lg-11 {
        -ms-flex: 0 0 91.66666667%;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
    }

    .col.lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    /*Lg Margil Left*/
    .col.lg-ml-0 {
        margin-left: 0
    }

    .col.lg-ml-1 {
        margin-left: 8.33333333%
    }

    .col.lg-ml-2 {
        margin-left: 16.66666667%
    }

    .col.lg-ml-3 {
        margin-left: 25%
    }

    .col.lg-ml-4 {
        margin-left: 33.33333333%
    }

    .col.lg-ml-5 {
        margin-left: 41.66666667%
    }

    .col.lg-ml-6 {
        margin-left: 50%
    }

    .col.lg-ml-7 {
        margin-left: 58.33333333%
    }

    .col.lg-ml-8 {
        margin-left: 66.66666667%
    }

    .col.lg-ml-9 {
        margin-left: 75%
    }

    .col.lg-ml-10 {
        margin-left: 83.33333333%
    }

    .col.lg-ml-11 {
        margin-left: 91.66666667%
    }

    .col.lg-ml-12 {
        margin-left: 100%
    }

    /*Lg Margil Right*/
    .col.lg-mr-0 {
        margin-right: 0
    }

    .col.lg-mr-1 {
        margin-right: 8.33333333%
    }

    .col.lg-mr-2 {
        margin-right: 16.66666667%
    }

    .col.lg-mr-3 {
        margin-right: 25%
    }

    .col.lg-mr-4 {
        margin-right: 33.33333333%
    }

    .col.lg-mr-5 {
        margin-right: 41.66666667%
    }

    .col.lg-mr-6 {
        margin-right: 50%
    }

    .col.lg-mr-7 {
        margin-right: 58.33333333%
    }

    .col.lg-mr-8 {
        margin-right: 66.66666667%
    }

    .col.lg-mr-9 {
        margin-right: 75%
    }

    .col.lg-mr-10 {
        margin-right: 83.33333333%
    }

    .col.lg-mr-11 {
        margin-right: 91.66666667%
    }

    .col.lg-mr-12 {
        margin-right: 100%
    }

    /* Lg ORDER */
    .col.lg-or-1 {
        order: 1;
    }

    .col.lg-or-2 {
        order: 2;
    }

    .col.lg-or-3 {
        order: 3;
    }

    .col.lg-or-4 {
        order: 4;
    }

    .col.lg-or-5 {
        order: 5;
    }

    .col.lg-or-6 {
        order: 6;
    }

    .col.lg-or-7 {
        order: 7;
    }

    .col.lg-or-8 {
        order: 8;
    }

    .col.lg-or-9 {
        order: 9;
    }

    .col.lg-or-10 {
        order: 10;
    }

    .col.lg-or-11 {
        order: 11;
    }

    .col.lg-or-12 {
        order: 12;
    }
}

/*====================================================================================================================*/
/* Padding */
/*====================================================================================================================*/

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 1px
}

.p-2 {
    padding: 2px
}

.p-3 {
    padding: 3px
}

.p-4 {
    padding: 4px
}

.p-5 {
    padding: 5px
}

.p-10 {
    padding: 10px
}

.p-15 {
    padding: 15px
}

.p-20 {
    padding: 20px;
}

.p-30 {
    padding: 30px
}

.p-40 {
    padding: 40px
}

.p-50 {
    padding: 50px
}

.p-60 {
    padding: 60px
}

.p-70 {
    padding: 70px
}

.p-80 {
    padding: 80px
}

.p-90 {
    padding: 90px
}

.p-100 {
    padding: 100px
}

.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 1px
}

.pt-2 {
    padding-top: 2px
}

.pt-3 {
    padding-top: 3px
}

.pt-4 {
    padding-top: 4px
}

.pt-5 {
    padding-top: 5px
}

.pt-7 {
    padding-top: 7px
}

.pt-10 {
    padding-top: 10px
}

.pt-15 {
    padding-top: 15px
}

.pt-20 {
    padding-top: 20px
}

.pt-30 {
    padding-top: 30px
}

.pt-40 {
    padding-top: 40px
}

.pt-50 {
    padding-top: 50px
}

.pt-60 {
    padding-top: 60px
}

.pt-70 {
    padding-top: 70px
}

.pt-80 {
    padding-top: 80px
}

.pt-90 {
    padding-top: 90px
}

.pt-100 {
    padding-top: 100px
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 1px
}

.pb-2 {
    padding-bottom: 2px
}

.pb-3 {
    padding-bottom: 3px
}

.pb-4 {
    padding-bottom: 4px
}

.pb-5 {
    padding-bottom: 5px
}

.pb-7 {
    padding-bottom: 7px
}

.pb-10 {
    padding-bottom: 10px
}

.pb-15 {
    padding-bottom: 15px
}

.pb-20 {
    padding-bottom: 20px
}

.pb-30 {
    padding-bottom: 30px
}

.pb-40 {
    padding-bottom: 40px
}

.pb-50 {
    padding-bottom: 50px
}

.pb-60 {
    padding-bottom: 60px
}

.pb-70 {
    padding-bottom: 70px
}

.pb-80 {
    padding-bottom: 80px
}

.pb-90 {
    padding-bottom: 90px
}

.pb-100 {
    padding-bottom: 100px
}

.pl-0 {
    padding-left: 0 !important;
}

.pl-5 {
    padding-left: 5px
}

.pl-10 {
    padding-left: 10px
}

.pl-15 {
    padding-left: 15px
}

.pl-20 {
    padding-left: 20px
}

.pl-30 {
    padding-left: 30px
}

.pl-40 {
    padding-left: 40px
}

.pl-50 {
    padding-left: 50px
}

.pl-60 {
    padding-left: 60px
}

.pl-70 {
    padding-left: 70px
}

.pl-80 {
    padding-left: 80px
}

.pl-90 {
    padding-left: 90px
}

.pl-100 {
    padding-left: 100px
}

.pr-0 {
    padding-right: 0;
}

.pr-1 {
    padding-right: 1px
}

.pr-2 {
    padding-right: 2px
}

.pr-3 {
    padding-right: 3px
}

.pr-4 {
    padding-right: 4px
}

.pr-5 {
    padding-right: 5px
}

.pr-10 {
    padding-right: 10px
}

.pr-15 {
    padding-right: 15px
}

.pr-20 {
    padding-right: 20px
}

.pr-30 {
    padding-right: 30px
}

.pr-40 {
    padding-right: 40px
}

.pr-50 {
    padding-right: 50px
}

.pr-60 {
    padding-right: 60px
}

.pr-70 {
    padding-right: 70px
}

.pr-80 {
    padding-right: 80px
}

.pr-90 {
    padding-right: 90px
}

.pr-100 {
    padding-right: 100px
}

@media (max-width: 767px) {

    .p-15, .p-20, .p-30 {
        padding: 10px
    }

    .p-40, .p-50, .p-60 {
        padding: 20px
    }

    .p-70, .p-80 {
        padding: 30px
    }

    .p-90 {
        padding: 40px
    }

    .p-100 {
        padding: 50px
    }

    .pt-15, .pt-20, .pt-30 {
        padding-top: 10px
    }

    .pt-40, .pt-50, .pt-60 {
        padding-top: 20px
    }

    .pt-70, .pt-80 {
        padding-top: 30px
    }

    .pt-90 {
        padding-top: 40px
    }

    .pt-100 {
        padding-top: 50px
    }

    .pb-15, .pb-20, .pb-30 {
        padding-bottom: 10px
    }

    .pb-40, .pb-50, .pb-60 {
        padding-bottom: 20px
    }

    .pb-70, .pb-80 {
        padding-bottom: 30px
    }

    .pb-90 {
        padding-bottom: 40px
    }

    .pb-100 {
        padding-bottom: 50px
    }

    .pl-15, .pl-20, .pl-30 {
        padding-left: 10px
    }

    .pl-40, .pl-50, .pl-60 {
        padding-left: 20px
    }

    .pl-70, .pl-80 {
        padding-left: 30px
    }

    .pl-90 {
        padding-left: 40px
    }

    .pl-100 {
        padding-left: 50px
    }

    .pr-15, .pr-20, .pr-30 {
        padding-right: 10px
    }

    .pr-40, .pr-50, .pr-60 {
        padding-right: 30px
    }

    .pr-70, .pr-80 {
        padding-right: 30px
    }

    .pr-90 {
        padding-right: 40px
    }

    .pr-100 {
        padding-right: 50px
    }
}

/*====================================================================================================================*/
/* Margin */
/*====================================================================================================================*/

.m-0 {
    margin: 0;
}

.m-1 {
    margin: 1px
}

.m-2 {
    margin: 2px
}

.m-3 {
    margin: 3px
}

.m-4 {
    margin: 4px
}

.m-5 {
    margin: 5px
}

.m-10 {
    margin: 10px
}

.m-15 {
    margin: 15px
}

.m-20 {
    margin: 20px
}

.m-30 {
    margin: 30px
}

.m-40 {
    margin: 40px
}

.m-50 {
    margin: 50px
}

.m-60 {
    margin: 60px
}

.m-70 {
    margin: 70px
}

.m-80 {
    margin: 80px
}

.m-90 {
    margin: 90px
}

.m-100 {
    margin: 100px
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1px;
}

.mt-2 {
    margin-top: 2px;
}

.mt-3 {
    margin-top: 3px;
}

.mt-4 {
    margin-top: 4px;
}

.mt-5 {
    margin-top: 5px
}

.mt-10 {
    margin-top: 10px
}

.mt-15 {
    margin-top: 15px
}

.mt-20 {
    margin-top: 20px
}

.mt-30 {
    margin-top: 30px
}

.mt-40 {
    margin-top: 40px
}

.mt-50 {
    margin-top: 50px
}

.mt-60 {
    margin-top: 60px
}

.mt-70 {
    margin-top: 70px
}

.mt-80 {
    margin-top: 80px
}

.mt-90 {
    margin-top: 90px
}

.mt-100 {
    margin-top: 100px
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1px;
}

.mb-2 {
    margin-bottom: 2px;
}

.mb-3 {
    margin-bottom: 3px;
}

.mb-4 {
    margin-bottom: 4px;
}

.mb-5 {
    margin-bottom: 5px
}

.mb-7 {
    margin-bottom: 7px
}

.mb-10 {
    margin-bottom: 10px
}

.mb-15 {
    margin-bottom: 15px
}

.mb-20 {
    margin-bottom: 20px
}

.mb-30 {
    margin-bottom: 30px
}

.mb-40 {
    margin-bottom: 40px
}

.mb-50 {
    margin-bottom: 50px
}

.mb-60 {
    margin-bottom: 60px
}

.mb-70 {
    margin-bottom: 70px
}

.mb-80 {
    margin-bottom: 80px
}

.mb-90 {
    margin-bottom: 90px
}

.mb-100 {
    margin-bottom: 100px
}

.ml-auto {
    margin-left: auto;
}

.ml-0 {
    margin-left: 0;
}

.ml-1 {
    margin-left: 1px
}

.ml-2 {
    margin-left: 2px
}

.ml-3 {
    margin-left: 3px
}

.ml-4 {
    margin-left: 4px
}

.ml-5 {
    margin-left: 5px
}

.ml-10 {
    margin-left: 10px
}

.ml-15 {
    margin-left: 15px
}

.ml-20 {
    margin-left: 20px
}

.ml-30 {
    margin-left: 30px
}

.ml-40 {
    margin-left: 40px
}

.ml-50 {
    margin-left: 50px
}

.ml-60 {
    margin-left: 60px
}

.ml-70 {
    margin-left: 70px
}

.ml-80 {
    margin-left: 80px
}

.ml-90 {
    margin-left: 90px
}

.ml-100 {
    margin-left: 100px
}

.mr-auto {
    margin-right: auto;
}

.mr-0 {
    margin-right: 0;
}

.mr-1 {
    margin-right: 1px
}

.mr-2 {
    margin-right: 2px
}

.mr-3 {
    margin-right: 3px
}

.mr-4 {
    margin-right: 4px
}

.mr-5 {
    margin-right: 5px
}

.mr-10 {
    margin-right: 10px
}

.mr-15 {
    margin-right: 15px
}

.mr-20 {
    margin-right: 20px
}

.mr-30 {
    margin-right: 30px
}

.mr-40 {
    margin-right: 40px
}

.mr-50 {
    margin-right: 50px
}

.mr-60 {
    margin-right: 60px
}

.mr-70 {
    margin-right: 70px
}

.mr-80 {
    margin-right: 80px
}

.mr-90 {
    margin-right: 90px
}

.mr-100 {
    margin-right: 100px
}

@media (max-width: 767px) {

    .m-15, .m-20, .m-30 {
        margin: 10px
    }

    .m-40, .m-50.m-60 {
        margin: 20px
    }

    .m-70, .m-80 {
        margin: 30px
    }

    .m-90 {
        margin: 40px
    }

    .m-100 {
        margin: 50px
    }

    .mt-15, .mt-20, .mt-30 {
        margin-top: 10px
    }

    .mt-40, .mt-50, .mt-60 {
        margin-top: 20px
    }

    .mt-70, .mt-80 {
        margin-top: 30px
    }

    .mt-90 {
        margin-top: 40px
    }

    .mt-100 {
        /*margin-top: 50px*/
    }

    .mb-15, .mb-20, .mb-30 {
        margin-bottom: 10px
    }

    .mb-40, .mb-50, .mb-60 {
        margin-bottom: 20px
    }

    .mb-70, .mb-80 {
        margin-bottom: 30px
    }

    .mb-90 {
        margin-bottom: 40px
    }

    .mb-100 {
        margin-bottom: 50px
    }

    .ml-15, .ml-20, .ml-30 {
        margin-left: 10px
    }

    .ml-40, .ml-50, .ml-60 {
        margin-left: 20px
    }

    .ml-70, .ml-80 {
        margin-left: 30px
    }

    .ml-90 {
        margin-left: 40px
    }

    .ml-100 {
        margin-left: 50px
    }

    .mr-15, .mr-20, .mr-30 {
        margin-right: 10px
    }

    .mr-40, .mr-50, .mr-60 {
        margin-right: 30px
    }

    .mr-70, .mr-80 {
        margin-right: 30px
    }

    .mr-90 {
        margin-right: 40px
    }

    .mr-100 {
        margin-right: 50px
    }
}

/*====================================================================================================================*/
/* Owl Carousel */
/*====================================================================================================================*/

.owl-carousel {
    display: none;
    /*width: 100%;*/
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index.php fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    /*width: 100%;*/
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-loaded {
    display: block;
    opacity: 1 !important;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

.no-js .owl-carousel {
    display: block;
}

.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.owl-height {
    transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
    /*opacity: 0;*/
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("../images/logo.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-nav {
    height: 0;
    width: 100%;
    position: absolute;
    top: calc(50% - 25px);
    opacity: 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.owl-theme:hover .owl-nav {
    padding: 0 10px;
    opacity: 1;
}

.owl-theme .owl-nav [class*='owl-'] {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    font-size: 18px;
    color: #fff;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    opacity: .7;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    opacity: .9;
}

.control-cs1 .owl-nav [class*='owl-'] {
    width: 43px;
    height: 43px;
    line-height: 43px;
}

.owl-theme .owl-nav .disabled {
    opacity: 0;
    cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}

.owl-theme .owl-nav .owl-prev {
    float: left;
}

.owl-theme .owl-nav .owl-next {
    float: right;
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 0 5px;
    border: 1px solid #fff;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #fff
}

.owl-theme .owl-dots .owl-dot.active span {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*====================================================================================================================*/
/* Glisse */
/*====================================================================================================================*/

#glisse-overlay-content {
    position: fixed;
    top: 50px;
    bottom: 50px;
    right: 10px;
    left: 10px;
    opacity: 0;
    z-index: 999;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#glisse-overlay-content img {
    display: none;
}

#glisse-overlay-content.shake {
    -webkit-animation: shake 600ms 1;
    -moz-animation: shake 600ms 1;
    -ms-animation: shake 600ms 1;
    -o-animation: shake 600ms 1;
    animation: shake 600ms 1;
}

#glisse-spinner {
    position: fixed;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    height: 50px;
    width: 50px;
    background: rgba(0, 0, 0, .6) url(../../assets/images/loading-circle.gif) center center no-repeat;
    background-size: cover;
    background-color: transparent;
}

.glisse-next span, .glisse-prev .span {
    -webkit-transition: all 100ms ease;
    -moz-transition: all 100ms ease;
    -o-transition: all 100ms ease;
    -ms-transition: all 100ms ease;
    transition: all 100ms ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

#glisse-controls .ended .span {
    cursor: default;
}

#glisse-overlay,
#glisse-close,
#glisse-controls,
#glisse-spinner {
    opacity: 0;
}

#glisse-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 998;
}

#glisse-overlay.loading:before {
    display: none;
}

#glisse-overlay.loading #glisse-spinner {
    opacity: 1;
}

.glisse-legend {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: calc(100% - 40px);
    background-color: #000;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 10px;
    line-height: 40px;
    text-align: left;
    z-index: 999;
    font-weight: 300;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    word-break: break-all;
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    -ms-line-clamp: 1;
    -o-line-clamp: 1;
}

#glisse-close {
    position: fixed;
    top: 0;
    right: 0;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background: #000;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    z-index: 1000;
}

#glisse-close:before {
    content: '✕';
}

#glisse-controls {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 40px;
    background-color: #000;
    z-index: 999;
}

.glisse-next .span,
.glisse-prev .span {
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-weight: bold;
    text-align: center;
    position: fixed;
    bottom: 0;
    color: #fff !important;
    font-size: 18px;
    z-index: 999;
    background: #000;
    cursor: pointer !important;
}

.glisse-next .span {
    left: 50%;
    margin-left: 20px;
}

.glisse-prev .span {
    left: 50%;
    margin-left: -40px;
}

@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
    }
}

@-moz-keyframes shake {
    0%, 100% {
        -moz-transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        -moz-transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        -moz-transform: translateX(10px);
    }
}

@-ms-keyframes shake {
    0%, 100% {
        -ms-transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        -ms-transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        -ms-transform: translateX(10px);
    }
}

@-o-keyframes shake {
    0%, 100% {
        -o-transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        -o-transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        -o-transform: translateX(10px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

@media (max-width: 575px) {
    #glisse-overlay-content {
        right: 10px;
        left: 10px;
    }
}

/*====================================================================================================================*/
/* Waves effect*/
/*====================================================================================================================*/

.waves-effect {
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.waves-effect .waves-ripple {
    position: absolute;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.05);
    background: -webkit-radial-gradient(rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.3) 60%, rgba(255, 255, 255, 0) 70%);
    background: -o-radial-gradient(rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.3) 60%, rgba(255, 255, 255, 0) 70%);
    background: -moz-radial-gradient(rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.3) 60%, rgba(255, 255, 255, 0) 70%);
    background: radial-gradient(rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.3) 60%, rgba(255, 255, 255, 0) 70%);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    -o-transition-property: -o-transform, opacity;
    transition-property: transform, opacity;
    -webkit-transform: scale(0) translate(0, 0);
    -moz-transform: scale(0) translate(0, 0);
    -ms-transform: scale(0) translate(0, 0);
    -o-transform: scale(0) translate(0, 0);
    transform: scale(0) translate(0, 0);
    pointer-events: none;
}

.waves-effect.waves-light .waves-ripple {
    background: rgba(255, 255, 255, 0.4);
    background: -webkit-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: -o-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: -moz-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
}

.waves-effect.waves-classic .waves-ripple {
    background: rgba(0, 0, 0, 0.2);
}

.waves-effect.waves-classic.waves-light .waves-ripple {
    background: rgba(255, 255, 255, 0.4);
}

.waves-notransition {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

.waves-button,
.waves-circle {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(circle, #ffffff 100%, #000000 100%);
}

.waves-button,
.waves-button:hover,
.waves-button:visited,
.waves-button-input {
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: none;
    outline: none;
    color: inherit;
    background-color: rgba(0, 0, 0, 0);
    font-size: 1em;
    line-height: 1em;
    text-align: center;
    text-decoration: none;
    z-index: 1;
}

.waves-button {
    padding: 0.85em 1.1em;
    border-radius: 0.2em;
}

.waves-button-input {
    margin: 0;
    padding: 0.85em 1.1em;
}

.waves-input-wrapper {
    border-radius: 0.2em;
    vertical-align: bottom;
}

.waves-input-wrapper.waves-button {
    padding: 0;
}

.waves-input-wrapper .waves-button-input {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}

.waves-circle {
    text-align: center;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 50%;
}

.waves-float {
    -webkit-mask-image: none;
    -webkit-box-shadow: 0px 1px 1.5px 1px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 1px 1.5px 1px rgba(0, 0, 0, 0.12);
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}

.waves-float:active {
    -webkit-box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3);
}

.waves-block {
    display: block;
}

a.waves-effect .waves-ripple {
    z-index: -1;
}

/*====================================================================================================================*/
/* Animation */
/*====================================================================================================================*/

.animated {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
}

.animation-1s {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.animation-2s {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

[class^="animat"],
[class*="animat"] {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

[class^="animat"].infinite,
[class*="animat"].infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes bounce {
    from, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-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-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-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-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-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 {
    from, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-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-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-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-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-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);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

@-webkit-keyframes flash {
    from, 50%, to {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    from, 50%, to {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

/* originally authored by Nick Pettit - http://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
    from {
        -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);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    from {
        -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);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    from {
        -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);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    from {
        -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);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    from, to {
        -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 {
    from, to {
        -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);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake;
}

@-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);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@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);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    from {
        -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);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    from {
        -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);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

/* originally authored by Nick Pettit - http://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
    from {
        -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);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes wobble {
    from {
        -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);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes jello {
    from, 11.1%, to {
        -webkit-transform: none;
        transform: none;
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

@keyframes jello {
    from, 11.1%, to {
        -webkit-transform: none;
        transform: none;
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center;
}

@-webkit-keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-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);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-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);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-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);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-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);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-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);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-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);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        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);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        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);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        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);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        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);
    }

    to {
        -webkit-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);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}

@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);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-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);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@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);
    }

    to {
        opacity: 0;
        -webkit-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);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-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);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-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);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@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);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    from {
        -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;
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    from {
        -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;
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-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-animation-timing-function: ease-in;
        animation-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);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-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-animation-timing-function: ease-in;
        animation-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);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-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-animation-timing-function: ease-in;
        animation-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);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-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-animation-timing-function: ease-in;
        animation-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);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    from {
        -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;
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    from {
        -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;
    }

    to {
        -webkit-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-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    from {
        -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;
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    from {
        -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;
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
    from {
        -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;
    }

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    from {
        -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;
    }

    to {
        -webkit-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 {
    from {
        opacity: 1;
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    from {
        opacity: 1;
    }

    to {
        -webkit-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 {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-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 {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -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 {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-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 {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -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 {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-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 {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -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 {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-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 {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -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 {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-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;
    }

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

@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;
    }

    to {
        -webkit-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 - http://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

/* originally authored by Nick Pettit - http://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
    from {
        opacity: 1;
    }

    to {
        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 {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-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 {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
    from {
        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 {
    from {
        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);
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
    from {
        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 {
    from {
        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);
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
    from {
        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 {
    from {
        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);
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
    from {
        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 {
    from {
        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);
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    to {
        opacity: 0;
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    to {
        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);
    }

    to {
        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);
        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);
    }

    to {
        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);
    }
}

.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);
    }

    to {
        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);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }

    to {
        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;
    }
}

.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);
    }

    to {
        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);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    }

    to {
        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;
    }
}

.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);
    }

    to {
        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);
        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);
    }

    to {
        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);
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

.spin {
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.delay-01 {
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
    -o-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.delay-02 {
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.delay-03 {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    -o-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.delay-04 {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    -o-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.delay-05 {
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.delay-06 {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.delay-07 {
    -webkit-animation-delay: 0.7s;
    -moz-animation-delay: 0.7s;
    -o-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.delay-08 {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.delay-09 {
    -webkit-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
    -o-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.delay-1 {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
}

/*====================================================================================================================*/
/* Loading */
/*====================================================================================================================*/

.loading {
    position: relative;
    overflow: hidden;
}

.loading:not(.circle):before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-image: linear-gradient(100deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 80%); /* W3C */
    background-image: -webkit-linear-gradient(-10deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 80%); /* Chrome10-25,Safari5.1-6 */
    background-image: -moz-linear-gradient(-10deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 80%); /* FF3.6-15 */
    background-image: -o-linear-gradient(-10deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 80%); /* Opera */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=1); /* IE6-9 fallback on horizontal gradient */

    background-size: 150px 350px;
    background-position: 0 0;
    background-repeat: no-repeat;
    animation: loading-shine 1s infinite;
}

@keyframes loading-shine {
    0% {
        background-position: -100px 0;
    }
    100% {
        background-position: calc(100% + 150px) 0;
    }
}

/*====================================================================================================================*/
/*====================================================================================================================*/
/*====================================================================================================================*/
/*====================================================================================================================*/
/*====================================================================================================================*/
/*====================================================================================================================*/
/*====================================================================================================================*/
/*====================================================================================================================*/
/*====================================================================================================================*/
/*====================================================================================================================*/
/*====================================================================================================================*/
/*====================================================================================================================*/
/*====================================================================================================================*/
/*====================================================================================================================*/
