@charset "UTF-8";
/************
************************ $STYLES
************/
/************
************************ $PARTIALS
************/
/************
************************ $SETTINGS
************/
/************
************************ $INCLUDE COMPONENTS
************/
/* 
  We can tell the components to use here, 'true' for used, 'false' unused.
  Remember you can overwrite this value anywhere else by removing the '!default' property 
  */
/************
************************ $BREAKPOINTS
************/
/*
  Mobile first.
  Used with mixin 'respond-to($breakpoint)'

  Use:
  .div {
    color: pink;
    @include respond-to(medium) {
      color: maroon;
    }
  }
*/
/************
************************ $Z-INDEX
************/
/*
  We can have control over z-index and not ending up having 900 to infinite
  Used by z() function.

  Use:
  .element {
    z-index: z(modal);
  }
*/
/************
************************ $DIRECTORIES
************/
/*
  Sometimes we change image dir from develop to production.
  */
/*
  Use:
  background-image: url("../resources/images/btn.jpg");
*/
/************
************************ $FONT FACE
************/
/************
************************ $LAYOUT
************/
/*
  Constant layout values, apart from these we can also declare values
  for different blocks sizes and more.
  */
/************
************************ $GRID
************/
/*
  These are the variables we use for our Grid
  */
/************
************************ $COLORS
************/
/** OAD colors
****/
/** Brand colors
****/
/** Gray scale
****/
/** Atmosphere
****/
/** Links
****/
/** Third party colors (http://brandcolors.net)
****/
/** Sport colors
****/
/** Prize colors
****/
/** Basic colors
****/
/** Event enrollment status colors
****/
/** Enrollment status colors
****/
/** Pass status colors
****/
/************
************************ $TEXTURES
************/
/*
  Definimos Colores y elementos de popups, mensajes de alerta, etc...
  */
/************
************************ $LISTS
************/
/*
  Used to generate helper classes: margin, padding, etc.
  */
/************
************************ $MAPS
************/
/*
  Used by fs() function and font-size helper.

  Use:
  .selector { font-size: fs(small);}
*/
/** Shadow elevations
****/
/*
  Used by shadow() function

  Use:
  .selector { box-shadow: shadow(low); }
*/
/** Brand colors
****/
/** Margins
****/
/** Paddings
****/
/************
************************ $SPORTS MAPS
************/
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/*
* Fácil de usar: las variables a usar están en settings.scss y son:

    'small'  : 48em,
    'medium' : 56.25em,
    'large'  : 68.75em,

* Y el uso va como sigue:

.foo {
  color: red;
  @include respond-to('small') {
    color: blue;
  }
}
*/
/**
* Centrar y dar un ancho máximo igual a $pagemaxwidth.
*/
/************
************************ $PLACEHOLDERS
************/
.user-panel.logged-in .userDisplayName a, .panel--dropdown .panel__title-link, .booking-wrapper .pill__data__extra, .pill__data__extra, .pill__data, stop lines, .pill__subtitle, .pill__title, stop number:empty + description, stop number, .pill__data__extra--error, .pill__data__extra--warning, .pill__data__extra--success, .pill__data__extra--info, .pill__data__extra--unknown, .pill__data__extra--closed, .pill__data__extra--deleted, .pill__data__extra--in-progress, .pill__data__extra--raffle, .pill__data__extra--open, .pill__data__extra--coming-soon, .sidr, .panel__title, .tab-list--vertical .tab-list__link, .tab-list__link {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

ul.searchSkinObjectPreview:after, .fromto-head:after, .categories-wrapper:after, .panel--dropdown .panel__head:after, .dnn-container--emphasis-secondary .dnn-container__content:after, .dnn-container--emphasis-primary .dnn-container__content:after, .dnn-container--underline .dnn-container__content:after, .dnn-container--colored .dnn-container__content:after, .dnn-container .dnn-container__content:after, .dnn-container--emphasis-secondary:after, .dnn-container--emphasis-primary:after, .dnn-container--underline:after, .dnn-container--colored:after, .dnn-container:after, .page-header:after, ul.dnnAdminTabNav:after, .panel__head:after, .tabs-wrapper:after, .tab-list--vertical:after, .tab-list:after, .btn-group:after {
    content: "";
    display: block;
    clear: both;
}

/************
************************ $FUNCTIONS
************/
/*
  Función para controlar el z-index (mapa definido en settinsg.scss)

  Use:
  .selector { z-index: z(modal); }

  Result:
  .selector { z-index: 9000; }

*/
/*
  Función para mantener el tamaño de fuente consistente.

  Use:
   .selector { font-size: fs(small); }

  Result:
  .selector { font-size: 0.6rem; }
*/
/*
  Función para mantener el sombreado de forma consistente.

  Use:
  .selector { box-shadow: shadow(modal); }

*/
/************
************************ $RESET
************/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, main, menu, nav, section, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

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

*, *::before, *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    border-width: 0;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

/*!
 * Generated using the Bootstrap Customizer (https://getbootstrap.com/docs/3.4/customize/)
 * Config saved to config.json and https://gist.github.com/a299c24d50f11a6c1421
 */
/*!
 * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

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

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

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

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

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

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

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

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

small {
    font-size: 80%;
}

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

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

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

figure {
    margin: 1em 40px;
}

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

pre {
    overflow: auto;
}

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

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}

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

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

input {
    line-height: normal;
}

input[type=checkbox],
input[type=radio] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

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

input[type=search] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

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

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

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

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

td,
th {
    padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
    *,
    *:before,
    *:after {
        color: #000 !important;
        text-shadow: none !important;
        background: transparent !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    img {
        max-width: 100% !important;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    .navbar {
        display: none;
    }
    .btn > .caret,
    .dropup > .btn > .caret {
        border-top-color: #000 !important;
    }
    .label {
        border: 1px solid #000;
    }
    .table {
        border-collapse: collapse !important;
    }
    .table td,
    .table th {
        background-color: #fff !important;
    }
    .table-bordered th,
    .table-bordered td {
        border: 1px solid #ddd !important;
    }
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #333333;
    background-color: #ffffff;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    color: #337ab7;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #23527c;
    text-decoration: underline;
}

a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

figure {
    margin: 0;
}

img {
    vertical-align: middle;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.img-rounded {
    border-radius: 6px;
}

.img-thumbnail {
    padding: 4px;
    line-height: 1.4;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.img-circle {
    border-radius: 50%;
}

hr {
    margin-top: 22px;
    margin-bottom: 22px;
    border: 0;
    border-top: 1px solid #eeeeee;
}

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

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

[role=button] {
    cursor: pointer;
}

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

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row-no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.row-no-gutters [class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-10 {
    width: 83.33333333%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666667%;
}

.col-xs-7 {
    width: 58.33333333%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666667%;
}

.col-xs-4 {
    width: 33.33333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.66666667%;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666667%;
}

.col-xs-pull-10 {
    right: 83.33333333%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666667%;
}

.col-xs-pull-7 {
    right: 58.33333333%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666667%;
}

.col-xs-pull-4 {
    right: 33.33333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.66666667%;
}

.col-xs-pull-1 {
    right: 8.33333333%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 33.33333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-0 {
    margin-left: 0%;
}

@media (min-width: 768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }
    .col-sm-12 {
        width: 100%;
    }
    .col-sm-11 {
        width: 91.66666667%;
    }
    .col-sm-10 {
        width: 83.33333333%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-8 {
        width: 66.66666667%;
    }
    .col-sm-7 {
        width: 58.33333333%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-5 {
        width: 41.66666667%;
    }
    .col-sm-4 {
        width: 33.33333333%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-2 {
        width: 16.66666667%;
    }
    .col-sm-1 {
        width: 8.33333333%;
    }
    .col-sm-pull-12 {
        right: 100%;
    }
    .col-sm-pull-11 {
        right: 91.66666667%;
    }
    .col-sm-pull-10 {
        right: 83.33333333%;
    }
    .col-sm-pull-9 {
        right: 75%;
    }
    .col-sm-pull-8 {
        right: 66.66666667%;
    }
    .col-sm-pull-7 {
        right: 58.33333333%;
    }
    .col-sm-pull-6 {
        right: 50%;
    }
    .col-sm-pull-5 {
        right: 41.66666667%;
    }
    .col-sm-pull-4 {
        right: 33.33333333%;
    }
    .col-sm-pull-3 {
        right: 25%;
    }
    .col-sm-pull-2 {
        right: 16.66666667%;
    }
    .col-sm-pull-1 {
        right: 8.33333333%;
    }
    .col-sm-pull-0 {
        right: auto;
    }
    .col-sm-push-12 {
        left: 100%;
    }
    .col-sm-push-11 {
        left: 91.66666667%;
    }
    .col-sm-push-10 {
        left: 83.33333333%;
    }
    .col-sm-push-9 {
        left: 75%;
    }
    .col-sm-push-8 {
        left: 66.66666667%;
    }
    .col-sm-push-7 {
        left: 58.33333333%;
    }
    .col-sm-push-6 {
        left: 50%;
    }
    .col-sm-push-5 {
        left: 41.66666667%;
    }
    .col-sm-push-4 {
        left: 33.33333333%;
    }
    .col-sm-push-3 {
        left: 25%;
    }
    .col-sm-push-2 {
        left: 16.66666667%;
    }
    .col-sm-push-1 {
        left: 8.33333333%;
    }
    .col-sm-push-0 {
        left: auto;
    }
    .col-sm-offset-12 {
        margin-left: 100%;
    }
    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-sm-offset-9 {
        margin-left: 75%;
    }
    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-sm-offset-6 {
        margin-left: 50%;
    }
    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-sm-offset-3 {
        margin-left: 25%;
    }
    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-sm-offset-0 {
        margin-left: 0%;
    }
}
@media (min-width: 992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-11 {
        width: 91.66666667%;
    }
    .col-md-10 {
        width: 83.33333333%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-8 {
        width: 66.66666667%;
    }
    .col-md-7 {
        width: 58.33333333%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-5 {
        width: 41.66666667%;
    }
    .col-md-4 {
        width: 33.33333333%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-2 {
        width: 16.66666667%;
    }
    .col-md-1 {
        width: 8.33333333%;
    }
    .col-md-pull-12 {
        right: 100%;
    }
    .col-md-pull-11 {
        right: 91.66666667%;
    }
    .col-md-pull-10 {
        right: 83.33333333%;
    }
    .col-md-pull-9 {
        right: 75%;
    }
    .col-md-pull-8 {
        right: 66.66666667%;
    }
    .col-md-pull-7 {
        right: 58.33333333%;
    }
    .col-md-pull-6 {
        right: 50%;
    }
    .col-md-pull-5 {
        right: 41.66666667%;
    }
    .col-md-pull-4 {
        right: 33.33333333%;
    }
    .col-md-pull-3 {
        right: 25%;
    }
    .col-md-pull-2 {
        right: 16.66666667%;
    }
    .col-md-pull-1 {
        right: 8.33333333%;
    }
    .col-md-pull-0 {
        right: auto;
    }
    .col-md-push-12 {
        left: 100%;
    }
    .col-md-push-11 {
        left: 91.66666667%;
    }
    .col-md-push-10 {
        left: 83.33333333%;
    }
    .col-md-push-9 {
        left: 75%;
    }
    .col-md-push-8 {
        left: 66.66666667%;
    }
    .col-md-push-7 {
        left: 58.33333333%;
    }
    .col-md-push-6 {
        left: 50%;
    }
    .col-md-push-5 {
        left: 41.66666667%;
    }
    .col-md-push-4 {
        left: 33.33333333%;
    }
    .col-md-push-3 {
        left: 25%;
    }
    .col-md-push-2 {
        left: 16.66666667%;
    }
    .col-md-push-1 {
        left: 8.33333333%;
    }
    .col-md-push-0 {
        left: auto;
    }
    .col-md-offset-12 {
        margin-left: 100%;
    }
    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-md-offset-9 {
        margin-left: 75%;
    }
    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-md-offset-6 {
        margin-left: 50%;
    }
    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-md-offset-3 {
        margin-left: 25%;
    }
    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-md-offset-0 {
        margin-left: 0%;
    }
}
@media (min-width: 1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left;
    }
    .col-lg-12 {
        width: 100%;
    }
    .col-lg-11 {
        width: 91.66666667%;
    }
    .col-lg-10 {
        width: 83.33333333%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-8 {
        width: 66.66666667%;
    }
    .col-lg-7 {
        width: 58.33333333%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-5 {
        width: 41.66666667%;
    }
    .col-lg-4 {
        width: 33.33333333%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-2 {
        width: 16.66666667%;
    }
    .col-lg-1 {
        width: 8.33333333%;
    }
    .col-lg-pull-12 {
        right: 100%;
    }
    .col-lg-pull-11 {
        right: 91.66666667%;
    }
    .col-lg-pull-10 {
        right: 83.33333333%;
    }
    .col-lg-pull-9 {
        right: 75%;
    }
    .col-lg-pull-8 {
        right: 66.66666667%;
    }
    .col-lg-pull-7 {
        right: 58.33333333%;
    }
    .col-lg-pull-6 {
        right: 50%;
    }
    .col-lg-pull-5 {
        right: 41.66666667%;
    }
    .col-lg-pull-4 {
        right: 33.33333333%;
    }
    .col-lg-pull-3 {
        right: 25%;
    }
    .col-lg-pull-2 {
        right: 16.66666667%;
    }
    .col-lg-pull-1 {
        right: 8.33333333%;
    }
    .col-lg-pull-0 {
        right: auto;
    }
    .col-lg-push-12 {
        left: 100%;
    }
    .col-lg-push-11 {
        left: 91.66666667%;
    }
    .col-lg-push-10 {
        left: 83.33333333%;
    }
    .col-lg-push-9 {
        left: 75%;
    }
    .col-lg-push-8 {
        left: 66.66666667%;
    }
    .col-lg-push-7 {
        left: 58.33333333%;
    }
    .col-lg-push-6 {
        left: 50%;
    }
    .col-lg-push-5 {
        left: 41.66666667%;
    }
    .col-lg-push-4 {
        left: 33.33333333%;
    }
    .col-lg-push-3 {
        left: 25%;
    }
    .col-lg-push-2 {
        left: 16.66666667%;
    }
    .col-lg-push-1 {
        left: 8.33333333%;
    }
    .col-lg-push-0 {
        left: auto;
    }
    .col-lg-offset-12 {
        margin-left: 100%;
    }
    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-lg-offset-9 {
        margin-left: 75%;
    }
    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-lg-offset-6 {
        margin-left: 50%;
    }
    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-lg-offset-3 {
        margin-left: 25%;
    }
    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-lg-offset-0 {
        margin-left: 0%;
    }
}
.fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

.fade.in {
    opacity: 1;
}

.collapse {
    display: none;
}

.collapse.in {
    display: block;
}

tr.collapse.in {
    display: table-row;
}

tbody.collapse.in {
    display: table-row-group;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-property: height, visibility;
    -o-transition-property: height, visibility;
    transition-property: height, visibility;
    -webkit-transition-duration: 0.35s;
    -o-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9 ;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.dropup,
.dropdown {
    position: relative;
}

.dropdown-toggle:focus {
    outline: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 16px;
    text-align: left;
    list-style: none;
    background-color: #ffffff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto;
}

.dropdown-menu .divider {
    height: 1px;
    margin: 10px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.4;
    color: #333333;
    white-space: nowrap;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    color: #ffffff;
    text-decoration: none;
    background-color: #337ab7;
    outline: 0;
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
    color: #777777;
}

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}

.open > .dropdown-menu {
    display: block;
}

.open > a {
    outline: 0;
}

.dropdown-menu-right {
    right: 0;
    left: auto;
}

.dropdown-menu-left {
    right: auto;
    left: 0;
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 14px;
    line-height: 1.4;
    color: #777777;
    white-space: nowrap;
}

.dropdown-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990;
}

.pull-right > .dropdown-menu {
    right: 0;
    left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    content: "";
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid \9 ;
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px;
}

@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto;
    }
    .navbar-right .dropdown-menu-left {
        right: auto;
        left: 0;
    }
}
.close {
    float: right;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    text-shadow: none;
    filter: alpha(opacity=20);
    opacity: 0.2;
}

.close:hover,
.close:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: 0.5;
}

button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    appearance: none;
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
    display: table;
    content: " ";
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
    clear: both;
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.hidden {
    display: none !important;
}

.affix {
    position: fixed;
}

@-ms-viewport {
    width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }
    table.visible-xs {
        display: table !important;
    }
    tr.visible-xs {
        display: table-row !important;
    }
    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }
}
@media (max-width: 767px) {
    .visible-xs-block {
        display: block !important;
    }
}
@media (max-width: 767px) {
    .visible-xs-inline {
        display: inline !important;
    }
}
@media (max-width: 767px) {
    .visible-xs-inline-block {
        display: inline-block !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
        display: block !important;
    }
    table.visible-sm {
        display: table !important;
    }
    tr.visible-sm {
        display: table-row !important;
    }
    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-block {
        display: block !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline {
        display: inline !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline-block {
        display: inline-block !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md {
        display: block !important;
    }
    table.visible-md {
        display: table !important;
    }
    tr.visible-md {
        display: table-row !important;
    }
    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-block {
        display: block !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline {
        display: inline !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline-block {
        display: inline-block !important;
    }
}
@media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }
    table.visible-lg {
        display: table !important;
    }
    tr.visible-lg {
        display: table-row !important;
    }
    th.visible-lg,
    td.visible-lg {
        display: table-cell !important;
    }
}
@media (min-width: 1200px) {
    .visible-lg-block {
        display: block !important;
    }
}
@media (min-width: 1200px) {
    .visible-lg-inline {
        display: inline !important;
    }
}
@media (min-width: 1200px) {
    .visible-lg-inline-block {
        display: inline-block !important;
    }
}
@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}
@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}
.visible-print {
    display: none !important;
}

@media print {
    .visible-print {
        display: block !important;
    }
    table.visible-print {
        display: table !important;
    }
    tr.visible-print {
        display: table-row !important;
    }
    th.visible-print,
    td.visible-print {
        display: table-cell !important;
    }
}
.visible-print-block {
    display: none !important;
}

@media print {
    .visible-print-block {
        display: block !important;
    }
}
.visible-print-inline {
    display: none !important;
}

@media print {
    .visible-print-inline {
        display: inline !important;
    }
}
.visible-print-inline-block {
    display: none !important;
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important;
    }
}
@media print {
    .hidden-print {
        display: none !important;
    }
}
/* ========================================================================
* bootstrap-tour - v0.12.0
* http://bootstraptour.com
* ========================================================================
* Copyright 2012-2015 Ulrich Sossou
*
* ========================================================================
* Licensed under the MIT License (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     https://opensource.org/licenses/MIT
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ========================================================================
*/
.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 350px;
    padding: 0;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 16px;
    background-color: #ffffff;
    background-clip: padding-box;
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.popover.top {
    margin-top: -10px;
}

.popover.right {
    margin-left: 10px;
}

.popover.bottom {
    margin-top: 10px;
}

.popover.left {
    margin-left: -10px;
}

.popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 18px;
    background-color: #b2e1f5;
    border-radius: 5px 5px 0 0;
    color: #ffffff;
}

.popover-content {
    padding: 9px 14px;
}

.popover > .arrow,
.popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.popover > .arrow {
    border-width: 11px;
}

.popover > .arrow:after {
    border-width: 10px;
    content: "";
}

.popover.top > .arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #ffffff;
    bottom: -11px;
}

.popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #ffffff;
}

.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #ffffff;
}

.popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #ffffff;
}

.popover.bottom > .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #b2e1f5;
    top: -11px;
}

.popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #b2e1f5;
}

.popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #ffffff;
}

.popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #ffffff;
    bottom: -10px;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

.fade.in {
    opacity: 1;
}

.collapse {
    display: none;
}

.collapse.in {
    display: block;
}

tr.collapse.in {
    display: table-row;
}

tbody.collapse.in {
    display: table-row-group;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-property: height, visibility;
    transition-property: height, visibility;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

.tour-backdrop {
    position: absolute;
    z-index: 1100;
    background-color: #000;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.popover[class*=tour-] {
    z-index: 1102;
}

.popover[class*=tour-] .popover-navigation {
    padding: 9px 14px;
    overflow: hidden;
}

.popover[class*=tour-] .popover-navigation *[data-role=end] {
    float: right;
}

.popover[class*=tour-] .popover-navigation *[data-role=prev],
.popover[class*=tour-] .popover-navigation *[data-role=next],
.popover[class*=tour-] .popover-navigation *[data-role=end] {
    cursor: pointer;
}

.popover[class*=tour-] .popover-navigation *[data-role=prev].disabled,
.popover[class*=tour-] .popover-navigation *[data-role=next].disabled,
.popover[class*=tour-] .popover-navigation *[data-role=end].disabled {
    cursor: default;
}

.popover[class*=tour-].orphan {
    position: fixed;
    margin-top: 0;
}

.popover[class*=tour-].orphan .arrow {
    display: none;
}

.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #41B6E6;
    border-radius: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000000;
}

.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}

.modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
    margin-top: -2px;
}

.modal-title {
    margin: 0;
    line-height: 1.4;
}

.modal-body {
    position: relative;
    padding: 15px 15px 0;
}

.modal-footer {
    padding: 0 15px 15px;
    text-align: right;
}

.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0;
}

.modal-footer .btn-group .btn + .btn {
    margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
    margin-left: 0;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }
    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
    .modal-sm {
        width: 300px;
    }
}
@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}
.clearfix:before,
.clearfix:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
    content: " ";
    display: table;
}

.clearfix:after,
.modal-header:after,
.modal-footer:after {
    clear: both;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.hidden {
    display: none !important;
}

.affix {
    position: fixed;
}

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

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

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

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

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

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

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

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

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

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

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

.slick-slide img {
    display: block;
}

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

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

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

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

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

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

/*!
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
    font-family: "FontAwesome";
    src: url(../webfonts/fontawesome-webfont.eot);
    src: url(../webfonts/fontawesome-webfont.eot?#iefix&v=4.6.3) format("embedded-opentype"), url(../webfonts/fontawesome-webfont.woff2) format("woff2"), url(../webfonts/fontawesome-webfont.woff) format("woff"), url(../webfonts/fontawesome-webfont.ttf) format("truetype"), url(../webfonts/fontawesome-webfont.svg#fontawesomeregular) format("svg");
    font-weight: normal;
    font-style: normal;
}
[class^=fa-]:before,
[class*=" fa-"]:before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "FontAwesome" !important;
    speak: none;
    font-size: inherit;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: 0.75em;
    vertical-align: -15%;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-fw {
    width: 1.28571429em;
    text-align: center;
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none;
}

.fa-ul > li {
    position: relative;
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: 0.14285714em;
    text-align: center;
}

.fa-li.fa-lg {
    left: -1.85714286em;
}

.fa-border {
    padding: 0.2em 0.25em 0.15em;
    border: solid 0.08em #eee;
    border-radius: 0.1em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left {
    margin-right: 0.3em;
}

.fa.fa-pull-right {
    margin-left: 0.3em;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.fa.pull-left {
    margin-right: 0.3em;
}

.fa.pull-right {
    margin-left: 0.3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    filter: none;
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

.fa-glass:before {
    content: "\f000";
}

.fa-music:before {
    content: "\f001";
}

.fa-search:before {
    content: "\f002";
}

.fa-envelope-o:before {
    content: "\f003";
}

.fa-heart:before {
    content: "\f004";
}

.fa-star:before {
    content: "\f005";
}

.fa-star-o:before {
    content: "\f006";
}

.fa-user:before {
    content: "\f007";
}

.fa-film:before {
    content: "\f008";
}

.fa-th-large:before {
    content: "\f009";
}

.fa-th:before {
    content: "\f00a";
}

.fa-th-list:before {
    content: "\f00b";
}

.fa-check:before {
    content: "\f00c";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "\f00d";
}

.fa-search-plus:before {
    content: "\f00e";
}

.fa-search-minus:before {
    content: "\f010";
}

.fa-power-off:before {
    content: "\f011";
}

.fa-signal:before {
    content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
    content: "\f013";
}

.fa-trash-o:before {
    content: "\f014";
}

.fa-home:before {
    content: "\f015";
}

.fa-file-o:before {
    content: "\f016";
}

.fa-clock-o:before {
    content: "\f017";
}

.fa-road:before {
    content: "\f018";
}

.fa-download:before {
    content: "\f019";
}

.fa-arrow-circle-o-down:before {
    content: "\f01a";
}

.fa-arrow-circle-o-up:before {
    content: "\f01b";
}

.fa-inbox:before {
    content: "\f01c";
}

.fa-play-circle-o:before {
    content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "\f01e";
}

.fa-refresh:before {
    content: "\f021";
}

.fa-list-alt:before {
    content: "\f022";
}

.fa-lock:before {
    content: "\f023";
}

.fa-flag:before {
    content: "\f024";
}

.fa-headphones:before {
    content: "\f025";
}

.fa-volume-off:before {
    content: "\f026";
}

.fa-volume-down:before {
    content: "\f027";
}

.fa-volume-up:before {
    content: "\f028";
}

.fa-qrcode:before {
    content: "\f029";
}

.fa-barcode:before {
    content: "\f02a";
}

.fa-tag:before {
    content: "\f02b";
}

.fa-tags:before {
    content: "\f02c";
}

.fa-book:before {
    content: "\f02d";
}

.fa-bookmark:before {
    content: "\f02e";
}

.fa-print:before {
    content: "\f02f";
}

.fa-camera:before {
    content: "\f030";
}

.fa-font:before {
    content: "\f031";
}

.fa-bold:before {
    content: "\f032";
}

.fa-italic:before {
    content: "\f033";
}

.fa-text-height:before {
    content: "\f034";
}

.fa-text-width:before {
    content: "\f035";
}

.fa-align-left:before {
    content: "\f036";
}

.fa-align-center:before {
    content: "\f037";
}

.fa-align-right:before {
    content: "\f038";
}

.fa-align-justify:before {
    content: "\f039";
}

.fa-list:before {
    content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b";
}

.fa-indent:before {
    content: "\f03c";
}

.fa-video-camera:before {
    content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "\f03e";
}

.fa-pencil:before {
    content: "\f040";
}

.fa-map-marker:before {
    content: "\f041";
}

.fa-adjust:before {
    content: "\f042";
}

.fa-tint:before {
    content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044";
}

.fa-share-square-o:before {
    content: "\f045";
}

.fa-check-square-o:before {
    content: "\f046";
}

.fa-arrows:before {
    content: "\f047";
}

.fa-step-backward:before {
    content: "\f048";
}

.fa-fast-backward:before {
    content: "\f049";
}

.fa-backward:before {
    content: "\f04a";
}

.fa-play:before {
    content: "\f04b";
}

.fa-pause:before {
    content: "\f04c";
}

.fa-stop:before {
    content: "\f04d";
}

.fa-forward:before {
    content: "\f04e";
}

.fa-fast-forward:before {
    content: "\f050";
}

.fa-step-forward:before {
    content: "\f051";
}

.fa-eject:before {
    content: "\f052";
}

.fa-chevron-left:before {
    content: "\f053";
}

.fa-chevron-right:before {
    content: "\f054";
}

.fa-plus-circle:before {
    content: "\f055";
}

.fa-minus-circle:before {
    content: "\f056";
}

.fa-times-circle:before {
    content: "\f057";
}

.fa-check-circle:before {
    content: "\f058";
}

.fa-question-circle:before {
    content: "\f059";
}

.fa-info-circle:before {
    content: "\f05a";
}

.fa-crosshairs:before {
    content: "\f05b";
}

.fa-times-circle-o:before {
    content: "\f05c";
}

.fa-check-circle-o:before {
    content: "\f05d";
}

.fa-ban:before {
    content: "\f05e";
}

.fa-arrow-left:before {
    content: "\f060";
}

.fa-arrow-right:before {
    content: "\f061";
}

.fa-arrow-up:before {
    content: "\f062";
}

.fa-arrow-down:before {
    content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
    content: "\f064";
}

.fa-expand:before {
    content: "\f065";
}

.fa-compress:before {
    content: "\f066";
}

.fa-plus:before {
    content: "\f067";
}

.fa-minus:before {
    content: "\f068";
}

.fa-asterisk:before {
    content: "\f069";
}

.fa-exclamation-circle:before {
    content: "\f06a";
}

.fa-gift:before {
    content: "\f06b";
}

.fa-leaf:before {
    content: "\f06c";
}

.fa-fire:before {
    content: "\f06d";
}

.fa-eye:before {
    content: "\f06e";
}

.fa-eye-slash:before {
    content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "\f071";
}

.fa-plane:before {
    content: "\f072";
}

.fa-calendar:before {
    content: "\f073";
}

.fa-random:before {
    content: "\f074";
}

.fa-comment:before {
    content: "\f075";
}

.fa-magnet:before {
    content: "\f076";
}

.fa-chevron-up:before {
    content: "\f077";
}

.fa-chevron-down:before {
    content: "\f078";
}

.fa-retweet:before {
    content: "\f079";
}

.fa-shopping-cart:before {
    content: "\f07a";
}

.fa-folder:before {
    content: "\f07b";
}

.fa-folder-open:before {
    content: "\f07c";
}

.fa-arrows-v:before {
    content: "\f07d";
}

.fa-arrows-h:before {
    content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "\f080";
}

.fa-twitter-square:before {
    content: "\f081";
}

.fa-facebook-square:before {
    content: "\f082";
}

.fa-camera-retro:before {
    content: "\f083";
}

.fa-key:before {
    content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
    content: "\f085";
}

.fa-comments:before {
    content: "\f086";
}

.fa-thumbs-o-up:before {
    content: "\f087";
}

.fa-thumbs-o-down:before {
    content: "\f088";
}

.fa-star-half:before {
    content: "\f089";
}

.fa-heart-o:before {
    content: "\f08a";
}

.fa-sign-out:before {
    content: "\f08b";
}

.fa-linkedin-square:before {
    content: "\f08c";
}

.fa-thumb-tack:before {
    content: "\f08d";
}

.fa-external-link:before {
    content: "\f08e";
}

.fa-sign-in:before {
    content: "\f090";
}

.fa-trophy:before {
    content: "\f091";
}

.fa-github-square:before {
    content: "\f092";
}

.fa-upload:before {
    content: "\f093";
}

.fa-lemon-o:before {
    content: "\f094";
}

.fa-phone:before {
    content: "\f095";
}

.fa-square-o:before {
    content: "\f096";
}

.fa-bookmark-o:before {
    content: "\f097";
}

.fa-phone-square:before {
    content: "\f098";
}

.fa-twitter:before {
    content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "\f09a";
}

.fa-github:before {
    content: "\f09b";
}

.fa-unlock:before {
    content: "\f09c";
}

.fa-credit-card:before {
    content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
    content: "\f09e";
}

.fa-hdd-o:before {
    content: "\f0a0";
}

.fa-bullhorn:before {
    content: "\f0a1";
}

.fa-bell:before {
    content: "\f0f3";
}

.fa-certificate:before {
    content: "\f0a3";
}

.fa-hand-o-right:before {
    content: "\f0a4";
}

.fa-hand-o-left:before {
    content: "\f0a5";
}

.fa-hand-o-up:before {
    content: "\f0a6";
}

.fa-hand-o-down:before {
    content: "\f0a7";
}

.fa-arrow-circle-left:before {
    content: "\f0a8";
}

.fa-arrow-circle-right:before {
    content: "\f0a9";
}

.fa-arrow-circle-up:before {
    content: "\f0aa";
}

.fa-arrow-circle-down:before {
    content: "\f0ab";
}

.fa-globe:before {
    content: "\f0ac";
}

.fa-wrench:before {
    content: "\f0ad";
}

.fa-tasks:before {
    content: "\f0ae";
}

.fa-filter:before {
    content: "\f0b0";
}

.fa-briefcase:before {
    content: "\f0b1";
}

.fa-arrows-alt:before {
    content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
    content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
    content: "\f0c1";
}

.fa-cloud:before {
    content: "\f0c2";
}

.fa-flask:before {
    content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5";
}

.fa-paperclip:before {
    content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
    content: "\f0c7";
}

.fa-square:before {
    content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "\f0c9";
}

.fa-list-ul:before {
    content: "\f0ca";
}

.fa-list-ol:before {
    content: "\f0cb";
}

.fa-strikethrough:before {
    content: "\f0cc";
}

.fa-underline:before {
    content: "\f0cd";
}

.fa-table:before {
    content: "\f0ce";
}

.fa-magic:before {
    content: "\f0d0";
}

.fa-truck:before {
    content: "\f0d1";
}

.fa-pinterest:before {
    content: "\f0d2";
}

.fa-pinterest-square:before {
    content: "\f0d3";
}

.fa-google-plus-square:before {
    content: "\f0d4";
}

.fa-google-plus:before {
    content: "\f0d5";
}

.fa-money:before {
    content: "\f0d6";
}

.fa-caret-down:before {
    content: "\f0d7";
}

.fa-caret-up:before {
    content: "\f0d8";
}

.fa-caret-left:before {
    content: "\f0d9";
}

.fa-caret-right:before {
    content: "\f0da";
}

.fa-columns:before {
    content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
    content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "\f0de";
}

.fa-envelope:before {
    content: "\f0e0";
}

.fa-linkedin:before {
    content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
    content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4";
}

.fa-comment-o:before {
    content: "\f0e5";
}

.fa-comments-o:before {
    content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
    content: "\f0e7";
}

.fa-sitemap:before {
    content: "\f0e8";
}

.fa-umbrella:before {
    content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
    content: "\f0ea";
}

.fa-lightbulb-o:before {
    content: "\f0eb";
}

.fa-exchange:before {
    content: "\f0ec";
}

.fa-cloud-download:before {
    content: "\f0ed";
}

.fa-cloud-upload:before {
    content: "\f0ee";
}

.fa-user-md:before {
    content: "\f0f0";
}

.fa-stethoscope:before {
    content: "\f0f1";
}

.fa-suitcase:before {
    content: "\f0f2";
}

.fa-bell-o:before {
    content: "\f0a2";
}

.fa-coffee:before {
    content: "\f0f4";
}

.fa-cutlery:before {
    content: "\f0f5";
}

.fa-file-text-o:before {
    content: "\f0f6";
}

.fa-building-o:before {
    content: "\f0f7";
}

.fa-hospital-o:before {
    content: "\f0f8";
}

.fa-ambulance:before {
    content: "\f0f9";
}

.fa-medkit:before {
    content: "\f0fa";
}

.fa-fighter-jet:before {
    content: "\f0fb";
}

.fa-beer:before {
    content: "\f0fc";
}

.fa-h-square:before {
    content: "\f0fd";
}

.fa-plus-square:before {
    content: "\f0fe";
}

.fa-angle-double-left:before {
    content: "\f100";
}

.fa-angle-double-right:before {
    content: "\f101";
}

.fa-angle-double-up:before {
    content: "\f102";
}

.fa-angle-double-down:before {
    content: "\f103";
}

.fa-angle-left:before {
    content: "\f104";
}

.fa-angle-right:before {
    content: "\f105";
}

.fa-angle-up:before {
    content: "\f106";
}

.fa-angle-down:before {
    content: "\f107";
}

.fa-desktop:before {
    content: "\f108";
}

.fa-laptop:before {
    content: "\f109";
}

.fa-tablet:before {
    content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b";
}

.fa-circle-o:before {
    content: "\f10c";
}

.fa-quote-left:before {
    content: "\f10d";
}

.fa-quote-right:before {
    content: "\f10e";
}

.fa-spinner:before {
    content: "\f110";
}

.fa-circle:before {
    content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112";
}

.fa-github-alt:before {
    content: "\f113";
}

.fa-folder-o:before {
    content: "\f114";
}

.fa-folder-open-o:before {
    content: "\f115";
}

.fa-smile-o:before {
    content: "\f118";
}

.fa-frown-o:before {
    content: "\f119";
}

.fa-meh-o:before {
    content: "\f11a";
}

.fa-gamepad:before {
    content: "\f11b";
}

.fa-keyboard-o:before {
    content: "\f11c";
}

.fa-flag-o:before {
    content: "\f11d";
}

.fa-flag-checkered:before {
    content: "\f11e";
}

.fa-terminal:before {
    content: "\f120";
}

.fa-code:before {
    content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123";
}

.fa-location-arrow:before {
    content: "\f124";
}

.fa-crop:before {
    content: "\f125";
}

.fa-code-fork:before {
    content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "\f127";
}

.fa-question:before {
    content: "\f128";
}

.fa-info:before {
    content: "\f129";
}

.fa-exclamation:before {
    content: "\f12a";
}

.fa-superscript:before {
    content: "\f12b";
}

.fa-subscript:before {
    content: "\f12c";
}

.fa-eraser:before {
    content: "\f12d";
}

.fa-puzzle-piece:before {
    content: "\f12e";
}

.fa-microphone:before {
    content: "\f130";
}

.fa-microphone-slash:before {
    content: "\f131";
}

.fa-shield:before {
    content: "\f132";
}

.fa-calendar-o:before {
    content: "\f133";
}

.fa-fire-extinguisher:before {
    content: "\f134";
}

.fa-rocket:before {
    content: "\f135";
}

.fa-maxcdn:before {
    content: "\f136";
}

.fa-chevron-circle-left:before {
    content: "\f137";
}

.fa-chevron-circle-right:before {
    content: "\f138";
}

.fa-chevron-circle-up:before {
    content: "\f139";
}

.fa-chevron-circle-down:before {
    content: "\f13a";
}

.fa-html5:before {
    content: "\f13b";
}

.fa-css3:before {
    content: "\f13c";
}

.fa-anchor:before {
    content: "\f13d";
}

.fa-unlock-alt:before {
    content: "\f13e";
}

.fa-bullseye:before {
    content: "\f140";
}

.fa-ellipsis-h:before {
    content: "\f141";
}

.fa-ellipsis-v:before {
    content: "\f142";
}

.fa-rss-square:before {
    content: "\f143";
}

.fa-play-circle:before {
    content: "\f144";
}

.fa-ticket:before {
    content: "\f145";
}

.fa-minus-square:before {
    content: "\f146";
}

.fa-minus-square-o:before {
    content: "\f147";
}

.fa-level-up:before {
    content: "\f148";
}

.fa-level-down:before {
    content: "\f149";
}

.fa-check-square:before {
    content: "\f14a";
}

.fa-pencil-square:before {
    content: "\f14b";
}

.fa-external-link-square:before {
    content: "\f14c";
}

.fa-share-square:before {
    content: "\f14d";
}

.fa-compass:before {
    content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
    content: "\f153";
}

.fa-gbp:before {
    content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
    content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
    content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "\f158";
}

.fa-won:before,
.fa-krw:before {
    content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a";
}

.fa-file:before {
    content: "\f15b";
}

.fa-file-text:before {
    content: "\f15c";
}

.fa-sort-alpha-asc:before {
    content: "\f15d";
}

.fa-sort-alpha-desc:before {
    content: "\f15e";
}

.fa-sort-amount-asc:before {
    content: "\f160";
}

.fa-sort-amount-desc:before {
    content: "\f161";
}

.fa-sort-numeric-asc:before {
    content: "\f162";
}

.fa-sort-numeric-desc:before {
    content: "\f163";
}

.fa-thumbs-up:before {
    content: "\f164";
}

.fa-thumbs-down:before {
    content: "\f165";
}

.fa-youtube-square:before {
    content: "\f166";
}

.fa-youtube:before {
    content: "\f167";
}

.fa-xing:before {
    content: "\f168";
}

.fa-xing-square:before {
    content: "\f169";
}

.fa-youtube-play:before {
    content: "\f16a";
}

.fa-dropbox:before {
    content: "\f16b";
}

.fa-stack-overflow:before {
    content: "\f16c";
}

.fa-instagram:before {
    content: "\f16d";
}

.fa-flickr:before {
    content: "\f16e";
}

.fa-adn:before {
    content: "\f170";
}

.fa-bitbucket:before {
    content: "\f171";
}

.fa-bitbucket-square:before {
    content: "\f172";
}

.fa-tumblr:before {
    content: "\f173";
}

.fa-tumblr-square:before {
    content: "\f174";
}

.fa-long-arrow-down:before {
    content: "\f175";
}

.fa-long-arrow-up:before {
    content: "\f176";
}

.fa-long-arrow-left:before {
    content: "\f177";
}

.fa-long-arrow-right:before {
    content: "\f178";
}

.fa-apple:before {
    content: "\f179";
}

.fa-windows:before {
    content: "\f17a";
}

.fa-android:before {
    content: "\f17b";
}

.fa-linux:before {
    content: "\f17c";
}

.fa-dribbble:before {
    content: "\f17d";
}

.fa-skype:before {
    content: "\f17e";
}

.fa-foursquare:before {
    content: "\f180";
}

.fa-trello:before {
    content: "\f181";
}

.fa-female:before {
    content: "\f182";
}

.fa-male:before {
    content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "\f184";
}

.fa-sun-o:before {
    content: "\f185";
}

.fa-moon-o:before {
    content: "\f186";
}

.fa-archive:before {
    content: "\f187";
}

.fa-bug:before {
    content: "\f188";
}

.fa-vk:before {
    content: "\f189";
}

.fa-weibo:before {
    content: "\f18a";
}

.fa-renren:before {
    content: "\f18b";
}

.fa-pagelines:before {
    content: "\f18c";
}

.fa-stack-exchange:before {
    content: "\f18d";
}

.fa-arrow-circle-o-right:before {
    content: "\f18e";
}

.fa-arrow-circle-o-left:before {
    content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "\f191";
}

.fa-dot-circle-o:before {
    content: "\f192";
}

.fa-wheelchair:before {
    content: "\f193";
}

.fa-vimeo-square:before {
    content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "\f195";
}

.fa-plus-square-o:before {
    content: "\f196";
}

.fa-space-shuttle:before {
    content: "\f197";
}

.fa-slack:before {
    content: "\f198";
}

.fa-envelope-square:before {
    content: "\f199";
}

.fa-wordpress:before {
    content: "\f19a";
}

.fa-openid:before {
    content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "\f19d";
}

.fa-yahoo:before {
    content: "\f19e";
}

.fa-google:before {
    content: "\f1a0";
}

.fa-reddit:before {
    content: "\f1a1";
}

.fa-reddit-square:before {
    content: "\f1a2";
}

.fa-stumbleupon-circle:before {
    content: "\f1a3";
}

.fa-stumbleupon:before {
    content: "\f1a4";
}

.fa-delicious:before {
    content: "\f1a5";
}

.fa-digg:before {
    content: "\f1a6";
}

.fa-pied-piper-pp:before {
    content: "\f1a7";
}

.fa-pied-piper-alt:before {
    content: "\f1a8";
}

.fa-drupal:before {
    content: "\f1a9";
}

.fa-joomla:before {
    content: "\f1aa";
}

.fa-language:before {
    content: "\f1ab";
}

.fa-fax:before {
    content: "\f1ac";
}

.fa-building:before {
    content: "\f1ad";
}

.fa-child:before {
    content: "\f1ae";
}

.fa-paw:before {
    content: "\f1b0";
}

.fa-spoon:before {
    content: "\f1b1";
}

.fa-cube:before {
    content: "\f1b2";
}

.fa-cubes:before {
    content: "\f1b3";
}

.fa-behance:before {
    content: "\f1b4";
}

.fa-behance-square:before {
    content: "\f1b5";
}

.fa-steam:before {
    content: "\f1b6";
}

.fa-steam-square:before {
    content: "\f1b7";
}

.fa-recycle:before {
    content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
    content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba";
}

.fa-tree:before {
    content: "\f1bb";
}

.fa-spotify:before {
    content: "\f1bc";
}

.fa-deviantart:before {
    content: "\f1bd";
}

.fa-soundcloud:before {
    content: "\f1be";
}

.fa-database:before {
    content: "\f1c0";
}

.fa-file-pdf-o:before {
    content: "\f1c1";
}

.fa-file-word-o:before {
    content: "\f1c2";
}

.fa-file-excel-o:before {
    content: "\f1c3";
}

.fa-file-powerpoint-o:before {
    content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8";
}

.fa-file-code-o:before {
    content: "\f1c9";
}

.fa-vine:before {
    content: "\f1ca";
}

.fa-codepen:before {
    content: "\f1cb";
}

.fa-jsfiddle:before {
    content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "\f1cd";
}

.fa-circle-o-notch:before {
    content: "\f1ce";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
    content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
    content: "\f1d1";
}

.fa-git-square:before {
    content: "\f1d2";
}

.fa-git:before {
    content: "\f1d3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: "\f1d4";
}

.fa-tencent-weibo:before {
    content: "\f1d5";
}

.fa-qq:before {
    content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
    content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "\f1d9";
}

.fa-history:before {
    content: "\f1da";
}

.fa-circle-thin:before {
    content: "\f1db";
}

.fa-header:before {
    content: "\f1dc";
}

.fa-paragraph:before {
    content: "\f1dd";
}

.fa-sliders:before {
    content: "\f1de";
}

.fa-share-alt:before {
    content: "\f1e0";
}

.fa-share-alt-square:before {
    content: "\f1e1";
}

.fa-bomb:before {
    content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "\f1e3";
}

.fa-tty:before {
    content: "\f1e4";
}

.fa-binoculars:before {
    content: "\f1e5";
}

.fa-plug:before {
    content: "\f1e6";
}

.fa-slideshare:before {
    content: "\f1e7";
}

.fa-twitch:before {
    content: "\f1e8";
}

.fa-yelp:before {
    content: "\f1e9";
}

.fa-newspaper-o:before {
    content: "\f1ea";
}

.fa-wifi:before {
    content: "\f1eb";
}

.fa-calculator:before {
    content: "\f1ec";
}

.fa-paypal:before {
    content: "\f1ed";
}

.fa-google-wallet:before {
    content: "\f1ee";
}

.fa-cc-visa:before {
    content: "\f1f0";
}

.fa-cc-mastercard:before {
    content: "\f1f1";
}

.fa-cc-discover:before {
    content: "\f1f2";
}

.fa-cc-amex:before {
    content: "\f1f3";
}

.fa-cc-paypal:before {
    content: "\f1f4";
}

.fa-cc-stripe:before {
    content: "\f1f5";
}

.fa-bell-slash:before {
    content: "\f1f6";
}

.fa-bell-slash-o:before {
    content: "\f1f7";
}

.fa-trash:before {
    content: "\f1f8";
}

.fa-copyright:before {
    content: "\f1f9";
}

.fa-at:before {
    content: "\f1fa";
}

.fa-eyedropper:before {
    content: "\f1fb";
}

.fa-paint-brush:before {
    content: "\f1fc";
}

.fa-birthday-cake:before {
    content: "\f1fd";
}

.fa-area-chart:before {
    content: "\f1fe";
}

.fa-pie-chart:before {
    content: "\f200";
}

.fa-line-chart:before {
    content: "\f201";
}

.fa-lastfm:before {
    content: "\f202";
}

.fa-lastfm-square:before {
    content: "\f203";
}

.fa-toggle-off:before {
    content: "\f204";
}

.fa-toggle-on:before {
    content: "\f205";
}

.fa-bicycle:before {
    content: "\f206";
}

.fa-bus:before {
    content: "\f207";
}

.fa-ioxhost:before {
    content: "\f208";
}

.fa-angellist:before {
    content: "\f209";
}

.fa-cc:before {
    content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "\f20b";
}

.fa-meanpath:before {
    content: "\f20c";
}

.fa-buysellads:before {
    content: "\f20d";
}

.fa-connectdevelop:before {
    content: "\f20e";
}

.fa-dashcube:before {
    content: "\f210";
}

.fa-forumbee:before {
    content: "\f211";
}

.fa-leanpub:before {
    content: "\f212";
}

.fa-sellsy:before {
    content: "\f213";
}

.fa-shirtsinbulk:before {
    content: "\f214";
}

.fa-simplybuilt:before {
    content: "\f215";
}

.fa-skyatlas:before {
    content: "\f216";
}

.fa-cart-plus:before {
    content: "\f217";
}

.fa-cart-arrow-down:before {
    content: "\f218";
}

.fa-diamond:before {
    content: "\f219";
}

.fa-ship:before {
    content: "\f21a";
}

.fa-user-secret:before {
    content: "\f21b";
}

.fa-motorcycle:before {
    content: "\f21c";
}

.fa-street-view:before {
    content: "\f21d";
}

.fa-heartbeat:before {
    content: "\f21e";
}

.fa-venus:before {
    content: "\f221";
}

.fa-mars:before {
    content: "\f222";
}

.fa-mercury:before {
    content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
    content: "\f224";
}

.fa-transgender-alt:before {
    content: "\f225";
}

.fa-venus-double:before {
    content: "\f226";
}

.fa-mars-double:before {
    content: "\f227";
}

.fa-venus-mars:before {
    content: "\f228";
}

.fa-mars-stroke:before {
    content: "\f229";
}

.fa-mars-stroke-v:before {
    content: "\f22a";
}

.fa-mars-stroke-h:before {
    content: "\f22b";
}

.fa-neuter:before {
    content: "\f22c";
}

.fa-genderless:before {
    content: "\f22d";
}

.fa-facebook-official:before {
    content: "\f230";
}

.fa-pinterest-p:before {
    content: "\f231";
}

.fa-whatsapp:before {
    content: "\f232";
}

.fa-server:before {
    content: "\f233";
}

.fa-user-plus:before {
    content: "\f234";
}

.fa-user-times:before {
    content: "\f235";
}

.fa-hotel:before,
.fa-bed:before {
    content: "\f236";
}

.fa-viacoin:before {
    content: "\f237";
}

.fa-train:before {
    content: "\f238";
}

.fa-subway:before {
    content: "\f239";
}

.fa-medium:before {
    content: "\f23a";
}

.fa-yc:before,
.fa-y-combinator:before {
    content: "\f23b";
}

.fa-optin-monster:before {
    content: "\f23c";
}

.fa-opencart:before {
    content: "\f23d";
}

.fa-expeditedssl:before {
    content: "\f23e";
}

.fa-battery-4:before,
.fa-battery-full:before {
    content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: "\f244";
}

.fa-mouse-pointer:before {
    content: "\f245";
}

.fa-i-cursor:before {
    content: "\f246";
}

.fa-object-group:before {
    content: "\f247";
}

.fa-object-ungroup:before {
    content: "\f248";
}

.fa-sticky-note:before {
    content: "\f249";
}

.fa-sticky-note-o:before {
    content: "\f24a";
}

.fa-cc-jcb:before {
    content: "\f24b";
}

.fa-cc-diners-club:before {
    content: "\f24c";
}

.fa-clone:before {
    content: "\f24d";
}

.fa-balance-scale:before {
    content: "\f24e";
}

.fa-hourglass-o:before {
    content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "\f253";
}

.fa-hourglass:before {
    content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: "\f256";
}

.fa-hand-scissors-o:before {
    content: "\f257";
}

.fa-hand-lizard-o:before {
    content: "\f258";
}

.fa-hand-spock-o:before {
    content: "\f259";
}

.fa-hand-pointer-o:before {
    content: "\f25a";
}

.fa-hand-peace-o:before {
    content: "\f25b";
}

.fa-trademark:before {
    content: "\f25c";
}

.fa-registered:before {
    content: "\f25d";
}

.fa-creative-commons:before {
    content: "\f25e";
}

.fa-gg:before {
    content: "\f260";
}

.fa-gg-circle:before {
    content: "\f261";
}

.fa-tripadvisor:before {
    content: "\f262";
}

.fa-odnoklassniki:before {
    content: "\f263";
}

.fa-odnoklassniki-square:before {
    content: "\f264";
}

.fa-get-pocket:before {
    content: "\f265";
}

.fa-wikipedia-w:before {
    content: "\f266";
}

.fa-safari:before {
    content: "\f267";
}

.fa-chrome:before {
    content: "\f268";
}

.fa-firefox:before {
    content: "\f269";
}

.fa-opera:before {
    content: "\f26a";
}

.fa-internet-explorer:before {
    content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
    content: "\f26c";
}

.fa-contao:before {
    content: "\f26d";
}

.fa-500px:before {
    content: "\f26e";
}

.fa-amazon:before {
    content: "\f270";
}

.fa-calendar-plus-o:before {
    content: "\f271";
}

.fa-calendar-minus-o:before {
    content: "\f272";
}

.fa-calendar-times-o:before {
    content: "\f273";
}

.fa-calendar-check-o:before {
    content: "\f274";
}

.fa-industry:before {
    content: "\f275";
}

.fa-map-pin:before {
    content: "\f276";
}

.fa-map-signs:before {
    content: "\f277";
}

.fa-map-o:before {
    content: "\f278";
}

.fa-map:before {
    content: "\f279";
}

.fa-commenting:before {
    content: "\f27a";
}

.fa-commenting-o:before {
    content: "\f27b";
}

.fa-houzz:before {
    content: "\f27c";
}

.fa-vimeo:before {
    content: "\f27d";
}

.fa-black-tie:before {
    content: "\f27e";
}

.fa-fonticons:before {
    content: "\f280";
}

.fa-reddit-alien:before {
    content: "\f281";
}

.fa-edge:before {
    content: "\f282";
}

.fa-credit-card-alt:before {
    content: "\f283";
}

.fa-codiepie:before {
    content: "\f284";
}

.fa-modx:before {
    content: "\f285";
}

.fa-fort-awesome:before {
    content: "\f286";
}

.fa-usb:before {
    content: "\f287";
}

.fa-product-hunt:before {
    content: "\f288";
}

.fa-mixcloud:before {
    content: "\f289";
}

.fa-scribd:before {
    content: "\f28a";
}

.fa-pause-circle:before {
    content: "\f28b";
}

.fa-pause-circle-o:before {
    content: "\f28c";
}

.fa-stop-circle:before {
    content: "\f28d";
}

.fa-stop-circle-o:before {
    content: "\f28e";
}

.fa-shopping-bag:before {
    content: "\f290";
}

.fa-shopping-basket:before {
    content: "\f291";
}

.fa-hashtag:before {
    content: "\f292";
}

.fa-bluetooth:before {
    content: "\f293";
}

.fa-bluetooth-b:before {
    content: "\f294";
}

.fa-percent:before {
    content: "\f295";
}

.fa-gitlab:before {
    content: "\f296";
}

.fa-wpbeginner:before {
    content: "\f297";
}

.fa-wpforms:before {
    content: "\f298";
}

.fa-envira:before {
    content: "\f299";
}

.fa-universal-access:before {
    content: "\f29a";
}

.fa-wheelchair-alt:before {
    content: "\f29b";
}

.fa-question-circle-o:before {
    content: "\f29c";
}

.fa-blind:before {
    content: "\f29d";
}

.fa-audio-description:before {
    content: "\f29e";
}

.fa-volume-control-phone:before {
    content: "\f2a0";
}

.fa-braille:before {
    content: "\f2a1";
}

.fa-assistive-listening-systems:before {
    content: "\f2a2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
    content: "\f2a3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
    content: "\f2a4";
}

.fa-glide:before {
    content: "\f2a5";
}

.fa-glide-g:before {
    content: "\f2a6";
}

.fa-signing:before,
.fa-sign-language:before {
    content: "\f2a7";
}

.fa-low-vision:before {
    content: "\f2a8";
}

.fa-viadeo:before {
    content: "\f2a9";
}

.fa-viadeo-square:before {
    content: "\f2aa";
}

.fa-snapchat:before {
    content: "\f2ab";
}

.fa-snapchat-ghost:before {
    content: "\f2ac";
}

.fa-snapchat-square:before {
    content: "\f2ad";
}

.fa-pied-piper:before {
    content: "\f2ae";
}

.fa-first-order:before {
    content: "\f2b0";
}

.fa-yoast:before {
    content: "\f2b1";
}

.fa-themeisle:before {
    content: "\f2b2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: "\f2b3";
}

.fa-fa:before,
.fa-font-awesome:before {
    content: "\f2b4";
}

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

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

@font-face {
    font-family: "LinearIcons";
    src: url(../webfonts/LinearIcons.ttf) format("truetype"), url(../webfonts/LinearIcons.woff) format("woff"), url(../webfonts/LinearIcons.svg#LinearIcons) format("svg");
    font-weight: normal;
    font-style: normal;
}
[class^=li-]:before, [class*=" li-"]:before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "LinearIcons" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.li-home:before {
    content: "\e602";
}

.li-pencil:before {
    content: "\e60d";
}

.li-eraser:before {
    content: "\e611";
}

.li-pencil-square:before {
    content: "\e613";
}

.li-cloud-upload:before {
    content: "\e64b";
}

.li-cloud-download:before {
    content: "\e64c";
}

.li-cloud-sync:before {
    content: "\e655";
}

.li-cloud-gear:before {
    content: "\e657";
}

.li-cog:before {
    content: "\e672";
}

.li-trash:before {
    content: "\e681";
}

.li-star:before {
    content: "\e68d";
}

.li-envelope:before {
    content: "\e696";
}

.li-envelope-open:before {
    content: "\e697";
}

.li-paperclip:before {
    content: "\e698";
}

.li-paper-plane:before {
    content: "\e699";
}

.li-inbox:before {
    content: "\e69d";
}

.li-outbox:before {
    content: "\e69e";
}

.li-eye:before {
    content: "\e6a5";
}

.li-eye-crossed:before {
    content: "\e6a6";
}

.li-save:before {
    content: "\e6ae";
}

.li-printer:before {
    content: "\e6b1";
}

.li-file-empty:before {
    content: "\e6b3";
}

.li-file-add:before {
    content: "\e6b4";
}

.li-picture:before {
    content: "\e70e";
}

.li-user:before {
    content: "\e71e";
}

.li-user-plus:before {
    content: "\e71f";
}

.li-user-minus:before {
    content: "\e720";
}

.li-user-lock:before {
    content: "\e721";
}

.li-users:before {
    content: "\e723";
}

.li-users-plus:before {
    content: "\e724";
}

.li-users-minus:before {
    content: "\e725";
}

.li-telephone:before {
    content: "\e76a";
}

.li-map-marker:before {
    content: "\e77a";
}

.li-map:before {
    content: "\e781";
}

.li-calendar-empty:before {
    content: "\e785";
}

.li-calendar-check:before {
    content: "\e786";
}

.li-calendar-cross:before {
    content: "\e787";
}

.li-calendar-31:before {
    content: "\e788";
}

.li-calendar-full:before {
    content: "\e789";
}

.li-refresh:before {
    content: "\e8d3";
}

.li-undo:before {
    content: "\e8d5";
}

.li-redo:before {
    content: "\e8d6";
}

.li-sync:before {
    content: "\e8da";
}

.li-return:before {
    content: "\e8e1";
}

.li-download:before {
    content: "\e8f5";
}

.li-upload:before {
    content: "\e8f6";
}

.li-code:before {
    content: "\e90b";
}

.li-link:before {
    content: "\e917";
}

.li-unlink:before {
    content: "\e918";
}

.li-list:before {
    content: "\e92c";
}

.li-list-ol:before {
    content: "\e92d";
}

.li-exclamation:before {
    content: "\e932";
}

.li-question:before {
    content: "\e933";
}

.li-check:before {
    content: "\e934";
}

.li-cross:before {
    content: "\e935";
}

.li-plus:before {
    content: "\e936";
}

.li-minus:before {
    content: "\e937";
}

.li-percent:before {
    content: "\e938";
}

.li-chevron-up:before {
    content: "\e939";
}

.li-chevron-down:before {
    content: "\e93a";
}

.li-chevron-left:before {
    content: "\e93b";
}

.li-chevron-right:before {
    content: "\e93c";
}

.li-notification:before {
    content: "\e954";
}

.li-funnel:before {
    content: "\e97c";
}

.li-text-format:before {
    content: "\e9a0";
}

.li-text-format-remove:before {
    content: "\e9a1";
}

.li-text-size:before {
    content: "\e9a2";
}

.li-bold:before {
    content: "\e9a3";
}

.li-italic:before {
    content: "\e9a4";
}

.li-underline:before {
    content: "\e9a5";
}

.li-strikethrough:before {
    content: "\e9a6";
}

.li-highlight:before {
    content: "\e9a7";
}

.li-text-align-left:before {
    content: "\e9a8";
}

.li-text-align-center:before {
    content: "\e9a9";
}

.li-text-align-right:before {
    content: "\e9aa";
}

.li-text-align-justify:before {
    content: "\e9ab";
}

.li-line-spacing:before {
    content: "\e9ac";
}

.li-indent-increase:before {
    content: "\e9ad";
}

.li-indent-decrease:before {
    content: "\e9ae";
}

.li-pilcrow:before {
    content: "\e9b0";
}

.li-sort-alpha-asc:before {
    content: "\e9b5";
}

.li-sort-alpha-desc:before {
    content: "\e9b6";
}

.li-sort-numeric-asc:before {
    content: "\e9b7";
}

.li-sort-numeric-desc:before {
    content: "\e9b8";
}

.li-sort-amount-asc:before {
    content: "\e9b9";
}

.li-sort-amount-desc:before {
    content: "\e9ba";
}

/**
* Trumbowyg v2.25.2 - A lightweight WYSIWYG editor
* Default stylesheet for Trumbowyg editor
* ------------------------
* @link http://alex-d.github.io/Trumbowyg
* @license MIT
* @author Alexandre Demode (Alex-D)
*         Twitter : @AlexandreDemode
*         Website : alex-d.fr
*/
#trumbowyg-icons {
    overflow: hidden;
    visibility: hidden;
    height: 0;
    width: 0;
}
#trumbowyg-icons svg {
    height: 0;
    width: 0;
}

.trumbowyg-box *,
.trumbowyg-box *::before,
.trumbowyg-box *::after,
.trumbowyg-modal *,
.trumbowyg-modal *::before,
.trumbowyg-modal *::after {
    box-sizing: border-box;
}
.trumbowyg-box svg,
.trumbowyg-modal svg {
    width: 17px;
    height: 100%;
    fill: #222;
}

.trumbowyg-box,
.trumbowyg-editor {
    display: block;
    position: relative;
    border: 1px solid #DDD;
    width: 100%;
    min-height: 300px;
}

.trumbowyg-box .trumbowyg-editor {
    margin: 0 auto;
}

.trumbowyg-box.trumbowyg-fullscreen {
    background: #FEFEFE;
    border: none !important;
}

.trumbowyg-editor,
.trumbowyg-textarea {
    position: relative;
    box-sizing: border-box;
    padding: 20px;
    min-height: 300px;
    width: 100%;
    border-style: none;
    resize: none;
    outline: none;
    overflow: auto;
    user-select: text;
}
.trumbowyg-editor.trumbowyg-autogrow-on-enter,
.trumbowyg-textarea.trumbowyg-autogrow-on-enter {
    transition: height 300ms ease-out;
}

.trumbowyg-box-blur .trumbowyg-editor *, .trumbowyg-box-blur .trumbowyg-editor::before {
    color: transparent !important;
    text-shadow: 0 0 7px #333;
}
@media screen and (min-width: 0) {
    .trumbowyg-box-blur .trumbowyg-editor *, .trumbowyg-box-blur .trumbowyg-editor::before {
        color: rgba(200, 200, 200, 0.6) !important;
    }
}
@supports (-ms-accelerator: true) {
    .trumbowyg-box-blur .trumbowyg-editor *, .trumbowyg-box-blur .trumbowyg-editor::before {
        color: rgba(200, 200, 200, 0.6) !important;
    }
}
.trumbowyg-box-blur .trumbowyg-editor img,
.trumbowyg-box-blur .trumbowyg-editor hr {
    opacity: 0.2;
}

.trumbowyg-textarea {
    position: relative;
    display: block;
    overflow: auto;
    border: none;
    font-size: 14px;
    font-family: "Inconsolata", "Consolas", "Courier", "Courier New", sans-serif;
    line-height: 18px;
}

.trumbowyg-box.trumbowyg-editor-visible .trumbowyg-textarea {
    height: 1px !important;
    width: 25%;
    min-height: 0 !important;
    padding: 0 !important;
    background: none;
    opacity: 0 !important;
}

.trumbowyg-box.trumbowyg-editor-hidden .trumbowyg-textarea {
    display: block;
    margin-bottom: 1px;
}
.trumbowyg-box.trumbowyg-editor-hidden .trumbowyg-editor {
    display: none;
}

.trumbowyg-box.trumbowyg-disabled .trumbowyg-textarea {
    opacity: 0.8;
    background: none;
}

.trumbowyg-editor[contenteditable=true]:empty:not(:focus)::before {
    content: attr(placeholder);
    color: #999;
    pointer-events: none;
    white-space: break-spaces;
}

.trumbowyg-button-pane {
    width: 100%;
    min-height: 36px;
    background: #ecf0f1;
    border-bottom: 1px solid #d7e0e2;
    margin: 0;
    padding: 0 5px;
    position: relative;
    list-style-type: none;
    line-height: 10px;
    backface-visibility: hidden;
    z-index: 11;
}
.trumbowyg-button-pane::after {
    content: " ";
    display: block;
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #d7e0e2;
}
.trumbowyg-button-pane .trumbowyg-button-group {
    display: inline-block;
}
.trumbowyg-button-pane .trumbowyg-button-group .trumbowyg-fullscreen-button svg {
    color: transparent;
}
.trumbowyg-button-pane .trumbowyg-button-group::after {
    content: " ";
    display: inline-block;
    width: 1px;
    background: #d7e0e2;
    margin: 0 5px;
    height: 35px;
    vertical-align: top;
}
.trumbowyg-button-pane .trumbowyg-button-group:last-child::after {
    content: none;
}
.trumbowyg-button-pane button {
    display: inline-block;
    position: relative;
    width: 35px;
    height: 35px;
    padding: 1px 6px !important;
    margin-bottom: 1px;
    overflow: hidden;
    border: none;
    cursor: pointer;
    background: none;
    vertical-align: middle;
    transition: background-color 150ms, opacity 150ms;
}
.trumbowyg-button-pane button.trumbowyg-textual-button {
    width: auto;
    line-height: 35px;
    user-select: none;
}
.trumbowyg-button-pane.trumbowyg-disable button:not(.trumbowyg-not-disable):not(.trumbowyg-active),
.trumbowyg-button-pane button.trumbowyg-disable, .trumbowyg-disabled .trumbowyg-button-pane button:not(.trumbowyg-not-disable):not(.trumbowyg-viewHTML-button) {
    opacity: 0.2;
    cursor: default;
    pointer-events: none;
}
.trumbowyg-button-pane.trumbowyg-disable .trumbowyg-button-group::before, .trumbowyg-disabled .trumbowyg-button-pane .trumbowyg-button-group::before {
    background: #e3e9eb;
}
.trumbowyg-button-pane button:not(.trumbowyg-disable):hover,
.trumbowyg-button-pane button:not(.trumbowyg-disable):focus,
.trumbowyg-button-pane button.trumbowyg-active {
    background-color: #FFF;
    outline: none;
}
.trumbowyg-button-pane .trumbowyg-open-dropdown::after {
    display: block;
    content: " ";
    position: absolute;
    top: 25px;
    right: 3px;
    height: 0;
    width: 0;
    border: 3px solid transparent;
    border-top-color: #555;
}
.trumbowyg-button-pane .trumbowyg-open-dropdown.trumbowyg-textual-button {
    padding-left: 10px !important;
    padding-right: 18px !important;
}
.trumbowyg-button-pane .trumbowyg-open-dropdown.trumbowyg-textual-button::after {
    top: 17px;
    right: 7px;
}
.trumbowyg-button-pane .trumbowyg-right {
    float: right;
}

.trumbowyg-dropdown {
    max-width: 300px;
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    white-space: nowrap;
    border: 1px solid #ecf0f1;
    padding: 5px 0;
    border-top: none;
    background: #FFF;
    margin-left: -1px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px;
    z-index: 12;
}
.trumbowyg-dropdown button {
    display: block;
    width: 100%;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    background: #FFF;
    padding: 0 20px 0 10px;
    color: #333 !important;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    transition: all 150ms;
}
.trumbowyg-dropdown button:hover, .trumbowyg-dropdown button:focus {
    background: #ecf0f1;
}
.trumbowyg-dropdown button svg {
    float: left;
    margin-right: 14px;
}

/* Modal box */
.trumbowyg-modal {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 520px;
    width: 100%;
    height: 350px;
    z-index: 12;
    overflow: hidden;
    backface-visibility: hidden;
}

.trumbowyg-modal-box {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 500px;
    width: calc(100% - 20px);
    padding-bottom: 45px;
    z-index: 1;
    background-color: #FFF;
    text-align: center;
    font-size: 14px;
    box-shadow: rgba(0, 0, 0, 0.2) 0 2px 3px;
    backface-visibility: hidden;
}
.trumbowyg-modal-box .trumbowyg-modal-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 20px;
    padding: 15px 0 13px;
    display: block;
    border-bottom: 1px solid #EEE;
    color: #333;
    background: #fbfcfc;
}
.trumbowyg-modal-box .trumbowyg-progress {
    width: 100%;
    height: 3px;
    position: absolute;
    top: 58px;
}
.trumbowyg-modal-box .trumbowyg-progress .trumbowyg-progress-bar {
    background: #2BC06A;
    width: 0;
    height: 100%;
    transition: width 150ms linear;
}
.trumbowyg-modal-box .trumbowyg-input-row {
    position: relative;
    margin: 15px 12px;
    border: 1px solid #DEDEDE;
    overflow: hidden;
}
.trumbowyg-modal-box .trumbowyg-input-infos {
    text-align: left;
    transition: all 150ms;
    width: 150px;
    border-right: 1px solid #DEDEDE;
    padding: 0 7px;
    background-color: #fbfcfc;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}
.trumbowyg-modal-box .trumbowyg-input-infos label {
    color: #69878f;
    overflow: hidden;
    height: 27px;
    line-height: 27px;
}
.trumbowyg-modal-box .trumbowyg-input-infos label, .trumbowyg-modal-box .trumbowyg-input-infos label span {
    display: block;
    height: 27px;
    line-height: 27px;
    transition: all 150ms;
}
.trumbowyg-modal-box .trumbowyg-input-infos .trumbowyg-msg-error {
    color: #e74c3c;
}
.trumbowyg-modal-box .trumbowyg-input-html {
    padding: 1px 1px 1px 152px;
}
.trumbowyg-modal-box .trumbowyg-input-html, .trumbowyg-modal-box .trumbowyg-input-html input, .trumbowyg-modal-box .trumbowyg-input-html textarea, .trumbowyg-modal-box .trumbowyg-input-html select {
    font-size: 14px;
}
.trumbowyg-modal-box .trumbowyg-input-html input, .trumbowyg-modal-box .trumbowyg-input-html textarea, .trumbowyg-modal-box .trumbowyg-input-html select {
    transition: all 150ms;
    height: 27px;
    line-height: 27px;
    border: 0;
    width: 100%;
    padding: 0 7px;
}
.trumbowyg-modal-box .trumbowyg-input-html input:hover, .trumbowyg-modal-box .trumbowyg-input-html input:focus, .trumbowyg-modal-box .trumbowyg-input-html textarea:hover, .trumbowyg-modal-box .trumbowyg-input-html textarea:focus, .trumbowyg-modal-box .trumbowyg-input-html select:hover, .trumbowyg-modal-box .trumbowyg-input-html select:focus {
    outline: 1px solid #95a5a6;
}
.trumbowyg-modal-box .trumbowyg-input-html input:focus, .trumbowyg-modal-box .trumbowyg-input-html textarea:focus, .trumbowyg-modal-box .trumbowyg-input-html select:focus {
    background: #fbfcfc;
}
.trumbowyg-modal-box .trumbowyg-input-html input[type=checkbox] {
    width: 16px;
    height: 16px;
    padding: 0;
}
.trumbowyg-modal-box .trumbowyg-input-html-with-checkbox {
    text-align: left;
    padding: 3px 1px 1px 3px;
}
.trumbowyg-modal-box .trumbowyg-input-error input, .trumbowyg-modal-box .trumbowyg-input-error select, .trumbowyg-modal-box .trumbowyg-input-error textarea {
    outline: 1px solid #e74c3c;
}
.trumbowyg-modal-box .trumbowyg-input-error .trumbowyg-input-infos label span:first-child {
    margin-top: -27px;
}
.trumbowyg-modal-box .error {
    margin-top: 25px;
    display: block;
    color: red;
}
.trumbowyg-modal-box .trumbowyg-modal-button {
    position: absolute;
    bottom: 10px;
    right: 0;
    text-decoration: none;
    color: #FFF;
    display: block;
    width: 100px;
    height: 35px;
    line-height: 33px;
    margin: 0 10px;
    background-color: #333;
    border: none;
    cursor: pointer;
    font-family: "Trebuchet MS", Helvetica, Verdana, sans-serif;
    font-size: 16px;
    transition: all 150ms;
}
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit {
    right: 110px;
    background: #2bc06a;
}
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:hover, .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:focus {
    background: #40d47e;
    outline: none;
}
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:active {
    background: #25a25a;
}
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset {
    color: #555;
    background: #e6e6e6;
}
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:hover, .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:focus {
    background: #fbfbfb;
    outline: none;
}
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:active {
    background: #d5d5d5;
}

.trumbowyg-overlay {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    height: 100%;
    width: 100%;
    left: 0;
    display: none;
    top: 0;
    z-index: 10;
}

/**
 * Fullscreen
 */
body.trumbowyg-body-fullscreen {
    overflow: hidden;
}

.trumbowyg-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    z-index: 99999;
}
.trumbowyg-fullscreen.trumbowyg-box,
.trumbowyg-fullscreen .trumbowyg-editor {
    border: none;
}
.trumbowyg-fullscreen .trumbowyg-editor,
.trumbowyg-fullscreen .trumbowyg-textarea {
    height: calc(100% - 37px) !important;
    overflow: auto;
}
.trumbowyg-fullscreen .trumbowyg-overlay {
    height: 100% !important;
}
.trumbowyg-fullscreen .trumbowyg-button-group .trumbowyg-fullscreen-button svg {
    color: #222;
    fill: transparent;
}

.trumbowyg-editor {
    /*
     * lset for resetCss option
     */
}
.trumbowyg-editor object,
.trumbowyg-editor embed,
.trumbowyg-editor video,
.trumbowyg-editor img {
    max-width: 100%;
}
.trumbowyg-editor video,
.trumbowyg-editor img {
    height: auto;
}
.trumbowyg-editor img {
    cursor: move;
}
.trumbowyg-editor canvas:focus {
    outline: none;
}
.trumbowyg-editor.trumbowyg-reset-css {
    background: #FEFEFE !important;
    font-family: "Trebuchet MS", Helvetica, Verdana, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.45em !important;
    color: #333;
}
.trumbowyg-editor.trumbowyg-reset-css a {
    color: #15c !important;
    text-decoration: underline !important;
}
.trumbowyg-editor.trumbowyg-reset-css div,
.trumbowyg-editor.trumbowyg-reset-css p,
.trumbowyg-editor.trumbowyg-reset-css ul,
.trumbowyg-editor.trumbowyg-reset-css ol,
.trumbowyg-editor.trumbowyg-reset-css blockquote {
    box-shadow: none !important;
    background: none !important;
    margin: 0 !important;
    margin-bottom: 15px !important;
    line-height: 1.4em !important;
    font-family: "Trebuchet MS", Helvetica, Verdana, sans-serif !important;
    font-size: 14px !important;
    border: none;
}
.trumbowyg-editor.trumbowyg-reset-css iframe,
.trumbowyg-editor.trumbowyg-reset-css object,
.trumbowyg-editor.trumbowyg-reset-css hr {
    margin-bottom: 15px !important;
}
.trumbowyg-editor.trumbowyg-reset-css blockquote {
    margin-left: 32px !important;
    font-style: italic !important;
    color: #555;
}
.trumbowyg-editor.trumbowyg-reset-css ul {
    list-style: disc;
}
.trumbowyg-editor.trumbowyg-reset-css ol {
    list-style: decimal;
}
.trumbowyg-editor.trumbowyg-reset-css ul,
.trumbowyg-editor.trumbowyg-reset-css ol {
    padding-left: 20px !important;
}
.trumbowyg-editor.trumbowyg-reset-css ul ul,
.trumbowyg-editor.trumbowyg-reset-css ol ol,
.trumbowyg-editor.trumbowyg-reset-css ul ol,
.trumbowyg-editor.trumbowyg-reset-css ol ul {
    border: none;
    margin: 2px !important;
    padding: 0 !important;
    padding-left: 24px !important;
}
.trumbowyg-editor.trumbowyg-reset-css hr {
    display: block;
    height: 1px;
    border: none;
    border-top: 1px solid #CCC;
}
.trumbowyg-editor.trumbowyg-reset-css h1,
.trumbowyg-editor.trumbowyg-reset-css h2,
.trumbowyg-editor.trumbowyg-reset-css h3,
.trumbowyg-editor.trumbowyg-reset-css h4 {
    color: #111;
    background: none;
    margin: 0 !important;
    padding: 0 !important;
    font-weight: bold;
}
.trumbowyg-editor.trumbowyg-reset-css h1 {
    font-size: 32px !important;
    line-height: 38px !important;
    margin-bottom: 20px !important;
}
.trumbowyg-editor.trumbowyg-reset-css h2 {
    font-size: 26px !important;
    line-height: 34px !important;
    margin-bottom: 15px !important;
}
.trumbowyg-editor.trumbowyg-reset-css h3 {
    font-size: 22px !important;
    line-height: 28px !important;
    margin-bottom: 7px !important;
}
.trumbowyg-editor.trumbowyg-reset-css h4 {
    font-size: 16px !important;
    line-height: 22px !important;
    margin-bottom: 7px !important;
}

/*
 * Dark theme
 */
.trumbowyg-dark .trumbowyg-textarea {
    background: #111;
    color: #ddd;
}
.trumbowyg-dark .trumbowyg-box {
    border: 1px solid #343434;
}
.trumbowyg-dark .trumbowyg-box.trumbowyg-fullscreen {
    background: #111;
}
.trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor *, .trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor::before {
    text-shadow: 0 0 7px #ccc;
}
@media screen and (min-width: 0) {
    .trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor *, .trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor::before {
        color: rgba(20, 20, 20, 0.6) !important;
    }
}
@supports (-ms-accelerator: true) {
    .trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor *, .trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor::before {
        color: rgba(20, 20, 20, 0.6) !important;
    }
}
.trumbowyg-dark .trumbowyg-box svg {
    fill: #ecf0f1;
    color: #ecf0f1;
}
.trumbowyg-dark .trumbowyg-button-pane {
    background-color: #222;
    border-bottom-color: #343434;
}
.trumbowyg-dark .trumbowyg-button-pane::after {
    background: #343434;
}
.trumbowyg-dark .trumbowyg-button-pane .trumbowyg-button-group:not(:empty)::after {
    background-color: #343434;
}
.trumbowyg-dark .trumbowyg-button-pane .trumbowyg-button-group:not(:empty) .trumbowyg-fullscreen-button svg {
    color: transparent;
}
.trumbowyg-dark .trumbowyg-button-pane.trumbowyg-disable .trumbowyg-button-group::after {
    background-color: #2a2a2a;
}
.trumbowyg-dark .trumbowyg-button-pane button:not(.trumbowyg-disable):hover,
.trumbowyg-dark .trumbowyg-button-pane button:not(.trumbowyg-disable):focus,
.trumbowyg-dark .trumbowyg-button-pane button.trumbowyg-active {
    background-color: #333;
}
.trumbowyg-dark .trumbowyg-button-pane .trumbowyg-open-dropdown::after {
    border-top-color: #fff;
}
.trumbowyg-dark .trumbowyg-fullscreen .trumbowyg-button-pane .trumbowyg-button-group:not(:empty) .trumbowyg-fullscreen-button svg {
    color: #ecf0f1;
    fill: transparent;
}
.trumbowyg-dark .trumbowyg-dropdown {
    border-color: #222;
    background: #333;
    box-shadow: rgba(0, 0, 0, 0.3) 0 2px 3px;
}
.trumbowyg-dark .trumbowyg-dropdown button {
    background: #333;
    color: #fff !important;
}
.trumbowyg-dark .trumbowyg-dropdown button:hover, .trumbowyg-dark .trumbowyg-dropdown button:focus {
    background: #222;
}
.trumbowyg-dark .trumbowyg-modal-box {
    background-color: #222;
}
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-title {
    border-bottom: 1px solid #555;
    color: #fff;
    background: #3c3c3c;
}
.trumbowyg-dark .trumbowyg-modal-box label {
    display: block;
    position: relative;
    margin: 15px 12px;
    height: 27px;
    line-height: 27px;
    overflow: hidden;
}
.trumbowyg-dark .trumbowyg-modal-box label .trumbowyg-input-infos span {
    color: #eee;
    background-color: #2f2f2f;
    border-color: #222;
}
.trumbowyg-dark .trumbowyg-modal-box label .trumbowyg-input-infos span.trumbowyg-msg-error {
    color: #e74c3c;
}
.trumbowyg-dark .trumbowyg-modal-box label.trumbowyg-input-error input,
.trumbowyg-dark .trumbowyg-modal-box label.trumbowyg-input-error textarea {
    border-color: #e74c3c;
}
.trumbowyg-dark .trumbowyg-modal-box label input {
    border-color: #222;
    color: #eee;
    background: #333;
}
.trumbowyg-dark .trumbowyg-modal-box label input:hover, .trumbowyg-dark .trumbowyg-modal-box label input:focus {
    border-color: #626262;
}
.trumbowyg-dark .trumbowyg-modal-box label input:focus {
    background-color: #2f2f2f;
}
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit {
    background: #1b7943;
}
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:hover, .trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:focus {
    background: #25a25a;
}
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:active {
    background: #176437;
}
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset {
    background: #333;
    color: #ccc;
}
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:hover, .trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:focus {
    background: #444;
}
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:active {
    background: #111;
}
.trumbowyg-dark .trumbowyg-overlay {
    background-color: rgba(15, 15, 15, 0.6);
}

/* To be used with cookieCuttr by Chris Wharton (http://cookiecuttr.com) */
.cc-cookies {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    padding: 5px;
    background: #306699;
    background: rgba(48, 102, 153, 0.8);
    color: #ffffff;
    font-family: "Roboto", Segoe UI Light, Arial, Helvetica, Sans-Serif !important;
    font-size: 15px;
    font-weight: 400;
    z-index: 99999;
    text-align: center;
    color: #ffffff;
}

.cc-cookies a, .cc-cookies a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.cc-cookies a:hover {
    text-decoration: none;
}

.cc-overlay {
    height: 100%;
    padding-top: 25%;
}

.cc-cookies-error {
    float: left;
    width: 90%;
    text-align: center;
    margin: 1em 0 2em 0;
    background: #ffffff;
    padding: 2em 5%;
    border: 1px solid #cccccc;
    font-size: 18px;
    color: #333333;
}

.cc-cookies a.cc-cookie-accept, .cc-cookies-error a.cc-cookie-accept, .cc-cookies a.cc-cookie-decline, .cc-cookies-error a.cc-cookie-decline, .cc-cookies a.cc-cookie-reset {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    background: #57ab29;
    padding: 0.5em 0.75em;
    border-radius: 3px;
    -o-transition: background 0.5s ease-in;
    -webkit-transition: background 0.25s ease-in;
    -moz-transition: background 0.25s ease-in;
}

.cc-cookies a.cc-cookie-decline, .cc-cookies-error a.cc-cookie-decline {
    background: #af3b3b;
    margin-left: 0.5em;
}

.cc-cookies a.cc-cookie-reset {
    background: #f15b00;
}

.cc-cookies a:hover.cc-cookie-accept, .cc-cookies-error a:hover.cc-cookie-accept, .cc-cookies a:hover.cc-cookie-decline, .cc-cookies-error a:hover.cc-cookie-decline, .cc-cookies a:hover.cc-cookie-reset {
    background: #666;
    -o-transition: background 0.5s ease-in;
    -webkit-transition: background 0.25s ease-in;
    -moz-transition: background 0.25s ease-in;
}

.cc-cookies-error a.cc-cookie-accept, .cc-cookies-error a.cc-cookie-decline {
    display: block;
    margin-top: 1em;
}

.cc-cookies.cc-discreet {
    width: auto;
    padding: 0.5em 1em;
    left: auto;
    top: auto;
}

.cc-cookies.cc-discreet a.cc-cookie-reset {
    background: none;
    padding: 0;
    text-decoration: underline;
}

.cc-cookies.cc-discreet a:hover.cc-cookie-reset {
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .cc-cookies {
        width: 100%;
        margin-right: -20px;
        margin-left: -20px;
        padding: 5px 20px;
    }
    .cc-cookies a.cc-cookie-accept, .cc-cookies a.cc-cookie-decline, .cc-cookies a.cc-cookie-reset {
        display: block;
        margin: 1em 0;
    }
}
@media screen and (max-width: 480px) {
    .cc-cookies {
        position: relative;
        float: left;
    }
}
/* ===============================================================
   $AUTOCOMPLETE
   =============================================================== */
span[role=status].ui-helper-hidden-accessible {
    display: none !important;
    opacity: 0;
}

.ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    display: none;
    min-width: 160px;
    max-height: 250px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0;
    margin-left: 1em;
    list-style: none;
    background-color: #ffffff;
    border: none;
    border-radius: 0.5em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
}

.ui-menu-item {
    display: block;
    padding: 0.3em 0.8em;
}
.ui-menu-item:hover, .ui-menu-item:focus, .ui-menu-item:active, .ui-menu-item.ui-state-hover, .ui-menu-item.ui-state-focus {
    background-color: #41B6E6;
    color: #ffffff;
}

/* ----------------------------------------------
 * Generated by Animista on 2022-11-18 12:11:17
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation rotate-scale-up
 * ----------------------------------------
 * HOW TO USE: rotate-scale-up 2s linear infinite both;
 */
@keyframes rotate-scale-up {
    0% {
        -webkit-transform: scale(1) rotateZ(0);
        transform: scale(1) rotateZ(0);
    }
    50% {
        -webkit-transform: scale(2) rotateZ(180deg);
        transform: scale(2) rotateZ(180deg);
    }
    100% {
        -webkit-transform: scale(1) rotateZ(360deg);
        transform: scale(1) rotateZ(360deg);
    }
}
/**
 * ----------------------------------------
 * animation rotate-center
 * ----------------------------------------
 * HOW TO USE: rotate-center 2s linear infinite both;
 */
@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/**
 * ----------------------------------------
 * animation vibrate-2
 * ----------------------------------------
 * HOW TO USE: animation: vibrate-2 2s linear infinite both;
 */
@keyframes vibrate-2 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    20% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }
    40% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }
    60% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }
    80% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}
/************
************************ $FORMS
************/
form {
    margin: 0 0 1.5 0;
}
form fieldset {
    margin-bottom: 1.5;
    padding: 0;
    border-width: 0;
}
form legend {
    display: block;
    width: 100%;
    margin-bottom: 1em;
    padding: 0;
    color: #4d4d4d;
    border: 0;
    border-bottom: 1px solid #8c8c8c;
    white-space: normal;
}
form legend small {
    font-size: 0.8rem;
    color: #8c8c8c;
}
form p {
    margin-bottom: 0.75;
}
form ul {
    list-style-type: none;
    margin: 0 0 1.5 0;
    padding: 0;
}

.form-field {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-top: 0.5em;
    margin-bottom: 1em;
}

label {
    font-size: 0.8rem;
    display: inline-block;
    font-weight: 600;
    color: #4d4d4d;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

input,
button,
select,
textarea {
    font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    border-radius: 0.5em;
    vertical-align: baseline;
    box-sizing: border-box;
}

input,
textarea,
select {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    padding: 0.5em 1em;
    background-color: #ffffff;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
    color: #4d4d4d;
    appearance: none;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 2px rgba(77, 77, 77, 0.1);
    font-size: 1rem;
}
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: 0 1px 0 #41B6E6;
    box-shadow: 0 1px 2px rgba(65, 182, 230, 0.5);
}
input:focus + label,
textarea:focus + label,
select:focus + label {
    color: #41B6E6;
}

textarea {
    height: auto;
    resize: vertical;
    overflow: auto;
    vertical-align: top;
}

select {
    appearance: listbox;
}

/** Field help
****/
.help:after {
    content: "?";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    color: #ffffff;
    background-color: #42a5f5;
    border-radius: 100%;
    line-height: 1;
}
.help:hover .help__text {
    display: block;
}

.help__text {
    position: absolute;
    bottom: 100%;
    display: none;
    width: 250px;
    padding: 0.5em;
    background-color: #72bcf8;
    color: #000305;
    box-shadow: 0 5px 10px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    font-weight: 400;
    z-index: 9000;
}
.help__text:first-line {
    font-weight: 600;
}

/** Actions
****/
.form__actions {
    text-align: right;
}

input[type=reset],
input[type=submit],
input[type=button] {
    width: auto;
}

/**
* Validamos los formularios que son "required":
* http://coolvillage.es/ayuda-al-usuario-a-rellenar-formularios-con-css/
*/
input:required:focus:invalid + label:before {
    background-color: #ef5350;
}

input:required:focus:valid + label:before {
    background-color: #66bb6a;
}

/** Checkbox / radio
****/
input[type=checkbox],
input[type=radio] {
    width: 12px;
    height: 12px;
    padding: 0;
    margin: 0 3px 0 0;
    line-height: normal;
    cursor: pointer;
    background-color: #ffffff;
    border: 1px solid #8c8c8c;
    border-radius: 0;
}
input[type=checkbox]:checked,
input[type=radio]:checked {
    background-color: #41B6E6;
    border-color: #ffffff;
    border-width: 1px;
    box-shadow: 0 0 0 1px #8c8c8c;
}
input[type=checkbox] + label,
input[type=radio] + label {
    margin-right: 24px;
}
input[type=checkbox] + label:before,
input[type=radio] + label:before {
    display: none;
}

input[type=radio] {
    border-radius: 100%;
}

label input[type=checkbox],
label input[type=radio] {
    margin-right: 6px;
}

/** Input placeholder
****/
::-webkit-input-placeholder {
    font-size: 0.8rem;
}

input:-moz-placeholder {
    font-size: 0.8rem;
}

/** Input disabled
****/
input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
    opacity: 0.5;
    cursor: not-allowed;
}

/** Input group
****/
.input-group {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    border-radius: 0.5em;
    margin-bottom: 1em;
    box-shadow: 0 1px 2px rgba(77, 77, 77, 0.1);
}
.input-group a,
.input-group input,
.input-group select,
.input-group button {
    box-shadow: none;
    margin: 0;
}
.input-group a, .input-group button {
    flex-grow: 0;
    flex-shrink: 0;
}
.input-group input,
.input-group select {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group input + a,
.input-group input + button,
.input-group select + a,
.input-group select + button,
.input-group button:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group a + a,
.input-group button + button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group a:not(:last-child),
.input-group button:not(:last-child) {
    border-radius: 0;
}
.input-group input {
    flex-basis: 70%;
    flex-grow: 1;
    flex-shrink: 1;
    box-shadow: none;
}
.input-group input:focus {
    box-shadow: 0 1px 2px rgba(65, 182, 230, 0.5);
}

.datetime-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 0.5em;
    box-shadow: 0 1px 2px rgba(77, 77, 77, 0.1);
}
.datetime-group input {
    box-shadow: none;
}
.datetime-group input:focus {
    box-shadow: 0 1px 2px rgba(65, 182, 230, 0.5);
}
.datetime-group input:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.datetime-group input + input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/************
************************ $BUTTONS
************/
.btn--tours, .btn--edit, .user-panel.logged-out .site-login, .dnnTertiaryAction, a.dnnTertiaryAction, .dnnSecondaryAction, .dnnSearchResultPanel a[href="#byRelevance"],
.dnnSearchResultPanel a[href="#byDate"], .dnnFormItem input[type=reset], a.dnnSecondaryAction, .dnnPrimaryAction, .dnnFormItem input[type=button],
.dnnFormItem input[type=submit], a.dnnPrimaryAction, input[type=submit][disabled],
button[disabled],
.btn--disabled, .btn--danger, .btn--warning, .btn--success, .btn--info, .btn--secondary,
.btn--tertiary, .btn--primary {
    display: inline-block;
    line-height: 2.25;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    font-size: 1rem;
    white-space: nowrap;
    background-color: #41B6E6;
    border-top: 0px solid currentcolor;
    border-right: 0px solid currentcolor;
    border-bottom: 0px solid currentcolor;
    border-left: 0px solid currentcolor;
    cursor: pointer;
    margin: 0.5em;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 1em;
    padding-left: 1em;
    border-radius: 0.5em;
    will-change: background-color, box-shadow;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
}
.btn--tours:hover, .btn--edit:hover, .user-panel.logged-out .site-login:hover, .dnnTertiaryAction:hover, .dnnSecondaryAction:hover, .dnnSearchResultPanel a[href="#byRelevance"]:hover,
.dnnSearchResultPanel a[href="#byDate"]:hover, .dnnFormItem input[type=reset]:hover, .dnnPrimaryAction:hover, .dnnFormItem input[type=button]:hover,
.dnnFormItem input[type=submit]:hover, input[type=submit][disabled]:hover,
button[disabled]:hover,
.btn--disabled:hover, .btn--danger:hover, .btn--warning:hover, .btn--success:hover, .btn--info:hover, .btn--secondary:hover,
.btn--tertiary:hover, .btn--primary:hover, .btn--tours:active, .btn--edit:active, .user-panel.logged-out .site-login:active, .dnnTertiaryAction:active, .dnnSecondaryAction:active, .dnnSearchResultPanel a[href="#byRelevance"]:active,
.dnnSearchResultPanel a[href="#byDate"]:active, .dnnFormItem input[type=reset]:active, .dnnPrimaryAction:active, .dnnFormItem input[type=button]:active,
.dnnFormItem input[type=submit]:active, input[type=submit][disabled]:active,
button[disabled]:active,
.btn--disabled:active, .btn--danger:active, .btn--warning:active, .btn--success:active, .btn--info:active, .btn--secondary:active,
.btn--tertiary:active, .btn--primary:active, .btn--tours:focus, .btn--edit:focus, .user-panel.logged-out .site-login:focus, .dnnTertiaryAction:focus, .dnnSecondaryAction:focus, .dnnSearchResultPanel a[href="#byRelevance"]:focus,
.dnnSearchResultPanel a[href="#byDate"]:focus, .dnnFormItem input[type=reset]:focus, .dnnPrimaryAction:focus, .dnnFormItem input[type=button]:focus,
.dnnFormItem input[type=submit]:focus, input[type=submit][disabled]:focus,
button[disabled]:focus,
.btn--disabled:focus, .btn--danger:focus, .btn--warning:focus, .btn--success:focus, .btn--info:focus, .btn--secondary:focus,
.btn--tertiary:focus, .btn--primary:focus {
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    outline: none;
}
.btn--tours:visited, .btn--edit:visited, .user-panel.logged-out .site-login:visited, .dnnTertiaryAction:visited, .dnnSecondaryAction:visited, .dnnSearchResultPanel a[href="#byRelevance"]:visited,
.dnnSearchResultPanel a[href="#byDate"]:visited, .dnnFormItem input[type=reset]:visited, .dnnPrimaryAction:visited, .dnnFormItem input[type=button]:visited,
.dnnFormItem input[type=submit]:visited, input[type=submit][disabled]:visited,
button[disabled]:visited,
.btn--disabled:visited, .btn--danger:visited, .btn--warning:visited, .btn--success:visited, .btn--info:visited, .btn--secondary:visited,
.btn--tertiary:visited, .btn--primary:visited {
    color: #ffffff;
}

.btn__icon {
    margin-right: 0.5em;
}

/************
************************ $BUTTON MODIFIERS
************/
/** Botón principal
****/
.btn--primary {
    background-color: #C800A1;
}
.btn--primary:visited {
    background-color: #C800A1;
}
.btn--primary:hover, .btn--primary:active, .btn--primary:focus {
    background-color: #950078;
}

/** Botón secundario
****/
.btn--secondary,
.btn--tertiary {
    background-color: #ffffff;
    color: #41B6E6;
}
.btn--secondary:hover, .btn--secondary:active, .btn--secondary:focus,
.btn--tertiary:hover,
.btn--tertiary:active,
.btn--tertiary:focus {
    background-color: #ffffff;
    color: #41B6E6;
}
.btn--secondary:visited,
.btn--tertiary:visited {
    background-color: #ffffff;
    color: #41B6E6;
}

/** Botón de info
****/
.btn--info {
    background-color: #42a5f5;
}
.btn--info:hover, .btn--info:active, .btn--info:focus {
    background-color: #72bcf8;
}
.btn--info:visited {
    background-color: #72bcf8;
}

/** Botón de OK
****/
.btn--success {
    background-color: #66bb6a;
}
.btn--success:hover, .btn--success:active, .btn--success:focus {
    background-color: #7fc682;
}
.btn--success:visited {
    background-color: #7fc682;
}

/** Botón de advertencia
****/
.btn--warning {
    background-color: #ffa726;
    color: #4d4d4d;
}
.btn--warning:hover, .btn--warning:active, .btn--warning:focus {
    background-color: #ffc268;
    color: #4d4d4d;
}
.btn--warning:visited {
    background-color: #ffc268;
    color: #4d4d4d;
}

/** Botón de error
****/
.btn--danger {
    background-color: #ef5350;
}
.btn--danger:hover, .btn--danger:active, .btn--danger:focus {
    background-color: #f3817f;
}
.btn--danger:visited {
    background-color: #f3817f;
}

/** Botón deshabilitado
****/
input[type=submit][disabled],
button[disabled],
.btn--disabled {
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #ededed;
    color: #4d4d4d;
}
input[type=submit][disabled]:hover, input[type=submit][disabled]:focus, input[type=submit][disabled]:visited,
button[disabled]:hover,
button[disabled]:focus,
button[disabled]:visited,
.btn--disabled:hover,
.btn--disabled:focus,
.btn--disabled:visited {
    background-color: #ededed;
    color: #4d4d4d;
}

/** Botones de bloque
****/
.btn--block {
    display: block;
    width: 100%;
    margin: 0;
}

/************
************************ $TAMAÑOS DE BOTONES
************/
.btn--small {
    font-size: 0.8rem;
}

.btn--large {
    line-height: 2.5;
    font-size: 1.8rem;
}

/************
************************ $BOTONES AGRUPADOS
************/
.btn-group {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0.5em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
    border-radius: 0.5em;
}
.btn-group [class^=btn--], .btn-group [class*=" btn--"] {
    position: relative;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
}
.btn-group [class^=btn--]:first-child, .btn-group [class*=" btn--"]:first-child {
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0.5em;
    -webkit-border-top-left-radius: 0.5em;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0.5em;
    -moz-border-radius-topleft: 0.5em;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0.5em;
    border-top-left-radius: 0.5em;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}
.btn-group [class^=btn--]:last-child, .btn-group [class*=" btn--"]:last-child {
    -webkit-border-top-right-radius: 0.5em;
    -webkit-border-bottom-right-radius: 0.5em;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topright: 0.5em;
    -moz-border-radius-bottomright: 0.5em;
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-topleft: 0;
    border-top-right-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}
.btn-group [class^=btn--]:hover, .btn-group [class*=" btn--"]:hover {
    box-shadow: 0 5px 10px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

/* ===============================================================
   $DNN ACTIONS
   =============================================================== */
.dnnPrimaryAction, .dnnFormItem input[type=button],
.dnnFormItem input[type=submit], a.dnnPrimaryAction {
    background: none;
    background-color: #41B6E6;
    color: #ffffff;
}
.dnnPrimaryAction:visited, .dnnFormItem input[type=button]:visited,
.dnnFormItem input[type=submit]:visited, .dnnPrimaryAction:active, .dnnFormItem input[type=button]:active,
.dnnFormItem input[type=submit]:active, .dnnPrimaryAction:focus, .dnnFormItem input[type=button]:focus,
.dnnFormItem input[type=submit]:focus, a.dnnPrimaryAction:visited, a.dnnPrimaryAction:active, a.dnnPrimaryAction:focus {
    color: #ffffff;
}
.dnnPrimaryAction:hover, .dnnFormItem input[type=button]:hover,
.dnnFormItem input[type=submit]:hover, a.dnnPrimaryAction:hover {
    background: none;
    background-color: #f5fbfe;
    color: #1ca1d8;
}

.dnnSecondaryAction, .dnnSearchResultPanel a[href="#byRelevance"],
.dnnSearchResultPanel a[href="#byDate"], .dnnFormItem input[type=reset], a.dnnSecondaryAction {
    background: none;
    background-color: #9bd9f2;
    color: #ffffff;
}
.dnnSecondaryAction:visited, .dnnSearchResultPanel a[href="#byRelevance"]:visited,
.dnnSearchResultPanel a[href="#byDate"]:visited, .dnnFormItem input[type=reset]:visited, .dnnSecondaryAction:active, .dnnSearchResultPanel a[href="#byRelevance"]:active,
.dnnSearchResultPanel a[href="#byDate"]:active, .dnnFormItem input[type=reset]:active, .dnnSecondaryAction:focus, .dnnSearchResultPanel a[href="#byRelevance"]:focus,
.dnnSearchResultPanel a[href="#byDate"]:focus, .dnnFormItem input[type=reset]:focus, a.dnnSecondaryAction:visited, a.dnnSecondaryAction:active, a.dnnSecondaryAction:focus {
    color: #ffffff;
}
.dnnSecondaryAction:hover, .dnnSearchResultPanel a[href="#byRelevance"]:hover,
.dnnSearchResultPanel a[href="#byDate"]:hover, .dnnFormItem input[type=reset]:hover, a.dnnSecondaryAction:hover {
    background: none;
    background-color: white;
    color: #1ca1d8;
}

.dnnTertiaryAction, a.dnnTertiaryAction {
    background: none;
    background-color: #41B6E6;
    color: #ffffff;
}
.dnnTertiaryAction:visited, .dnnTertiaryAction:active, .dnnTertiaryAction:focus, a.dnnTertiaryAction:visited, a.dnnTertiaryAction:active, a.dnnTertiaryAction:focus {
    color: #ffffff;
}
.dnnTertiaryAction:hover, a.dnnTertiaryAction:hover {
    background: none;
    background-color: #6ec7ec;
    color: #115e7d;
}

/************
************************ $IMAGES
************/
.img--rounded {
    border-radius: 1em;
}

.img--polaroid {
    padding: 12px 12px 48px 12px;
    background-color: #ffffff;
    border: 1px solid #ededed;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.img--circle {
    border-radius: 100%;
}

/************
************************ $LINKS
************/
a {
    text-decoration: none;
    color: #41B6E6;
}
a:visited {
    color: #41B6E6;
}
a:hover {
    text-decoration: underline;
    color: #41B6E6;
}
a:focus {
    outline: thin dotted;
    color: #41B6E6;
}
a:hover, a:active {
    outline: 0;
}

/************
************************ $TYPOGRAPHY
************/
/** Headings
****/
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: "Merriweather", Georgia, Times, "Times New Roman";
    font-weight: 400;
    color: #4d4d4d;
    text-rendering: optimizelegibility;
}

h1, .h1 {
    margin-bottom: 0;
    font-size: 2.5rem;
    line-height: 1.5;
}

h2, .h2 {
    margin-bottom: 0;
    font-size: 2.4rem;
    line-height: 1.5;
}

h3, .h3 {
    margin-bottom: 0;
    font-size: 2.1rem;
    line-height: 1.5;
}

h4, .h4 {
    margin-bottom: 0;
    font-size: 1.8rem;
    line-height: 1.5;
}

h5, .h5 {
    margin-bottom: 0;
    font-size: 1.6rem;
    line-height: 1.5;
}

h6, .h6 {
    margin-bottom: 0;
    font-size: 1.4rem;
    line-height: 1.5;
}

/** Body texts
****/
p,
ol,
ul,
dl,
address {
    margin-bottom: 1em;
    line-height: 1.5;
}

small {
    font-size: 0.6rem;
    color: #8c8c8c;
}

ul,
ol {
    margin: 0 0 1em 0;
    padding: 0 0 0 24px;
}

li ul,
li ol {
    margin: 0;
}

/** Blockquotes
****/
blockquote {
    position: relative;
    margin: 0 0 1em 0;
    padding: 0.5em 0.5em 0.5em 3em;
    font-family: "Merriweather", Georgia, Times, "Times New Roman";
    font-style: normal;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
blockquote p {
    font-size: 0.8rem;
    color: #8c8c8c;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0;
}
blockquote:before {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    font-size: 1.8rem;
    color: #C800A1;
}

q {
    quotes: none;
    font-style: italic;
}

blockquote p::before,
blockquote p::after,
q:before,
q:after {
    content: "";
}

cite {
    font-style: normal;
}

/** Definition lists
****/
dl,
dd {
    margin-bottom: 1em;
}

dt {
    font-weight: bold;
}

.dl-horizontal dt {
    float: left;
    clear: left;
    width: 20.25%;
    text-align: right;
}
.dl-horizontal dd {
    margin-left: 22.78%;
}

/** Text level
****/
abbr[title] {
    border-bottom: 1px dotted #ededed;
    cursor: help;
}

b, strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

ins {
    background-color: white;
    color: #4d4d4d;
    text-decoration: none;
}

mark {
    background-color: yellow;
    color: #4d4d4d;
}

pre,
code,
kbd,
samp {
    font-family: "Courier New", Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
    font-size: 0.8rem;
    line-height: 1.5;
}

code {
    background-color: #f5f2f0;
    padding: 0.1em 0.3em;
    border-radius: 0.5em;
}

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

sub,
sup {
    position: relative;
    font-size: 0.6rem;
    line-height: 0;
    vertical-align: 1.5;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

hr {
    clear: both;
    display: block;
    margin: 1em 0;
    padding: 0;
    height: 1px;
    border: 0;
    border-top: 1px solid #ededed;
}

/************
************************ $TABLES
************/
table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.5;
    border-collapse: collapse;
    border-spacing: 0;
    background-color: transparent;
}
table th,
table td {
    padding: 8px;
    vertical-align: top;
    border-top: 1px solid #8c8c8c;
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: left;
}
table th {
    font-weight: bold;
}
table thead th {
    vertical-align: bottom;
}
table colgroup + thead tr:first-child th,
table colgroup + thead tr:first-child td,
table thead:first-child tr:first-child th,
table thead:first-child tr:first-child td {
    border-top: 0;
}
table tbody + tbody {
    border-top: 2px solid #8c8c8c;
}
table tbody tr td,
table tbody tr th {
    -webkit-transition: background-color 0.25s 0 linear;
    -moz-transition: background-color 0.25s 0 linear;
    -ms-transition: background-color 0.25s 0 linear;
    -o-transition: background-color 0.25s 0 linear;
    transition: background-color 0.25s 0 linear;
}
table tbody tr:hover td,
table tbody tr:hover th {
    background-color: #fafafa;
}

/** Condensed
****/
.table-condensed th,
.table-condensed td {
    padding: 4px 5px;
}

/** Bordered
****/
.table-bordered {
    border: 1px solid #8c8c8c;
    border-left: 0;
    border-collapse: separate;
    border-collapse: collapsed;
}
.table-bordered th,
.table-bordered td {
    border-left: 1px solid #8c8c8c;
}
.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
    border-top: 0;
}

/** Striped
****/
.table-striped tbody tr:nth-child(odd) td, table.dnnPermissionsGrid tbody tr:nth-child(odd) td,
table.dnnGrid tbody tr:nth-child(odd) td,
table.dnnASPGrid tbody tr:nth-child(odd) td,
.table-striped tbody tr:nth-child(odd) th,
table.dnnPermissionsGrid tbody tr:nth-child(odd) th,
table.dnnGrid tbody tr:nth-child(odd) th,
table.dnnASPGrid tbody tr:nth-child(odd) th {
    background-color: #fafafa;
}

/************
************************ $GRID
************/
.grid {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

[class^=grid__item-], [class*=" grid__item-"] {
    flex-shrink: 0;
    flex-grow: 1;
    margin: 0.5em;
    padding: 5px;
    min-height: 100px;
}

.grid__item-1 {
    flex-basis: 100%;
}
@media (min-width: 992px) {
    .grid__item-1 {
        flex: 0 0 calc(16.6666666667% - 1em);
    }
}

.grid__item-2 {
    flex-basis: 100%;
}
@media (min-width: 992px) {
    .grid__item-2 {
        flex: 0 0 calc(33.3333333333% - 1em);
    }
}

.grid__item-3 {
    flex-basis: 100%;
}
@media (min-width: 992px) {
    .grid__item-3 {
        flex: 0 0 calc(50% - 1em);
    }
}

.grid__item-4 {
    flex-basis: 100%;
}
@media (min-width: 992px) {
    .grid__item-4 {
        flex: 0 0 calc(66.6666666667% - 1em);
    }
}

.grid__item-5 {
    flex-basis: 100%;
}
@media (min-width: 992px) {
    .grid__item-5 {
        flex: 0 0 calc(83.3333333333% - 1em);
    }
}

.grid__item-6 {
    flex-basis: 100%;
}
@media (min-width: 992px) {
    .grid__item-6 {
        flex: 0 0 calc(100% - 1em);
    }
}

/************
************************ $DROPMENU
************/
.dropmenu {
    position: relative;
}

.dropmenu__backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 900;
}

.dropmenu__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    z-index: 900;
    min-width: 200px;
    margin-top: 0;
    margin-left: 0;
    padding: 0.5em;
    list-style: none;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    background-color: #ffffff;
    opacity: 0;
}
.dropmenu--open .dropmenu__list {
    display: block;
    opacity: 1;
}

.dropmenu__list--left {
    left: auto;
    right: 1em;
}

.dropmenu__item {
    list-style: none;
}

.dropmenu__link {
    display: block;
    padding: 0.3em 1em;
    color: #41B6E6;
}
.dropmenu__link:visited {
    color: #41B6E6;
}
.dropmenu__link:hover, .dropmenu__link:focus {
    background-color: rgba(237, 237, 237, 0.2);
    cursor: pointer;
    text-decoration: none;
    outline: none;
}

.dropmenu__link--disabled {
    color: #ededed;
}
.dropmenu__link--disabled:hover, .dropmenu__link--disabled:focus {
    cursor: default;
    background-color: transparent;
}

/* ===============================================================
$PESTAÑAS
=============================================================== */
.tab-list--vertical, .tab-list {
    display: block;
    margin-left: 0;
    padding: 0;
    list-style: none;
}

.tab-list__item {
    display: block;
    float: left;
    margin-right: 0.5em;
}

.tab-list__link {
    display: inline-block;
    margin: 0;
    padding: 0.5em 1em;
    background-color: #b2e1f5;
    color: #ffffff;
    -webkit-border-top-right-radius: 0.5em;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 0.5em;
    -moz-border-radius-topright: 0.5em;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-topleft: 0.5em;
    border-top-right-radius: 0.5em;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0.5em;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.tab-list__link:link, .tab-list__link:visited {
    color: #ffffff;
}
.tab-list__link:hover {
    text-decoration: none;
    background-color: #41B6E6;
    color: #ffffff;
}
.tab-list__link:active, .tab-list__link:focus {
    text-decoration: none;
    outline: none;
}
.active .tab-list__link {
    background-color: #41B6E6;
    color: #ffffff;
}
.tab-list__link .fa {
    margin-right: 0.5em;
}
@media screen and (max-width: 767px) {
    .tab-list__link {
        -webkit-border-top-right-radius: 0.5em;
        -webkit-border-bottom-right-radius: 0.5em;
        -webkit-border-bottom-left-radius: 0.5em;
        -webkit-border-top-left-radius: 0.5em;
        -moz-border-radius-topright: 0.5em;
        -moz-border-radius-bottomright: 0.5em;
        -moz-border-radius-bottomleft: 0.5em;
        -moz-border-radius-topleft: 0.5em;
        border-top-right-radius: 0.5em;
        border-bottom-right-radius: 0.5em;
        border-bottom-left-radius: 0.5em;
        border-top-left-radius: 0.5em;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
    }
}

.tab-list {
    margin-bottom: 1em;
    border-bottom: 1px solid #41B6E6;
}
@media screen and (max-width: 767px) {
    .tab-list {
        border-bottom: none;
    }
    .tab-list .tab-list__item {
        float: none;
        margin-right: 0;
        margin-bottom: 0.5em;
    }
    .tab-list .tab-list__link {
        width: 100%;
    }
}

/* Pestañas - vertical
=============================================================== */
.tab-list--vertical {
    float: left;
    width: 200px;
    margin-right: 1em;
    border-right: 1px solid #41B6E6;
}
.tab-list--vertical .tab-list__item {
    float: none;
    margin-right: 0;
    margin-bottom: 0.5em;
}
.tab-list--vertical .tab-list__link {
    width: 100%;
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0.5em;
}
.tab-list--vertical + .tabs-content {
    float: left;
    width: calc(100% - 200px - 1em - 1px);
}
@media screen and (max-width: 767px) {
    .tab-list--vertical {
        float: none;
        width: 100%;
        margin-right: 0;
        border-right: none;
    }
    .tab-list--vertical .tab-list__item {
        float: none;
        width: 100%;
    }
    .tab-list--vertical + .tabs-content {
        float: none;
        width: 100%;
    }
}

/* Contenido de las pestañas
=============================================================== */
.tab-content {
    display: none;
    padding: 0 15px;
}
.tab-content.active {
    display: block;
}

/* ===============================================================
   $PANELS
   =============================================================== */
.panel--dropdown, .panel--error, .panel--warning, .panel--success, .panel--info, .panel--tertiary, .panel--secondary, .panel--primary, .panel {
    border: 1px solid #6ec7ec;
    margin-bottom: 1em;
}

.panel__head {
    padding: 0;
    background-color: white;
    color: #167fab;
    border-radius: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.panel__head:hover {
    background-color: #9bd9f2;
}

.panel__title {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    display: block;
    padding: 0.2em;
    color: #167fab;
    margin: 0;
    /*padding: 0;*/
    /*color: $color-text;*/
    float: left;
    width: 80%;
}
.panel__title a {
    color: #4d4d4d;
}
.panel__title a:visited {
    color: #4d4d4d;
}
.panel__title a:hover {
    color: #4d4d4d;
    text-decoration: underline;
}
.panel__title a:active, .panel__title a:focus {
    color: #4d4d4d;
    text-decoration: none;
    outline: none;
}

.panel__title--wide {
    display: block;
    padding: 0.2em;
    width: 100%;
    float: none;
}

.panel__title-link {
    display: block;
    color: #4d4d4d;
}
.panel__title-link:visited {
    color: #4d4d4d;
}
.panel__title-link:hover {
    color: #4d4d4d;
    text-decoration: underline;
}
.panel__title-link:active, .panel__title-link:focus {
    color: #4d4d4d;
    text-decoration: none;
    outline: none;
}

.panel__head-action {
    display: block;
    float: right;
    padding: 0.8em 0.7em;
    color: #167fab;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.panel__head-action:visited {
    color: #167fab;
}
.panel__head-action:hover {
    background-color: #C800A1;
    text-decoration: none;
    color: #167fab;
}
.panel__head-action:active, .panel__head-action:focus {
    color: #167fab;
    text-decoration: none;
    outline: none;
}

.panel__head-data {
    display: block;
    float: right;
    padding: 0.8em 0.7em;
}

.panel__content {
    padding: 1em 0.5em 0.5em;
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0.5em;
    -webkit-border-top-left-radius: 0.5em;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0.5em;
    -moz-border-radius-topleft: 0.5em;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0.5em;
    border-top-left-radius: 0.5em;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

/* ===============================================================
   $PANELS - ENFASIS (Colores skin)
   =============================================================== */
.panel--primary {
    border-color: #1ca1d8;
}
.panel--primary .panel__head {
    background-color: #41B6E6;
    color: #ffffff;
}
.panel--primary .panel__title {
    color: #ffffff;
}

.panel--secondary {
    border-color: #afafaf;
}
.panel--secondary .panel__head {
    background-color: #d5d5d5;
    color: #ffffff;
}
.panel--secondary .panel__title {
    color: #ffffff;
}

.panel--tertiary {
    border-color: #a2a2a2;
}
.panel--tertiary .panel__head {
    background-color: #d5d5d5;
    color: #565656;
}
.panel--tertiary .panel__title {
    color: #565656;
}

/* ===============================================================
   $PANELL - NOTIFICACIONES
   =============================================================== */
.panel--info {
    border-color: #000305;
}
.panel--info .panel__head {
    background-color: #42a5f5;
    color: #000305;
}
.panel--info .panel__title {
    color: #000305;
}

.panel--success {
    border-color: #0a180b;
}
.panel--success .panel__head {
    background-color: #66bb6a;
    color: #0a180b;
}
.panel--success .panel__title {
    color: #0a180b;
}

.panel--warning {
    border-color: #261700;
}
.panel--warning .panel__head {
    background-color: #ffa726;
    color: #261700;
}
.panel--warning .panel__title {
    color: #261700;
}

.panel--error {
    border-color: #3b0605;
}
.panel--error .panel__head {
    background-color: #ef5350;
    color: #3b0605;
}
.panel--error .panel__title {
    color: #3b0605;
}

/* ===============================================================
   $PANEL DESPLEGABLE
   =============================================================== */
.collapse-pane {
    display: none;
}
.collapse-pane.open {
    display: block;
}

/************
************************ $FONT SIZE HELPERS
************/
.font-tiny {
    font-size: 0.6rem;
    line-height: 1.5;
}

.font-small {
    font-size: 0.8rem;
    line-height: 1.5;
}

.font-normal {
    font-size: 1rem;
    line-height: 1.5;
}

.font-large {
    font-size: 1.3rem;
    line-height: 1.5;
}

.font-big {
    font-size: 1.8rem;
    line-height: 1.5;
}

.font-huge {
    font-size: 2.5rem;
    line-height: 1.5;
}

/************
************************ $MARGIN HELPERS
************/
.mg-1 {
    margin: 1em;
}

.mg-2 {
    margin: 2em;
}

.mg-3 {
    margin: 3em;
}

.mg-4 {
    margin: 4em;
}

.mg-5 {
    margin: 5em;
}

.mg-6 {
    margin: 6em;
}

.mg-7 {
    margin: 7em;
}

.mg-8 {
    margin: 8em;
}

.mg-9 {
    margin: 9em;
}

.mg-10 {
    margin: 10em;
}

.mt-1 {
    margin-top: 1em;
}

.mt-2 {
    margin-top: 2em;
}

.mt-3 {
    margin-top: 3em;
}

.mt-4 {
    margin-top: 4em;
}

.mt-5 {
    margin-top: 5em;
}

.mt-6 {
    margin-top: 6em;
}

.mt-7 {
    margin-top: 7em;
}

.mt-8 {
    margin-top: 8em;
}

.mt-9 {
    margin-top: 9em;
}

.mt-10 {
    margin-top: 10em;
}

.mr-1 {
    margin-right: 1em;
}

.mr-2 {
    margin-right: 2em;
}

.mr-3 {
    margin-right: 3em;
}

.mr-4 {
    margin-right: 4em;
}

.mr-5 {
    margin-right: 5em;
}

.mr-6 {
    margin-right: 6em;
}

.mr-7 {
    margin-right: 7em;
}

.mr-8 {
    margin-right: 8em;
}

.mr-9 {
    margin-right: 9em;
}

.mr-10 {
    margin-right: 10em;
}

.mb-1 {
    margin-bottom: 1em;
}

.mb-2 {
    margin-bottom: 2em;
}

.mb-3 {
    margin-bottom: 3em;
}

.mb-4 {
    margin-bottom: 4em;
}

.mb-5 {
    margin-bottom: 5em;
}

.mb-6 {
    margin-bottom: 6em;
}

.mb-7 {
    margin-bottom: 7em;
}

.mb-8 {
    margin-bottom: 8em;
}

.mb-9 {
    margin-bottom: 9em;
}

.mb-10 {
    margin-bottom: 10em;
}

.ml-1 {
    margin-left: 1em;
}

.ml-2 {
    margin-left: 2em;
}

.ml-3 {
    margin-left: 3em;
}

.ml-4 {
    margin-left: 4em;
}

.ml-5 {
    margin-left: 5em;
}

.ml-6 {
    margin-left: 6em;
}

.ml-7 {
    margin-left: 7em;
}

.ml-8 {
    margin-left: 8em;
}

.ml-9 {
    margin-left: 9em;
}

.ml-10 {
    margin-left: 10em;
}

/************
************************ $PADDING HELPERS
************/
.pd-1 {
    padding: 1em;
}

.pd-2 {
    padding: 2em;
}

.pd-3 {
    padding: 3em;
}

.pd-4 {
    padding: 4em;
}

.pd-5 {
    padding: 5em;
}

.pd-6 {
    padding: 6em;
}

.pd-7 {
    padding: 7em;
}

.pd-8 {
    padding: 8em;
}

.pd-9 {
    padding: 9em;
}

.pd-10 {
    padding: 10em;
}

.pt-1 {
    padding-top: 1em;
}

.pt-2 {
    padding-top: 2em;
}

.pt-3 {
    padding-top: 3em;
}

.pt-4 {
    padding-top: 4em;
}

.pt-5 {
    padding-top: 5em;
}

.pt-6 {
    padding-top: 6em;
}

.pt-7 {
    padding-top: 7em;
}

.pt-8 {
    padding-top: 8em;
}

.pt-9 {
    padding-top: 9em;
}

.pt-10 {
    padding-top: 10em;
}

.pr-1 {
    padding-right: 1em;
}

.pr-2 {
    padding-right: 2em;
}

.pr-3 {
    padding-right: 3em;
}

.pr-4 {
    padding-right: 4em;
}

.pr-5 {
    padding-right: 5em;
}

.pr-6 {
    padding-right: 6em;
}

.pr-7 {
    padding-right: 7em;
}

.pr-8 {
    padding-right: 8em;
}

.pr-9 {
    padding-right: 9em;
}

.pr-10 {
    padding-right: 10em;
}

.pb-1 {
    padding-bottom: 1em;
}

.pb-2 {
    padding-bottom: 2em;
}

.pb-3 {
    padding-bottom: 3em;
}

.pb-4 {
    padding-bottom: 4em;
}

.pb-5 {
    padding-bottom: 5em;
}

.pb-6 {
    padding-bottom: 6em;
}

.pb-7 {
    padding-bottom: 7em;
}

.pb-8 {
    padding-bottom: 8em;
}

.pb-9 {
    padding-bottom: 9em;
}

.pb-10 {
    padding-bottom: 10em;
}

.pl-1 {
    padding-left: 1em;
}

.pl-2 {
    padding-left: 2em;
}

.pl-3 {
    padding-left: 3em;
}

.pl-4 {
    padding-left: 4em;
}

.pl-5 {
    padding-left: 5em;
}

.pl-6 {
    padding-left: 6em;
}

.pl-7 {
    padding-left: 7em;
}

.pl-8 {
    padding-left: 8em;
}

.pl-9 {
    padding-left: 9em;
}

.pl-10 {
    padding-left: 10em;
}

/************
************************ $TEXT ALIGNMENT HELPERS
************/
.text-left {
    text-align: left;
}

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

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

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

/* ===============================================================
   $DNN
   =============================================================== */
body.personabar-visible {
    margin-left: 0 !important;
}

.page-wrapper--admin {
    padding-left: 80px;
}

.Normal, .NormalDisabled, .NormalDeleted {
    color: inherit;
    font-size: 100%;
    font-weight: normal;
    line-height: normal;
}

ul#ControlBar_Module_ModulePosition li,
div.actionMenu ul.dnn_mact > li.actionMenuMove > ul li {
    height: auto !important;
}

.dnnDropDownList .selected-item a {
    height: auto !important;
}

div.actionMenu ul.dnn_mact > li.actionMenuMove > ul li {
    padding: 5px 10px;
}

.dnnFileUploadScope .dnnFormItem span,
.urlControlTab .dnnFormItem > span {
    width: auto;
    padding-left: 0;
    padding-right: 5px;
}

.dnnFileUploadScope {
    background-color: transparent;
}

div.dnnFormGroup {
    background: transparent;
}

.urlControl {
    background-color: transparent;
}

/* ===============================================================
   $DNN FORMULARIOS
   =============================================================== */
body > form#Form {
    margin-bottom: 0 !important;
}

.dnnFormRadioButtons {
    background-color: transparent !important;
}

.dnnFormRadioButtons tbody tr:hover td,
.dnnFormRadioButtons tbody tr:hover th,
.dnnFormRadioButtons tbody tr:hover td,
.dnnFormRadioButtons tbody tr:hover th {
    background-color: transparent;
}
.dnnFormRadioButtons th, .dnnFormRadioButtons td,
.dnnFormRadioButtons th,
.dnnFormRadioButtons td {
    border: none;
}

.dnnFormItem input[type=button],
.dnnFormItem input[type=reset],
.dnnFormItem input[type=submit] {
    width: auto;
    margin-bottom: 0;
}
.dnnFormItem input[type=text],
.dnnFormItem input[type=email],
.dnnFormItem input[type=search],
.dnnFormItem input[type=password],
.dnnFormItem select,
.dnnFormItem textarea {
    margin-bottom: 1em;
    border: 1px solid #8c8c8c;
    padding: 0.4em 0.5em;
    background: #ffffff;
    font-size: 100%;
    color: #4d4d4d;
    border-radius: 0.5em;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.dnnFormItem input[type=text]:active, .dnnFormItem input[type=text]:focus,
.dnnFormItem input[type=email]:active,
.dnnFormItem input[type=email]:focus,
.dnnFormItem input[type=search]:active,
.dnnFormItem input[type=search]:focus,
.dnnFormItem input[type=password]:active,
.dnnFormItem input[type=password]:focus,
.dnnFormItem select:active,
.dnnFormItem select:focus,
.dnnFormItem textarea:active,
.dnnFormItem textarea:focus {
    border-color: #41B6E6;
    box-shadow: 0 0 1px 1px #b2e1f5;
    outline: none;
}
.dnnFormItem input[type=checkbox],
.dnnFormItem input[type=radio] {
    position: relative !important;
    z-index: inherit !important;
    opacity: 1 !important;
    width: 0.9em !important;
    height: 0.9em !important;
    padding: 0;
    margin: 0.3em 0.3em 0 0;
    line-height: normal;
    cursor: pointer;
    background-color: #ffffff;
    box-shadow: none;
    border: 1px solid #8c8c8c;
    vertical-align: middle;
}
.dnnFormItem input[type=checkbox]:checked,
.dnnFormItem input[type=radio]:checked {
    background-color: #41B6E6;
    border-color: #ffffff;
    border-width: 1px;
    box-shadow: 0 0 0 1px #41B6E6;
    outline: none;
}
.dnnFormItem input[type=checkbox]:focus,
.dnnFormItem input[type=radio]:focus {
    outline: none;
}
.dnnFormItem input[type=checkbox] + label,
.dnnFormItem input[type=radio] + label {
    margin-top: 0.3em;
    margin-right: 1em;
    margin-bottom: 0;
    vertical-align: middle;
}
.dnnFormItem input[type=checkbox] {
    border-radius: 0;
}
.dnnFormItem input[type=radio] {
    border-radius: 100%;
}
.dnnFormItem input[type=checkbox] + span,
.dnnFormItem input[type=radio] + span,
.dnnFormItem .dnnRadioButton,
.dnnFormItem .dnnCheckbox {
    display: none !important;
    visibility: hidden;
}

.dnnDropDownList .selected-item {
    position: relative;
    padding: 0;
    margin: 0;
    background: #ffffff;
    color: #4d4d4d;
    text-decoration: none;
    border: 1px solid #8c8c8c;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0.5em;
}

.RadComboBox_Default, .RadComboBox_Default .rcbInput, .RadComboBoxDropDown_Default {
    font-size: 100% !important;
    color: #4d4d4d;
}

.RadComboBox_Default td.rcbInputCellLeft,
.RadComboBox_Default td.rcbInputCellRight,
.RadComboBox_Default td.rcbArrowCellLeft,
.RadComboBox_Default td.rcbArrowCellRight {
    border: 1px solid #8c8c8c !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
    color: #4d4d4d !important;
    text-decoration: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.RadComboBox_Default td.rcbInputCellLeft,
.RadComboBox_Default td.rcbArrowCellLeft {
    border-right: none;
    border-top-left-radius: 0.5em !important;
    border-bottom-left-radius: 0.5em !important;
    -webkit-border-top-left-radius: 0.5em !important;
    -webkit-border-bottom-left-radius: 0.5em !important;
}
.RadComboBox_Default td.rcbInputCellRight,
.RadComboBox_Default td.rcbArrowCellRight {
    border-left: none;
    border-top-right-radius: 0.5em !important;
    border-bottom-right-radius: 0.5em !important;
    -webkit-border-top-right-radius: 0.5em !important;
    -webkit-border-bottom-right-radius: 0.5em !important;
}
.RadComboBox_Default .rcbFocused td.rcbInputCellLeft,
.RadComboBox_Default .rcbFocused td.rcbInputCellRight,
.RadComboBox_Default .rcbFocused td.rcbArrowCellRight {
    border-color: #41B6E6;
    box-shadow: 0 0 1px 1px #b2e1f5;
}

#ControlEditPageMenu input[type=radio],
#ControlEditPageMenu input[type=checkbox] {
    position: relative !important;
    z-index: inherit !important;
    opacity: 1 !important;
    width: 0.9em !important;
    height: 0.9em !important;
}
#ControlEditPageMenu .dnnCheckbox {
    display: none;
    visibility: hidden;
}
#ControlEditPageMenu .dnnCheckbox + label {
    margin-left: 0;
}

/* ===============================================================
   $DNN FORM AND LIST
   =============================================================== */
div[class*=UserDefinedTable] div[id*=EditFormPlaceholder] .dnnLeft {
    float: none;
}
div[class*=UserDefinedTable] div[id*=EditFormPlaceholder] .dnnLeft:after {
    content: "";
    display: block;
    clear: both;
}

/* ===============================================================
   $DNN PESTAÑAS
   =============================================================== */
ul.dnnAdminTabNav {
    height: auto;
    border-bottom: 1px solid #41B6E6;
}
ul.dnnAdminTabNav li a {
    background: transparent;
    background-color: #ededed;
    color: #8c8c8c;
    text-shadow: none;
    border: 1px solid #ededed;
    padding: 0.5em 1em;
}
ul.dnnAdminTabNav li a:visited {
    color: #ffffff;
}
ul.dnnAdminTabNav li a:hover {
    background: transparent;
    background-color: #41B6E6;
    border-color: #41B6E6;
    color: #ffffff;
    box-shadow: none;
    text-decoration: none;
}
ul.dnnAdminTabNav li a:active, ul.dnnAdminTabNav li a:focus {
    box-shadow: none;
    text-decoration: none;
    outline: none;
}
ul.dnnAdminTabNav li.ui-tabs-active a {
    background: transparent;
    background-color: #41B6E6;
    border: 1px solid #41B6E6;
    color: #ffffff;
    margin-top: 0;
    padding: 0.5em 1em;
}

/* ===============================================================
   $DNN TABLAS
   =============================================================== */
table.dnnPermissionsGrid,
table.dnnGrid,
table.dnnASPGrid {
    border-color: #222222;
}
table.dnnPermissionsGrid td, table.dnnPermissionsGrid th,
table.dnnGrid td,
table.dnnGrid th,
table.dnnASPGrid td,
table.dnnASPGrid th {
    background: transparent;
    vertical-align: middle;
}
table.dnnPermissionsGrid .dnnGridHeader td,
table.dnnPermissionsGrid thead.dnnGridHeader th,
table.dnnPermissionsGrid tr.dnnGridHeader th,
table.dnnGrid .dnnGridHeader td,
table.dnnGrid thead.dnnGridHeader th,
table.dnnGrid tr.dnnGridHeader th,
table.dnnASPGrid .dnnGridHeader td,
table.dnnASPGrid thead.dnnGridHeader th,
table.dnnASPGrid tr.dnnGridHeader th {
    border-color: #222222;
}
table.dnnPermissionsGrid .dnnGridItem img,
table.dnnPermissionsGrid .dnnGridAltItem img,
table.dnnGrid .dnnGridItem img,
table.dnnGrid .dnnGridAltItem img,
table.dnnASPGrid .dnnGridItem img,
table.dnnASPGrid .dnnGridAltItem img {
    display: inline-block;
    height: auto;
}
table.dnnPermissionsGrid .dnnGridItem input[type=image],
table.dnnPermissionsGrid .dnnGridAltItem input[type=image],
table.dnnGrid .dnnGridItem input[type=image],
table.dnnGrid .dnnGridAltItem input[type=image],
table.dnnASPGrid .dnnGridItem input[type=image],
table.dnnASPGrid .dnnGridAltItem input[type=image] {
    padding: 0;
    width: 20px;
    height: auto;
    border: none;
}
table.dnnPermissionsGrid td[align=center],
table.dnnGrid td[align=center],
table.dnnASPGrid td[align=center] {
    text-align: center;
}
table.dnnPermissionsGrid td[align=left],
table.dnnGrid td[align=left],
table.dnnASPGrid td[align=left] {
    text-align: left;
}
table.dnnPermissionsGrid td[align=right],
table.dnnGrid td[align=right],
table.dnnASPGrid td[align=right] {
    text-align: right;
}
table.dnnPermissionsGrid tbody tr:nth-child(odd) td,
table.dnnPermissionsGrid tbody tr:nth-child(odd) th,
table.dnnGrid tbody tr:nth-child(odd) td,
table.dnnGrid tbody tr:nth-child(odd) th,
table.dnnASPGrid tbody tr:nth-child(odd) td,
table.dnnASPGrid tbody tr:nth-child(odd) th {
    background-color: #eeeeee;
}
table.dnnPermissionsGrid tbody tr.dnnGridItem:hover td,
table.dnnPermissionsGrid tbody tr.dnnGridItem:hover th,
table.dnnPermissionsGrid tbody tr.dnnGridAltItem:hover td,
table.dnnPermissionsGrid tbody tr.dnnGridAltItem:hover th,
table.dnnGrid tbody tr.dnnGridItem:hover td,
table.dnnGrid tbody tr.dnnGridItem:hover th,
table.dnnGrid tbody tr.dnnGridAltItem:hover td,
table.dnnGrid tbody tr.dnnGridAltItem:hover th,
table.dnnASPGrid tbody tr.dnnGridItem:hover td,
table.dnnASPGrid tbody tr.dnnGridItem:hover th,
table.dnnASPGrid tbody tr.dnnGridAltItem:hover td,
table.dnnASPGrid tbody tr.dnnGridAltItem:hover th {
    background-color: white;
}

table[id*=SiteSettings_rblSMTPmode] {
    width: auto;
}
table[id*=SiteSettings_rblSMTPmode] th, table[id*=SiteSettings_rblSMTPmode] td {
    border: 0;
}
table[id*=SiteSettings_rblSMTPmode] tbody tr:hover td,
table[id*=SiteSettings_rblSMTPmode] tbody tr:hover th {
    background-color: transparent;
}

table[id*=SiteSettings_profileDefinitions] img,
table[id*=SiteSettings_profileDefinitions] input[type=image] {
    filter: invert(40%);
    -webkit-filter: invert(40%);
    -moz-filter: invert(40%);
    -o-filter: invert(40%);
    -ms-filter: invert(40%);
}

.RadGrid input[type=image] {
    cursor: pointer;
    width: auto;
    border: 0;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.RadGrid_Default .rgRow a,
.RadGrid_Default .rgAltRow a,
.RadGrid_Default .rgEditRow a,
.RadGrid_Default tr.rgEditRow a,
.RadGrid_Default tr.rgHoveredRow a,
.RadGrid_Default tr.rgActiveRow a,
.RadGrid_Default .rgFooter a,
.RadGrid_Default .rgEditForm a {
    display: inline-block;
}

.ucLinkTypeRadioButtons td {
    border-top: 0;
}

/* ===============================================================
   $DNN TABLAS
   =============================================================== */
div[class*=DNN_UserDefinedTable] input[type=image] {
    width: auto;
    margin: 0;
    padding: 0;
}

/* Módulo estadísticas
   =============================================================== */
.ModDNNReportsC table tr td {
    border: none;
}
.ModDNNReportsC table tbody tr:hover td,
.ModDNNReportsC table tbody tr:hover th {
    background-color: transparent;
}

/* ===============================================================
   $PÁGINA DE BÚSQUEDAS
   =============================================================== */
.dnnSearchBoxPanel {
    max-width: none;
    background-color: transparent;
}

.dnnSearchResultPanel {
    max-width: none;
    background-color: transparent;
    margin: 1em 0 0;
}
.dnnSearchResultPanel .dnnSearchResultSortOptions {
    border: none;
    border-radius: 0;
}
.dnnSearchResultPanel .dnnSearchResultSortOptions > li {
    border: none;
}
.dnnSearchResultPanel .dnnSearchResultSortOptions li + li {
    margin-left: 0.5em;
}

.dnnSearchResultItem-Link {
    display: none;
}

.dnnSearchResultItem-Others {
    display: none;
}

.dnnSearchResultItem-Link,
.dnnSearchResultItem-Others {
    display: none;
}

.page-header {
    position: relative;
    width: 100%;
    z-index: 9000;
    font-size: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
}

/* ===============================================================
   $NAVIGATION
   =============================================================== */
.site-home,
[id*=dnn_siteHome] {
    display: block;
    float: left;
}
.site-home img,
.site-home .site-home__logo,
[id*=dnn_siteHome] img,
[id*=dnn_siteHome] .site-home__logo {
    width: auto;
    height: 64px;
}
@media screen and (max-width: 992px) {
    .site-home img,
    .site-home .site-home__logo,
    [id*=dnn_siteHome] img,
    [id*=dnn_siteHome] .site-home__logo {
        height: 32px;
    }
}

.site-nav__logo {
    max-height: 50px;
}

.site-nav {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 1em;
}

.site-nav__brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
@media (min-width: 992px) {
    .site-nav__brand {
        width: auto;
    }
}

.site-nav__menu {
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-end;
}
@media (min-width: 992px) {
    .site-nav__menu {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

.site-nav__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav__item--disabled .dropdown-menu, .site-nav__item--active .dropdown-menu,
.site-nav__item .dropdown-menu {
    min-width: 260px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: inherit;
    background-color: #ffffff;
    border: none;
    border-radius: 0.5em;
    box-shadow: 0 5px 10px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    overflow: hidden;
}
.site-nav__item--disabled .dropdown-menu li, .site-nav__item--active .dropdown-menu li,
.site-nav__item .dropdown-menu li {
    width: 100%;
}
.site-nav__item--disabled .dropdown-menu .site-nav__link, .site-nav__item--active .dropdown-menu .site-nav__link,
.site-nav__item .dropdown-menu .site-nav__link {
    color: #4d4d4d;
}
.site-nav__item--disabled .dropdown-menu .site-nav__link:visited, .site-nav__item--active .dropdown-menu .site-nav__link:visited,
.site-nav__item .dropdown-menu .site-nav__link:visited {
    color: #4d4d4d;
}
.site-nav__item--disabled .dropdown-menu .site-nav__link:hover, .site-nav__item--active .dropdown-menu .site-nav__link:hover, .site-nav__item--disabled .dropdown-menu .site-nav__link:active, .site-nav__item--active .dropdown-menu .site-nav__link:active, .site-nav__item--disabled .dropdown-menu .site-nav__link:focus, .site-nav__item--active .dropdown-menu .site-nav__link:focus,
.site-nav__item .dropdown-menu .site-nav__link:hover,
.site-nav__item .dropdown-menu .site-nav__link:active,
.site-nav__item .dropdown-menu .site-nav__link:focus {
    color: #ffffff;
    background-color: #41B6E6;
    text-decoration: none;
}
.site-nav__item--disabled:last-child .dropdown-menu, .site-nav__item--active:last-child .dropdown-menu,
.site-nav__item:last-child .dropdown-menu {
    left: auto;
    right: 0;
    transform: translate(0);
}

.site-nav__link {
    padding: 0.5em 1em;
    line-height: 64px;
    color: #4d4d4d;
    font-weight: 700;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.site-nav__link:visited {
    color: #4d4d4d;
}
.site-nav__link:hover, .site-nav__link:active, .site-nav__link:focus {
    color: #41B6E6;
    text-decoration: none;
}
.site-nav__link .dropdown-icon {
    margin-left: 0.2em;
}
@media (min-width: 992px) {
    .site-nav__link {
        padding: 0 0.5em;
    }
}

.site-nav__dropdown-link {
    color: #4d4d4d;
    padding: 0 0.5em;
}
.site-nav__dropdown-link:visited {
    color: #4d4d4d;
}
.site-nav__dropdown-link:hover, .site-nav__dropdown-link:active, .site-nav__dropdown-link:focus {
    color: #ffffff;
    background-color: #41B6E6;
    text-decoration: none;
}

.site-nav__item--active .site-nav__link {
    color: #4d4d4d;
}

.site-nav__item--disabled .site-nav__link {
    cursor: not-allowed;
    color: #8c8c8c;
    opacity: 0.7;
}
.site-nav__item--disabled .site-nav__link:visited, .site-nav__item--disabled .site-nav__link:active, .site-nav__item--disabled .site-nav__link:focus {
    color: #8c8c8c;
}
.site-nav__item--disabled .site-nav__link:hover {
    color: #8c8c8c;
}

.site-nav__item--image {
    background-color: #C800A1;
    margin: 5px;
    border-radius: 1em;
    overflow: hidden;
}
.site-nav__item--image .site-nav__link {
    color: #ffffff;
    display: flex;
    align-items: center;
}
.site-nav__item--image .site-nav__link:visited {
    color: #ffffff;
}
.site-nav__item--image .site-nav__link:hover, .site-nav__item--image .site-nav__link:active, .site-nav__item--image .site-nav__link:focus {
    color: #ffffff;
}
.site-nav__item--image img {
    width: 32px;
    height: 32px;
    margin-right: 0.25em;
}

.site-nav__dropdown-list--left {
    left: auto;
    right: 0;
    transform: translate(0);
}

.site-nav__item--user {
    display: none;
}
.site-nav__item--user .site-nav__link {
    padding: 0;
    text-align: center;
}
.site-nav__item--user .li-user:before {
    line-height: inherit;
}
@media (min-width: 992px) {
    .site-nav__item--user {
        display: block;
    }
}

.user-link {
    margin-left: 1em;
}

.login-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-left: 1em;
    background-color: #C800A1;
    border-radius: 100%;
    color: #ffffff;
    transition: all 0.2s ease-in-out;
}
.login-link:visited {
    color: #ffffff;
}
.login-link:hover, .login-link:focus, .login-link:active {
    color: #ffffff;
    background-color: #950078;
}
.login-link:hover .fa-user, .login-link:focus .fa-user, .login-link:active .fa-user {
    font-size: 1.3rem;
}
.login-link .fa-user {
    color: inherit;
    line-height: 0;
    transition: font-size 0.2s ease-in-out;
}

.profile__details {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.5em;
    color: #222222;
}
.profile__details div {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.profile__links {
    display: flex;
    flex-direction: column;
    padding: 0.5em;
}

.profile__link {
    padding: 0.1em 0.5em;
}

.profile__image {
    flex-shrink: 0;
    margin-right: 1em;
    border-radius: 100%;
    width: 50px;
    height: 50px;
}

.profile__displayname {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile__email {
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-account {
    list-style: none;
    margin: 0;
}

.mobile-account-logedIn {
    margin: 0.95em !important;
}
.mobile-account-logedIn a {
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: initial !important;
}
.mobile-account-logedIn a img {
    width: 20% !important;
    margin-right: 0.4em !important;
    border-radius: 100%;
}

.user-image {
    height: 50px;
    width: 50px;
    max-width: 50px;
    border-radius: 100%;
}

/* ===============================================================
   $TOP BAR
   =============================================================== */
.page-topbar {
    position: relative;
    background-color: #41B6E6;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-left: 1em;
    padding-right: 1em;
}
.page-topbar a {
    display: block;
    color: #ffffff;
    padding: 0 0.5em;
    line-height: 32px;
    font-size: 0.8rem;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.page-topbar a:visited {
    color: #ffffff;
}
.page-topbar a:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #C800A1;
}
.page-topbar a:active, .page-topbar a:focus {
    text-decoration: none;
    outline: none;
}
.page-topbar a strong,
.page-topbar a span {
    line-height: inherit;
}

.topbar-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

/* ===============================================================
   $MENU HAMBURGUESA
   =============================================================== */
/*
	Animating CSS-Only Hamburger Menu Icons
	by Call Me Nick
	https://github.com/callmenick
	Licensed under the MIT license, http://www.opensource.org/licenses/mit-license.php
	http://callmenick.com
*/
.site-nav__burger:hover, .site-nav__burger:active, .site-nav__burger:focus {
    text-decoration: none;
    outline: none;
}

.burger-menu {
    display: block;
    position: relative;
    float: right;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    font-size: 0;
    text-indent: -9999px;
    cursor: pointer;
    transition: background 0.2s;
}
@media (min-width: 992px) {
    .burger-menu {
        display: none;
    }
}
.burger-menu:hover, .burger-menu:active, .burger-menu:focus {
    text-decoration: none;
    outline: none;
}
.burger-menu span {
    display: block;
    position: absolute;
    top: 14.5px;
    left: 2px;
    right: 2px;
    height: 3px;
    background-color: #41B6E6;
    transition: background 0s 0.2s;
}
.burger-menu span:before,
.burger-menu span:after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #41B6E6;
    content: "";
    transition-duration: 0.2s, 0.2s;
    transition-delay: 0.2s, 0s;
}
.burger-menu span:before {
    top: -9px;
    transition-property: top, transform;
}
.burger-menu span:after {
    bottom: -9px;
    transition-property: bottom, transform;
}

.is-open {
    background-color: transparent;
}
.is-open .burger-menu--x span {
    background: none;
}
.is-open .burger-menu--x span:before {
    top: 0;
    transform: rotate(45deg);
}
.is-open .burger-menu--x span:after {
    bottom: 0;
    transform: rotate(-45deg);
}
.is-open .burger-menu--x span:before,
.is-open .burger-menu--x span:after {
    transition-delay: 0s, 0.2s;
}

.sidr {
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100%;
    z-index: 900;
    width: 280px;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #ffffff;
}
.sidr.bottom {
    left: 0;
    width: 100%;
    bottom: -100%;
    top: auto;
    height: auto;
}
.sidr.right {
    left: auto;
    right: -280px;
}
.sidr.left {
    left: -280px;
    right: auto;
}
.sidr .site-nav__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.sidr .site-nav__item {
    width: 100%;
}
.sidr .site-nav__link {
    display: block;
    color: #222222;
    line-height: 1.0714285714;
}
.sidr .site-nav__item--image .site-nav__link {
    color: #ffffff;
}
.sidr .site-nav__item--image .site-nav__link:visited {
    color: #ffffff;
}
.sidr .site-nav__item--image .site-nav__link:hover, .sidr .site-nav__item--image .site-nav__link:active, .sidr .site-nav__item--image .site-nav__link:focus {
    color: #ffffff;
}
.sidr .dropdown-menu {
    position: relative;
    background-color: inherit;
    box-shadow: none;
    border-radius: 0;
}
.sidr .open .site-nav__dropdown-list {
    opacity: 1;
    -webkit-animation-name: none;
    animation-name: none;
}

.sidr-inner {
    width: 100%;
}

.sidr-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 1em;
    padding-bottom: 1em;
}
.sidr-open .sidr-menu {
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
}

.sidr-nav {
    flex-grow: 1;
    width: 100%;
}

.sidr-menu__title {
    position: relative;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    padding: 0 0.5em 0 1.5em;
    text-transform: uppercase;
    color: #222222;
}
@media (min-width: 992px) {
    .sidr-menu__title .icon-menu {
        left: 0;
        right: auto;
        -webkit-transform: translate(50%, -50%);
        -moz-transform: translate(50%, -50%);
        -ms-transform: translate(50%, -50%);
        -o-transform: translate(50%, -50%);
        transform: translate(50%, -50%);
    }
}

.site-nav__usermenu {
    margin: 0 1em;
}
.site-nav__usermenu img {
    border-radius: 100%;
    width: 32px;
    height: 32px;
}
@media (min-width: 992px) {
    .site-nav__usermenu {
        display: none;
    }
}

@media (min-width: 992px) {
    .site-nav__item--login {
        display: none;
    }
}

.sidr-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.3rem;
    padding: 0.5em 1em;
}
.sidr-close:hover, .sidr-close:focus, .sidr-close:active {
    text-decoration: none;
}

/* ===============================================================
   $HELPER - TEXTOS
   =============================================================== */
.text-left {
    text-align: left;
}

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

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

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

/* ===============================================================
   $HELPER - MARGENES
   =============================================================== */
.mg-1 {
    margin: 1em;
}

.mg-2 {
    margin: 2em;
}

.mg-3 {
    margin: 3em;
}

.mg-4 {
    margin: 4em;
}

.mg-5 {
    margin: 5em;
}

.mg-6 {
    margin: 6em;
}

.mg-7 {
    margin: 7em;
}

.mg-8 {
    margin: 8em;
}

.mg-9 {
    margin: 9em;
}

.mg-10 {
    margin: 10em;
}

.mt-1 {
    margin-top: 1em;
}

.mt-2 {
    margin-top: 2em;
}

.mt-3 {
    margin-top: 3em;
}

.mt-4 {
    margin-top: 4em;
}

.mt-5 {
    margin-top: 5em;
}

.mt-6 {
    margin-top: 6em;
}

.mt-7 {
    margin-top: 7em;
}

.mt-8 {
    margin-top: 8em;
}

.mt-9 {
    margin-top: 9em;
}

.mt-10 {
    margin-top: 10em;
}

.mr-1 {
    margin-right: 1em;
}

.mr-2 {
    margin-right: 2em;
}

.mr-3 {
    margin-right: 3em;
}

.mr-4 {
    margin-right: 4em;
}

.mr-5 {
    margin-right: 5em;
}

.mr-6 {
    margin-right: 6em;
}

.mr-7 {
    margin-right: 7em;
}

.mr-8 {
    margin-right: 8em;
}

.mr-9 {
    margin-right: 9em;
}

.mr-10 {
    margin-right: 10em;
}

.mb-1 {
    margin-bottom: 1em;
}

.mb-2 {
    margin-bottom: 2em;
}

.mb-3 {
    margin-bottom: 3em;
}

.mb-4 {
    margin-bottom: 4em;
}

.mb-5 {
    margin-bottom: 5em;
}

.mb-6 {
    margin-bottom: 6em;
}

.mb-7 {
    margin-bottom: 7em;
}

.mb-8 {
    margin-bottom: 8em;
}

.mb-9 {
    margin-bottom: 9em;
}

.mb-10 {
    margin-bottom: 10em;
}

.ml-1 {
    margin-left: 1em;
}

.ml-2 {
    margin-left: 2em;
}

.ml-3 {
    margin-left: 3em;
}

.ml-4 {
    margin-left: 4em;
}

.ml-5 {
    margin-left: 5em;
}

.ml-6 {
    margin-left: 6em;
}

.ml-7 {
    margin-left: 7em;
}

.ml-8 {
    margin-left: 8em;
}

.ml-9 {
    margin-left: 9em;
}

.ml-10 {
    margin-left: 10em;
}

/* ===============================================================
   $HELPER - RELLENOS
   =============================================================== */
.pd-1 {
    padding: 1em;
}

.pd-2 {
    padding: 2em;
}

.pd-3 {
    padding: 3em;
}

.pd-4 {
    padding: 4em;
}

.pd-5 {
    padding: 5em;
}

.pd-6 {
    padding: 6em;
}

.pd-7 {
    padding: 7em;
}

.pd-8 {
    padding: 8em;
}

.pd-9 {
    padding: 9em;
}

.pd-10 {
    padding: 10em;
}

.pt-1 {
    padding-top: 1em;
}

.pt-2 {
    padding-top: 2em;
}

.pt-3 {
    padding-top: 3em;
}

.pt-4 {
    padding-top: 4em;
}

.pt-5 {
    padding-top: 5em;
}

.pt-6 {
    padding-top: 6em;
}

.pt-7 {
    padding-top: 7em;
}

.pt-8 {
    padding-top: 8em;
}

.pt-9 {
    padding-top: 9em;
}

.pt-10 {
    padding-top: 10em;
}

.pr-1 {
    padding-right: 1em;
}

.pr-2 {
    padding-right: 2em;
}

.pr-3 {
    padding-right: 3em;
}

.pr-4 {
    padding-right: 4em;
}

.pr-5 {
    padding-right: 5em;
}

.pr-6 {
    padding-right: 6em;
}

.pr-7 {
    padding-right: 7em;
}

.pr-8 {
    padding-right: 8em;
}

.pr-9 {
    padding-right: 9em;
}

.pr-10 {
    padding-right: 10em;
}

.pb-1 {
    padding-bottom: 1em;
}

.pb-2 {
    padding-bottom: 2em;
}

.pb-3 {
    padding-bottom: 3em;
}

.pb-4 {
    padding-bottom: 4em;
}

.pb-5 {
    padding-bottom: 5em;
}

.pb-6 {
    padding-bottom: 6em;
}

.pb-7 {
    padding-bottom: 7em;
}

.pb-8 {
    padding-bottom: 8em;
}

.pb-9 {
    padding-bottom: 9em;
}

.pb-10 {
    padding-bottom: 10em;
}

.pl-1 {
    padding-left: 1em;
}

.pl-2 {
    padding-left: 2em;
}

.pl-3 {
    padding-left: 3em;
}

.pl-4 {
    padding-left: 4em;
}

.pl-5 {
    padding-left: 5em;
}

.pl-6 {
    padding-left: 6em;
}

.pl-7 {
    padding-left: 7em;
}

.pl-8 {
    padding-left: 8em;
}

.pl-9 {
    padding-left: 9em;
}

.pl-10 {
    padding-left: 10em;
}

/* ===============================================================
   $DNN CONTAINERS
   =============================================================== */
.dnn-container--emphasis-secondary, .dnn-container--emphasis-primary, .dnn-container--underline, .dnn-container--colored, .dnn-container {
    margin-bottom: 2em;
    padding: 0;
}
.dnn-container--emphasis-secondary .dnn-container__head-wrapper, .dnn-container--emphasis-primary .dnn-container__head-wrapper, .dnn-container--underline .dnn-container__head-wrapper, .dnn-container--colored .dnn-container__head-wrapper, .dnn-container .dnn-container__head-wrapper {
    margin-bottom: 5px;
}
.dnn-container--emphasis-secondary .dnn-container__head, .dnn-container--emphasis-primary .dnn-container__head, .dnn-container--underline .dnn-container__head, .dnn-container--colored .dnn-container__head, .dnn-container .dnn-container__head {
    margin: 0;
    padding: 0;
}
.dnn-container--emphasis-secondary .dnn-container__title, .dnn-container--emphasis-primary .dnn-container__title, .dnn-container--underline .dnn-container__title, .dnn-container--colored .dnn-container__title, .dnn-container .dnn-container__title {
    display: block;
    font-weight: 400;
    color: #4d4d4d;
    vertical-align: middle;
}
.dnn-container--emphasis-secondary .dnn-container__content, .dnn-container--emphasis-primary .dnn-container__content, .dnn-container--underline .dnn-container__content, .dnn-container--colored .dnn-container__content, .dnn-container .dnn-container__content {
    vertical-align: top;
}

/* ===============================================================
   $DNN CONTAINER COLORED
   =============================================================== */
.dnn-container--colored .dnn-container__title {
    color: #41B6E6;
}

/* ===============================================================
   $DNN CONTAINER UNDERLINE
   =============================================================== */
.dnn-container--underline .dnn-container__head-wrapper {
    border-bottom: 2px solid #ededed;
}
.dnn-container--underline .dnn-container__head {
    display: inline-block;
    margin-bottom: -2px;
    border-bottom: 2px solid #41B6E6;
    padding-right: 0.5em;
}

/* ===============================================================
   $DNN CONTAINER EMPHASIS
   =============================================================== */
.dnn-container--emphasis-primary .dnn-container__head-wrapper {
    background-color: #41B6E6;
    padding: 0 0.5em;
}
.dnn-container--emphasis-primary .dnn-container__title {
    color: #ffffff;
}

.dnn-container--emphasis-secondary .dnn-container__head-wrapper {
    background-color: #d5d5d5;
    padding: 0 0.5em;
}
.dnn-container--emphasis-secondary .dnn-container__title {
    color: #ffffff;
}

/* ===============================================================
  $PILL BOXES
  =============================================================== */
.pill--xs, .pill--sm, .pill--md, .pill--lg {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 1em;
    padding: 0.5em 2em;
    color: #4d4d4d;
    border-radius: 0.5em;
    transition: all 0.2s linear;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
}
.pill--xs:visited, .pill--sm:visited, .pill--md:visited, .pill--lg:visited {
    color: #4d4d4d;
}
.pill--xs:hover, .pill--sm:hover, .pill--md:hover, .pill--lg:hover, .pill--xs:active, .pill--sm:active, .pill--md:active, .pill--lg:active, .pill--xs:focus, .pill--sm:focus, .pill--md:focus, .pill--lg:focus {
    color: #4d4d4d;
}

.pill--xs .pill__icon, .pill--xs .pill__image, .pill--sm .pill__icon, .pill--sm .pill__image, .pill--md .pill__icon, .pill--md .pill__image, .pill--lg .pill__icon, .pill--lg .pill__image {
    position: absolute;
    top: 50%;
    left: 1em;
    display: block;
    border-radius: 0.5em;
    transform: translate(0, -50%);
    transition: all 0.2s linear;
}

.pill__data__extra--error, .pill__data__extra--warning, .pill__data__extra--success, .pill__data__extra--info, .pill__data__extra--unknown, .pill__data__extra--closed, .pill__data__extra--deleted, .pill__data__extra--in-progress, .pill__data__extra--raffle, .pill__data__extra--open, .pill__data__extra--coming-soon {
    font-weight: bold;
    display: inline-block;
    margin-left: 0.5em;
}
@media screen and (max-width: 767px) {
    .pill__data__extra--error, .pill__data__extra--warning, .pill__data__extra--success, .pill__data__extra--info, .pill__data__extra--unknown, .pill__data__extra--closed, .pill__data__extra--deleted, .pill__data__extra--in-progress, .pill__data__extra--raffle, .pill__data__extra--open, .pill__data__extra--coming-soon {
        display: block;
        margin-left: 0;
        font-size: 0.95em;
    }
}

.pill__title, stop number:empty + description, stop number {
    display: block;
    font-size: 1.3em;
    color: #4d4d4d;
}

.pill__title__extra, stop description {
    font-size: 0.8em;
    color: #8c8c8c;
}

.pill__subtitle {
    display: block;
    font-size: 1.1em;
}

.pill__data label, stop lines label {
    cursor: text;
}

.pill__data__extra {
    display: inline-block;
    color: #8c8c8c;
    vertical-align: bottom;
}
@media screen and (max-width: 767px) {
    .pill__data__extra {
        display: block;
    }
}

.pill__arrow {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 1em;
    height: 100%;
    font-size: 2em;
    text-align: center;
    color: #41B6E6;
    transition: all 0.2s linear;
}
.pill__arrow .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    transform: translate(-50%, -50%);
}

.pill__actions {
    position: absolute;
    top: 50%;
    right: 1em;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transform: translate(0, -50%);
    transition: all 0.2s linear;
}
.pill__actions .dropdown-menu {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 1em !important;
    z-index: 9000;
    bottom: 100%;
    top: auto;
    right: 0;
    left: auto !important;
    transform: none !important;
}
.pill__actions .context-menu__item {
    background-color: #41B6E6;
    margin: 0 0.25em;
    padding: 0;
    width: 2em;
    height: 2em;
    border-radius: 100%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pill__actions .context-menu__item:visited {
    color: #ffffff;
}
.pill__actions .context-menu__item:hover, .pill__actions .context-menu__item:focus, .pill__actions .context-menu__item:active {
    color: #ffffff;
    background-color: #136f94;
}
.pill__actions .context-menu__item--btn {
    padding: 0.2em 0.5em;
    width: auto;
    height: auto;
    border-radius: 1em;
}
.pill__actions .context-menu__item--btn .fa {
    margin-right: 0.3em;
}
.pill__actions .context-menu__item--info {
    background-color: #72bcf8;
    color: #000305;
}
.pill__actions .context-menu__item--info:hover, .pill__actions .context-menu__item--info:focus, .pill__actions .context-menu__item--info:active {
    background-color: #42a5f5;
}
.pill__actions .context-menu__item--success {
    background-color: #7fc682;
    color: #ffffff;
}
.pill__actions .context-menu__item--success:hover, .pill__actions .context-menu__item--success:focus, .pill__actions .context-menu__item--success:active {
    background-color: #66bb6a;
}
.pill__actions .context-menu__item--warning {
    background-color: #ffc268;
    color: #261700;
}
.pill__actions .context-menu__item--warning:hover, .pill__actions .context-menu__item--warning:focus, .pill__actions .context-menu__item--warning:active {
    background-color: #ffa726;
}
.pill__actions .context-menu__item--danger,
.pill__actions .context-menu__item--error {
    background-color: #f3817f;
    color: #3b0605;
}
.pill__actions .context-menu__item--danger:hover, .pill__actions .context-menu__item--danger:focus, .pill__actions .context-menu__item--danger:active,
.pill__actions .context-menu__item--error:hover,
.pill__actions .context-menu__item--error:focus,
.pill__actions .context-menu__item--error:active {
    background-color: #ef5350;
}

.pill__actions .open .dropdown-menu {
    display: flex;
}

.pill-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    border-radius: 100%;
    background-color: #C800A1;
    color: #ffffff;
    font-size: 1em;
    margin-left: 0.5em;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
    transition: all 0.2s linear;
}
.pill-action:visited {
    color: #ffffff;
}
.pill-action:hover, .pill-action:focus, .pill-action:active {
    color: #ffffff;
    text-decoration: none;
    background-color: #950078;
    box-shadow: 0 5px 10px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.pill--hover {
    cursor: pointer;
}
.pill--hover:hover {
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

@media screen and (max-width: 767px) {
    .pill__title, stop number:empty + description, stop number {
        font-size: 1em;
    }
    .pill__subtitle {
        font-size: 0.9em;
    }
    .pill__data, stop lines {
        display: none;
        font-size: 0.9em;
    }
    .pill__data label, stop lines label {
        display: none;
    }
}
/* ===============================================================
   $TAMAÑOS PILL BOX
   =============================================================== */
a.pill--lg:hover, a.pill--lg:active, a.pill--lg:focus {
    text-decoration: none;
    outline: none;
    background-color: #ededed;
}

.pill--lg {
    padding-left: 8em;
    min-height: 125px;
    /*
        <div class="pill__image style="background-image: url('...');">
    */
    /*
        <div class="pill__icon">
            <em class="fa  fa-user"></em>
        </div>
    */
}
.pill--lg .pill__image {
    width: 6em;
    height: 6em;
}
@media screen and (max-width: 767px) {
    .pill--lg .pill__image {
        width: 5em;
        height: 5em;
    }
}
.pill--lg .pill__icon {
    width: 6em;
    height: 6em;
    background-color: #ededed;
}
.pill--lg .pill__icon .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #8c8c8c;
    font-size: 2em;
    transform: translate(-50%, -50%);
}

a.pill--md:hover, a.pill--md:active, a.pill--md:focus {
    text-decoration: none;
    outline: none;
    background-color: #ededed;
}

.pill--md {
    padding-left: 6em;
    min-height: 95px;
    /*
        <div class="pill__image style="background-image: url('...');">
    */
    /*
        <div class="pill__icon">
            <em class="fa  fa-user"></em>
        </div>
    */
}
.pill--md .pill__image {
    width: 4em;
    height: 4em;
}
.pill--md .pill__icon {
    width: 4em;
    height: 4em;
    background-color: #ededed;
}
.pill--md .pill__icon .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #8c8c8c;
    font-size: 2em;
    transform: translate(-50%, -50%);
}

a.pill--sm:hover, a.pill--sm:active, a.pill--sm:focus {
    text-decoration: none;
    outline: none;
    background-color: #ededed;
}

.pill--sm {
    padding-left: 5em;
    min-height: 70px;
    /*
        <div class="pill__image style="background-image: url('...');">
    */
    /*
        <div class="pill__icon">
            <em class="fa  fa-user"></em>
        </div>
    */
}
.pill--sm .pill__image {
    width: 3em;
    height: 3em;
}
.pill--sm .pill__icon {
    width: 3em;
    height: 3em;
    background-color: #ededed;
}
.pill--sm .pill__icon .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #8c8c8c;
    font-size: 2em;
    transform: translate(-50%, -50%);
}

a.pill--xs:hover, a.pill--xs:active, a.pill--xs:focus {
    text-decoration: none;
    outline: none;
    background-color: #ededed;
}

.pill--xs {
    padding-left: 4em;
    min-height: 55px;
    padding-top: 0.25em;
    padding-right: 1em;
    padding-bottom: 0.25em;
    /*
        <div class="pill__image style="background-image: url('...');">
    */
    /*
        <div class="pill__icon">
            <em class="fa  fa-user"></em>
        </div>
    */
}
.pill--xs .pill__title, .pill--xs stop number:empty + description, stop .pill--xs number:empty + description, .pill--xs stop number, stop .pill--xs number {
    font-size: 1.1em;
}
.pill--xs .pill__subtitle {
    font-size: 1em;
}
@media screen and (max-width: 767px) {
    .pill--xs {
        padding-right: 3em;
        padding-left: 3em;
    }
    .pill--xs .pill__data__extra {
        display: inline-block;
    }
    .pill--xs .pill__icon {
        left: 0.5em;
    }
    .pill--xs .pill__actions {
        right: 0.5em;
    }
}
.pill--xs .pill__image {
    width: 2em;
    height: 2em;
}
.pill--xs .pill__icon {
    width: 2em;
    height: 2em;
    background-color: #ededed;
}
.pill--xs .pill__icon .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #8c8c8c;
    font-size: 1em;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
    .pill--lg {
        padding-left: 4em;
        min-height: 0;
        font-size: 0.9em;
    }
    .pill--lg .pill__image,
    .pill--lg .pill__icon {
        width: 2.5em;
        height: 2.5em;
        font-size: 0.8em;
    }
    .pill--md {
        padding-left: 4em;
        min-height: 0;
        font-size: 0.9em;
    }
    .pill--md .pill__image,
    .pill--md .pill__icon {
        width: 2.5em;
        height: 2.5em;
        font-size: 0.8em;
    }
    .pill--sm {
        padding-left: 4em;
        min-height: 0;
        font-size: 0.9em;
    }
    .pill--sm .pill__image,
    .pill--sm .pill__icon {
        width: 2.5em;
        height: 2.5em;
        font-size: 0.8em;
    }
    .pill--xs {
        padding-left: 4em;
        min-height: 0;
        font-size: 0.9em;
    }
    .pill--xs .pill__image,
    .pill--xs .pill__icon {
        width: 2.5em;
        height: 2.5em;
        font-size: 0.8em;
    }
}
/* ===============================================================
   $SPORT PILL BOXES - color override
   =============================================================== */
/*
    <div class="pill--lg  pill-acondicionamientofisico"></div>
*/
.pill--acondicionamientofisico {
    border-color: #f3e525;
}
.pill--acondicionamientofisico .pill__arrow {
    color: #F2E20D;
}

.pill--acrobaciasaereas {
    border-color: #cb4c50;
}
.pill--acrobaciasaereas .pill__arrow {
    color: #C5393D;
}

.pill--aerobic {
    border-color: #9b1aff;
}
.pill--aerobic .pill__arrow {
    color: #9000FF;
}

.pill--archery {
    border-color: #1aa3ff;
}
.pill--archery .pill__arrow {
    color: #0099FF;
}

.pill--arena {
    border-color: #f3e525;
}
.pill--arena .pill__arrow {
    color: #F2E20D;
}

.pill--athletics {
    border-color: #9b1aff;
}
.pill--athletics .pill__arrow {
    color: #9000FF;
}

.pill--badminton {
    border-color: #cb4c50;
}
.pill--badminton .pill__arrow {
    color: #C5393D;
}

.pill--bailemoderno {
    border-color: #1aa3ff;
}
.pill--bailemoderno .pill__arrow {
    color: #0099FF;
}

.pill--basketball {
    border-color: #5dbc62;
}
.pill--basketball .pill__arrow {
    color: #4BB450;
}

.pill--beachsoccer {
    border-color: #ff751a;
}
.pill--beachsoccer .pill__arrow {
    color: #FF6600;
}

.pill--beachvolleyball {
    border-color: #f3e525;
}
.pill--beachvolleyball .pill__arrow {
    color: #F2E20D;
}

.pill--bmxinitiation {
    border-color: #1aa3ff;
}
.pill--bmxinitiation .pill__arrow {
    color: #0099FF;
}

.pill--bmxircuit {
    border-color: #5dbc62;
}
.pill--bmxircuit .pill__arrow {
    color: #4BB450;
}

.pill--bmxtech {
    border-color: #9b1aff;
}
.pill--bmxtech .pill__arrow {
    color: #9000FF;
}

.pill--bodyboard {
    border-color: #5dbc62;
}
.pill--bodyboard .pill__arrow {
    color: #4BB450;
}

.pill--canaryball {
    border-color: #f3e525;
}
.pill--canaryball .pill__arrow {
    color: #F2E20D;
}

.pill--chess {
    border-color: #5dbc62;
}
.pill--chess .pill__arrow {
    color: #4BB450;
}

.pill--chikung {
    border-color: #cb4c50;
}
.pill--chikung .pill__arrow {
    color: #C5393D;
}

.pill--climbingwall {
    border-color: #1aa3ff;
}
.pill--climbingwall .pill__arrow {
    color: #0099FF;
}

.pill--dancefit {
    border-color: #1aa3ff;
}
.pill--dancefit .pill__arrow {
    color: #0099FF;
}

.pill--defensapersonal {
    border-color: #f3e525;
}
.pill--defensapersonal .pill__arrow {
    color: #F2E20D;
}

.pill--dominos {
    border-color: #cb4c50;
}
.pill--dominos .pill__arrow {
    color: #C5393D;
}

.pill--fitness {
    border-color: #cb4c50;
}
.pill--fitness .pill__arrow {
    color: #C5393D;
}

.pill--footing {
    border-color: #cb4c50;
}
.pill--footing .pill__arrow {
    color: #C5393D;
}

.pill--frisbee {
    border-color: #9b1aff;
}
.pill--frisbee .pill__arrow {
    color: #9000FF;
}

.pill--garrote {
    border-color: #9b1aff;
}
.pill--garrote .pill__arrow {
    color: #9000FF;
}

.pill--halterofilia {
    border-color: #5dbc62;
}
.pill--halterofilia .pill__arrow {
    color: #4BB450;
}

.pill--handball {
    border-color: #5dbc62;
}
.pill--handball .pill__arrow {
    color: #4BB450;
}

.pill--hiking {
    border-color: #f3e525;
}
.pill--hiking .pill__arrow {
    color: #F2E20D;
}

.pill--juegodelpalo {
    border-color: #ff751a;
}
.pill--juegodelpalo .pill__arrow {
    color: #FF6600;
}

.pill--juegosalternativos {
    border-color: #5dbc62;
}
.pill--juegosalternativos .pill__arrow {
    color: #4BB450;
}

.pill--jujitsobrasileno {
    border-color: #9b1aff;
}
.pill--jujitsobrasileno .pill__arrow {
    color: #9000FF;
}

.pill--kayakpiraguismo {
    border-color: #cb4c50;
}
.pill--kayakpiraguismo .pill__arrow {
    color: #C5393D;
}

.pill--mantenimiento {
    border-color: #ff751a;
}
.pill--mantenimiento .pill__arrow {
    color: #FF6600;
}

.pill--mountainbike {
    border-color: #ff751a;
}
.pill--mountainbike .pill__arrow {
    color: #FF6600;
}

.pill--multideporte {
    border-color: #f3e525;
}
.pill--multideporte .pill__arrow {
    color: #F2E20D;
}

.pill--olympicgymnastics {
    border-color: #9b1aff;
}
.pill--olympicgymnastics .pill__arrow {
    color: #9000FF;
}

.pill--paddle {
    border-color: #ff751a;
}
.pill--paddle .pill__arrow {
    color: #FF6600;
}

.pill--parkour {
    border-color: #5dbc62;
}
.pill--parkour .pill__arrow {
    color: #4BB450;
}

.pill--pilatessuelo {
    border-color: #cb4c50;
}
.pill--pilatessuelo .pill__arrow {
    color: #C5393D;
}

.pill--psicomotricidadinf {
    border-color: #1aa3ff;
}
.pill--psicomotricidadinf .pill__arrow {
    color: #0099FF;
}

.pill--rhythmicgymnastics {
    border-color: #ff751a;
}
.pill--rhythmicgymnastics .pill__arrow {
    color: #FF6600;
}

.pill--rugby {
    border-color: #f3e525;
}
.pill--rugby .pill__arrow {
    color: #F2E20D;
}

.pill--skate {
    border-color: #ff751a;
}
.pill--skate .pill__arrow {
    color: #FF6600;
}

.pill--skatingrink {
    border-color: #cb4c50;
}
.pill--skatingrink .pill__arrow {
    color: #C5393D;
}

.pill--soccer {
    border-color: #1aa3ff;
}
.pill--soccer .pill__arrow {
    color: #0099FF;
}

.pill--soccer7 {
    border-color: #9b1aff;
}
.pill--soccer7 .pill__arrow {
    color: #9000FF;
}

.pill--soccerroom {
    border-color: #ff751a;
}
.pill--soccerroom .pill__arrow {
    color: #FF6600;
}

.pill--surf {
    border-color: #ff751a;
}
.pill--surf .pill__arrow {
    color: #FF6600;
}

.pill--swimming {
    border-color: #ff751a;
}
.pill--swimming .pill__arrow {
    color: #FF6600;
}

.pill--tabletennis {
    border-color: #cb4c50;
}
.pill--tabletennis .pill__arrow {
    color: #C5393D;
}

.pill--taekwondo {
    border-color: #cb4c50;
}
.pill--taekwondo .pill__arrow {
    color: #C5393D;
}

.pill--taichi {
    border-color: #1aa3ff;
}
.pill--taichi .pill__arrow {
    color: #0099FF;
}

.pill--tennis {
    border-color: #1aa3ff;
}
.pill--tennis .pill__arrow {
    color: #0099FF;
}

.pill--trial {
    border-color: #f3e525;
}
.pill--trial .pill__arrow {
    color: #F2E20D;
}

.pill--triathlon {
    border-color: #f3e525;
}
.pill--triathlon .pill__arrow {
    color: #F2E20D;
}

.pill--volleyball {
    border-color: #1aa3ff;
}
.pill--volleyball .pill__arrow {
    color: #0099FF;
}

.pill--walltennis {
    border-color: #9b1aff;
}
.pill--walltennis .pill__arrow {
    color: #9000FF;
}

.pill--yoga {
    border-color: #5dbc62;
}
.pill--yoga .pill__arrow {
    color: #4BB450;
}

.booking-wrapper .pill__data__extra {
    display: inline-block;
    color: #8c8c8c;
    vertical-align: bottom;
}
.booking-wrapper .pill__data, .booking-wrapper stop lines, stop .booking-wrapper lines {
    display: block;
    font-size: 0.9em;
}
.booking-wrapper .pill__data label, .booking-wrapper stop lines label, stop .booking-wrapper lines label {
    display: inline-block;
}

.pill--accordion .pill__icon,
.pill--accordion .pill__image {
    top: 0.8em;
    transform: none;
}
.pill--accordion .pill__actions {
    top: 1.2em;
    transform: none;
}

.card-wrapper {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    flex-direction: row;
    padding-top: 1em;
    padding-bottom: 1em;
    min-height: 500px;
}

.card {
    display: block;
    position: relative;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    align-self: stretch;
    width: 100%;
    margin-top: 1em;
    margin-bottom: 1em;
}
.card svg {
    transition: filter 0.2s linear;
    filter: drop-shadow(0 0 0 rgb(255, 255, 255));
}
.card:hover svg {
    filter: drop-shadow(0 -8px 0 rgb(200, 0, 161));
}
@media (min-width: 768px) {
    .card {
        width: calc(50% - 2em);
        margin-left: 1em;
        margin-right: 1em;
    }
}
@media (min-width: 992px) {
    .card {
        width: calc(33.3333333333% - 2em);
    }
}

.card__image {
    position: relative;
    overflow: hidden;
}
.card__image img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    max-width: 100%;
}
@media (min-width: 768px) {
    .card__image img {
        height: 200px;
    }
}
.card__image svg {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    pointer-events: none;
    overflow: hidden;
    user-select: none;
    color: #ffffff;
}

.oad-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    overflow: hidden;
    user-select: none;
    color: white;
}
.oad-shape > * {
    display: block;
    width: 100%;
    height: auto;
}

.card__body {
    position: relative;
    padding: 1em 1em 0.5em;
    flex-grow: 1;
}

.event-date {
    font-weight: 600;
    margin-bottom: 0.5em;
}
.event-date span {
    font-weight: 400;
}

.card__header {
    margin-bottom: 0.5em;
}

.card__title {
    color: #4d4d4d;
    font-family: "Merriweather", Georgia, Times, "Times New Roman";
}
.card__title a {
    color: #4d4d4d;
}
.card__title a:hover {
    text-decoration: none;
    color: #C800A1;
}

.card__subtitle {
    color: #8c8c8c;
}

.card__footer {
    padding: 0.5em 1em 0.5em;
    text-align: center;
}

.card__tags {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(0, -50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding-left: 1em;
    padding-right: 1em;
}

.card-tag {
    display: inline-block;
    background-color: #ffffff;
    border-radius: 1em;
    padding: 0 0.5em;
    margin-left: 0.5em;
    font-size: 14px;
    border: 4px solid #ffffff;
}

.card-tag--acondicionamientofisico {
    background-color: #F2E20D;
    color: #626262;
}

.card-tag--acrobaciasaereas {
    background-color: #C5393D;
    color: #ffffff;
}

.card-tag--aerobic {
    background-color: #9000FF;
    color: #ffffff;
}

.card-tag--archery {
    background-color: #0099FF;
    color: #2e2e2e;
}

.card-tag--arena {
    background-color: #F2E20D;
    color: #626262;
}

.card-tag--athletics {
    background-color: #9000FF;
    color: #ffffff;
}

.card-tag--badminton {
    background-color: #C5393D;
    color: #ffffff;
}

.card-tag--bailemoderno {
    background-color: #0099FF;
    color: #2e2e2e;
}

.card-tag--basketball {
    background-color: #4BB450;
    color: #373737;
}

.card-tag--beachsoccer {
    background-color: #FF6600;
    color: #303030;
}

.card-tag--beachvolleyball {
    background-color: #F2E20D;
    color: #626262;
}

.card-tag--bmxinitiation {
    background-color: #0099FF;
    color: #2e2e2e;
}

.card-tag--bmxircuit {
    background-color: #4BB450;
    color: #373737;
}

.card-tag--bmxtech {
    background-color: #9000FF;
    color: #ffffff;
}

.card-tag--bodyboard {
    background-color: #4BB450;
    color: #373737;
}

.card-tag--canaryball {
    background-color: #F2E20D;
    color: #626262;
}

.card-tag--chess {
    background-color: #4BB450;
    color: #373737;
}

.card-tag--chikung {
    background-color: #C5393D;
    color: #ffffff;
}

.card-tag--climbingwall {
    background-color: #0099FF;
    color: #2e2e2e;
}

.card-tag--dancefit {
    background-color: #0099FF;
    color: #2e2e2e;
}

.card-tag--defensapersonal {
    background-color: #F2E20D;
    color: #626262;
}

.card-tag--dominos {
    background-color: #C5393D;
    color: #ffffff;
}

.card-tag--fitness {
    background-color: #C5393D;
    color: #ffffff;
}

.card-tag--footing {
    background-color: #C5393D;
    color: #ffffff;
}

.card-tag--frisbee {
    background-color: #9000FF;
    color: #ffffff;
}

.card-tag--garrote {
    background-color: #9000FF;
    color: #ffffff;
}

.card-tag--halterofilia {
    background-color: #4BB450;
    color: #373737;
}

.card-tag--handball {
    background-color: #4BB450;
    color: #373737;
}

.card-tag--hiking {
    background-color: #F2E20D;
    color: #626262;
}

.card-tag--juegodelpalo {
    background-color: #FF6600;
    color: #303030;
}

.card-tag--juegosalternativos {
    background-color: #4BB450;
    color: #373737;
}

.card-tag--jujitsobrasileno {
    background-color: #9000FF;
    color: #ffffff;
}

.card-tag--kayakpiraguismo {
    background-color: #C5393D;
    color: #ffffff;
}

.card-tag--mantenimiento {
    background-color: #FF6600;
    color: #303030;
}

.card-tag--mountainbike {
    background-color: #FF6600;
    color: #303030;
}

.card-tag--multideporte {
    background-color: #F2E20D;
    color: #626262;
}

.card-tag--olympicgymnastics {
    background-color: #9000FF;
    color: #ffffff;
}

.card-tag--paddle {
    background-color: #FF6600;
    color: #303030;
}

.card-tag--parkour {
    background-color: #4BB450;
    color: #373737;
}

.card-tag--pilatessuelo {
    background-color: #C5393D;
    color: #ffffff;
}

.card-tag--psicomotricidadinf {
    background-color: #0099FF;
    color: #2e2e2e;
}

.card-tag--rhythmicgymnastics {
    background-color: #FF6600;
    color: #303030;
}

.card-tag--rugby {
    background-color: #F2E20D;
    color: #626262;
}

.card-tag--skate {
    background-color: #FF6600;
    color: #303030;
}

.card-tag--skatingrink {
    background-color: #C5393D;
    color: #ffffff;
}

.card-tag--soccer {
    background-color: #0099FF;
    color: #2e2e2e;
}

.card-tag--soccer7 {
    background-color: #9000FF;
    color: #ffffff;
}

.card-tag--soccerroom {
    background-color: #FF6600;
    color: #303030;
}

.card-tag--surf {
    background-color: #FF6600;
    color: #303030;
}

.card-tag--swimming {
    background-color: #FF6600;
    color: #303030;
}

.card-tag--tabletennis {
    background-color: #C5393D;
    color: #ffffff;
}

.card-tag--taekwondo {
    background-color: #C5393D;
    color: #ffffff;
}

.card-tag--taichi {
    background-color: #0099FF;
    color: #2e2e2e;
}

.card-tag--tennis {
    background-color: #0099FF;
    color: #2e2e2e;
}

.card-tag--trial {
    background-color: #F2E20D;
    color: #626262;
}

.card-tag--triathlon {
    background-color: #F2E20D;
    color: #626262;
}

.card-tag--volleyball {
    background-color: #0099FF;
    color: #2e2e2e;
}

.card-tag--walltennis {
    background-color: #9000FF;
    color: #ffffff;
}

.card-tag--yoga {
    background-color: #4BB450;
    color: #373737;
}

.card-tag--comingsoon {
    background-color: #206e9c;
    color: #ffffff;
}

.card-tag--open {
    background-color: #1cb254;
    color: #ffffff;
}

.card-tag--raffle {
    background-color: #e3bc55;
    color: #ffffff;
}

.card-tag--inprogress {
    background-color: #e38755;
    color: #ffffff;
}

.card-tag--deleted {
    background-color: #8c8c8c;
    color: #ffffff;
}

.card-tag--closed,
.card-tag--completed {
    background-color: #e35555;
    color: #ffffff;
}

.card-tag--unknown {
    background-color: #222222;
    color: #ffffff;
}

/* ===============================================================
   $CLUBS & EVENTS MODULE STYLES
   =============================================================== */
div[id*=iss_iPistaEvents_],
div[id*=iss_iPistaClubs_] {
    position: relative;
    margin-top: 1em;
    min-height: 200px;
}

.heading {
    margin-top: 1em;
    margin-bottom: 0.5em;
    text-align: center;
    border: none;
}
.heading .heading__icon {
    position: relative;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    background-color: #d5d5d5;
    color: #ffffff;
    border-radius: 100%;
    border: 5px solid #ffffff;
    box-shadow: 0 0 0 1px #d5d5d5;
    text-align: center;
    vertical-align: middle;
}
.heading .heading__icon .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 0.7em;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* ===============================================================
   $EVENT INSCRIPTION HEADING (for players, inscription data and the person who do the inscription)
   =============================================================== */
.data-box {
    text-align: center;
    padding-top: 1em;
    padding-bottom: 1em;
}
.data-box h4 {
    margin-top: 0;
}

.box-img {
    position: relative;
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
    width: 3em;
    height: 3em;
    font-size: 1.8em;
    /*width: $eventImageSize;
        height: $eventImageSize;*/
    /*@media screen and (max-width: $break-sm) {
            position: relative;
            width: $eventImageSize - 5;
            height: $eventImageSize - 5;
        }*/
}
.box-img img {
    border-radius: 100%;
    width: 5em;
    height: 5em;
}

.box-icon {
    position: relative;
    top: 100%;
    left: 50%;
    width: 3em;
    height: 3em;
    font-size: 1.2em;
    border-radius: 5em;
    border: 5px solid #ffffff;
    box-shadow: 0 0 0 1px #41B6E6;
    /*overflow: hidden;*/
    background-color: #41B6E6;
    color: #ffffff;
    transform: translate(-50%, 0);
    margin-bottom: 15px;
}
.box-icon .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media all and (min-width: 768px) {
    .box-icon {
        font-size: 1.8em;
    }
}

.player-gender {
    position: absolute;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    font-size: 0.5em;
    background-color: #ffffff;
    color: #8c8c8c;
    border-radius: 100%;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 1px #ededed;
    vertical-align: middle;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -1em);
}
.player-gender .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    /*font-size: 1em;*/
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
@media all and (min-width: 768px) {
    .player-gender {
        background-color: #ededed;
    }
}

.box-title {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.box-subtitle,
.box-extra-data {
    display: block;
}

/* ===============================================================
   $EVENT INSCRIPTION
   =============================================================== */
/*.enrolledPlayers {
    margin-top: 0;
}*/
.payment--payed--disabled {
    color: #60C972;
}

.payment--payed--enabled {
    color: #60C972;
}

.payment--not-payed--disabled {
    color: #8c8c8c;
}

.payment--deleted--disabled {
    color: #F52727;
}

.payment--deleted--enabled {
    color: #F52727;
}

.payment--not-deleted--disabled {
    color: #8c8c8c;
}

/* ===============================================================
   $EVENT HEADING
   =============================================================== */
.event-heading,
.club-heading {
    position: relative;
    padding-left: 20em;
    min-height: 18em;
    margin-bottom: 2em;
}
@media screen and (max-width: 991px) {
    .event-heading,
    .club-heading {
        padding-left: 15em;
    }
}
@media screen and (max-width: 767px) {
    .event-heading,
    .club-heading {
        padding-left: 0;
        text-align: center;
    }
    .event-heading .event-heading__top,
    .event-heading .club-heading__top,
    .club-heading .event-heading__top,
    .club-heading .club-heading__top {
        display: block;
    }
    .event-heading .event-heading__title,
    .event-heading .club-heading__title,
    .club-heading .event-heading__title,
    .club-heading .club-heading__title {
        font-size: 1.7em;
        line-height: 1.2em;
    }
}

.event-heading__image,
.club-heading__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 18em;
    height: 18em;
    border-radius: 100%;
    /*background-position: center;
    background-size: cover;*/
}
@media screen and (max-width: 991px) {
    .event-heading__image,
    .club-heading__image {
        width: 13em;
        height: 13em;
    }
}
@media screen and (max-width: 767px) {
    .event-heading__image,
    .club-heading__image {
        position: relative;
    }
}

.club-heading__gmap {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: inline-block;
    width: 18em;
    height: 18em;
    border-radius: 100%;
    overflow: hidden;
}
@media screen and (max-width: 991px) {
    .club-heading__gmap {
        width: 13em;
        height: 13em;
    }
}
@media screen and (max-width: 767px) {
    .club-heading__gmap {
        position: relative;
    }
}

.club-heading__gmap__map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

.event-heading__top,
.club-heading__top {
    display: inline-block;
    color: #8c8c8c;
    font-size: 1em;
    padding-top: 1em;
}

.event-heading__subtitle,
.club-heading__subtitle {
    display: block;
    /*margin-bottom: 0.5em;*/
    margin-bottom: 0.2em;
    font-size: 1.5em;
    line-height: 1.5em;
    color: #404040;
}

.event-heading__data,
.club-heading__data {
    display: block;
    margin-bottom: 0.2em;
    font-size: 1.2em;
    line-height: 1.2em;
    color: #404040;
}
.event-heading__data .fa,
.club-heading__data .fa {
    margin-right: 0.2em;
}
.event-heading__data[data-visible=""],
.club-heading__data[data-visible=""] {
    display: none;
}
.event-heading__data .text-alert--error,
.club-heading__data .text-alert--error {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.event-heading__actions,
.club-heading__actions {
    margin-top: 1em;
    margin-bottom: 1em;
    text-align: right;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}
@media screen and (max-width: 767px) {
    .event-heading__actions,
    .club-heading__actions {
        margin-top: 1em;
        text-align: center;
    }
}

.event-actions a,
.club-actions a {
    margin: 0 0.5em;
}

/* Event heading share panel
   =============================================================== */
.context-menu {
    display: flex;
}
.context-menu .dropdown-menu {
    position: absolute;
    left: 100%;
    margin: 0;
    padding: 0;
    min-width: auto;
    background-color: #ffffff;
    border-radius: 0.5em;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
    overflow: hidden;
    transform: translate(-100%, 0);
    color: #4d4d4d;
}
.context-menu .sharrre-panel {
    display: block;
}

.dropdown-context-menu {
    background-color: #ffffff;
    border: none;
    border-radius: 0.5em;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.context-menu__head {
    display: block;
    margin: 0;
    padding: 0.5em;
}

.context-menu__item {
    display: block;
    padding: 0.5em;
    white-space: nowrap;
    overflow: hidden;
    color: #4d4d4d;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.context-menu__item:hover, .context-menu__item:focus, .context-menu__item:active {
    color: #4d4d4d;
    text-decoration: none;
    background-color: #ededed;
}
.context-menu__item:visited {
    color: #4d4d4d;
}

.context-btn {
    position: relative;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    margin: 0 0.25em;
    font-size: 1.5em;
    line-height: 1.5em;
    background-color: #41B6E6;
    color: #ffffff;
    border-radius: 100%;
    border: 0 solid #ffffff;
    box-shadow: 0 0 0 1px #41B6E6;
    text-align: center;
    transition: all 0.2s linear;
    cursor: pointer;
    text-indent: -9999px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
}
.context-btn:after {
    content: "•";
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 0.8em;
    text-shadow: 8px 0 #ffffff, -8px 0 #ffffff;
    text-indent: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.context-btn:visited {
    color: #ffffff;
}
.context-btn:hover, .context-btn:active, .context-btn:focus {
    background-color: #136f94;
    color: #ffffff;
    outline: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.context-btn--vertical:after {
    text-shadow: 0 8px #ffffff, 0 -8px #ffffff;
}

.context-btn--shared {
    position: relative;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    margin: 0 0.25em;
    font-size: 1.5em;
    line-height: 1.5em;
    background-color: #41B6E6;
    color: #ffffff;
    border-radius: 100%;
    border: 0 solid #ffffff;
    box-shadow: 0 0 0 1px #41B6E6;
    transition: all 0.2s linear;
    cursor: pointer;
    text-indent: -9999px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
}
.context-btn--shared:hover, .context-btn--shared:active, .context-btn--shared:focus, .context-btn--shared:visited {
    background-color: #136f94;
    color: #ffffff;
    outline: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.context-btn--shared .fa {
    font-size: 0.8em;
    position: absolute;
    top: 50%;
    left: 50%;
    text-indent: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.btn--google-plus, .btn--facebook, .btn--twitter {
    position: relative;
    display: block;
    margin: 0;
    padding: 0.5em 0.5em 0.5em 2.5em;
    color: #4d4d4d;
    cursor: pointer;
}
.btn--google-plus .btn__icon, .btn--facebook .btn__icon, .btn--twitter .btn__icon {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    margin: 0;
    width: 2em;
    font-size: 1em;
    color: #ffffff;
    text-align: center;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.btn--twitter {
    -webkit-box-shadow: inset 0 0 #55acee;
    box-shadow: inset 0 0 #55acee;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.btn--twitter .btn__icon {
    color: #55acee;
}
.btn--twitter:hover {
    text-decoration: none;
    -webkit-box-shadow: inset 2em 0 #55acee;
    box-shadow: inset 2em 0 #55acee;
}
.btn--twitter:hover .btn__icon {
    color: #ffffff;
}

.btn--facebook {
    -webkit-box-shadow: inset 0 0 #3b5998;
    box-shadow: inset 0 0 #3b5998;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.btn--facebook .btn__icon {
    color: #3b5998;
}
.btn--facebook:hover {
    text-decoration: none;
    -webkit-box-shadow: inset 2em 0 #3b5998;
    box-shadow: inset 2em 0 #3b5998;
}
.btn--facebook:hover .btn__icon {
    color: #ffffff;
}

.btn--google-plus {
    -webkit-box-shadow: inset 0 0 #dd4b39;
    box-shadow: inset 0 0 #dd4b39;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.btn--google-plus .btn__icon {
    color: #dd4b39;
}
.btn--google-plus:hover {
    text-decoration: none;
    -webkit-box-shadow: inset 2em 0 #dd4b39;
    box-shadow: inset 2em 0 #dd4b39;
}
.btn--google-plus:hover .btn__icon {
    color: #ffffff;
}

/* ===============================================================
   $MODULE ALERTS
   =============================================================== */
.module-alert--error, .module-alert--warning, .module-alert--success, .module-alert--info {
    position: fixed !important;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}
.module-alert--error .close, .module-alert--warning .close, .module-alert--success .close, .module-alert--info .close {
    position: absolute;
    top: 1em;
    right: 1em;
    font-size: 1em;
    line-height: inherit;
    color: inherit !important;
    opacity: 0.5;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
.module-alert--error .close:hover, .module-alert--warning .close:hover, .module-alert--success .close:hover, .module-alert--info .close:hover {
    opacity: 1;
    text-decoration: none;
}
.module-alert--error .close:active, .module-alert--warning .close:active, .module-alert--success .close:active, .module-alert--info .close:active, .module-alert--error .close:focus, .module-alert--warning .close:focus, .module-alert--success .close:focus, .module-alert--info .close:focus {
    text-decoration: none;
    outline: none;
}

.module-alert__icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 0.75em;
    font-size: 1.5em;
    color: #ffffff;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.module-alert__message {
    display: inline-block;
    padding: 1em 3em 1em 5em;
    font-weight: bold;
}

.module-alert--info {
    background-color: #42a5f5;
    -webkit-box-shadow: inset 4em 0 rgba(5, 59, 102, 0.5);
    box-shadow: inset 4em 0 rgba(5, 59, 102, 0.5);
    color: #000305;
}

.module-alert--success {
    background-color: #66bb6a;
    -webkit-box-shadow: inset 4em 0 rgba(26, 59, 28, 0.5);
    box-shadow: inset 4em 0 rgba(26, 59, 28, 0.5);
    color: #0a180b;
}

.module-alert--warning {
    background-color: #ffa726;
    -webkit-box-shadow: inset 4em 0 rgba(89, 53, 0, 0.5);
    box-shadow: inset 4em 0 rgba(89, 53, 0, 0.5);
    color: #261700;
}

.module-alert--error {
    background-color: #ef5350;
    -webkit-box-shadow: inset 4em 0 rgba(105, 11, 10, 0.5);
    box-shadow: inset 4em 0 rgba(105, 11, 10, 0.5);
    color: #3b0605;
}

/* Module text alerts
   =============================================================== */
input + [class*=text-alert--],
select + [class*=text-alert--],
textarea + [class*=text-alert--],
.input-group + [class*=text-alert--] {
    margin-top: -1em;
}

/* Notificaciones
   =============================================================== */
.notification {
    margin-bottom: 0.5em;
}

/* ===============================================================
   $ADMINISTRACION - PANEL DESPLEGABLE
   =============================================================== */
.panel--dropdown {
    /*border-color: lighten($color-primary, 10%);*/
    /*border-radius: 0;*/
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.panel--dropdown .panel__head {
    padding: 0;
    background-color: white;
    color: #167fab;
    border-radius: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.panel--dropdown .panel__head:hover {
    background-color: #9bd9f2;
}
.panel--dropdown .panel__title-link {
    display: block;
    float: left;
    width: 100%;
    max-width: 80%;
    padding: 0.5em;
    color: #167fab;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.panel--dropdown .panel__title-link:visited {
    color: #167fab;
}
.panel--dropdown .panel__title-link:hover {
    color: #167fab;
    text-decoration: none;
}
.panel--dropdown .panel__title-link:active, .panel--dropdown .panel__title-link:focus {
    color: #167fab;
    text-decoration: none;
    outline: none;
}
@media screen and (max-width: 767px) {
    .panel--dropdown .panel__title-link {
        max-width: 65%;
    }
}
.panel--dropdown .panel__head-action {
    display: block;
    float: right;
    padding: 0.5em 0.7em;
    color: #167fab;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.panel--dropdown .panel__head-action:visited {
    color: #167fab;
}
.panel--dropdown .panel__head-action:hover {
    background-color: #C800A1;
    text-decoration: none;
}
.panel--dropdown .panel__head-action:active, .panel--dropdown .panel__head-action:focus {
    color: #167fab;
    text-decoration: none;
    outline: none;
}
.panel--dropdown .panel__actions {
    text-align: right;
    padding: 0 0.5em 0.5em;
}

/* ===============================================================
   $ACTIONS PANEL
   =============================================================== */
.actions--filter,
.actions {
    margin-bottom: 1em;
}

.actions--filter input,
.actions--filter textarea,
.actions--filter select {
    margin-bottom: 0;
    padding: 0.45em 0.5em;
}
@media screen and (max-width: 767px) {
    .actions--filter input,
    .actions--filter textarea,
    .actions--filter select {
        margin-bottom: 1em;
    }
}

/* ===============================================================
   $CATEGORIES
   =============================================================== */
.icon-box-grid {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.icon-box-grid--1 .icon-box {
    margin: 0.5em;
    flex: 0 0 calc(100% - 1em);
}

.icon-box-grid--2 .icon-box {
    margin: 0.5em;
    flex: 0 0 calc(50% - 1em);
}

.icon-box-grid--3 .icon-box {
    margin: 0.5em;
    flex: 0 0 calc(33.3333333333% - 1em);
}

.icon-box-grid--4 .icon-box {
    margin: 0.5em;
    flex: 0 0 calc(25% - 1em);
}
.icon-box-grid--4 .icon-box__actions {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.icon-box-grid--5 .icon-box {
    margin: 0.5em;
    flex: 0 0 calc(20% - 1em);
}
.icon-box-grid--5 .icon-box__actions {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.icon-box-grid--6 .icon-box {
    margin: 0.5em;
    flex: 0 0 calc(16.6666666667% - 1em);
}
.icon-box-grid--6 .icon-box__actions {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.event-category--disabled, .event-category,
.event-payment,
.event-discount,
.icon-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    border-radius: 0.5em;
    margin: 0 0 1em;
    padding: 1em;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
    color: #4d4d4d;
    transition: all 0.2s ease-in-out;
    text-align: center;
}
.event-category--disabled:hover, .event-category:hover,
.event-payment:hover,
.event-discount:hover,
.icon-box:hover, .event-category--disabled:focus, .event-category:focus,
.event-payment:focus,
.event-discount:focus,
.icon-box:focus, .event-category--disabled:active, .event-category:active,
.event-payment:active,
.event-discount:active,
.icon-box:active {
    color: #4d4d4d;
    text-decoration: none;
}
.event-category--disabled:visited, .event-category:visited,
.event-payment:visited,
.event-discount:visited,
.icon-box:visited {
    color: #4d4d4d;
}

.event-category__icon,
.event-payment__icon,
.event-discount__icon,
.icon-box__icon {
    position: relative;
    width: 3em;
    height: 3em;
    border-radius: 100%;
    overflow: hidden;
    background-color: #41B6E6;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5em;
}

.icon-box__image {
    position: relative;
    border-radius: 100%;
    width: 5em;
    height: 5em;
    overflow: hidden;
}
.icon-box__image img {
    height: auto;
    width: 100%;
    object-fit: cover;
    max-width: 100%;
}

.category__name,
.event-payment__name,
.icon-box__title {
    text-align: center;
    margin-bottom: 0.5em;
    font-weight: 600;
}

.icon-box__subtitle {
    text-align: center;
    margin-top: -0.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
    color: #8c8c8c;
}

.icon-box__actions {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.category__fare-type {
    color: #8c8c8c;
    font-size: 0.9em;
}

.event-category--disabled {
    border-color: #ededed;
}
.event-category--disabled .event-category__icon {
    background-color: #8c8c8c;
    color: #ededed;
}
.event-category--disabled .event-category__icon .user-front {
    text-shadow: 1px -1px 0 #8c8c8c;
}

/* ===============================================================
   $EVENT & CLUB DETAILS
   =============================================================== */
.event-details,
.club-details {
    text-align: justify;
}
.event-details h3,
.club-details h3 {
    position: relative;
    margin-top: 1em;
    margin-bottom: 0.3em;
    font-size: 1.8em;
}
@media screen and (max-width: 767px) {
    .event-details h3,
    .club-details h3 {
        font-size: 1.5em;
        line-height: 1em;
    }
}
.event-details h4,
.club-details h4 {
    position: relative;
    margin-top: 1em;
    margin-bottom: 0.3em;
    font-size: 1.5em;
}
@media screen and (max-width: 767px) {
    .event-details h4,
    .club-details h4 {
        font-size: 1.3em;
        line-height: 1em;
    }
}

.event-prizes ul {
    display: inline-block;
    margin: 0 1em 1em;
    padding: 0 1em;
    list-style: none;
    vertical-align: top;
}
.event-prizes ul li {
    margin: 0.5em 0;
}
.event-prizes ul li:before {
    display: inline-block;
    font-size: 1em;
    width: 1em;
    line-height: 1em;
    padding: 0.5em;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -ms-box-sizing: content-box;
    box-sizing: content-box;
    border-radius: 100%;
    margin-right: 0.5em;
    border: 4px solid #ffffff;
    background-color: #d5d5d5;
    color: #898989;
    box-shadow: 0 0 0 1px #d5d5d5;
    content: "\f0a3";
    font-family: "FontAwesome" !important;
    text-align: center;
}
.event-prizes ul li:first-child {
    font-size: 1.5em;
}
.event-prizes ul li:first-child:before {
    content: "" !important;
    display: none !important;
}
.event-prizes ul li:nth-child(2):before {
    content: "\f091";
    background-color: #FFD700;
    color: #665600;
    box-shadow: 0 0 0 1px #FFD700;
}
.event-prizes ul li:nth-child(3):before {
    content: "\f091";
    background-color: #c0c0c0;
    color: #747474;
    box-shadow: 0 0 0 1px #c0c0c0;
}
.event-prizes ul li:nth-child(4):before {
    content: "\f091";
    background-color: #cd7f32;
    color: #523314;
    box-shadow: 0 0 0 1px #cd7f32;
}

/* ===============================================================
    $PLAYERS
   =============================================================== */
.player__gender {
    background-color: #d5d5d5;
    border-radius: 100%;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
    line-height: 1em;
    position: relative;
}
.player__gender .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 0.9em;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.player__profile-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 100%;
    overflow: hidden;
}

/* ===============================================================
   $PILL CUSTOM STATUS
   =============================================================== */
.pill__data__extra--coming-soon {
    color: #206E9C;
}

.pill__data__extra--open {
    color: #1CB254;
}

.pill__data__extra--raffle {
    color: #e3bc55;
}

.pill__data__extra--in-progress {
    color: #E38755;
}

.pill__data__extra--deleted {
    color: #8c8c8c;
}

.pill__data__extra--closed {
    color: #E35555;
}

.pill__data__extra--unknown {
    color: #222222;
}

.pill__data__extra--info {
    color: #42a5f5;
}

.pill__data__extra--success {
    color: #66bb6a;
}

.pill__data__extra--warning {
    color: #ffa726;
}

.pill__data__extra--error {
    color: #eb2521;
}

/* Enrollment status
=============================================================== */
.booking__status--not-payed, .pill-status--waiting-list, .pill-status--paymentletter-downloaded, .pill-status--pending-renewal, .pill-status--pending-pickup, .pill-status--pending-payment, .pill-status--pass-enabled, .pill-status--not-confirmed, .pill-status--not-payed, .pill-status--current-quota-deleted, .pill-status--current-quota-payed, .pill-status--payed {
    position: absolute;
    top: 50%;
    right: -0.4em;
    z-index: 2;
    display: block;
    width: 0.8em;
    height: 0.8em;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    border-radius: 100%;
}

.pill-status--payed {
    background-color: #57BE3C;
}

.pill-status--current-quota-payed {
    background-color: #3A5698;
}

.pill-status--current-quota-deleted {
    background-color: #8c8c8c;
}

.pill-status--not-payed {
    background-color: #E0464A;
}

.pill-status--not-confirmed {
    background-color: #E28C47;
}

.pill-status--pass-enabled {
    background-color: #57BE3C;
}

.pill-status--pending-payment {
    background-color: #E0464A;
}

.pill-status--pending-pickup {
    background-color: #3A5698;
}

.pill-status--pending-renewal {
    background-color: #E38755;
}

.pill-status--paymentletter-downloaded {
    background-color: #e3bc55;
}

.pill-status--waiting-list {
    background-color: #FFD700;
}

.enrollment__status--current-quota-deleted {
    border-color: #ededed;
}
.enrollment__status--current-quota-deleted .pill__title, .enrollment__status--current-quota-deleted stop number:empty + description, stop .enrollment__status--current-quota-deleted number:empty + description, .enrollment__status--current-quota-deleted stop number, stop .enrollment__status--current-quota-deleted number,
.enrollment__status--current-quota-deleted .pill__title__extra,
.enrollment__status--current-quota-deleted stop description,
stop .enrollment__status--current-quota-deleted description,
.enrollment__status--current-quota-deleted .pill__subtitle,
.enrollment__status--current-quota-deleted .pill__data,
.enrollment__status--current-quota-deleted stop lines,
stop .enrollment__status--current-quota-deleted lines,
.enrollment__status--current-quota-deleted .pill__data__extra,
.enrollment__status--current-quota-deleted .pill__arrow {
    color: #8c8c8c;
}
.enrollment__status--current-quota-deleted .pill__icon,
.enrollment__status--current-quota-deleted .pill__image {
    opacity: 0.5;
}

/* ===============================================================
   $BOOKING
   =============================================================== */
.booking__image {
    display: block;
    border-radius: 0.5em;
}

.booking__status--not-payed {
    background-color: #E0464A;
}

/* ===============================================================
   $MAP
   =============================================================== */
.gmap {
    position: relative;
    width: 100%;
    padding-top: 300px;
}

.gmap__map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

a[id*=ViewProfile_editLink] {
    display: none !important;
}

/* $Loading icon
   =============================================================== */
.loading {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
}

.loading__icon {
    position: fixed;
    top: 50%;
    left: 50%;
    font-size: 3em;
    color: #C800A1;
    transform: translate(-50%, -50%);
    animation: rotate-center 2s linear infinite both;
}

/* ===============================================================
   $SPORT CLUB
   =============================================================== */
.sport-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    padding-top: 1em;
    padding-bottom: 1em;
}

.sport-box {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 1em;
    padding: 0;
    color: #4d4d4d;
    cursor: pointer;
    background-color: #ffffff;
    border-radius: 0.5em;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
    transition: all 0.2s ease-in-out;
    width: calc(25% - 1em);
    margin-left: 0.5em;
    margin-right: 0.5em;
    margin-top: 1em;
    margin-bottom: 1em;
}
@media (min-width: 768px) {
    .sport-box {
        width: calc(16.6666666667% - 2em);
        margin-left: 1em;
        margin-right: 1em;
    }
}
@media (min-width: 992px) {
    .sport-box {
        width: calc(12.5% - 2em);
    }
}
.sport-box svg {
    transition: all 0.2s linear;
    filter: drop-shadow(0 0 0 rgb(255, 255, 255));
}
.sport-box:hover, .sport-box:focus, .sport-box:active {
    outline: none;
    color: #4d4d4d;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.sport-box:hover svg, .sport-box:focus svg, .sport-box:active svg {
    filter: drop-shadow(0px -6px 0 rgb(200, 0, 161));
}
.sport-box:visited {
    background-color: transparent;
    color: #4d4d4d;
}

.sport-box__image {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: #ffffff;
}
.sport-box__image img {
    width: 100%;
    height: auto;
}
.sport-box__image svg {
    position: absolute;
    width: 100%;
    bottom: -1px;
    left: 0;
}

.sport__name {
    position: relative;
}

.sport-venue__image, .sport-booking__image {
    display: inline-block;
    border-radius: 100%;
    width: 5em;
    height: 5em;
    padding: 5px;
    border-width: 1px;
    border-style: solid;
}

/* Sport club booking
   =============================================================== */
.sport-booking--yoga, .sport-booking--walltennis, .sport-booking--volleyball, .sport-booking--triathlon, .sport-booking--trial, .sport-booking--tennis, .sport-booking--taichi, .sport-booking--taekwondo, .sport-booking--tabletennis, .sport-booking--swimming, .sport-booking--surf, .sport-booking--soccerroom, .sport-booking--soccer7, .sport-booking--soccer, .sport-booking--skatingrink, .sport-booking--skate, .sport-booking--rugby, .sport-booking--rhythmicgymnastics, .sport-booking--psicomotricidadinf, .sport-booking--pilatessuelo, .sport-booking--parkour, .sport-booking--paddle, .sport-booking--olympicgymnastics, .sport-booking--multideporte, .sport-booking--mountainbike, .sport-booking--mantenimiento, .sport-booking--kayakpiraguismo, .sport-booking--jujitsobrasileno, .sport-booking--juegosalternativos, .sport-booking--juegodelpalo, .sport-booking--hiking, .sport-booking--handball, .sport-booking--halterofilia, .sport-booking--garrote, .sport-booking--frisbee, .sport-booking--footing, .sport-booking--fitness, .sport-booking--dominos, .sport-booking--defensapersonal, .sport-booking--dancefit, .sport-booking--climbingwall, .sport-booking--chikung, .sport-booking--chess, .sport-booking--canaryball, .sport-booking--bodyboard, .sport-booking--bmxtech, .sport-booking--bmxircuit, .sport-booking--bmxinitiation, .sport-booking--beachvolleyball, .sport-booking--beachsoccer, .sport-booking--basketball, .sport-booking--bailemoderno, .sport-booking--badminton, .sport-booking--athletics, .sport-booking--arena, .sport-booking--archery, .sport-booking--aerobic, .sport-booking--acrobaciasaereas, .sport-booking--acondicionamientofisico {
    display: block;
    text-align: center;
    margin-bottom: 1em;
    padding: 1em 0;
    color: #4d4d4d;
    cursor: pointer;
}
.sport-booking--yoga:hover, .sport-booking--walltennis:hover, .sport-booking--volleyball:hover, .sport-booking--triathlon:hover, .sport-booking--trial:hover, .sport-booking--tennis:hover, .sport-booking--taichi:hover, .sport-booking--taekwondo:hover, .sport-booking--tabletennis:hover, .sport-booking--swimming:hover, .sport-booking--surf:hover, .sport-booking--soccerroom:hover, .sport-booking--soccer7:hover, .sport-booking--soccer:hover, .sport-booking--skatingrink:hover, .sport-booking--skate:hover, .sport-booking--rugby:hover, .sport-booking--rhythmicgymnastics:hover, .sport-booking--psicomotricidadinf:hover, .sport-booking--pilatessuelo:hover, .sport-booking--parkour:hover, .sport-booking--paddle:hover, .sport-booking--olympicgymnastics:hover, .sport-booking--multideporte:hover, .sport-booking--mountainbike:hover, .sport-booking--mantenimiento:hover, .sport-booking--kayakpiraguismo:hover, .sport-booking--jujitsobrasileno:hover, .sport-booking--juegosalternativos:hover, .sport-booking--juegodelpalo:hover, .sport-booking--hiking:hover, .sport-booking--handball:hover, .sport-booking--halterofilia:hover, .sport-booking--garrote:hover, .sport-booking--frisbee:hover, .sport-booking--footing:hover, .sport-booking--fitness:hover, .sport-booking--dominos:hover, .sport-booking--defensapersonal:hover, .sport-booking--dancefit:hover, .sport-booking--climbingwall:hover, .sport-booking--chikung:hover, .sport-booking--chess:hover, .sport-booking--canaryball:hover, .sport-booking--bodyboard:hover, .sport-booking--bmxtech:hover, .sport-booking--bmxircuit:hover, .sport-booking--bmxinitiation:hover, .sport-booking--beachvolleyball:hover, .sport-booking--beachsoccer:hover, .sport-booking--basketball:hover, .sport-booking--bailemoderno:hover, .sport-booking--badminton:hover, .sport-booking--athletics:hover, .sport-booking--arena:hover, .sport-booking--archery:hover, .sport-booking--aerobic:hover, .sport-booking--acrobaciasaereas:hover, .sport-booking--acondicionamientofisico:hover, .sport-booking--yoga:focus, .sport-booking--walltennis:focus, .sport-booking--volleyball:focus, .sport-booking--triathlon:focus, .sport-booking--trial:focus, .sport-booking--tennis:focus, .sport-booking--taichi:focus, .sport-booking--taekwondo:focus, .sport-booking--tabletennis:focus, .sport-booking--swimming:focus, .sport-booking--surf:focus, .sport-booking--soccerroom:focus, .sport-booking--soccer7:focus, .sport-booking--soccer:focus, .sport-booking--skatingrink:focus, .sport-booking--skate:focus, .sport-booking--rugby:focus, .sport-booking--rhythmicgymnastics:focus, .sport-booking--psicomotricidadinf:focus, .sport-booking--pilatessuelo:focus, .sport-booking--parkour:focus, .sport-booking--paddle:focus, .sport-booking--olympicgymnastics:focus, .sport-booking--multideporte:focus, .sport-booking--mountainbike:focus, .sport-booking--mantenimiento:focus, .sport-booking--kayakpiraguismo:focus, .sport-booking--jujitsobrasileno:focus, .sport-booking--juegosalternativos:focus, .sport-booking--juegodelpalo:focus, .sport-booking--hiking:focus, .sport-booking--handball:focus, .sport-booking--halterofilia:focus, .sport-booking--garrote:focus, .sport-booking--frisbee:focus, .sport-booking--footing:focus, .sport-booking--fitness:focus, .sport-booking--dominos:focus, .sport-booking--defensapersonal:focus, .sport-booking--dancefit:focus, .sport-booking--climbingwall:focus, .sport-booking--chikung:focus, .sport-booking--chess:focus, .sport-booking--canaryball:focus, .sport-booking--bodyboard:focus, .sport-booking--bmxtech:focus, .sport-booking--bmxircuit:focus, .sport-booking--bmxinitiation:focus, .sport-booking--beachvolleyball:focus, .sport-booking--beachsoccer:focus, .sport-booking--basketball:focus, .sport-booking--bailemoderno:focus, .sport-booking--badminton:focus, .sport-booking--athletics:focus, .sport-booking--arena:focus, .sport-booking--archery:focus, .sport-booking--aerobic:focus, .sport-booking--acrobaciasaereas:focus, .sport-booking--acondicionamientofisico:focus, .sport-booking--yoga:active, .sport-booking--walltennis:active, .sport-booking--volleyball:active, .sport-booking--triathlon:active, .sport-booking--trial:active, .sport-booking--tennis:active, .sport-booking--taichi:active, .sport-booking--taekwondo:active, .sport-booking--tabletennis:active, .sport-booking--swimming:active, .sport-booking--surf:active, .sport-booking--soccerroom:active, .sport-booking--soccer7:active, .sport-booking--soccer:active, .sport-booking--skatingrink:active, .sport-booking--skate:active, .sport-booking--rugby:active, .sport-booking--rhythmicgymnastics:active, .sport-booking--psicomotricidadinf:active, .sport-booking--pilatessuelo:active, .sport-booking--parkour:active, .sport-booking--paddle:active, .sport-booking--olympicgymnastics:active, .sport-booking--multideporte:active, .sport-booking--mountainbike:active, .sport-booking--mantenimiento:active, .sport-booking--kayakpiraguismo:active, .sport-booking--jujitsobrasileno:active, .sport-booking--juegosalternativos:active, .sport-booking--juegodelpalo:active, .sport-booking--hiking:active, .sport-booking--handball:active, .sport-booking--halterofilia:active, .sport-booking--garrote:active, .sport-booking--frisbee:active, .sport-booking--footing:active, .sport-booking--fitness:active, .sport-booking--dominos:active, .sport-booking--defensapersonal:active, .sport-booking--dancefit:active, .sport-booking--climbingwall:active, .sport-booking--chikung:active, .sport-booking--chess:active, .sport-booking--canaryball:active, .sport-booking--bodyboard:active, .sport-booking--bmxtech:active, .sport-booking--bmxircuit:active, .sport-booking--bmxinitiation:active, .sport-booking--beachvolleyball:active, .sport-booking--beachsoccer:active, .sport-booking--basketball:active, .sport-booking--bailemoderno:active, .sport-booking--badminton:active, .sport-booking--athletics:active, .sport-booking--arena:active, .sport-booking--archery:active, .sport-booking--aerobic:active, .sport-booking--acrobaciasaereas:active, .sport-booking--acondicionamientofisico:active {
    background-color: white;
    outline: none;
    color: #4d4d4d;
    text-decoration: none;
}
.sport-booking--yoga:visited, .sport-booking--walltennis:visited, .sport-booking--volleyball:visited, .sport-booking--triathlon:visited, .sport-booking--trial:visited, .sport-booking--tennis:visited, .sport-booking--taichi:visited, .sport-booking--taekwondo:visited, .sport-booking--tabletennis:visited, .sport-booking--swimming:visited, .sport-booking--surf:visited, .sport-booking--soccerroom:visited, .sport-booking--soccer7:visited, .sport-booking--soccer:visited, .sport-booking--skatingrink:visited, .sport-booking--skate:visited, .sport-booking--rugby:visited, .sport-booking--rhythmicgymnastics:visited, .sport-booking--psicomotricidadinf:visited, .sport-booking--pilatessuelo:visited, .sport-booking--parkour:visited, .sport-booking--paddle:visited, .sport-booking--olympicgymnastics:visited, .sport-booking--multideporte:visited, .sport-booking--mountainbike:visited, .sport-booking--mantenimiento:visited, .sport-booking--kayakpiraguismo:visited, .sport-booking--jujitsobrasileno:visited, .sport-booking--juegosalternativos:visited, .sport-booking--juegodelpalo:visited, .sport-booking--hiking:visited, .sport-booking--handball:visited, .sport-booking--halterofilia:visited, .sport-booking--garrote:visited, .sport-booking--frisbee:visited, .sport-booking--footing:visited, .sport-booking--fitness:visited, .sport-booking--dominos:visited, .sport-booking--defensapersonal:visited, .sport-booking--dancefit:visited, .sport-booking--climbingwall:visited, .sport-booking--chikung:visited, .sport-booking--chess:visited, .sport-booking--canaryball:visited, .sport-booking--bodyboard:visited, .sport-booking--bmxtech:visited, .sport-booking--bmxircuit:visited, .sport-booking--bmxinitiation:visited, .sport-booking--beachvolleyball:visited, .sport-booking--beachsoccer:visited, .sport-booking--basketball:visited, .sport-booking--bailemoderno:visited, .sport-booking--badminton:visited, .sport-booking--athletics:visited, .sport-booking--arena:visited, .sport-booking--archery:visited, .sport-booking--aerobic:visited, .sport-booking--acrobaciasaereas:visited, .sport-booking--acondicionamientofisico:visited {
    background-color: transparent;
    color: #4d4d4d;
}

.sport-booking__title {
    display: block;
    font-size: 1.2em;
}

.sport-booking--acondicionamientofisico .sport-booking__image {
    border-color: #F2E20D;
}

.sport-booking--acrobaciasaereas .sport-booking__image {
    border-color: #C5393D;
}

.sport-booking--aerobic .sport-booking__image {
    border-color: #9000FF;
}

.sport-booking--archery .sport-booking__image {
    border-color: #0099FF;
}

.sport-booking--arena .sport-booking__image {
    border-color: #F2E20D;
}

.sport-booking--athletics .sport-booking__image {
    border-color: #9000FF;
}

.sport-booking--badminton .sport-booking__image {
    border-color: #C5393D;
}

.sport-booking--bailemoderno .sport-booking__image {
    border-color: #0099FF;
}

.sport-booking--basketball .sport-booking__image {
    border-color: #4BB450;
}

.sport-booking--beachsoccer .sport-booking__image {
    border-color: #FF6600;
}

.sport-booking--beachvolleyball .sport-booking__image {
    border-color: #F2E20D;
}

.sport-booking--bmxinitiation .sport-booking__image {
    border-color: #0099FF;
}

.sport-booking--bmxircuit .sport-booking__image {
    border-color: #4BB450;
}

.sport-booking--bmxtech .sport-booking__image {
    border-color: #9000FF;
}

.sport-booking--bodyboard .sport-booking__image {
    border-color: #4BB450;
}

.sport-booking--canaryball .sport-booking__image {
    border-color: #F2E20D;
}

.sport-booking--chess .sport-booking__image {
    border-color: #4BB450;
}

.sport-booking--chikung .sport-booking__image {
    border-color: #C5393D;
}

.sport-booking--climbingwall .sport-booking__image {
    border-color: #0099FF;
}

.sport-booking--dancefit .sport-booking__image {
    border-color: #0099FF;
}

.sport-booking--defensapersonal .sport-booking__image {
    border-color: #F2E20D;
}

.sport-booking--dominos .sport-booking__image {
    border-color: #C5393D;
}

.sport-booking--fitness .sport-booking__image {
    border-color: #C5393D;
}

.sport-booking--footing .sport-booking__image {
    border-color: #C5393D;
}

.sport-booking--frisbee .sport-booking__image {
    border-color: #9000FF;
}

.sport-booking--garrote .sport-booking__image {
    border-color: #9000FF;
}

.sport-booking--halterofilia .sport-booking__image {
    border-color: #4BB450;
}

.sport-booking--handball .sport-booking__image {
    border-color: #4BB450;
}

.sport-booking--hiking .sport-booking__image {
    border-color: #F2E20D;
}

.sport-booking--juegodelpalo .sport-booking__image {
    border-color: #FF6600;
}

.sport-booking--juegosalternativos .sport-booking__image {
    border-color: #4BB450;
}

.sport-booking--jujitsobrasileno .sport-booking__image {
    border-color: #9000FF;
}

.sport-booking--kayakpiraguismo .sport-booking__image {
    border-color: #C5393D;
}

.sport-booking--mantenimiento .sport-booking__image {
    border-color: #FF6600;
}

.sport-booking--mountainbike .sport-booking__image {
    border-color: #FF6600;
}

.sport-booking--multideporte .sport-booking__image {
    border-color: #F2E20D;
}

.sport-booking--olympicgymnastics .sport-booking__image {
    border-color: #9000FF;
}

.sport-booking--paddle .sport-booking__image {
    border-color: #FF6600;
}

.sport-booking--parkour .sport-booking__image {
    border-color: #4BB450;
}

.sport-booking--pilatessuelo .sport-booking__image {
    border-color: #C5393D;
}

.sport-booking--psicomotricidadinf .sport-booking__image {
    border-color: #0099FF;
}

.sport-booking--rhythmicgymnastics .sport-booking__image {
    border-color: #FF6600;
}

.sport-booking--rugby .sport-booking__image {
    border-color: #F2E20D;
}

.sport-booking--skate .sport-booking__image {
    border-color: #FF6600;
}

.sport-booking--skatingrink .sport-booking__image {
    border-color: #C5393D;
}

.sport-booking--soccer .sport-booking__image {
    border-color: #0099FF;
}

.sport-booking--soccer7 .sport-booking__image {
    border-color: #9000FF;
}

.sport-booking--soccerroom .sport-booking__image {
    border-color: #FF6600;
}

.sport-booking--surf .sport-booking__image {
    border-color: #FF6600;
}

.sport-booking--swimming .sport-booking__image {
    border-color: #FF6600;
}

.sport-booking--tabletennis .sport-booking__image {
    border-color: #C5393D;
}

.sport-booking--taekwondo .sport-booking__image {
    border-color: #C5393D;
}

.sport-booking--taichi .sport-booking__image {
    border-color: #0099FF;
}

.sport-booking--tennis .sport-booking__image {
    border-color: #0099FF;
}

.sport-booking--trial .sport-booking__image {
    border-color: #F2E20D;
}

.sport-booking--triathlon .sport-booking__image {
    border-color: #F2E20D;
}

.sport-booking--volleyball .sport-booking__image {
    border-color: #0099FF;
}

.sport-booking--walltennis .sport-booking__image {
    border-color: #9000FF;
}

.sport-booking--yoga .sport-booking__image {
    border-color: #4BB450;
}

/* Sport venues
   =============================================================== */
.sport-venue--yoga, .sport-venue--walltennis, .sport-venue--volleyball, .sport-venue--triathlon, .sport-venue--trial, .sport-venue--tennis, .sport-venue--taichi, .sport-venue--taekwondo, .sport-venue--tabletennis, .sport-venue--swimming, .sport-venue--surf, .sport-venue--soccerroom, .sport-venue--soccer7, .sport-venue--soccer, .sport-venue--skatingrink, .sport-venue--skate, .sport-venue--rugby, .sport-venue--rhythmicgymnastics, .sport-venue--psicomotricidadinf, .sport-venue--pilatessuelo, .sport-venue--parkour, .sport-venue--paddle, .sport-venue--olympicgymnastics, .sport-venue--multideporte, .sport-venue--mountainbike, .sport-venue--mantenimiento, .sport-venue--kayakpiraguismo, .sport-venue--jujitsobrasileno, .sport-venue--juegosalternativos, .sport-venue--juegodelpalo, .sport-venue--hiking, .sport-venue--handball, .sport-venue--halterofilia, .sport-venue--garrote, .sport-venue--frisbee, .sport-venue--footing, .sport-venue--fitness, .sport-venue--dominos, .sport-venue--defensapersonal, .sport-venue--dancefit, .sport-venue--climbingwall, .sport-venue--chikung, .sport-venue--chess, .sport-venue--canaryball, .sport-venue--bodyboard, .sport-venue--bmxtech, .sport-venue--bmxircuit, .sport-venue--bmxinitiation, .sport-venue--beachvolleyball, .sport-venue--beachsoccer, .sport-venue--basketball, .sport-venue--bailemoderno, .sport-venue--badminton, .sport-venue--athletics, .sport-venue--arena, .sport-venue--archery, .sport-venue--aerobic, .sport-venue--acrobaciasaereas, .sport-venue--acondicionamientofisico {
    display: block;
    text-align: center;
    margin-bottom: 1em;
    padding: 1em 0;
    color: #4d4d4d;
}

.sport-venue__image {
    width: 4em;
    height: 4em;
}

.sport-venue__title {
    display: block;
    font-size: 1.2em;
}

.sport-venue--acondicionamientofisico .sport-venue__image {
    border-color: #F2E20D;
}

.sport-venue--acrobaciasaereas .sport-venue__image {
    border-color: #C5393D;
}

.sport-venue--aerobic .sport-venue__image {
    border-color: #9000FF;
}

.sport-venue--archery .sport-venue__image {
    border-color: #0099FF;
}

.sport-venue--arena .sport-venue__image {
    border-color: #F2E20D;
}

.sport-venue--athletics .sport-venue__image {
    border-color: #9000FF;
}

.sport-venue--badminton .sport-venue__image {
    border-color: #C5393D;
}

.sport-venue--bailemoderno .sport-venue__image {
    border-color: #0099FF;
}

.sport-venue--basketball .sport-venue__image {
    border-color: #4BB450;
}

.sport-venue--beachsoccer .sport-venue__image {
    border-color: #FF6600;
}

.sport-venue--beachvolleyball .sport-venue__image {
    border-color: #F2E20D;
}

.sport-venue--bmxinitiation .sport-venue__image {
    border-color: #0099FF;
}

.sport-venue--bmxircuit .sport-venue__image {
    border-color: #4BB450;
}

.sport-venue--bmxtech .sport-venue__image {
    border-color: #9000FF;
}

.sport-venue--bodyboard .sport-venue__image {
    border-color: #4BB450;
}

.sport-venue--canaryball .sport-venue__image {
    border-color: #F2E20D;
}

.sport-venue--chess .sport-venue__image {
    border-color: #4BB450;
}

.sport-venue--chikung .sport-venue__image {
    border-color: #C5393D;
}

.sport-venue--climbingwall .sport-venue__image {
    border-color: #0099FF;
}

.sport-venue--dancefit .sport-venue__image {
    border-color: #0099FF;
}

.sport-venue--defensapersonal .sport-venue__image {
    border-color: #F2E20D;
}

.sport-venue--dominos .sport-venue__image {
    border-color: #C5393D;
}

.sport-venue--fitness .sport-venue__image {
    border-color: #C5393D;
}

.sport-venue--footing .sport-venue__image {
    border-color: #C5393D;
}

.sport-venue--frisbee .sport-venue__image {
    border-color: #9000FF;
}

.sport-venue--garrote .sport-venue__image {
    border-color: #9000FF;
}

.sport-venue--halterofilia .sport-venue__image {
    border-color: #4BB450;
}

.sport-venue--handball .sport-venue__image {
    border-color: #4BB450;
}

.sport-venue--hiking .sport-venue__image {
    border-color: #F2E20D;
}

.sport-venue--juegodelpalo .sport-venue__image {
    border-color: #FF6600;
}

.sport-venue--juegosalternativos .sport-venue__image {
    border-color: #4BB450;
}

.sport-venue--jujitsobrasileno .sport-venue__image {
    border-color: #9000FF;
}

.sport-venue--kayakpiraguismo .sport-venue__image {
    border-color: #C5393D;
}

.sport-venue--mantenimiento .sport-venue__image {
    border-color: #FF6600;
}

.sport-venue--mountainbike .sport-venue__image {
    border-color: #FF6600;
}

.sport-venue--multideporte .sport-venue__image {
    border-color: #F2E20D;
}

.sport-venue--olympicgymnastics .sport-venue__image {
    border-color: #9000FF;
}

.sport-venue--paddle .sport-venue__image {
    border-color: #FF6600;
}

.sport-venue--parkour .sport-venue__image {
    border-color: #4BB450;
}

.sport-venue--pilatessuelo .sport-venue__image {
    border-color: #C5393D;
}

.sport-venue--psicomotricidadinf .sport-venue__image {
    border-color: #0099FF;
}

.sport-venue--rhythmicgymnastics .sport-venue__image {
    border-color: #FF6600;
}

.sport-venue--rugby .sport-venue__image {
    border-color: #F2E20D;
}

.sport-venue--skate .sport-venue__image {
    border-color: #FF6600;
}

.sport-venue--skatingrink .sport-venue__image {
    border-color: #C5393D;
}

.sport-venue--soccer .sport-venue__image {
    border-color: #0099FF;
}

.sport-venue--soccer7 .sport-venue__image {
    border-color: #9000FF;
}

.sport-venue--soccerroom .sport-venue__image {
    border-color: #FF6600;
}

.sport-venue--surf .sport-venue__image {
    border-color: #FF6600;
}

.sport-venue--swimming .sport-venue__image {
    border-color: #FF6600;
}

.sport-venue--tabletennis .sport-venue__image {
    border-color: #C5393D;
}

.sport-venue--taekwondo .sport-venue__image {
    border-color: #C5393D;
}

.sport-venue--taichi .sport-venue__image {
    border-color: #0099FF;
}

.sport-venue--tennis .sport-venue__image {
    border-color: #0099FF;
}

.sport-venue--trial .sport-venue__image {
    border-color: #F2E20D;
}

.sport-venue--triathlon .sport-venue__image {
    border-color: #F2E20D;
}

.sport-venue--volleyball .sport-venue__image {
    border-color: #0099FF;
}

.sport-venue--walltennis .sport-venue__image {
    border-color: #9000FF;
}

.sport-venue--yoga .sport-venue__image {
    border-color: #4BB450;
}

/* Sport club images
   =============================================================== */
.sport-club-photos {
    position: relative;
}

.sport-club-photos__next, .sport-club-photos__prev {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: block;
    width: 2.5em;
    height: 2.5em;
    padding: 0.5em;
    font-size: 1em;
    line-height: 1em;
    background-color: #d5d5d5;
    border: 5px solid #ffffff;
    border-radius: 100%;
    box-shadow: 0 0 0 1px #d5d5d5;
    color: #ffffff;
    opacity: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.sport-club-photos:hover .sport-club-photos__next, .sport-club-photos:hover .sport-club-photos__prev {
    opacity: 1;
}
.sport-club-photos__next .fa, .sport-club-photos__prev .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.sport-club-photos__prev {
    left: -0.5em;
}

.sport-club-photos__next {
    right: -0.5em;
}

.sportclub-photo {
    display: block;
    width: 15em;
    height: 15em;
    margin: 3%;
    max-width: 100%;
    max-height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media all and (max-width: 1199px) {
    .sportclub-photo {
        width: 12em;
        height: 12em;
    }
}
@media all and (max-width: 767px) {
    .sportclub-photo {
        margin: 2% auto;
        width: 10em;
        height: 10em;
    }
}

/* Sport club images
   =============================================================== */
.sport-attr {
    display: block;
    color: #4d4d4d;
    text-align: center;
}

.sport-attr__icon {
    position: relative;
    display: inline-block;
    width: 2.5em;
    height: 2.5em;
    padding: 0.5em;
    font-size: 1em;
    line-height: 1em;
    background-color: #d5d5d5;
    border: 5px solid #ffffff;
    border-radius: 100%;
    box-shadow: 0 0 0 1px #d5d5d5;
    color: #ffffff;
}
.sport-attr__icon .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

stop lines {
    display: block;
}
stop lines:empty {
    display: none;
}
stop description {
    margin-left: 0.5em;
}
stop number {
    display: inline-block;
}
stop number:empty {
    display: none;
}
stop number:empty + description {
    display: inline-block;
    margin-left: 0;
}

/* ===============================================================
   $BOOK DATA (DNN Module)
   =============================================================== */
/* Box
   =============================================================== */
.dnn-box {
    position: relative;
    display: block;
    width: 100%;
    padding: 0.5em 0em 0.5em 6em;
    color: #4d4d4d;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    overflow: hidden;
}
.dnn-box:visited {
    color: #4d4d4d;
}
.dnn-box:hover, .dnn-box:active, .dnn-box:focus {
    color: #4d4d4d;
}

.box__image {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    border-radius: 0.5em;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.box__image {
    width: 5em !important;
    height: 5em !important;
}

/* Row line
   =============================================================== */
.dnnForm th,
.dnnForm td {
    border-top: 0;
}

.slot {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    font-size: 1.8em;
    background-color: #ededed;
    border-radius: 100%;
    overflow: hidden;
    position: relative;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 1px #ededed;
    margin: 0.1em;
    color: #8c8c8c;
    font-weight: bold;
    cursor: default;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -ms-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.slot--available {
    color: #ffffff;
    background-color: #60C972;
    box-shadow: 0 0 0 1px #60C972;
    cursor: pointer;
}
.slot--available:hover, .slot--available:focus {
    border-width: 0;
    background-color: #41B6E6;
    box-shadow: 0 0 0 1px #41B6E6;
}

.slot--selected {
    color: #ffffff;
    border-width: 0;
    background-color: #41B6E6;
    box-shadow: 0 0 0 1px #41B6E6;
}

.slot__time {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.slot__hour,
.slot__minutes {
    display: block;
    font-size: 1rem;
    line-height: 0.95;
}

.slot__minutes {
    font-size: 0.9rem;
}

.fromto-head {
    position: relative;
    display: block;
    color: #4d4d4d;
    /*padding-left: 1em;*/
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    /*&:before {
        position: absolute;
        top: 50%;
        left: 0;
        content: "\f107";
        font-family: "FontAwesome";
        font-size: 1.3em;
        @include transform(translate(0, -50%) rotate(0deg));
        @include transition(transform 0.2s linear);
    }

    &.active:before {
        @include transform(translate(0, -50%) rotate(-90deg));
    }*/
}
.fromto-head:hover, .fromto-head:focus {
    color: #4d4d4d;
    text-decoration: none;
}
.fromto-head:visited {
    color: #4d4d4d;
}
.fromto-head .hour-selected {
    float: right;
}

.status {
    position: relative;
}

.status__badge {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    transform: none;
}

.badge {
    display: block;
    border-radius: 0.5em;
    background-color: #41B6E6;
    color: #ffffff;
    padding: 0.2em 0.5em;
    margin: 0.5em 0;
}

.badge--inline {
    display: inline-block;
    margin: 0 0.5em;
    font-size: 0.8rem;
}

.status--coming-soon {
    background-color: #206E9C;
}

.status--open {
    background-color: #1CB254;
}

.status--raffle {
    background-color: #e3bc55;
}

.status--in-progress {
    background-color: #E38755;
}

.status--deleted {
    background-color: #8c8c8c;
}

.status--closed {
    background-color: #E35555;
}

.status--unknown {
    background-color: #222222;
}

.status--info {
    background-color: #42a5f5;
}

.status--success {
    background-color: #66bb6a;
}

.status--warning {
    background-color: #ffa726;
}

.status--error {
    background-color: #eb2521;
}

.status--payed {
    background-color: #57BE3C;
}

.status--current-quota-payed {
    background-color: #3A5698;
}

.status--not-payed {
    background-color: #E0464A;
}

.status--not-confirmed {
    background-color: #E28C47;
}

.status--pass-enabled {
    background-color: #57BE3C;
}

.status--pending-payment {
    background-color: #E0464A;
}

.status--pending-pickup {
    background-color: #3A5698;
}

.status--pending-renewal {
    background-color: #E38755;
}

.status--paymentletter-downloaded {
    background-color: #e3bc55;
}

.badge--unknown {
    background-color: #222222;
}

.badge--info {
    background-color: #42a5f5;
}

.badge--success {
    background-color: #66bb6a;
}

.badge--warning {
    background-color: #ffa726;
}

.badge--error {
    background-color: #eb2521;
}

.badge--waiting-list {
    background-color: #FFD700;
    color: #4d4d4d;
    font-size: 1rem;
}

.enrollment-badge {
    display: inline-block;
    border-radius: 0.5em;
    background-color: #41B6E6;
    color: #ffffff;
    padding: 0.2em 0.5em;
    margin: 0.5em 0;
    font-size: 0.8rem;
}

.enrollment-badge--not-valid {
    background-color: #222222;
}

.enrollment-badge--canceled {
    background-color: #F52727;
}

.enrollment-badge--creation {
    background-color: #FFD700;
}

.enrollment-badge--pending-payment {
    background-color: #206E9C;
}

.enrollment-badge--paid {
    background-color: #60C972;
}

.enrollment-badge--pending-confirmation {
    background-color: #E28C47;
}

.enrollment-badge--unknown {
    background-color: #8c8c8c;
}

.enrollment-badge--waiting-list {
    background-color: #FFD700;
    color: #4d4d4d;
}

/************
************************ $SITE
************/
@-ms-viewport {
    width: device-width;
}
@-o-viewport {
    width: device-width;
}
@viewport {
    width: device-width;
}
html {
    background: #fafafa;
    font-size: 1rem;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: transparent;
    font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: #4d4d4d;
}

/* ===============================================================
   $DNN TOP BAR
   =============================================================== */
.loginGroup,
.registerGroup {
    display: block;
    float: right;
}

a[id*=dnn_dnnUser_avatar] {
    padding: 0;
}
a[id*=dnn_dnnUser_avatar] img {
    display: block;
    width: auto;
    height: 32px;
    margin: 0;
    padding: 0;
}

.userNotifications, .userMessages {
    display: none !important;
}
.userNotifications a, .userMessages a {
    position: relative;
    display: inline-block;
    text-indent: -99999px;
    width: 32px;
    border-right: 1px solid #1990c1;
}
.userNotifications a:hover, .userMessages a:hover {
    /*border-color: $color-primary-light;*/
    border-color: #41B6E6;
}
.userNotifications a:after, .userMessages a:after {
    position: absolute;
    left: 0;
    width: 100%;
    font-family: "FontAwesome" !important;
    text-indent: 0;
    line-height: 32px;
    text-align: center;
}

.userMessages a:after {
    content: "\f075";
}

.userNotifications a:after {
    content: "\f0f3";
}

.user-panel.logged-in {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 32px;
    background-color: #222222;
}
.user-panel.logged-in .userProfileImg a {
    position: absolute;
    left: 0;
    bottom: 0;
}
.user-panel.logged-in .userProfileImg img {
    width: 32px;
    height: 32px;
}
.user-panel.logged-in .userDisplayName a {
    position: absolute;
    left: 32px;
    bottom: 0;
    padding: 0 0.5em;
    width: 196px;
    color: #ffffff;
    font-size: 0.9em;
    line-height: 32px;
}
.user-panel.logged-in .site-login {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
    text-indent: -99999px;
    width: 32px;
    height: 32px;
    color: #ffffff;
    background-color: #222222;
}
.user-panel.logged-in .site-login:after {
    content: "\f08b";
    position: absolute;
    left: 0;
    width: 100%;
    font-family: "FontAwesome" !important;
    text-indent: 0;
    line-height: 32px;
    text-align: center;
}
.user-panel.logged-out {
    position: absolute;
    bottom: 1em;
    right: 0;
    width: 100%;
    text-align: center;
}
.user-panel.logged-out .site-login {
    margin-bottom: 0.5em;
    padding: 0.4em 1em;
    min-width: 6em;
    background-color: #ffffff;
    border-color: #ffffff;
    color: #41B6E6;
}
.user-panel.logged-out .site-login:visited {
    color: #41B6E6;
}
.user-panel.logged-out .site-login:active, .user-panel.logged-out .site-login:focus, .user-panel.logged-out .site-login:hover {
    background-color: #f5fbfe;
    color: #e6e6e6;
}
.user-panel .loginGroup,
.user-panel .registerGroup {
    display: block;
    float: none;
}
.user-panel .loginGroup ul,
.user-panel .registerGroup ul {
    float: none;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Campo de búsqueda desplegable
   =============================================================== */
.searchGroup {
    position: relative;
    width: 0;
    padding-left: 32px;
    min-width: 32px;
    height: 32px;
    overflow: visible;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.searchGroup.search-open {
    width: 25%;
}
.searchGroup.search-open input {
    padding: 0 0.5em;
}

.searchInputContainer {
    position: relative;
    display: block !important;
    margin: 0 !important;
}
.searchInputContainer input {
    background: #950078;
    width: 100%;
    min-width: 0;
    line-height: 32px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    color: #ffffff;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.searchInputContainer input:focus {
    border: none;
    box-shadow: none;
    outline: none;
}
.searchInputContainer input::-webkit-input-placeholder {
    color: #ffffff;
}
.searchInputContainer input::-moz-placeholder {
    color: #ffffff;
}
.searchInputContainer input:-ms-input-placeholder {
    color: #ffffff;
}
.searchInputContainer input:-moz-placeholder {
    color: #ffffff;
}
.searchInputContainer .dnnSearchBoxClearText,
.searchInputContainer a.dnnSearchBoxClearText {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    height: 100%;
    cursor: pointer;
    margin: 0;
    padding: 0;
    background: none;
    text-align: center;
}
.searchInputContainer .dnnSearchBoxClearText.dnnShow,
.searchInputContainer a.dnnSearchBoxClearText.dnnShow {
    background: none;
}
.searchInputContainer .dnnSearchBoxClearText:after,
.searchInputContainer a.dnnSearchBoxClearText:after {
    position: relative;
    z-index: 10;
    display: none;
    content: "\f00d";
    font-family: "FontAwesome";
    color: #ffffff;
    -webkit-transition: color 0.2s linear;
    -moz-transition: color 0.2s linear;
    -ms-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
}
.searchInputContainer .dnnSearchBoxClearText.dnnShow:after,
.searchInputContainer a.dnnSearchBoxClearText.dnnShow:after {
    display: block;
}
.searchInputContainer .dnnSearchBoxClearText:visited, .searchInputContainer .dnnSearchBoxClearText:hover, .searchInputContainer .dnnSearchBoxClearText:active, .searchInputContainer .dnnSearchBoxClearText:focus,
.searchInputContainer a.dnnSearchBoxClearText:visited,
.searchInputContainer a.dnnSearchBoxClearText:hover,
.searchInputContainer a.dnnSearchBoxClearText:active,
.searchInputContainer a.dnnSearchBoxClearText:focus {
    background: none;
}
.searchInputContainer .dnnSearchBoxClearText:visited:after, .searchInputContainer .dnnSearchBoxClearText:hover:after, .searchInputContainer .dnnSearchBoxClearText:active:after, .searchInputContainer .dnnSearchBoxClearText:focus:after,
.searchInputContainer a.dnnSearchBoxClearText:visited:after,
.searchInputContainer a.dnnSearchBoxClearText:hover:after,
.searchInputContainer a.dnnSearchBoxClearText:active:after,
.searchInputContainer a.dnnSearchBoxClearText:focus:after {
    color: #1990c1;
}

ul.searchSkinObjectPreview {
    position: absolute;
    z-index: 999;
    top: 100%;
    right: 0;
    width: 100%;
    background: none;
    background-color: #ffffff;
    border: 1px solid #41B6E6;
    list-style: none;
}
ul.searchSkinObjectPreview li {
    display: block;
    float: none;
    margin: 0;
    padding: 0.5em;
    border-top: 0;
    color: #4d4d4d;
    cursor: pointer;
}
ul.searchSkinObjectPreview li:hover {
    background-color: white;
    color: #4d4d4d;
}
ul.searchSkinObjectPreview li + li {
    border-top: #1990c1;
}
ul.searchSkinObjectPreview li.searchSkinObjectPreview_group {
    padding: 0.5em;
    color: #4d4d4d;
    border-bottom: 2px solid #41B6E6;
}
ul.searchSkinObjectPreview li.searchSkinObjectPreview_group:hover {
    background-color: transparent;
    color: #4d4d4d;
}
ul.searchSkinObjectPreview li:last-child {
    padding: 0.5em;
    font-size: 1em;
    color: #ffffff;
    background-color: #41B6E6;
    -webkit-transition: background-color 0.2s linear;
    -moz-transition: background-color 0.2s linear;
    -ms-transition: background-color 0.2s linear;
    -o-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
}
ul.searchSkinObjectPreview li:last-child:hover {
    background-color: #b2e1f5;
}
ul.searchSkinObjectPreview li:last-child:hover a.searchSkinObjectPreview_more {
    color: #1990c1;
}
ul.searchSkinObjectPreview li a.searchSkinObjectPreview_more {
    display: block;
    text-align: center;
    color: #ffffff;
    font-size: 1em;
}
ul.searchSkinObjectPreview span {
    display: block;
    color: #41B6E6;
}

[id*=dnn_dnnSearch_cmdSearch] {
    display: none !important;
}

.btn-search {
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    background-color: #C800A1;
    width: 32px;
    height: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 0.8rem;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.btn-search:visited {
    color: #ffffff;
}
.btn-search:hover {
    text-decoration: none;
    color: #1990c1;
    background-color: #C800A1;
}
.btn-search:active, .btn-search:focus {
    text-decoration: none;
    outline: none;
    background-color: #C800A1;
}
.btn-search.btn-search-open {
    background-color: #C800A1;
}
.btn-search .fa-search {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ===============================================================
   $EVENTS HEADER (for places)
   =============================================================== */
.heading {
    margin-top: 1em;
    margin-bottom: 0.5em;
    text-align: center;
    border: none;
}
.heading .heading__icon {
    position: relative;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    background-color: #41B6E6;
    color: #ffffff;
    border-radius: 100%;
    border: 5px solid #ffffff;
    box-shadow: 0 0 0 1px #41B6E6;
    text-align: center;
    vertical-align: middle;
}
.heading .heading__icon .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 0.7em;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

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

.place--red, .place--blue, .place--green, .place--orange {
    display: block;
    text-align: center;
    margin-bottom: 1em;
    padding: 2em 0;
    color: #4d4d4d;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    cursor: pointer;
}
.place--red:hover, .place--blue:hover, .place--green:hover, .place--orange:hover, .place--red:focus, .place--blue:focus, .place--green:focus, .place--orange:focus, .place--red:active, .place--blue:active, .place--green:active, .place--orange:active {
    outline: none;
    color: #4d4d4d;
    text-decoration: none;
}
.place--red:visited, .place--blue:visited, .place--green:visited, .place--orange:visited {
    background-color: transparent;
    color: #4d4d4d;
}

.place__icon {
    display: inline-block;
    border-radius: 100%;
    width: 10em;
    height: 10em;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
@media all and (max-width: 991px) {
    .place__icon {
        width: 9em;
        height: 9em;
    }
}
@media all and (max-width: 767px) {
    .place__icon {
        width: 8em;
        height: 8em;
    }
}

.place__name {
    display: block;
    font-size: 1.3em;
    margin-top: 0.5em;
}

.place--orange .place__icon {
    border-color: #F5631E;
}

.place--green .place__icon {
    border-color: #56B552;
}

.place--blue .place__icon {
    border-color: #4093FD;
}

.place--red .place__icon {
    border-color: #BC3640;
}

.place-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
@media (min-width: 768px) {
    .place-list {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.place-list__item {
    width: 100%;
    padding: 1em;
    flex-shrink: 0;
}
.place-list__item .place__icon {
    width: 10em;
    height: 10em;
}
@media (min-width: 768px) {
    .place-list__item {
        width: 12em;
    }
    .place-list__item .place__icon {
        width: 8em;
        height: 8em;
    }
}

.place-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
@media (min-width: 768px) {
    .place-list {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.place-list__item {
    width: 100%;
    padding: 1em;
    flex-shrink: 0;
}
.place-list__item .place__icon {
    width: 10em;
    height: 10em;
}
.place-list__item:hover .place__icon {
    transform: scale(1.1);
}
@media (min-width: 768px) {
    .place-list__item {
        width: 12em;
    }
    .place-list__item .place__icon {
        width: 8em;
        height: 8em;
    }
}

.admin-panel {
    padding: 2em 0.5em;
    margin: 0;
    text-align: center;
    background-color: #ededed;
}
.admin-panel [class*=btn--] {
    margin: 0 0.5em;
}
.admin-panel [class*=btn--] .fa {
    margin-right: 0.3em;
}

/* ===============================================================
   $SLICK CAROUSEL
   =============================================================== */
.slick {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.slick-home {
    overflow: hidden;
}
.slick-home svg {
    position: absolute;
    z-index: 1;
    bottom: -1px;
    left: 0;
    width: 100%;
    color: #fafafa;
    filter: drop-shadow(0px -6px 0 rgb(200, 0, 161));
}

.slide {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.slide .btn--edit {
    position: absolute;
    top: 1em;
    left: 50%;
    transform: translate(-50%, 0);
}

.slide__caption {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 0.5em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
    padding: 1em;
    width: 90%;
    min-height: 5em;
    background-color: #ffffff;
    color: #4d4d4d;
}
@media (min-width: 768px) {
    .slide__caption {
        top: 40%;
        width: 60%;
    }
}
.slide__caption .btn {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.slide__title {
    font-size: 1.3rem;
}

.slide__description {
    display: block;
    font-size: 1rem;
}

.slide__image {
    width: 100%;
    height: auto;
    max-height: 600px;
    -o-object-fit: cover;
    object-fit: cover;
}

.slide__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.slide-hidden .slide__content {
    background-color: rgba(34, 34, 34, 0.8);
}

.btn-prev, .btn-next {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3em;
    height: 3em;
    margin: 0;
    padding: 0;
    border-radius: 100%;
    background-color: #C800A1;
    border: 4px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
    transition: all 0.2s linear;
    font-size: 1em;
    line-height: 0;
    color: #ffffff;
    cursor: pointer;
    visibility: visible;
    opacity: 1;
}
.btn-prev:hover, .btn-prev:focus, .btn-prev:active, .btn-next:hover, .btn-next:focus, .btn-next:active {
    background-color: #950078;
    border-width: 0;
}
@media (min-width: 768px) {
    .btn-prev, .btn-next {
        top: 40%;
        transform: translate(0, -50%);
    }
}

.btn-prev {
    left: 2em;
    display: none;
}
@media (min-width: 768px) {
    .btn-prev {
        display: flex;
    }
}

.btn-next {
    bottom: 1em;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
    .btn-next {
        top: 40%;
        left: auto;
        right: 2em;
        bottom: auto;
    }
}

.slick:hover .btn-prev,
.slick:hover .btn-next {
    visibility: visible;
    opacity: 1;
}

.slick-dots {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
}
.slick-dots li {
    display: inline-block;
}
.slick-dots button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots button:before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    opacity: 0.9;
}
.slick-dots .slick-active button:before {
    border: 1px solid #ffffff;
    background-color: #ffffff;
}
@media screen and (max-width: 1199px) {
    .slick-dots {
        display: none !important;
    }
}

.btn--edit {
    position: relative;
    z-index: 5;
    background-color: #41B6E6;
    color: #ffffff;
}
.btn--edit:visited {
    background-color: #41B6E6;
    color: #ffffff;
}
.btn--edit:active, .btn--edit:focus, .btn--edit:hover {
    background-color: #9bd9f2;
    color: #115e7d;
}

/* Slick Rss
   =============================================================== */
.slick--rss {
    margin: 2em 0;
    text-align: left;
}
.slick--rss .slick-dots button:before {
    border: 1px solid #41B6E6;
    color: #41B6E6;
}
.slick--rss .slick-dots .slick-active button:before {
    border: 1px solid #41B6E6;
    background-color: #41B6E6;
}

.page-footer {
    position: relative;
    background-color: transparent;
    color: #ffffff;
    padding: 2em 0 0;
    text-align: center;
}
@media all and (min-width: 768px) {
    .page-footer {
        text-align: left;
    }
}
.page-footer .dnn-container__title {
    color: #ffffff;
}
.page-footer h1, .page-footer h2, .page-footer h3, .page-footer h4, .page-footer h5, .page-footer h6 {
    color: #ffffff;
}

.footer-content {
    background-color: #404040;
}

.footer-shape {
    display: block;
    width: 100%;
    color: #404040;
    filter: drop-shadow(0 -6px 0 rgb(200, 0, 161));
}

.footer-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-nav__link {
    color: #ffffff;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.footer-nav__link:visited {
    color: #ffffff;
}
.footer-nav__link:active, .footer-nav__link:focus, .footer-nav__link:hover {
    color: #41B6E6;
    outline: none;
}
.footer-nav__link .fa {
    margin-right: 3px;
    color: #41B6E6;
}

.copyright {
    text-align: center;
    color: #ffffff;
    font-size: 0.8em;
    line-height: 1;
    padding-bottom: 0.3em;
}

.patrocinador {
    width: 100px;
    height: auto;
}
@media all and (min-width: 768px) {
    .patrocinador {
        width: 150px;
    }
}

.colaborador {
    width: 70px;
    height: auto;
}

.colaborador--almar {
    width: 100px;
}

/* ===============================================================
   $BLOG TEMPLATE
   =============================================================== */
div[id*=_ctlManagement_pnlManagement] {
    height: 0 !important;
}
div[id*=_ctlManagement_pnlManagement] > div {
    display: none !important;
}
.personabar-visible div[id*=_ctlManagement_pnlManagement] {
    height: auto !important;
    position: absolute;
    text-align: center;
    z-index: 999;
    top: 1em;
    left: 50%;
    transform: translate(-50%, 0);
}
.personabar-visible div[id*=_ctlManagement_pnlManagement] > div {
    display: block !important;
}

.summary {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    margin: 1em 0 2em;
    padding: 0 0 1em 0;
    border-radius: 0.5em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
    background-color: #ffffff;
    overflow: hidden;
}
@media (min-width: 768px) {
    .summary {
        flex-direction: row;
        align-items: center;
        padding: 1em;
    }
}

.summary__image {
    position: relative;
}
.summary__image picture {
    height: 250px;
    width: 100%;
    object-fit: cover;
    max-width: 100%;
}
.summary__image img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    max-width: 100%;
}
@media (min-width: 768px) {
    .summary__image img {
        height: 200px;
    }
}
@media (min-width: 768px) {
    .summary__image {
        flex-shrink: 0;
        align-self: flex-start;
        width: 10em;
        height: 10em;
        align-self: center;
    }
    .summary__image img {
        border-radius: 100%;
        width: 10em;
        height: 10em;
    }
    .summary__image .oad-shape {
        display: none;
    }
}

.summary__caption {
    padding-left: 1em;
    padding-right: 1em;
    flex-grow: 1;
}
@media (min-width: 768px) {
    .summary__caption {
        padding-right: 0;
    }
}

.summary__date {
    color: #8c8c8c;
    font-weight: 600;
}

.summary__description {
    margin-top: 0.5em;
    display: flex;
    flex-direction: column;
    width: 100%;
}
@media (min-width: 768px) {
    .summary__description .btn {
        align-self: flex-end;
    }
}

.post-header img {
    width: 100%;
}

.blog__header {
    position: relative;
    padding: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.blog__header .header-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 65%;
    padding: 25% 0;
    background-color: rgba(255, 255, 255, 0.6);
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
@media all and (max-width: 991px) {
    .blog__header .header-caption {
        width: 80%;
    }
}
@media all and (max-width: 767px) {
    .blog__header .header-caption {
        width: 100%;
        padding: 50% 0;
    }
}

.post--summary {
    display: flex;
    flex-direction: row;
    flex-basis: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
    border-radius: 0.5em;
    background-color: #ffffff;
    margin-top: 2em;
}
.post--summary p {
    padding: 0;
}

.post__summary-image {
    float: left;
    margin-right: 1em;
    margin-bottom: 1em;
    width: 12em;
    height: auto;
}

.post__header,
.post__summary-body {
    padding-left: 13em;
}

.post__date {
    font-style: italic;
    color: #8c8c8c;
}

.post__summary-body {
    margin-top: 1em;
}

.post__content {
    width: 65%;
    margin: 0 auto;
}
.post__content img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 2em 0;
}
.post__content blockquote {
    margin: 2em 0;
}

.back-link {
    display: block;
    margin: 0.5em 0 1em;
}

.btn--share {
    position: relative;
    display: inline-block;
    width: 2.5em;
    height: 2.5em;
    margin: 0.5em;
    background-color: #41B6E6;
    border-radius: 100%;
    border: 5px solid #ffffff;
    box-shadow: 0 0 0 1px #41B6E6;
    color: #ffffff;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.btn--share:visited {
    color: #ffffff;
}
.btn--share.facebook:hover, .btn--share.facebook:focus {
    background-color: #3b5998;
    box-shadow: 0 0 0 1px #3b5998;
    color: #ffffff;
}
.btn--share.twitter:hover, .btn--share.twitter:focus {
    background-color: #55acee;
    box-shadow: 0 0 0 1px #55acee;
    color: #ffffff;
}
.btn--share.rss:hover, .btn--share.rss:focus {
    background-color: #f26522;
    box-shadow: 0 0 0 1px #f26522;
    color: #ffffff;
}
.btn--share .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.tags {
    margin: 0;
    padding: 0;
    text-align: center;
}
.tags li {
    display: inline-block;
    margin: 0.5em;
}

.tag__link {
    padding: 0.3em 0.8em;
    border-radius: 5em;
    color: #222222;
    background-color: #41B6E6;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.tag__link:visited {
    color: #222222;
}
.tag__link:hover, .tag__link:focus {
    background-color: #115e7d;
    color: #ffffff;
}

@media all and (max-width: 991px) {
    .post__summary-image {
        width: 8em;
    }
    .post__header,
    .post__summary-body {
        padding-left: 9em;
    }
    .post__content {
        width: 80%;
    }
}
@media all and (max-width: 767px) {
    .post__summary-image {
        width: 5em;
        height: 5em;
    }
    .post__title {
        font-size: 1.1em;
        margin-bottom: 0.5em;
        margin-top: 0.3em;
    }
    .post__header,
    .post__summary-body {
        padding-left: 6em;
    }
    .post__summary-body {
        display: none;
    }
    .post__content {
        width: 100%;
    }
}
.wide-heading {
    position: relative;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.wide-heading__image {
    position: relative;
    color: #ffffff;
}
.wide-heading__image:after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backdrop-filter: blur(8px);
}
.wide-heading__image img {
    width: 100%;
    object-fit: cover;
    max-width: 100%;
}
.wide-heading__image svg {
    position: absolute;
    z-index: 2;
    bottom: -1px;
    left: 0;
    width: 100%;
}
@media (min-width: 992px) {
    .wide-heading__image {
        color: #fafafa;
    }
}

.wide-heading__caption {
    padding: 1em;
    background-color: #ffffff;
    text-align: center;
    color: #222222;
}
.wide-heading__caption svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fafafa;
}
@media (min-width: 992px) {
    .wide-heading__caption {
        position: absolute;
        z-index: 2;
        top: 50%;
        left: 50%;
        border-radius: 0.5em;
        box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
        transform: translate(-50%, -50%);
    }
    .wide-heading__caption svg {
        display: none;
    }
}
@media (min-width: 1200px) {
    .wide-heading__caption {
        top: 40%;
    }
}

/* ===============================================================
   $LOGIN PAGE
   =============================================================== */
.login-header {
    background-image: url(../images/login-header.jpg);
    margin-bottom: 0;
}

.login-wrapper,
.register-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 5em 1em 3em;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.85);
}
@media all and (min-width: 991px) {
    .login-wrapper,
    .register-wrapper {
        width: 80%;
    }
}
.login-wrapper h2,
.register-wrapper h2 {
    padding-bottom: 1em;
}
.login-wrapper .LoginPanel,
.register-wrapper .LoginPanel {
    width: 100%;
    margin: 0;
    padding: 0;
}
.login-wrapper .dnnFormItem,
.register-wrapper .dnnFormItem {
    display: block;
    width: auto;
    text-align: center;
}
.login-wrapper .dnnFormItem > .dnnFormLabel,
.register-wrapper .dnnFormItem > .dnnFormLabel {
    margin: 0;
    width: auto;
}
.login-wrapper .dnnFormItem .dnnLabel,
.register-wrapper .dnnFormItem .dnnLabel {
    display: none;
    margin: 0;
}
.login-wrapper input[type=text],
.login-wrapper input[type=email],
.login-wrapper input[type=search],
.login-wrapper input[type=password],
.login-wrapper select, .login-wrapper textarea,
.register-wrapper input[type=text],
.register-wrapper input[type=email],
.register-wrapper input[type=search],
.register-wrapper input[type=password],
.register-wrapper select,
.register-wrapper textarea {
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-transition: background-color 0.2s linear;
    -moz-transition: background-color 0.2s linear;
    -ms-transition: background-color 0.2s linear;
    -o-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
}
.login-wrapper .dnnBoxLabel,
.register-wrapper .dnnBoxLabel {
    margin-bottom: 0;
}
.login-wrapper .dnnLoginService,
.register-wrapper .dnnLoginService {
    margin-top: 2em;
    text-align: center;
}
.login-wrapper .dnnProfile .dnnFormItem .dnnLabel,
.register-wrapper .dnnProfile .dnnFormItem .dnnLabel {
    display: block;
    float: none;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.login-wrapper .dnnProfile .dnnFormItem a.dnnFormHelp,
.register-wrapper .dnnProfile .dnnFormItem a.dnnFormHelp {
    display: none;
}
.login-wrapper .dnnProfile .dnnLeft,
.register-wrapper .dnnProfile .dnnLeft {
    float: none;
}
.login-wrapper .dnnProfile .dnnFormRadioButtons,
.register-wrapper .dnnProfile .dnnFormRadioButtons {
    float: none;
}
.login-wrapper .dnnProfile .dnnFormItem input[type=radio],
.register-wrapper .dnnProfile .dnnFormItem input[type=radio] {
    margin-left: 1em;
}
.login-wrapper .dnnProfile .dnnActions li,
.register-wrapper .dnnProfile .dnnActions li {
    float: none;
}
.login-wrapper .dnnProfile .dnnActions,
.register-wrapper .dnnProfile .dnnActions {
    text-align: right;
}
@media all and (max-width: 767px) {
    .login-wrapper input[type=text],
    .login-wrapper input[type=password],
    .register-wrapper input[type=text],
    .register-wrapper input[type=password] {
        width: 100%;
    }
    .login-wrapper .dnnFormItem select,
    .register-wrapper .dnnFormItem select {
        width: 100%;
    }
    .login-wrapper .dnnLabel,
    .register-wrapper .dnnLabel {
        width: 100%;
    }
    .login-wrapper .dnnPrimaryAction, .login-wrapper .dnnFormItem input[type=button], .dnnFormItem .login-wrapper input[type=button],
    .login-wrapper .dnnFormItem input[type=submit],
    .dnnFormItem .login-wrapper input[type=submit],
    .login-wrapper .dnnSecondaryAction,
    .login-wrapper .dnnFormItem input[type=reset],
    .dnnFormItem .login-wrapper input[type=reset],
    .login-wrapper .dnnSearchResultPanel a[href="#byRelevance"],
    .dnnSearchResultPanel .login-wrapper a[href="#byRelevance"],
    .login-wrapper .dnnSearchResultPanel a[href="#byDate"],
    .dnnSearchResultPanel .login-wrapper a[href="#byDate"],
    .register-wrapper .dnnPrimaryAction,
    .register-wrapper .dnnFormItem input[type=button],
    .dnnFormItem .register-wrapper input[type=button],
    .register-wrapper .dnnFormItem input[type=submit],
    .dnnFormItem .register-wrapper input[type=submit],
    .register-wrapper .dnnSecondaryAction,
    .register-wrapper .dnnFormItem input[type=reset],
    .dnnFormItem .register-wrapper input[type=reset],
    .register-wrapper .dnnSearchResultPanel a[href="#byRelevance"],
    .dnnSearchResultPanel .register-wrapper a[href="#byRelevance"],
    .register-wrapper .dnnSearchResultPanel a[href="#byDate"],
    .dnnSearchResultPanel .register-wrapper a[href="#byDate"] {
        width: 100%;
    }
    .login-wrapper .dnnLoginActions,
    .register-wrapper .dnnLoginActions {
        display: block;
        width: 100%;
    }
    .login-wrapper .dnnLoginActions .dnnActions,
    .register-wrapper .dnnLoginActions .dnnActions {
        display: block;
        margin: 0;
        padding: 0;
    }
    .login-wrapper .dnnLoginActions .dnnActions li,
    .register-wrapper .dnnLoginActions .dnnActions li {
        float: none;
    }
}

/* ===============================================================
   $REGISTER PAGE
   =============================================================== */
.register-header {
    background-image: url(../images/login-header.jpg);
}

.register-wrapper .dnnForm .dnnFormItem {
    text-align: center;
}
.register-wrapper .dnnFormItem .dnnLabel {
    display: block;
    float: none;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.register-wrapper .dnnFormItem a.dnnFormHelp {
    display: none;
}
.register-wrapper .dnnLeft {
    float: none;
}
.register-wrapper .dnnFormRadioButtons {
    float: none;
}
.register-wrapper .dnnFormItem input[type=radio] {
    margin-left: 1em;
}
.register-wrapper .dnnActions li {
    float: none;
}
.register-wrapper .dnnActions {
    text-align: right;
}
.register-wrapper .g-recaptcha {
    display: inline-block;
    float: none;
}

/* ===============================================================
   $ERROR 404 PAGE
   =============================================================== */
.error-header {
    background-image: url(../images/error-header.jpg);
}

/* ===============================================================
   $FAQ
   =============================================================== */
.faq-header {
    background-image: url(../images/faq-header.jpg);
}

.faq-panel {
    border: none;
}

.panel-heading {
    padding: 0.5em 0;
}

.edit-faq {
    margin-right: 1em;
}

.faq-link .fa {
    margin-right: 0.3em;
}

.faq-panel__body {
    padding: 0 1em;
}

.rssLine {
    display: none;
}

.total-inscriptions {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    padding-right: 2em;
}

/* ===============================================================
   $TOURS
   =============================================================== */
.tours-panel {
    position: fixed;
    bottom: 1em;
    right: 1em;
    z-index: 9000;
}
.tours-panel.open {
    animation: none;
}

.dropdown-menu--tours {
    top: auto;
    bottom: 100%;
    right: 0;
    left: auto;
    min-width: 280px;
    margin-bottom: -4px;
    border: 1px solid #C800A1;
    border-radius: 0.5em;
    border-bottom-right-radius: 0;
    background-color: #ffffff;
    color: #41B6E6;
    animation-name: fadeInUp;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.btn--tours {
    display: block;
    font-size: 1.5em;
    width: 3em;
    height: 3em;
    position: relative;
    border-radius: 100%;
    background-color: #C800A1;
    border-color: #ffffff;
    color: #ffffff;
    animation: vibrate-2 2s linear infinite both;
}
.btn--tours:visited {
    color: #ffffff;
}
.btn--tours:active, .btn--tours:focus, .btn--tours:hover {
    border-width: 4px;
    color: #ffffff;
    outline: none;
    animation: none;
}
.open .btn--tours {
    border-radius: 100% 0 100% 100%;
}
.btn--tours .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tour-link {
    display: block;
    color: #41B6E6;
    padding: 0.2em 1em;
}
.tour-link:visited {
    color: #41B6E6;
}

.pagination {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    list-style: none;
}

.pagination__item {
    margin: 0 0.25em;
}

.pagination__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    border-radius: 100%;
    background-color: #41B6E6;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
    transition: all 0.2s ease-in-out;
}
.pagination__link:hover, .pagination__link:focus {
    text-decoration: none;
    color: #ffffff;
    background-color: #136f94;
    box-shadow: 0 5px 10px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    outline: none;
}
.pagination__link:visited {
    color: #ffffff;
}

.pagination__link--disabled {
    background-color: #ededed;
    color: #8c8c8c;
    box-shadow: none;
}
.pagination__link--disabled:hover, .pagination__link--disabled:focus {
    text-decoration: none;
    background-color: #ededed;
    color: #8c8c8c;
    outline: none;
    box-shadow: none;
}
.pagination__link--disabled:visited {
    color: #8c8c8c;
}

.feature-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    padding-top: 1em;
    padding-bottom: 1em;
}

.feature {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1em;
    padding: 0;
    color: #4d4d4d;
    cursor: pointer;
    background-color: #ffffff;
    border-radius: 0.5em;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
    transition: all 0.2s ease-in-out;
    width: calc(50% - 2em);
    margin-left: 1em;
    margin-right: 1em;
    margin-top: 1em;
    margin-bottom: 1em;
}
@media (min-width: 768px) {
    .feature {
        width: calc(33.3333333333% - 2em);
        margin-left: 1em;
        margin-right: 1em;
    }
}
@media (min-width: 992px) {
    .feature {
        width: calc(20% - 2em);
    }
}
.feature:hover, .feature:focus, .feature:active {
    outline: none;
    color: #4d4d4d;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.feature:hover svg, .feature:focus svg, .feature:active svg {
    filter: drop-shadow(0 -8px 0 rgb(200, 0, 161));
}
.feature:visited {
    background-color: transparent;
    color: #4d4d4d;
}

.feature__image {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.feature__image img {
    width: 100%;
    height: auto;
}
.feature__image svg {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    bottom: -1px;
    color: #ffffff;
    transition: all 0.2s linear;
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
}

.feature__description {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5em 1em;
    font-size: 1.3rem;
    text-align: center;
    flex-grow: 1;
}

.summary-wrapper--small {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    padding-top: 1em;
    padding-bottom: 1em;
}

.summary--small {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin: 1em;
    padding: 1em;
    border-radius: 0.5em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
    background-color: #ffffff;
    overflow: hidden;
    width: 100%;
}
.summary--small .summary__image {
    flex-shrink: 0;
    align-self: flex-start;
    width: 3em;
    height: 3em;
    align-self: center;
    border-radius: 100%;
}
.summary--small .summary__image img {
    width: 100%;
    height: auto;
    margin: 0;
}
@media (min-width: 768px) {
    .summary--small .summary__image {
        width: 5em;
        height: 5em;
    }
}
.summary--small .summary__date {
    font-size: 0.8rem;
}
@media (min-width: 768px) {
    .summary--small .summary__date {
        font-size: 1rem;
    }
}
.summary--small .summary__title {
    font-size: 1rem;
}
@media (min-width: 768px) {
    .summary--small .summary__title {
        font-size: 1.3rem;
    }
}
.summary--small .summary__description {
    font-size: 0.8rem;
}

.searchbar {
    position: relative;
}

.searchbar__suggestions {
    position: absolute;
    z-index: 500;
    top: 100%;
    left: 0;
    display: none;
    max-height: 15em;
    overflow-y: scroll;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16), 0 2px 5px rgba(0,0,0,0.23);
    border-radius: 0.5em;
}
.searchbar__suggestions li {
    display: block;
    padding: 0.3em 1em;
    cursor: pointer;
}
.searchbar__suggestions li:hover {
    background-color: rgba(65, 182, 230, 0.5);
}

.fc-toolbar-title:first-letter {
    text-transform: uppercase;
}

/************
************************ $TEXTURES
************/
/** Alerts
****/
.alert {
    position: relative;
    margin: 0.5em 0;
    padding: 0.5em 1em 0.5em 1em;
    border: 0px solid #bf7200;
    background-color: #ffa726;
    font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    color: #261700;
    border-radius: 0.5em;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.alert .alert__heading {
    margin-bottom: 0.1875;
    font-size: inherit;
    font-weight: bold;
    color: inherit;
}
.alert .close {
    position: absolute;
    top: -2px;
    right: 2px;
    float: right;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 18px;
    color: inherit;
}
.alert p,
.alert ol,
.alert ul,
.alert dl {
    margin-bottom: 0;
}
.alert p + p {
    margin-top: 5px;
}
.alert a:not(.btn--secondary) {
    color: #ffffff;
}
.alert a:not(.btn--secondary):hover, .alert a:not(.btn--secondary):focus, .alert a:not(.btn--secondary):active, .alert a:not(.btn--secondary):visited {
    color: #ffffff;
}

/** Alerta base
****/
.alert--info {
    background-color: #72bcf8;
    color: #000305;
    border-color: #42a5f5;
}

.alert--success {
    background-color: #7fc682;
    color: #0a180b;
    border-color: #66bb6a;
}

.alert--warning {
    background-color: #ffc268;
    color: #261700;
    border-color: #ffa726;
}

.alert--danger {
    background-color: #f3817f;
    color: #3b0605;
    border-color: #ef5350;
}

/** Text alerts
****/
.text-alert--info {
    color: #42a5f5;
    font-weight: 600;
}

.text-alert--success {
    color: #66bb6a;
    font-weight: 600;
}

.text-alert--warning {
    color: #ffa726;
    font-weight: 600;
}

.text-alert--danger,
.text-alert--error {
    color: #ef5350;
    font-weight: 600;
}

/** Dialog
****/
.dialog {
    position: absolute;
    z-index: 9000;
    top: 0;
    left: 50%;
    max-width: 50%;
    box-shadow: 0 20px 30px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
    padding: 1em;
    border-radius: 0.5em;
    border: 1px solid #fafafa;
    background-color: #ffffff;
    transform: translate(-50%, 0);
}

.dialog--fixed {
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
}

.dialog__message {
    margin-bottom: 1em;
}

.dialog__actions {
    text-align: right;
}

/** Selection
****/
::-moz-selection {
    background-color: white;
    color: #41B6E6;
    text-shadow: none;
}

::selection {
    background-color: white;
    color: #41B6E6;
    text-shadow: none;
}
