/* Error de minimización. Devolviendo el contenido no minimizado.
(3158,37): run-time error CSS1034: Expected closing parenthesis, found ','
(3158,37): run-time error CSS1042: Expected function, found ','
(3158,42): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
(3162,36): run-time error CSS1034: Expected closing parenthesis, found ','
(3162,36): run-time error CSS1042: Expected function, found ','
(3162,41): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
(3704,17): run-time error CSS1038: Expected hex color, found '#fffc'
 */
/*!
FullCalendar Core Package v4.2.0
Docs & License: https://fullcalendar.io/
(c) 2019 Adam Shaw
*/
.fc {
    direction: ltr;
    text-align: left;
}

.fc-rtl {
    text-align: right;
}

body .fc {
    /* extra precedence to overcome jqui */
    font-size: 1em;
}

/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-highlight {
    /* when user is selecting cells */
    /*background: #bce8f1;*/
    background: #D0DD2F;
    opacity: .3;
}

.fc-bgevent {
    /* default look for background events */
    /*background: #8fdf82;*/
    background: #D0DD2F !important;
    opacity: 0.8;
    /*opacity: .3;*/
}

.fc-nonbusiness {
    /* default look for non-business-hours areas */
    /* will inherit .fc-bgevent's styles */
    background: #D0DD2F !important;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover {
    position: absolute;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

    .fc-popover .fc-header {
        /* TODO: be more consistent with fc-head/fc-body */
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 2px 4px;
    }

.fc-rtl .fc-popover .fc-header {
    flex-direction: row-reverse;
}

.fc-popover .fc-header .fc-title {
    margin: 0 2px;
}

.fc-popover .fc-header .fc-close {
    cursor: pointer;
    opacity: 0.65;
    font-size: 1.1em;
}

/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/
.fc-divider {
    border-style: solid;
    border-width: 1px;
}

hr.fc-divider {
    height: 0;
    margin: 0;
    padding: 0 0 2px;
    /* height is unreliable across browsers, so use padding */
    border-width: 1px 0;
}

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-mirror-skeleton {
    /* these element should always cling to top-left/right corners */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.fc-bg {
    bottom: 0;
    /* strech bg to bottom edge */
}

    .fc-bg table {
        height: 100%;
        /* strech bg to bottom edge */
    }

/* Tables
--------------------------------------------------------------------------------------------------*/
.fc table {
    width: 100%;
    box-sizing: border-box;
    /* fix scrollbar issue in firefox */
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1em;
    /* normalize cross-browser */
}

.fc th {
    text-align: center;
    text-transform: uppercase;
    background: #D1D1D1;
    font-family: 'ClanOT-Book', Arial, sans-serif;
    font-size: 0.7em;
    padding: 0.3rem !important;
}

.fc th,
.fc td {
    border-style: solid;
    border-width: 1px;
    padding: 0;
    vertical-align: top;
}

    .fc td.fc-today {
        border-style: double;
        /* overcome neighboring borders */
    }

/* Internal Nav Links
--------------------------------------------------------------------------------------------------*/
a[data-goto] {
    cursor: pointer;
}

    a[data-goto]:hover {
        text-decoration: underline;
    }

/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/
.fc .fc-row {
    /* extra precedence to overcome themes forcing a 1px border */
    /* no visible border by default. but make available if need be (scrollbar width compensation) */
    border-style: solid;
    border-width: 0;
}

.fc-row table {
    /* don't put left/right border on anything within a fake row.
     the outer tbody will worry about this */
    border-left: 0 hidden transparent;
    border-right: 0 hidden transparent;
    /* no bottom borders on rows */
    border-bottom: 0 hidden transparent;
}

.fc-row:first-child table {
    border-top: 0 hidden transparent;
    /* no top border on first row */
}

/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/
.fc-row {
    position: relative;
}

    .fc-row .fc-bg {
        z-index: 1;
    }

    /* highlighting cells & background event skeleton */
    .fc-row .fc-bgevent-skeleton,
    .fc-row .fc-highlight-skeleton {
        bottom: 0;
        /* stretch skeleton to bottom of row */
    }

        .fc-row .fc-bgevent-skeleton table,
        .fc-row .fc-highlight-skeleton table {
            height: 100%;
            /* stretch skeleton to bottom of row */
        }

        .fc-row .fc-highlight-skeleton td,
        .fc-row .fc-bgevent-skeleton td {
            border-color: transparent;
        }

    .fc-row .fc-bgevent-skeleton {
        z-index: 2;
    }

    .fc-row .fc-highlight-skeleton {
        z-index: 3;
    }

    /*
row content (which contains day/week numbers and events) as well as "mirror" (which contains
temporary rendered events).
*/
    .fc-row .fc-content-skeleton {
        position: relative;
        z-index: 4;
        padding-bottom: 2px;
        /* matches the space above the events */
    }

    .fc-row .fc-mirror-skeleton {
        z-index: 5;
    }

.fc .fc-row .fc-content-skeleton table,
.fc .fc-row .fc-content-skeleton td,
.fc .fc-row .fc-mirror-skeleton td {
    /* see-through to the background below */
    /* extra precedence to prevent theme-provided backgrounds */
    background: none;
    /* in case <td>s are globally styled */
    border-color: transparent;
}

.fc-row .fc-content-skeleton td,
.fc-row .fc-mirror-skeleton td {
    /* don't put a border between events and/or the day number */
    border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-mirror-skeleton tbody td {
    /* don't put a border between event cells */
    border-top: 0;
}

/* Scrolling Container
--------------------------------------------------------------------------------------------------*/
.fc-scroller {
    -webkit-overflow-scrolling: touch;
}

    /* TODO: move to timegrid/daygrid */
    .fc-scroller > .fc-day-grid,
    .fc-scroller > .fc-time-grid {
        position: relative;
        /* re-scope all positions */
        width: 100%;
        /* hack to force re-sizing this inner element when scrollbars appear/disappear */
    }

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.fc-event {
    position: relative;
    /* for resize handle and other inner positioning */
    display: block;
    /* make the <a> tag block */
    font-size: .85em;
    line-height: 1.4;
    border-radius: 3px;
    /*border: 1px solid #3788d8;*/
    border: 1px solid #d0dd2e;
}

.fc-event,
.fc-event-dot {
    background-color: #d0dd2e;
    /*background-color: #3788d8;*/
    /* default BACKGROUND color */
}

    .fc-event,
    .fc-event:hover {
        color: #fff;
        /* default TEXT color */
        text-decoration: none;
        /* if <a> has an href */
    }

        .fc-event[href],
        .fc-event.fc-draggable {
            cursor: pointer;
            /* give events with links and draggable events a hand mouse pointer */
        }

.fc-not-allowed,
.fc-not-allowed .fc-event {
    /* to override an event's custom cursor */
    cursor: not-allowed;
}

.fc-event .fc-content {
    position: relative;
    z-index: 2;
}

/* resizer (cursor AND touch devices) */
.fc-event .fc-resizer {
    position: absolute;
    z-index: 4;
}

/* resizer (touch devices) */
.fc-event .fc-resizer {
    display: none;
}

.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
    /* only show when hovering or selected (with touch) */
    display: block;
}

    /* hit area */
    .fc-event.fc-selected .fc-resizer:before {
        /* 40x40 touch area */
        content: "";
        position: absolute;
        z-index: 9999;
        /* user of this util can scope within a lower z-index */
        top: 50%;
        left: 50%;
        width: 40px;
        height: 40px;
        margin-left: -20px;
        margin-top: -20px;
    }

/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/
.fc-event.fc-selected {
    z-index: 9999 !important;
    /* overcomes inline z-index */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

    .fc-event.fc-selected:after {
        content: "";
        position: absolute;
        z-index: 1;
        /* same z-index as fc-bg, behind text */
        /* overcome the borders */
        top: -1px;
        right: -1px;
        bottom: -1px;
        left: -1px;
        /* darkening effect */
        background: #000;
        opacity: .25;
    }

/* Event Dragging
--------------------------------------------------------------------------------------------------*/
.fc-event.fc-dragging.fc-selected {
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}

.fc-event.fc-dragging:not(.fc-selected) {
    opacity: .75;
}

/* Horizontal Events
--------------------------------------------------------------------------------------------------*/
/* bigger touch area when selected */
.fc-h-event.fc-selected:before {
    content: "";
    position: absolute;
    z-index: 3;
    /* below resizers */
    top: -10px;
    bottom: -10px;
    left: 0;
    right: 0;
}

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */
.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
    margin-left: 0;
    border-left-width: 0;
    padding-left: 1px;
    /* replace the border with padding */
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
    margin-right: 0;
    border-right-width: 0;
    padding-right: 1px;
    /* replace the border with padding */
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/* resizer (cursor AND touch devices) */
/* left resizer  */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
    cursor: w-resize;
    left: -1px;
    /* overcome border */
}

/* right resizer */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
    cursor: e-resize;
    right: -1px;
    /* overcome border */
}

/* resizer (mouse devices) */
.fc-h-event.fc-allow-mouse-resize .fc-resizer {
    width: 7px;
    top: -1px;
    /* overcome top border */
    bottom: -1px;
    /* overcome bottom border */
}

/* resizer (touch devices) */
.fc-h-event.fc-selected .fc-resizer {
    /* 8x8 little dot */
    border-radius: 4px;
    border-width: 1px;
    width: 6px;
    height: 6px;
    border-style: solid;
    border-color: inherit;
    background: #fff;
    /* vertically center */
    top: 50%;
    margin-top: -4px;
}

/* left resizer  */
.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
    margin-left: -4px;
    /* centers the 8x8 dot on the left edge */
}

/* right resizer */
.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
    margin-right: -4px;
    /* centers the 8x8 dot on the right edge */
}

/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-day-grid-event {
    margin: 1px 2px 0;
    /* spacing between events and edges */
    padding: 0 1px;
}

tr:first-child > td > .fc-day-grid-event {
    margin-top: 2px;
    /* a little bit more space before the first event */
}

.fc-mirror-skeleton tr:first-child > td > .fc-day-grid-event {
    margin-top: 0;
    /* except for mirror skeleton */
}

.fc-day-grid-event .fc-content {
    /* force events to be one-line tall */
    white-space: nowrap;
    overflow: hidden;
}

.fc-day-grid-event .fc-time {
    font-weight: bold;
}

/* resizer (cursor devices) */
/* left resizer  */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
    margin-left: -2px;
    /* to the day cell's edge */
}

/* right resizer */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
    margin-right: -2px;
    /* to the day cell's edge */
}

/* Event Limiting
--------------------------------------------------------------------------------------------------*/
/* "more" link that represents hidden events */
a.fc-more {
    margin: 1px 3px;
    font-size: .85em;
    cursor: pointer;
    text-decoration: none;
}

    a.fc-more:hover {
        text-decoration: underline;
    }

.fc-limited {
    /* rows and cells that are hidden because of a "more" link */
    display: none;
}

/* popover that appears when "more" link is clicked */
.fc-day-grid .fc-row {
    z-index: 1;
    /* make the "more" popover one higher than this */
}

.fc-more-popover {
    z-index: 2;
    width: 220px;
}

    .fc-more-popover .fc-event-container {
        padding: 10px;
    }

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-now-indicator {
    position: absolute;
    border: 0 solid red;
}

/* Utilities
--------------------------------------------------------------------------------------------------*/
.fc-unselectable {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*
TODO: more distinction between this file and common.css
*/
/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
    border-color: #ddd;
}

.fc-unthemed .fc-popover {
    background-color: #fff;
}

    .fc-unthemed .fc-divider,
    .fc-unthemed .fc-popover .fc-header,
    .fc-unthemed .fc-list-heading td {
        background: #eee;
    }

.fc-unthemed td.fc-today {
    background: #6265695e;
}

.fc-unthemed .fc-disabled-day {
    background: #d7d7d7;
    opacity: .3;
}

/* Icons
--------------------------------------------------------------------------------------------------
from https://feathericons.com/ and built with IcoMoon
*/
@font-face {
    font-family: 'fcicons';
    src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBfAAAAC8AAAAYGNtYXAXVtKNAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZgYydxIAAAF4AAAFNGhlYWQUJ7cIAAAGrAAAADZoaGVhB20DzAAABuQAAAAkaG10eCIABhQAAAcIAAAALGxvY2ED4AU6AAAHNAAAABhtYXhwAA8AjAAAB0wAAAAgbmFtZXsr690AAAdsAAABhnBvc3QAAwAAAAAI9AAAACAAAwPAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpBgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6Qb//f//AAAAAAAg6QD//f//AAH/4xcEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAWIAjQKeAskAEwAAJSc3NjQnJiIHAQYUFwEWMjc2NCcCnuLiDQ0MJAz/AA0NAQAMJAwNDcni4gwjDQwM/wANIwz/AA0NDCMNAAAAAQFiAI0CngLJABMAACUBNjQnASYiBwYUHwEHBhQXFjI3AZ4BAA0N/wAMJAwNDeLiDQ0MJAyNAQAMIw0BAAwMDSMM4uINIwwNDQAAAAIA4gC3Ax4CngATACcAACUnNzY0JyYiDwEGFB8BFjI3NjQnISc3NjQnJiIPAQYUHwEWMjc2NCcB87e3DQ0MIw3VDQ3VDSMMDQ0BK7e3DQ0MJAzVDQ3VDCQMDQ3zuLcMJAwNDdUNIwzWDAwNIwy4twwkDA0N1Q0jDNYMDA0jDAAAAgDiALcDHgKeABMAJwAAJTc2NC8BJiIHBhQfAQcGFBcWMjchNzY0LwEmIgcGFB8BBwYUFxYyNwJJ1Q0N1Q0jDA0Nt7cNDQwjDf7V1Q0N1QwkDA0Nt7cNDQwkDLfWDCMN1Q0NDCQMt7gMIw0MDNYMIw3VDQ0MJAy3uAwjDQwMAAADAFUAAAOrA1UAMwBoAHcAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMhMjY1NCYjISIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAAVYRGRkR/qoRGRkRA1UFBAUOCQkVDAsZDf2rDRkLDBUJCA4FBQUFBQUOCQgVDAsZDQJVDRkLDBUJCQ4FBAVVAgECBQMCBwQECAX9qwQJAwQHAwMFAQICAgIBBQMDBwQDCQQCVQUIBAQHAgMFAgEC/oAZEhEZGRESGQAAAAADAFUAAAOrA1UAMwBoAIkAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMzFRQWMzI2PQEzMjY1NCYrATU0JiMiBh0BIyIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAgBkSEhmAERkZEYAZEhIZgBEZGREDVQUEBQ4JCRUMCxkN/asNGQsMFQkIDgUFBQUFBQ4JCBUMCxkNAlUNGQsMFQkJDgUEBVUCAQIFAwIHBAQIBf2rBAkDBAcDAwUBAgICAgEFAwMHBAMJBAJVBQgEBAcCAwUCAQL+gIASGRkSgBkSERmAEhkZEoAZERIZAAABAOIAjQMeAskAIAAAExcHBhQXFjI/ARcWMjc2NC8BNzY0JyYiDwEnJiIHBhQX4uLiDQ0MJAzi4gwkDA0N4uINDQwkDOLiDCQMDQ0CjeLiDSMMDQ3h4Q0NDCMN4uIMIw0MDOLiDAwNIwwAAAABAAAAAQAAa5n0y18PPPUACwQAAAAAANivOVsAAAAA2K85WwAAAAADqwNVAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAOrAAEAAAAAAAAAAAAAAAAAAAALBAAAAAAAAAAAAAAAAgAAAAQAAWIEAAFiBAAA4gQAAOIEAABVBAAAVQQAAOIAAAAAAAoAFAAeAEQAagCqAOoBngJkApoAAQAAAAsAigADAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAcAAAABAAAAAAACAAcAYAABAAAAAAADAAcANgABAAAAAAAEAAcAdQABAAAAAAAFAAsAFQABAAAAAAAGAAcASwABAAAAAAAKABoAigADAAEECQABAA4ABwADAAEECQACAA4AZwADAAEECQADAA4APQADAAEECQAEAA4AfAADAAEECQAFABYAIAADAAEECQAGAA4AUgADAAEECQAKADQApGZjaWNvbnMAZgBjAGkAYwBvAG4Ac1ZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGZjaWNvbnMAZgBjAGkAYwBvAG4Ac2ZjaWNvbnMAZgBjAGkAYwBvAG4Ac1JlZ3VsYXIAUgBlAGcAdQBsAGEAcmZjaWNvbnMAZgBjAGkAYwBvAG4Ac0ZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=") format("truetype");
    font-weight: normal;
    font-style: normal;
}

.fc-icon {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'fcicons' !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;
}

.fc-icon-chevron-left:before {
    content: "\e900";
}

.fc-icon-chevron-right:before {
    content: "\e901";
}

.fc-icon-chevrons-left:before {
    content: "\e902";
}

.fc-icon-chevrons-right:before {
    content: "\e903";
}

.fc-icon-minus-square:before {
    content: "\e904";
}

.fc-icon-plus-square:before {
    content: "\e905";
}

.fc-icon-x:before {
    content: "\e906";
}

.fc-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    text-align: center;
}

/* Buttons
--------------------------------------------------------------------------------------------------
Lots taken from Flatly (MIT): https://bootswatch.com/4/flatly/bootstrap.css
*/
/* reset */
.fc-button {
    border-radius: 0;
    overflow: visible;
    text-transform: none;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

    .fc-button:focus {
        outline: 1px dotted;
        outline: 5px auto -webkit-focus-ring-color;
    }

.fc-button {
    -webkit-appearance: button;
}

    .fc-button:not(:disabled) {
        cursor: pointer;
    }

    .fc-button::-moz-focus-inner {
        padding: 0;
        border-style: none;
    }

/* theme */
.fc-button {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.4em 0.65em;
    font-size: 1em;
    line-height: 1.5;
    border-radius: 0.25em;
}

    .fc-button:hover {
        color: #212529;
        text-decoration: none;
    }

    .fc-button:focus {
        outline: 0;
        -webkit-box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
        box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
    }

    .fc-button:disabled {
        opacity: 0.65;
    }

/* "primary" coloring */
.fc-button-primary {
    color: #616569;
    /*background-color: #7e8184;
  border-color: #7e8184;*/
}

    .fc-button-primary:hover {
        color: #fff;
        /*background-color: #1e2b37;
  border-color: #1a252f;*/
        background-color: #626569;
        border-color: #626569;
    }

    .fc-button-primary:focus {
        /*-webkit-box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);*/
        -webkit-box-shadow: 0 0 0 0 rgba(76, 91, 106, 0.5);
        box-shadow: 0 0 0 0 rgba(76, 91, 106, 0.5);
    }

    .fc-button-primary:disabled {
        color: #fff;
        background-color: #626569;
        border-color: #626569;
        opacity: 1;
        font-size: 14px;
    }

    .fc-button-primary:not(:disabled):active,
    .fc-button-primary:not(:disabled).fc-button-active {
        color: #fff;
        /*background-color: #1a252f;
  border-color: #151e27;*/
        background-color: #626569;
        border-color: #626569;
    }

        .fc-button-primary:not(:disabled):active:focus,
        .fc-button-primary:not(:disabled).fc-button-active:focus {
            /*-webkit-box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);*/
            -webkit-box-shadow: 0 0 0 0 rgba(76, 91, 106, 0.5);
            box-shadow: 0 0 0 0 rgba(76, 91, 106, 0.5);
        }

/* icons within buttons */
.fc-button .fc-icon {
    vertical-align: middle;
    font-size: 1.5em;
}

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/
.fc-button-group {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
}

    .fc-button-group > .fc-button {
        position: relative;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

        .fc-button-group > .fc-button:hover {
            z-index: 1;
        }

        .fc-button-group > .fc-button:focus,
        .fc-button-group > .fc-button:active,
        .fc-button-group > .fc-button.fc-button-active {
            z-index: 1;
        }

        .fc-button-group > .fc-button:not(:first-child) {
            margin-left: -1px;
        }

        .fc-button-group > .fc-button:not(:last-child) {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }

        .fc-button-group > .fc-button:not(:first-child) {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-popover {
    border-width: 1px;
    border-style: solid;
}

/* List View
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-list-item:hover td {
    background-color: #f5f5f5;
}

/* Toolbar
--------------------------------------------------------------------------------------------------*/
.fc-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #d0dd2e;
    padding: 6px;
}

    .fc-toolbar.fc-header-toolbar {
        /*margin-bottom: 1.5em;*/
    }

    .fc-toolbar.fc-footer-toolbar {
        margin-top: 1.5em;
    }

    /* inner content */
    .fc-toolbar > * > :not(:first-child) {
        margin-left: .75em;
    }

    .fc-toolbar h2 {
        font-size: 1.75em;
        margin: 0;
    }

/* View Structure
--------------------------------------------------------------------------------------------------*/
.fc-view-container {
    position: relative;
}

    /* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
    /* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
    .fc-view-container *,
    .fc-view-container *:before,
    .fc-view-container *:after {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

.fc-view,
.fc-view > table {
    /* so dragged elements can be above the view's main element */
    position: relative;
    z-index: 1;
}

.fc-left {
    width: 80%;
}

    .fc-left h2 {
        font-family: 'ClanOT-Bold', Arial, sans-serif;
        color: #636569;
        font-size: 16px;
        text-transform: uppercase;
        padding-left: 1%;
    }

.fc-title {
    color: #636569;
}

@media print {
    .fc {
        max-width: 100% !important;
    }

    /* Global Event Restyling
  --------------------------------------------------------------------------------------------------*/
    .fc-event {
        background: #fff !important;
        color: #000 !important;
        page-break-inside: avoid;
    }

        .fc-event .fc-resizer {
            display: none;
        }

    /* Table & Day-Row Restyling
  --------------------------------------------------------------------------------------------------*/
    .fc th,
    .fc td,
    .fc hr,
    .fc thead,
    .fc tbody,
    .fc-row {
        border-color: #ccc !important;
        background: #fff !important;
    }

    /* kill the overlaid, absolutely-positioned components */
    /* common... */
    .fc-bg,
    .fc-bgevent-skeleton,
    .fc-highlight-skeleton,
    .fc-mirror-skeleton,
    .fc-bgevent-container,
    .fc-business-container,
    .fc-highlight-container,
    .fc-mirror-container {
        display: none;
    }

    /* don't force a min-height on rows (for DayGrid) */
    .fc tbody .fc-row {
        height: auto !important;
        /* undo height that JS set in distributeHeight */
        min-height: 0 !important;
        /* undo the min-height from each view's specific stylesheet */
    }

        .fc tbody .fc-row .fc-content-skeleton {
            position: static;
            /* undo .fc-rigid */
            padding-bottom: 0 !important;
            /* use a more border-friendly method for this... */
        }

            .fc tbody .fc-row .fc-content-skeleton tbody tr:last-child td {
                /* only works in newer browsers */
                padding-bottom: 1em;
                /* ...gives space within the skeleton. also ensures min height in a way */
            }

            .fc tbody .fc-row .fc-content-skeleton table {
                /* provides a min-height for the row, but only effective for IE, which exaggerates this value,
       making it look more like 3em. for other browers, it will already be this tall */
                height: 1em;
            }

    /* Undo month-view event limiting. Display all events and hide the "more" links
  --------------------------------------------------------------------------------------------------*/
    .fc-more-cell,
    .fc-more {
        display: none !important;
    }

    .fc tr.fc-limited {
        display: table-row !important;
    }

    .fc td.fc-limited {
        display: table-cell !important;
    }

    .fc-popover {
        display: none;
        /* never display the "more.." popover in print mode */
    }

    /* TimeGrid Restyling
  --------------------------------------------------------------------------------------------------*/
    /* undo the min-height 100% trick used to fill the container's height */
    .fc-time-grid {
        min-height: 0 !important;
    }

    /* don't display the side axis at all ("all-day" and time cells) */
    .fc-timeGrid-view .fc-axis {
        display: none;
    }

    /* don't display the horizontal lines */
    .fc-slats,
    .fc-time-grid hr {
        /* this hr is used when height is underused and needs to be filled */
        display: none !important;
        /* important overrides inline declaration */
    }

    /* let the container that holds the events be naturally positioned and create real height */
    .fc-time-grid .fc-content-skeleton {
        position: static;
    }

        /* in case there are no events, we still want some height */
        .fc-time-grid .fc-content-skeleton table {
            height: 4em;
        }

    /* kill the horizontal spacing made by the event container. event margins will be done below */
    .fc-time-grid .fc-event-container {
        margin: 0 !important;
    }

    /* TimeGrid *Event* Restyling
  --------------------------------------------------------------------------------------------------*/
    /* naturally position events, vertically stacking them */
    .fc-time-grid .fc-event {
        position: static !important;
        margin: 3px 2px !important;
    }

        /* for events that continue to a future day, give the bottom border back */
        .fc-time-grid .fc-event.fc-not-end {
            border-bottom-width: 1px !important;
        }

            /* indicate the event continues via "..." text */
            .fc-time-grid .fc-event.fc-not-end:after {
                content: "...";
            }

        /* for events that are continuations from previous days, give the top border back */
        .fc-time-grid .fc-event.fc-not-start {
            border-top-width: 1px !important;
        }

            /* indicate the event is a continuation via "..." text */
            .fc-time-grid .fc-event.fc-not-start:before {
                content: "...";
            }

        /* time */
        /* undo a previous declaration and let the time text span to a second line */
        .fc-time-grid .fc-event .fc-time {
            white-space: normal !important;
        }

            /* hide the the time that is normally displayed... */
            .fc-time-grid .fc-event .fc-time span {
                display: none;
            }

            /* ...replace it with a more verbose version (includes AM/PM) stored in an html attribute */
            .fc-time-grid .fc-event .fc-time:after {
                content: attr(data-full);
            }

    /* Vertical Scroller & Containers
  --------------------------------------------------------------------------------------------------*/
    /* kill the scrollbars and allow natural height */
    .fc-scroller,
    .fc-day-grid-container,
    .fc-time-grid-container {
        /* */
        overflow: visible !important;
        height: auto !important;
    }

    /* kill the horizontal border/padding used to compensate for scrollbars */
    .fc-row {
        border: 0 !important;
        margin: 0 !important;
    }

    /* Button Controls
  --------------------------------------------------------------------------------------------------*/
    .fc-button-group,
    .fc button {
        display: none;
        /* don't display any button-related controls */
    }
}


.pad {
    padding: 0px;
}

.percent {
    width: 50%;
}

@font-face {
    font-family: 'ClanBook', sans-serif;
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ClanBook';
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ClanBook';
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'dincondensed';
    src: local('dincondensed'), url('dincondensed.woff') format('woff'), url('dincondensed.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}


body {
    font-family: 'ClanBook', sans-serif;
    color: #636569;
}

h1 {
    font-family: 'ClanBook', sans-serif;
}

    h1 > span {
        font-family: 'ClanBook', sans-serif;
    }

h3 {
    font-family: 'dincondensed', Arial, sans-serif;
}

nav {
    background: #626569;
    padding: 12px;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.menu {
    margin-left: auto;
    font-family: 'ClanBook', sans-serif;
    color: #fff;
    font-size: 14px;
    margin-top: 1.4%;
}

    .menu a {
        color: #fff;
    }

        .menu a:hover {
            text-decoration: none;
            color: #D0DD2F;
        }

    .menu p:hover {
        color: #D0DD2F;
        cursor: pointer;
    }

.log {
    padding-left: 4%;
}

.interior {
    padding-bottom: 20%;
    height: 100vh;
}

.second {
    margin-top: 3%;
}

    .second h3 {
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 2px;
        border-left: 3px solid #cd0;
        padding-left: 3%;
        color: #fff;
    }

        .second h3 > a {
            color: #fff;
        }

            .second h3 > a:hover {
                color: #D0DD2F;
                text-decoration: none;
            }

    .second ul {
        padding-left: 10px;
    }

        .second ul > li {
            list-style: none;
            font-family: 'ClanBook', sans-serif;
            font-size: 14px;
            text-transform: uppercase;
        }

            .second ul > li > a {
                color: #fff;
            }

                .second ul > li > a:hover {
                    color: #D0DD2F;
                }

.nuts {
    padding-left: 20px !important;
    margin-bottom: 3px;
}

    .nuts li {
        font-size: 13px !important;
    }

.up {
    margin-top: 20px;
}

.cumbio {
    margin-top: 16%;
}

.rainbow {
    display: none;
}

.banners {
    overflow: hidden;
}

    .banners > div:first-child {
        width: 100%;
        -webkit-animation: animImage 10s linear 0s infinite alternate;
        -moz-animation: animImage 10s linear 0s infinite alternate;
        -o-animation: animImage 10s linear 0s infinite alternate;
        animation: animImage 10s linear 0s infinite alternate;
        min-height: 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("ban5.jpg");
    }

.banner1 {
    overflow: hidden;
}

    .banner1 > div:first-child {
        width: 100%;
        -webkit-animation: animImage 10s linear 0s infinite alternate;
        -moz-animation: animImage 10s linear 0s infinite alternate;
        -o-animation: animImage 10s linear 0s infinite alternate;
        animation: animImage 10s linear 0s infinite alternate;
        min-height: 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("info.jpg");
    }

/*.banner1{
    min-height: 500px; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;    
    background-image: url("info.jpg");
    padding-top: 10%;}*/

.banner2 {
    overflow: hidden;
}

    .banner2 > div:first-child {
        width: 100%;
        -webkit-animation: animImage 10s linear 0s infinite alternate;
        -moz-animation: animImage 10s linear 0s infinite alternate;
        -o-animation: animImage 10s linear 0s infinite alternate;
        animation: animImage 10s linear 0s infinite alternate;
        min-height: 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("ban2.jpg");
    }

.banner3 {
    overflow: hidden;
}

    .banner3 > div:first-child {
        width: 100%;
        -webkit-animation: animImage 10s linear 0s infinite alternate;
        -moz-animation: animImage 10s linear 0s infinite alternate;
        -o-animation: animImage 10s linear 0s infinite alternate;
        animation: animImage 10s linear 0s infinite alternate;
        min-height: 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("ban3.jpg");
    }

.banner4 {
    overflow: hidden;
}

    .banner4 > div:first-child {
        width: 100%;
        -webkit-animation: animImage 10s linear 0s infinite alternate;
        -moz-animation: animImage 10s linear 0s infinite alternate;
        -o-animation: animImage 10s linear 0s infinite alternate;
        animation: animImage 10s linear 0s infinite alternate;
        min-height: 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("ban4.jpg");
    }

.banner5 {
    overflow: hidden;
}

    .banner5 > div:first-child {
        width: 100%;
        -webkit-animation: animImage 10s linear 0s infinite alternate;
        -moz-animation: animImage 10s linear 0s infinite alternate;
        -o-animation: animImage 10s linear 0s infinite alternate;
        animation: animImage 10s linear 0s infinite alternate;
        min-height: 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("ban18.jpg");
    }

.banner6 {
    overflow: hidden;
}

    .banner6 > div:first-child {
        width: 100%;
        -webkit-animation: animImage 10s linear 0s infinite alternate;
        -moz-animation: animImage 10s linear 0s infinite alternate;
        -o-animation: animImage 10s linear 0s infinite alternate;
        animation: animImage 10s linear 0s infinite alternate;
        min-height: 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("ban6.jpg");
    }

.banner7 {
    overflow: hidden;
}

    .banner7 > div:first-child {
        width: 100%;
        -webkit-animation: animImage 10s linear 0s infinite alternate;
        -moz-animation: animImage 10s linear 0s infinite alternate;
        -o-animation: animImage 10s linear 0s infinite alternate;
        animation: animImage 10s linear 0s infinite alternate;
        min-height: 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("ban7.jpg");
    }

.banner8 {
    overflow: hidden;
}

    .banner8 > div:first-child {
        width: 100%;
        -webkit-animation: animImage 10s linear 0s infinite alternate;
        -moz-animation: animImage 10s linear 0s infinite alternate;
        -o-animation: animImage 10s linear 0s infinite alternate;
        animation: animImage 10s linear 0s infinite alternate;
        min-height: 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("ban8.jpg");
    }

.banner9 {
    overflow: hidden;
}

    .banner9 > div:first-child {
        width: 100%;
        -webkit-animation: animImage 10s linear 0s infinite alternate;
        -moz-animation: animImage 10s linear 0s infinite alternate;
        -o-animation: animImage 10s linear 0s infinite alternate;
        animation: animImage 10s linear 0s infinite alternate;
        min-height: 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("ban9.jpg");
    }

.banner10 {
    overflow: hidden;
}

    .banner10 > div:first-child {
        width: 100%;
        -webkit-animation: animImage 10s linear 0s infinite alternate;
        -moz-animation: animImage 10s linear 0s infinite alternate;
        -o-animation: animImage 10s linear 0s infinite alternate;
        animation: animImage 10s linear 0s infinite alternate;
        min-height: 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("ban10.jpg");
    }

.banner11 {
    overflow: hidden;
}

    .banner11 > div:first-child {
        width: 100%;
        -webkit-animation: animImage 10s linear 0s infinite alternate;
        -moz-animation: animImage 10s linear 0s infinite alternate;
        -o-animation: animImage 10s linear 0s infinite alternate;
        animation: animImage 10s linear 0s infinite alternate;
        min-height: 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("ban11.jpg");
    }

.banner12 {
    overflow: hidden;
}

    .banner12 > div:first-child {
        width: 100%;
        -webkit-animation: animImage 10s linear 0s infinite alternate;
        -moz-animation: animImage 10s linear 0s infinite alternate;
        -o-animation: animImage 10s linear 0s infinite alternate;
        animation: animImage 10s linear 0s infinite alternate;
        min-height: 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("ban12.jpg");
    }

.banner13 {
    overflow: hidden;
}

    .banner13 > div:first-child {
        width: 100%;
        -webkit-animation: animImage 10s linear 0s infinite alternate;
        -moz-animation: animImage 10s linear 0s infinite alternate;
        -o-animation: animImage 10s linear 0s infinite alternate;
        animation: animImage 10s linear 0s infinite alternate;
        min-height: 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("ban13.jpg");
    }

.banner14 {
    overflow: hidden;
}

    .banner14 > div:first-child {
        width: 100%;
        -webkit-animation: animImage 10s linear 0s infinite alternate;
        -moz-animation: animImage 10s linear 0s infinite alternate;
        -o-animation: animImage 10s linear 0s infinite alternate;
        animation: animImage 10s linear 0s infinite alternate;
        min-height: 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("ban14.jpg");
    }

.banner15 {
    overflow: hidden;
}

    .banner15 > div:first-child {
        width: 100%;
        -webkit-animation: animImage 10s linear 0s infinite alternate;
        -moz-animation: animImage 10s linear 0s infinite alternate;
        -o-animation: animImage 10s linear 0s infinite alternate;
        animation: animImage 10s linear 0s infinite alternate;
        min-height: 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("ban20.jpg");
    }

.banner16 {
    overflow: hidden;
}

    .banner16 > div:first-child {
        width: 100%;
        -webkit-animation: animImage 10s linear 0s infinite alternate;
        -moz-animation: animImage 10s linear 0s infinite alternate;
        -o-animation: animImage 10s linear 0s infinite alternate;
        animation: animImage 10s linear 0s infinite alternate;
        min-height: 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("ban19.jpg");
    }

/****** banner contacto *********/
.banner17 {
    overflow: hidden;
}

    .banner17 > div:first-child {
        width: 100%;
        -webkit-animation: animImage 10s linear 0s infinite alternate;
        -moz-animation: animImage 10s linear 0s infinite alternate;
        -o-animation: animImage 10s linear 0s infinite alternate;
        animation: animImage 10s linear 0s infinite alternate;
        min-height: 900px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("ban22.jpg");
    }

.banner18 {
    overflow: hidden;
}

    .banner18 > div:first-child {
        width: 100%;
        -webkit-animation: animImage 10s linear 0s infinite alternate;
        -moz-animation: animImage 10s linear 0s infinite alternate;
        -o-animation: animImage 10s linear 0s infinite alternate;
        animation: animImage 10s linear 0s infinite alternate;
        min-height: 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("ban16.jpg");
    }

.intro1 {
    margin-top: 10%;
    margin-left: -13%;
}

    .intro1 h1 {
        color: #D0DD2F;
        text-transform: uppercase;
    }

        .intro1 h1 > span {
            font-family: 'ClanBook', sans-serif;
            color: #fff;
        }

.time {
    margin-top: 4%;
}

    .time ul {
        padding-left: 0px;
    }

        .time ul > li {
            list-style: none;
            text-align: center;
            color: #636570;
            font-family: 'ClanBook', sans-serif;
            width: 50%;
            font-size: 14px;
        }

.year {
    background: #fff;
    padding: 9%;
    cursor: pointer;
}

.yactive {
    background: #d0dd2e;
    padding: 9%;
}

.line {
    border-left: 4px solid #d0dd2e;
    height: 40px;
    margin-left: 50%;
}

.grey {
    background: #D1D1D1;
    padding: 1%;
    padding-bottom: 5%;
}

.barra {
    background: #636569;
    color: #fff;
    font-family: 'ClanBook', sans-serif;
    font-size: 14px;
    letter-spacing: 1.6px;
    margin-top: 10%;
}

    .barra ul {
        padding-left: 0px;
        margin-bottom: 0px;
    }

        .barra ul > li {
            display: inline-block;
            padding: 2%;
            width: 10%;
            text-align: center;
            margin-left: 10%;
            cursor: pointer;
        }

            .barra ul > li:hover {
                background: #cede00;
                color: #636569;
            }

            .barra ul > li > div {
                border-top: none;
                width: 0;
                height: 0;
                border-left: 30px solid transparent;
                border-right: 30px solid transparent;
                position: absolute;
                top: 100%;
                z-index: 100;
            }

.bactive {
    background: #D1D1D1;
    color: #636569;
}

.try1 {
    border-top: 14px solid #d1d1d1 !important;
    left: 12%;
}

.try2 {
    border-top: 14px solid #d1d1d1 !important;
    left: 32.5%;
}

.try3 {
    border-top: 14px solid #d1d1d1 !important;
    left: 53%;
}

.try4 {
    border-top: 14px solid #d1d1d1 !important;
    left: 73.4%;
}

.informe {
    background: #fff;
    padding: 7%;
    color: #636569;
    font-family: 'ClanBook', sans-serif;
    font-size: 14px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

    .informe ul > li {
        list-style: none;
        margin-bottom: 7%;
    }

        .informe ul > li > a {
            color: #636569;
        }

            .informe ul > li > a:hover {
                color: #D0DD2F;
            }

.btn_pres {
    background: #636569;
    color: #fff;
    font-family: 'ClanBook', sans-serif;
    font-size: 13px;
    letter-spacing: 1.6px;
    padding: 9px;
    position: fixed;
    display: block;
    width: 17%;
    right: 0;
}

    .btn_pres a {
        color: #fff;
    }

    .btn_pres p {
        margin-bottom: 0px;
        text-transform: uppercase;
    }

    .btn_pres:hover {
        background: #D0DD2F;
    }

    .btn_pres a:hover {
        text-decoration: none;
        color: #636569;
    }

.downs {
    text-align: right;
}

    .downs > i {
        font-size: 30px;
        margin-right: auto;
        text-align: center;
    }


/*********** CONSEJO DE ADMINISTRACIÓN *************/

.said {
    margin-top: 4%;
    font-size: 14px;
    color: #636569;
    margin-bottom: 3%;
}

.toggli {
    display: none;
}

.consejeros {
    margin-top: 5%;
}

    .consejeros .table thead th {
        vertical-align: middle;
        background: #626569;
        color: #fff;
        font-size: 13px;
        text-align: center;
        letter-spacing: 1px;
        border: 1px solid #626569;
    }

    .consejeros .table td {
        border-top: 1px solid #636569;
        border-right: 1px solid #636569;
        border-bottom: 1px solid #636569;
        font-size: 12px;
        text-align: center;
        width: 10%;
        padding-bottom: 5px;
        padding-top: 5px;
        vertical-align: middle;
    }

    .consejeros .table th {
        padding-bottom: 5px;
        padding-top: 5px;
        vertical-align: middle;
    }

    .consejeros .table td img {
        width: 30px;
    }

    .consejeros .table td:first-child {
        text-align: left;
        border-left: 1px solid #636569;
        /*cursor: pointer;*/
    }

    .consejeros .table tr:first-child td {
        border-top: none;
    }

.empty > td {
    border-right: none !important;
    border-left: none !important;
}

.jerry {
    margin-top: 3%;
    padding-bottom: 1%;
}

.circle > div {
    border: 1px solid #636569;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin-left: auto;
}

/*.heak{
    padding-left: 0px;}*/

.heak > p {
    padding-left: 0px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin-top: 4%;
    color: #636569;
}

.torn {
    text-align: right;
}

    .torn > img {
        width: 40%;
    }

.cab {
    margin-top: 1%;
}

.circle2 > div {
    border: 2px dotted #636569;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin-left: auto;
}

.leyend {
    margin-top: 2%;
    font-size: 13px;
}

    .leyend a {
        color: #636569;
        font-family: 'ClanBook', sans-serif;
        ;
    }

/******** MODALES CONSEJEROS *******/

.curtis .modal-dialog {
    max-width: 800px;
}

.curtis .modal-content {
    background-color: #CCCCCC;
    font-size: 13px;
    padding-bottom: 2%;
    padding-bottom: 2%;
    border: none;
    border-radius: 0px;
}

.yellow {
    background: #CDDE00;
    padding: 10px;
    margin-bottom: 3%;
    text-transform: uppercase;
    font-family: 'ClanOT-News', Arial, sans-serif;
    letter-spacing: 1.5px;
}

    .yellow > p {
        margin-bottom: 0px;
    }

        .yellow > p:first-child {
            font-family: 'ClanBook', sans-serif;
            ;
        }

        .yellow > p:nth-child(2) {
            font-family: 'ClanBook', sans-serif;
        }

.curtis .close {
    color: #636569;
    text-shadow: none;
    opacity: 1;
}

    .curtis .close:hover {
        color: #CDDE00;
    }

.camilo {
    margin-top: -10%;
}


/********* COMITES **********/

.titleco {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'ClanBook', sans-serif;
    ;
    letter-spacing: 3.5px;
    margin-bottom: 10px;
    cursor: pointer;
}

    .titleco i {
        color: #a4b103;
        font-size: 18px;
    }

.executive {
    font-size: 14px;
}

.mich {
    margin-bottom: 3%;
}

.beach {
    margin-top: 2%;
    font-size: 14px;
    color: #636569;
    margin-bottom: 0%;
}

    .beach p {
        margin-bottom: 0px;
    }


/******* EQUIPO DIRECTIVO *******/

.puesto {
    margin-bottom: 3%;
    margin-top: 3%;
}

    .puesto .table {
        display: initial;
    }

        .puesto .table td, .puesto .table th {
            width: 300px;
        }

        .puesto .table thead {
            font-size: 14px;
            text-transform: uppercase;
            font-family: 'ClanBook', sans-serif;
            ;
        }

            .puesto .table thead th:first-child {
                border-right: 1px solid #fff;
            }

            .puesto .table thead th {
                background: #626569;
                color: #fff;
            }

            .puesto .table thead th {
                border: 1px solid #626569;
            }

        .puesto .table tbody {
            font-family: 'ClanBook', sans-serif;
            font-size: 13px;
            /*text-transform: uppercase;*/
        }

        .puesto .table td {
            border: 1px solid #626569;
        }


/******** INDEX ********/

/*.overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 600px;
    width: 100vw;
    overflow: hidden;
    z-index: -1;}

.overlay .background {
    background: #22313f;
    background-image: url("adirectos.png");
    background-size: cover;
    width: 100%;
    height: 100%;
    animation: zoom 4s infinite ease-out;;}

@keyframes zoom {
  0% {
    transform: scale(1);}
    
  100% {
    transform: scale(1.05);}
}*/

@-webkit-keyframes animImage {
    from {
        transform: scale(1.5);
        -moz-transform: scale(1.5);
        -webkit-transform: scale(1.5);
        -o-transform: scale(1.5);
        -ms-transform: scale(1.5);
    }
}

@-moz-keyframes animImage {
    from {
        transform: scale(1.5);
        -moz-transform: scale(1.5);
        -webkit-transform: scale(1.5);
        -o-transform: scale(1.5);
        -ms-transform: scale(1.5);
    }
}

@-o-keyframes animImage {
    from {
        transform: scale(1.5);
        -moz-transform: scale(1.5);
        -webkit-transform: scale(1.5);
        -o-transform: scale(1.5);
        -ms-transform: scale(1.5);
    }
}

@keyframes animImage {
    from {
        transform: scale(1.1);
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
    }
}

.headerImg {
    overflow: hidden;
}

    .headerImg > img {
        width: 100%;
        -webkit-animation: animImage 8s linear 0s infinite alternate;
        -moz-animation: animImage 8s linear 0s infinite alternate;
        -o-animation: animImage 8s linear 0s infinite alternate;
        animation: animImage 8s linear 0s infinite alternate;
    }

.margen {
    margin-left: -13%;
}

.gotit {
    margin-top: 8%;
}

    .gotit a {
        color: #636569;
    }

.gotit2 a {
    color: #636569;
}

.gotit2:hover .one_w {
    background: #cdde00;
}

.one_w {
    background: #ffffffc2;
    /*text-align: center;
    padding: 15%;*/
    padding-top: 2%;
    padding-bottom: 2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 70px;
}

    .one_w img {
        /*width: 55%
    width: 20%;*/
    }

    .one_w div p {
        margin-bottom: 0px;
        margin-top: 1%;
        text-transform: uppercase;
        font-size: 14px;
    }

        .one_w div p > span {
            font-family: 'ClanBook', sans-serif;
            ;
        }

.two_g {
    background: #CDDE00;
    text-align: center;
    padding: 15%;
    margin-left: 9%;
}

    .two_g img {
        width: 55%;
    }

    .two_g p {
        margin-bottom: 0px;
        margin-top: 5%;
        text-transform: uppercase;
        font-size: 14px;
    }

        .two_g p > span {
            font-family: 'ClanBook', sans-serif;
            ;
        }

.inside {
    background: #CDDE00;
    text-align: center;
    padding: 10%;
    margin-left: 9%;
}

    .inside img {
        width: 50%;
    }

    .inside p:nth-child(2) {
        margin-bottom: 0px;
        margin-top: 4%;
        text-transform: uppercase;
        font-size: 14px;
        text-align: center;
    }

    .inside p {
        margin-bottom: 2px;
    }

.inf {
    margin-bottom: 8px;
    margin-top: 5%;
    text-transform: uppercase;
    font-size: 14px;
}

.inside p > span {
    font-family: 'ClanBook', sans-serif;
    ;
}

.inside a {
    margin-top: 1px;
    font-size: 13px;
    text-transform: initial;
    /*text-align: left;*/
}

.merme a {
    color: #fff;
}

.three_g {
    background: #626569;
    /*margin-top: 8%;*/
    margin-top: 2%;
    color: #fff;
    /*padding: 15px;*/
    padding: 5px;
}

    .three_g > div {
        padding-left: 5px;
        padding-right: 5px;
        font-size: 18px;
    }

        .three_g > div > p {
            /*margin-bottom: 5px;*/
            margin-bottom: 0px;
        }

            .three_g > div > p > i {
                color: #cdde00;
            }

            .three_g > div > p > span {
                font-family: 'ClanBook', sans-serif;
                ;
            }

        .three_g > div:first-child > p {
            text-transform: uppercase;
            font-size: 14px;
        }

            .three_g > div:first-child > p > span {
                font-family: 'ClanBook', sans-serif;
                ;
            }

        .three_g > div:nth-child(2) {
            font-family: 'ClanBook', sans-serif;
            ;
        }

        .three_g > div:nth-child(5),
        .three_g > div:nth-child(6),
        .three_g > div:nth-child(7) {
            /*margin-top: 4%;*/
            margin-top: 1%;
        }

            .three_g > div:nth-child(5) p,
            .three_g > div:nth-child(6) p,
            .three_g > div:nth-child(7) p {
                font-size: 14px;
            }

                .three_g > div:nth-child(5) p > span,
                .three_g > div:nth-child(6) p > span,
                .three_g > div:nth-child(7) p > span {
                    font-size: 16px;
                }

.less {
    margin-bottom: 6%;
}

    .less .container-fluid {
        padding: 0px;
    }

/********** Carrusel INDEX ************/

#demo img {
    width: 100%;
}

.omm {
    /*margin-bottom: 6%;*/
    padding: 0px;
    padding-top: 3%;
}

.item1 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("banner1.gif");
    height: 100vh;
    width: 100vw;
}

    .item1 .w-100,
    .item2 .w-100,
    .item3 .w-100 {
        background: rgba(0,0,0,0.6);
        padding-top: 4.4%;
        padding-bottom: 1%;
    }

    .item1 .row > div {
        text-align: center;
        color: #fff;
    }

    .item1 h1 {
        /*font-size: 50px;*/
        font-size: 40px;
        text-transform: uppercase;
        letter-spacing: 8.5px;
        margin-bottom: 0px;
    }

    .item1 h3 {
        font-family: 'ClanBook', sans-serif;
        text-transform: uppercase;
        letter-spacing: 3px;
        /*font-size: 26px;*/
        font-size: 20px;
        line-height: 1.3;
    }

/**************/

.item2 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("banner2.gif");
    height: 100vh;
    width: 100vw;
}

    .item2 .row > div {
        text-align: center;
        color: #fff;
    }

    .item2 h1 {
        /*font-size: 50px;*/
        font-size: 40px;
        text-transform: uppercase;
        letter-spacing: 8.5px;
    }

    .item2 h3 {
        font-family: 'ClanBook', sans-serif;
        text-transform: uppercase;
        letter-spacing: 3px;
        /*font-size: 26px;*/
        font-size: 20px;
        line-height: 1.3;
    }

.exce {
    /*text-align: right !important;*/
    text-align: left !important;
    /*margin-top: 18%;*/
    margin-top: 0%;
}

/**************/

.item3 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("banner3.gif");
    height: 100vh;
    width: 100vw;
}

    .item3 .row > div {
        text-align: center;
        color: #fff;
    }

    .item3 h1 {
        /*font-size: 50px;*/
        font-size: 40px;
        text-transform: uppercase;
        letter-spacing: 8.5px;
    }

    .item3 h3 {
        font-family: 'ClanBook', sans-serif;
        text-transform: uppercase;
        letter-spacing: 3px;
        /*font-size: 26px;*/
        font-size: 20px;
        line-height: 1.3;
    }

#right,
#left {
    display: none;
}

#loadingbar {
    /*width: 100%;*/
    width: 50%;
    height: 10px;
    background: #ffffff40;
    /*margin: 10px auto 0;*/
    margin: 5px auto 0;
    border-radius: 100px;
    border: none;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

    #loadingbar:before {
        color: #ffffff;
        font-size: 12px;
        display: block;
        position: absolute;
        top: 2px;
        right: 45%;
        text-decoration: blink;
    }

    #loadingbar:after {
        content: "";
        background-color: #cdde00;
        width: 1%;
        height: 20px;
        /*border-radius: 20px;*/
        position: relative;
        z-index: -100;
        display: block;
    }

    #loadingbar:after {
        -webkit-animation: loadBar 12s;
    }

@-webkit-keyframes loadBar {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

#demo .carousel-control-next, #demo .carousel-control-prev {
    /*top: 29%;*/
    top: 12%;
    bottom: auto;
    opacity: 1;
    left: 17%;
}

/*.carousel-control-next {
    left: 0;}*/

#demo .carousel-control-prev {
    /*top: 20%;*/
    top: 55px;
}

.rode {
    /*position: absolute;
    left: 0;
    top:55%;*/
    font-size: 13px;
}

.ovv {
    /*margin-left: 5%;
    padding-top: 14%;
    margin-left:100px;*/
}

.carousel {
    height: 100%;
    background: #ededee;
}

.carousel-inner {
    height: 100%;
    background: #ededee;
}

.carousel-item {
    height: 100%;
}



/*********** FOOTER ************/

.foot1 {
    background: #cdde00;
    /*padding-top: 10px;
    padding-bottom: 10px;*/
    padding-top: 2px;
    padding-bottom: 2px;
}

.back1 {
    margin-top: 2%;
    text-align: center;
}

    .back1 > a {
        color: #626569;
        font-size: 13px;
    }

.social {
    margin-top: 2%;
    text-align: center;
}

    .social ul {
        padding-left: 15px;
    }

        .social ul > li {
            display: inline;
            margin-right: 6%;
        }

            .social ul > li > a {
                color: #626569;
            }

.contact {
    padding-left: 10%;
    padding-top: 6px;
}

    .contact > p:first-child {
        font-size: 13px;
        margin-bottom: 3px;
        font-family: 'ClanBook', sans-serif;
        ;
    }

    .contact > p:nth-child(2) {
        font-size: 13px;
        margin-bottom: 3px;
    }

    .contact a {
        font-size: 13px;
        margin-bottom: 3px;
        color: #626569;
    }

.foot2 {
    background: #626569;
    color: #fff;
    font-size: 11px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}

    .foot2 p {
        color: #fff;
        margin-bottom: 0px;
    }

.this p {
    text-transform: uppercase;
}

.politics .modal-dialog {
    max-width: 60%;
}

.politics .modal-content {
    background-color: #fff;
    border: none;
}

.politics .modal-body {
    font-size: 12px;
}

    .politics .modal-body p {
        margin-bottom: 10px;
    }

    .politics .modal-body a {
        color: #636569;
        font-family: 'ClanBook', sans-serif;
        ;
    }

    .politics .modal-body h3 {
        font-size: 18px;
        letter-spacing: 2px;
        font-weight: bold;
        margin-top: 1%;
        margin-bottom: 2px;
        text-transform: uppercase;
        color: #D0DD2F;
    }

.diggy {
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-weight: bold;
    margin-top: 3%;
    margin-bottom: 2%;
    font-family: 'dincondensed', Arial, sans-serif;
    text-transform: uppercase;
    border-bottom: 1px solid;
    padding-bottom: 1%;
    color: #D0DD2F;
}

.chet {
    cursor: pointer;
}


/******** SALA DE PRENSA ********/

@-webkit-keyframes banner {
    from {
        transform: scale(1.5);
        -moz-transform: scale(1.5);
        -webkit-transform: scale(1.5);
        -o-transform: scale(1.5);
        -ms-transform: scale(1.5);
    }
}

@-moz-keyframes banner {
    from {
        transform: scale(1.5);
        -moz-transform: scale(1.5);
        -webkit-transform: scale(1.5);
        -o-transform: scale(1.5);
        -ms-transform: scale(1.5);
    }
}

@-o-keyframes banner {
    from {
        transform: scale(1.5);
        -moz-transform: scale(1.5);
        -webkit-transform: scale(1.5);
        -o-transform: scale(1.5);
        -ms-transform: scale(1.5);
    }
}

@keyframes banner {
    from {
        transform: scale(1.1);
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
    }
}

.titles {
    position: absolute;
    top: 13%;
    left: 10%;
}


/********** SALA DE PRENSA **********/

.box {
    background: #636569;
    color: #fff;
    padding-top: 10px;
    border-right: 5px solid #d0dd2e;
}

.date {
    font-family: 'ClanBook', sans-serif;
    ;
    font-size: 11px;
}

    .date p {
        margin-bottom: 5px;
    }

.head {
    font-family: 'ClanBook', sans-serif;
    ;
    text-align: right;
    font-size: 14px;
    text-transform: uppercase;
}

    .head p {
        margin-bottom: 0px;
    }

.info {
    text-align: right;
    font-size: 12px;
}

    .info p {
        margin-bottom: 5px;
    }

.box2 {
    padding-left: 0px;
}

.read {
    text-align: right;
    border: 1px solid #fff;
    margin-right: 15px;
    padding: 5px;
    text-align: center;
    margin-top: 7px;
}

    .read a {
        margin-bottom: 0px;
        font-size: 11px;
        color: #fff;
    }

    .read:hover {
        background-color: #d0dd2e;
        color: #636569;
    }

    .read a:hover {
        color: #636569;
        text-decoration: none;
    }

.miami {
    margin-top: 3%;
    margin-bottom: 3%;
}

.ware {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}


/****** CALENDARIO ********/
.all {
    margin-top: 3%;
}

.again {
    background: #ececec;
    padding: 4%;
}

.month {
    background: #d0dd2e;
    text-align: center;
    font-family: 'ClanBook', sans-serif;
    ;
    text-transform: uppercase;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .month p {
        margin-bottom: 0px;
    }

.next-e {
    font-size: 14px;
    font-family: 'ClanOT-News', Arial, sans-serif;
}

.elephant {
    padding: 0px;
}

    .elephant p {
        font-family: 'ClanBook', sans-serif;
        ;
        text-transform: uppercase;
        letter-spacing: 1.1px;
        font-size: 15px;
    }

.ceme {
    background: #626569;
    color: #fff;
    padding: 15px;
}

.present {
    text-align: center;
    background: #fff;
    color: #626569;
    font-family: 'ClanBook', sans-serif;
    ;
    padding: 6px;
}

    .present p {
        margin-bottom: 0px;
    }

.past {
    padding: 0px;
}

    .past .table {
        margin-top: 5%;
        font-size: 12px;
        /*overflow: scroll;
    height: 215px;*/
    }

        .past .table td:first-child {
            border-left: 2px solid #d0dd2e;
            font-family: 'ClanBook', sans-serif;
            ;
            text-transform: uppercase;
            text-align: center;
        }

        .past .table td {
            border-top: none;
        }

            .past .table td a {
                color: #fff;
                text-align: center;
            }

                .past .table td a i {
                    font-size: 18px;
                    margin: auto;
                }

            .past .table td p {
                margin-bottom: 0px;
            }

.down {
    font-size: 10px;
}

.others {
    margin-top: 5%;
    font-family: 'ClanBook', sans-serif;
    ;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
}

.mores {
    background: #fff;
    color: #626569;
    font-family: 'ClanBook', sans-serif;
    ;
    padding: 10px;
    cursor: pointer;
    font-size: 13px;
}

    .mores p {
        margin-bottom: 0px;
    }

.urra .table td {
    border-top: none;
    text-align: center;
}

    /*.urra .table{
    overflow: scroll;
    height: 100px;}*/

    .urra .table td:first-child {
        border-left: 2px solid #d0dd2e;
    }

.ceme .modal-header {
    padding: 5px;
    border-bottom: 0px;
    padding-left: 15px;
}

.ceme .modal-body {
    padding-top: 0px;
}

.ceme .modal-header p {
    font-family: 'ClanBook', sans-serif;
    ;
    font-size: 18px;
    margin-bottom: 0px;
}

.ceme .close {
    color: #fff;
}

    .ceme .close:hover {
        color: #fff;
    }

.deep {
    margin-top: 4%;
    margin-bottom: 4%;
}

.baum {
    background: #626569;
    color: #fff;
    font-size: 13px;
    text-align: center;
    padding: 5%;
}

    .baum p {
        margin-bottom: 0px;
    }

.links {
    font-size: 13px;
}

.bear {
    padding: 0px;
    text-align: right;
}

    .bear i {
        font-size: 25px;
    }

.tel p {
    margin-bottom: 0px;
    margin-top: 10px;
}




/******** EVENTOS **********/
.onradio {
    background: #D1D1D1;
    padding-bottom: 3%;
}

.onme {
    background: #fff;
    margin-top: 4%;
    padding: 4%;
}

.shine {
    text-align: center;
    background: #626569;
    color: #fff;
    font-size: 14px;
    font-family: 'ClanBook', sans-serif;
    ;
    padding: 4%;
}

    .shine p {
        margin-bottom: 0px;
    }

.wake {
    font-size: 14px;
}

    .wake p {
        margin-bottom: 0px;
    }

.onme .row {
    margin-bottom: 3%;
    border-bottom: 1px solid #a7aaaf57;
    padding-bottom: 3%;
}

.onme a {
    color: #636569;
}

    .onme a:hover {
        color: #636569;
    }


/******** reportes anuales *********/

.barra2 {
    background: #636569;
    color: #636569;
    font-family: 'ClanBook', sans-serif;
    font-size: 14px;
    letter-spacing: 1.6px;
    margin-top: 10%;
    padding-top: 1%;
}

    .barra2 ul {
        padding-left: 0px;
        margin-bottom: 0px;
    }

        .barra2 ul > li {
            display: inline-block;
            padding: 1.5%;
            text-align: center;
            margin-left: 10%;
            cursor: pointer;
            /*-webkit-border-top-right-radius: 20px;
    border-top-right-radius: 20px;*/
            background: #d1d1d1;
        }

.bactive2 {
    background: #cdde00 !important;
}

.integrado {
    background: #fff;
    color: #636569;
    font-family: 'ClanBook', sans-serif;
    font-size: 14px;
    letter-spacing: 1.6px;
    padding-top: 7%;
    padding-bottom: 7%;
    margin-top: 6%;
}

    .integrado img {
        border: 1px solid #d1d1d1;
    }

    .integrado ul > li {
        margin-bottom: 3.5%;
        list-style: none;
    }

    .integrado a {
        color: #636569;
    }

.informe2 {
    background: #fff;
    padding: 7%;
    color: #636569;
    font-family: 'ClanBook', sans-serif;
    font-size: 14px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding-top: 4%;
    padding-bottom: 4%;
}

    .informe2 ul > li {
        list-style: none;
        margin-bottom: 4%;
    }

        .informe2 ul > li > a {
            color: #636569;
        }

            .informe2 ul > li > a:hover {
                color: #D0DD2F;
            }

.soon {
    font-family: 'ClanBook', sans-serif;
    ;
    font-size: 21px;
    margin-bottom: 2%;
}

.foal {
    margin-top: 8%;
}

    .foal > div:first-child > img {
        border: 1px solid #626569;
    }

.torna {
    padding-left: 7%;
    margin-top: 7%;
}

    .torna > li {
        list-style: none;
        font-size: 14px;
        margin-bottom: 6%;
    }

        .torna > li > a {
            color: #626569;
        }

/******** POLÍTICAS *********/

.high2 {
    color: #fff;
}

.high {
    color: #fff;
}

    .high:hover,
    .high2:hover {
        color: #626569;
    }

.overlay {
    padding: 0px;
}

    .overlay:before, .separator:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        /*background: rgb(206, 222, 0, 0.6);*/
        background: rgb(98, 101, 105, 0.6);
    }

    .overlay:hover:before {
        background: rgb(206, 222, 0, 0.9);
    }

    .overlay p {
        position: absolute;
        top: 13%;
        padding-left: 8%;
        font-family: 'ClanBook', sans-serif;
        ;
        font-size: 16px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

        .overlay p > span {
            font-family: 'ClanBook', sans-serif;
        }


/*.could{
   background: #d0dd2e;}

.could2{
    background: #626569;}

.could:hover,
.could2:hover{
    background: #fff;}

.ethic{
    padding: 10%;
    text-align: center;}

.ethic p{
    font-size: 14px;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 1.1px;}

.ethic i{
    font-size: 25px;
    margin-bottom: 15px;}*/

.done {
    margin-top: 4%;
}


/******** SEGMENTO **********/

.segmento {
    background: #636569;
    padding-top: 5%;
    padding-bottom: 5%;
}

.iss {
    margin-bottom: 3%;
}

    .iss h3 {
        font-family: 'ClanBook', sans-serif;
        text-transform: uppercase;
        letter-spacing: 4.5px;
        color: #fff;
    }

        .iss h3 > span {
            font-family: 'ClanBook', sans-serif;
            ;
        }

.trx {
    cursor: pointer;
    padding: 0px;
}

    .trx img {
        filter: gray;
        -webkit-filter: grayscale(1);
        -webkit-transition: all .1s ease-in-out;
    }

        .trx img:hover {
            filter: none;
            -webkit-filter: grayscale(0);
        }

    .trx div {
        position: absolute;
        bottom: 0;
        text-align: right;
        right: 0;
        background: #d0dd2e;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 3.5px;
        padding-right: 6%;
        padding-left: 6%;
        padding-top: 2%;
        padding-bottom: 2%;
    }

    .trx p {
        margin-bottom: 0px;
    }

        .trx p > span {
            font-family: 'ClanBook', sans-serif;
            ;
        }

.hugg {
    color: #fff;
    font-size: 14px;
    /*text-align: right;*/
    margin-top: 5%;
    letter-spacing: 1.5px;
    padding-left: 4%;
}

    .hugg p > span {
        font-family: 'ClanBook', sans-serif;
        ;
    }

    .hugg p:first-child {
        text-transform: uppercase;
        color: #cdde00;
        font-size: 17px;
    }

#small {
    display: none;
}


.theone {
    filter: none !important;
    -webkit-filter: grayscale(0) !important;
}


/********* CIFRAS **********/

.sun {
    background: #cbcbcb45;
    padding-top: 5%;
    padding-bottom: 5%;
}

.ciff {
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 2%;
}

    .ciff p > span {
        font-family: 'ClanBook', sans-serif;
        ;
    }

.five img {
    width: 40%;
}

.five p {
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 4%;
    letter-spacing: 2.5px;
}

    .five p > span {
        font-family: 'ClanBook', sans-serif;
        ;
    }

#carouselExample .carousel-control-prev,
#carouselExample .carousel-control-next {
    color: #626569;
}

#carouselExample .carousel-control-prev {
    left: -5%;
}

#carouselExample .carousel-control-next {
    right: -5%;
}

#carouselExample .carousel-inner {
    height: 250px;
    max-height: 250px;
}

@media (min-width: 768px) {
    #carouselExample .carousel-inner .active,
    #carouselExample .carousel-inner .active + .carousel-item,
    #carouselExample .carousel-inner .active + .carousel-item + .carousel-item {
        display: block;
    }

    #carouselExample .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
    #carouselExample .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item,
    #carouselExample .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item {
        transition: none;
    }

    #carouselExample .carousel-inner .carousel-item-next,
    #carouselExample .carousel-inner .carousel-item-prev {
        position: relative;
        transform: translate3d(0, 0, 0);
    }

    #carouselExample .carousel-inner .active.carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: absolute;
        top: 0;
        right: -33.3333%;
        z-index: -1;
        display: block;
        visibility: visible;
    }

    #carouselExample .active.carousel-item-left + .carousel-item-next.carousel-item-left,
    #carouselExample .carousel-item-next.carousel-item-left + .carousel-item,
    #carouselExample .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item,
    #carouselExample .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }


    #carouselExample .carousel-inner .carousel-item-prev.carousel-item-right {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        display: block;
        visibility: visible;
    }

    #carouselExample .active.carousel-item-right + .carousel-item-prev.carousel-item-right,
    #carouselExample .carousel-item-prev.carousel-item-right + .carousel-item,
    #carouselExample .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item,
    #carouselExample .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        display: block;
        visibility: visible;
    }
}

/************* MISIÓN VISIÓN VALORES *****************/

.miss {
    margin-top: 8%;
}

.mision {
    border-left: 5px solid #d0dd30;
    padding-left: 2%;
    margin-left: 3%;
}

    .mision p:first-child {
        font-family: 'ClanBook', sans-serif;
        ;
        text-transform: uppercase;
        letter-spacing: 3.5px;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .mision p:nth-child(2) {
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 5px;
    }

.fire {
    background: #626569;
    padding: 3%;
    color: #fff;
}

.valorr {
    font-family: 'ClanBook', sans-serif;
    ;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    font-size: 20px;
}

.valores {
    /*background: #f5f5f5;*/
    padding: 15px;
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
}

    .valores img {
        width: 40%;
    }

    .valores > p:nth-child(2) {
        font-family: 'ClanBook', sans-serif;
        ;
        text-transform: uppercase;
        letter-spacing: 2.5px;
        font-size: 14px;
        margin-bottom: 3px;
        margin-top: 3%;
    }

    .valores > p:nth-child(3) {
        font-size: 13px;
        letter-spacing: 2px;
    }

#carouselExample3 .carousel-control-prev,
#carouselExample3 .carousel-control-next {
    color: #f5f5f5;
    font-size: 22px;
}

#carouselExample3 .carousel-control-prev {
    left: -15%;
}

#carouselExample3 .carousel-control-next {
    right: -15%;
}

#carouselExample3 .carousel-inner {
    height: 310px;
    max-height: 310px;
}

@media (min-width: 768px) {
    #carouselExample3 .carousel-inner .active,
    #carouselExample3 .carousel-inner .active + .carousel-item,
    #carouselExample3 .carousel-inner .active + .carousel-item + .carousel-item {
        display: block;
    }

    #carouselExample3 .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
    #carouselExample3 .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item,
    #carouselExample3 .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item {
        transition: none;
    }

    #carouselExample3 .carousel-inner .carousel-item-next,
    #carouselExample3 .carousel-inner .carousel-item-prev {
        position: relative;
        transform: translate3d(0, 0, 0);
    }

    #carouselExample3 .carousel-inner .active.carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: absolute;
        top: 0;
        right: -33.3333%;
        z-index: -1;
        display: block;
        visibility: visible;
    }

    #carouselExample3 .active.carousel-item-left + .carousel-item-next.carousel-item-left,
    #carouselExample3 .carousel-item-next.carousel-item-left + .carousel-item,
    #carouselExample3 .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item,
    #carouselExample3 .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }


    #carouselExample3 .carousel-inner .carousel-item-prev.carousel-item-right {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        display: block;
        visibility: visible;
    }

    #carouselExample3 .active.carousel-item-right + .carousel-item-prev.carousel-item-right,
    #carouselExample3 .carousel-item-prev.carousel-item-right + .carousel-item,
    #carouselExample3 .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item,
    #carouselExample3 .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        display: block;
        visibility: visible;
    }
}


/******* ANALISTAS *******/

.grizzly {
    margin-top: 5%;
}

    .grizzly .table {
        display: initial;
    }

        .grizzly .table td, .puesto .table th {
            width: 300px;
        }

        .grizzly .table thead th {
            border: 1px solid #626569;
            border: 1px solid #626569;
            background: #626569;
            color: #fff;
            font-size: 14px;
            text-transform: uppercase;
            font-family: 'ClanBook', sans-serif;
            ;
        }

        .grizzly .table tbody {
            font-family: 'ClanBook', sans-serif;
            font-size: 13px;
        }

        .grizzly .table td {
            border: 1px solid #626569;
        }

            .grizzly .table td:first-child {
                background: #ffffff5e;
                font-family: 'ClanBook', sans-serif;
                ;
                text-transform: uppercase;
            }

            .grizzly .table td a {
                color: #626569;
            }

        .grizzly .table tr:first-child td:first-child,
        .grizzly .table tr:nth-child(5) td:first-child,
        .grizzly .table tr:nth-child(8) td:first-child {
            border-bottom: 0px;
        }

        .grizzly .table tr:nth-child(2) td:first-child {
            border-bottom: 0px;
            border-top: 0px;
        }

        .grizzly .table tr:nth-child(3) td:first-child,
        .grizzly .table tr:nth-child(6) td:first-child,
        .grizzly .table tr:nth-child(9) td:first-child {
            border-top: none;
        }



/*************** GLOSARIO *****************/

.lala {
    position: relative;
    padding-top: 6%;
    padding-bottom: 6%;
    margin-top: 6%;
    margin-bottom: 6%;
}

    .lala:before {
        content: "";
        background: #f5f5f5;
        width: calc(60% + 100px);
        top: 0;
        bottom: 0;
        height: 100%;
        position: absolute;
        right: 0;
    }

.word {
    text-transform: uppercase;
    font-family: 'ClanBook', sans-serif;
    ;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

    .word > i {
        color: #cdde00;
        font-weight: bold;
        font-size: 8px;
    }

.mean {
    font-size: 14px;
    letter-spacing: 1.5px;
}

.town {
    margin-top: 3%;
}


/************* CONTACTO **************/

.mali {
    margin-bottom: 3%;
}

    .mali div:first-child {
        padding-left: 0px;
    }

    .mali div:nth-child(2) {
        margin-top: -15%;
        margin-left: 8%;
    }

        .mali div:nth-child(2) > p {
            font-size: 18px;
            font-family: 'ClanBook', sans-serif;
            ;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

            .mali div:nth-child(2) > p > span {
                font-family: 'ClanBook', sans-serif;
            }

.contact2 {
    background: #fffc;
    padding: 7%;
    border-radius: 20px;
    padding-top: 3%;
}

    .contact2 .form-group label {
        font-family: 'ClanBook', sans-serif;
        ;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 2.5px;
    }

    .contact2 .form-group .form-control {
        font-size: 14px;
        letter-spacing: 1.1px;
        border: 1px solid #626569;
        background: transparent;
    }

.btn-send {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #626569;
    background-color: #cdde00;
}

    .btn-send:hover {
        color: #fff;
        background-color: #626569;
    }

.vow {
    position: absolute;
    top: 15%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

/********************* HISTORIA ****************************/

/*.story{
    min-height: 600px; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;    
    background-image: url("atardece.jpg");
    padding-top: 7%;}

.grass{
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 2%;
    font-family: 'dincondensed', Arial, sans-serif;
    font-weight: bold;
    color: #3d3e40;}

.solid{
    margin-top: 4%;}

.solid p{
    font-family: 'dincondensed', Arial, sans-serif;
    font-weight: bold;
    color: #3d3e40;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 2px;}

.solid ul{
    color: #3d3e40;
    letter-spacing: 2px;
    padding-left: 10px;}

.solid li{
    list-style: none;}

.solid li::before {
    content: "•";
    color: #cdde00;
    padding-right: 1%;}

.hoot{
    background: #f8f9facc;
    padding: 3%;}

.years{
    font-family: 'dincondensed', Arial, sans-serif;
    font-size: 3rem;
    color: #b3c103;
    font-weight: bold;
    letter-spacing: 2.5px;
    text-align: center;}

.years p{
    margin-bottom: 10px;}

.metro{
    text-align: center;
    margin-bottom: 20%;}

.metro > p:first-child{
    font-family: 'ClanBook', sans-serif;;
    font-size: 25px;
    margin-bottom: 0px;}

.metro > p:nth-child(2){
    text-transform: uppercase;
    font-size: 14px;}

.drift{
    padding: 8px;}*/

/*.hoot img{
    width: 60%;}*/

/*.hoot > p:nth-child(3),
.hoot > p:nth-child(5){
    font-size: 18px;
    color: #3d3e40;
    margin-bottom: 15%;
    margin-top: 4%;}

.hoot > p:nth-child(3) > span,
.hoot > p:nth-child(5) > span{
    font-family: 'ClanBook', sans-serif;;}

.week{
    width: 45% !important;}

#carouselExample2 .carousel-control-prev,
#carouselExample2 .carousel-control-next{
    color: #b3c104;}

#carouselExample2 .carousel-control-prev{
    left: -5%;}

#carouselExample2 .carousel-control-next{
    right: -5%;}


#carouselExample2 .carousel-inner{
    height: 400px;
    max-height: 400px;}

@media (min-width: 768px) {
    #carouselExample2 .carousel-inner .active,
    #carouselExample2 .carousel-inner .active + .carousel-item,
    #carouselExample2 .carousel-inner .active + .carousel-item + .carousel-item {
        display: block;}
    
    #carouselExample2 .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
    #carouselExample2 .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item,
    #carouselExample2 .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item {
        transition: none;}
    
    #carouselExample2 .carousel-inner .carousel-item-next,
    #carouselExample2 .carousel-inner .carousel-item-prev {
      position: relative;
      transform: translate3d(0, 0, 0);}
    
    #carouselExample2 .carousel-inner .active.carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: absolute;
        top: 0;
        right: -33.3333%;
        z-index: -1;
        display: block;
        visibility: visible;}
   
    #carouselExample2 .active.carousel-item-left + .carousel-item-next.carousel-item-left,
    #carouselExample2 .carousel-item-next.carousel-item-left + .carousel-item,
    #carouselExample2 .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item,
    #carouselExample .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;}
    
  
    #carouselExample2 .carousel-inner .carousel-item-prev.carousel-item-right {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        display: block;
        visibility: visible;}

    #carouselExample2 .active.carousel-item-right + .carousel-item-prev.carousel-item-right,
    #carouselExample2 .carousel-item-prev.carousel-item-right + .carousel-item,
    #carouselExample2 .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item,
    #carouselExample2 .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        display: block;
        visibility: visible;}
}*/

.light {
    margin-top: 2%;
}

    .light ul {
        padding-left: 0px;
    }

        .light ul > li {
            list-style: none;
            text-align: center;
            color: #636570;
            font-family: 'ClanBook', sans-serif;
            width: 50%;
            font-size: 14px;
        }

.parasite {
    background: #dedede;
    padding: 7%;
    color: #636569;
    font-family: 'ClanBook', sans-serif;
    font-size: 14px;
    letter-spacing: 1.6px;
    margin-top: 8%;
}

.years {
    font-family: 'dincondensed', Arial, sans-serif;
    font-size: 4rem;
    color: #b6c51d;
    font-weight: bold;
    letter-spacing: 2.5px;
    border-bottom: 3px solid;
    line-height: 1;
    margin-bottom: 6%;
    padding-bottom: 2%;
}

    .years p {
        margin-bottom: 0px;
    }

.metro {
    /*margin-top: 4%;*/
    margin-top: 2%;
}

    .metro > p {
        font-family: 'ClanBook', sans-serif;
        ;
        font-size: 1.5rem;
        margin-bottom: 0px;
        letter-spacing: 3.5px;
        text-align: center;
    }

        .metro > p > span {
            font-family: 'ClanBook', sans-serif;
            font-size: 18px;
        }

.drift {
    padding: 8px;
    margin-bottom: 7%;
}

.norway {
    background: #cbcbcb45;
    padding: 2%;
    padding-bottom: 8%;
}

.zero {
    font-size: 18px !important;
}

.kass img {
    width: 70%;
}



/********* COTIZACIÓN DE LA ACCIÓN **********/

.price .table thead th {
    font-family: 'dincondensed', Arial, sans-serif;
    letter-spacing: 1.5px;
    font-size: 15px;
    border-bottom: 0px;
    border-top: 1px solid #ececec;
    font-weight: 100;
    text-transform: uppercase;
}

.price .table td {
    border-top: 0px;
    border-bottom: 1px solid #ececec;
    color: #636569;
    font-size: 14px;
    letter-spacing: 1.1px;
    padding-top: 0px;
}

.price .table {
    margin-top: 1%;
    margin-bottom: 4%;
}

.mone h6 {
    font-family: 'dincondensed', Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.start_date,
.end_date {
    color: #636569;
    font-size: 14px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.datt {
    color: #636569;
    font-size: 14px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.savage .table thead th {
    vertical-align: bottom;
    font-family: 'ClanBook', sans-serif;
    letter-spacing: 1.5px;
    font-size: 15px;
    font-weight: 100;
    text-transform: uppercase;
    border-bottom: 1px solid #ececec;
    border-top: 0px;
}

.savage .table td {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    border-top: 0px;
    border-bottom: 1px solid #ececec;
    color: #636569;
    font-size: 14px;
    letter-spacing: 1.1px;
}

/************ TABLE HIGHLIGHTS ***********/

.barracuda {
    background: #d1d1d15e;
    padding: 4%;
    padding-bottom: 5%;
}

.highs .table {
    display: table;
    text-align: center;
}

    .highs .table thead th {
        border-bottom: 3px solid #d0dd30;
        border-top: none;
        font-family: 'ClanBook', sans-serif;
        ;
        font-size: 14px;
    }

        .highs .table thead th:nth-child(6),
        .highs .table thead th:nth-child(9),
        .highs .table tbody td:nth-child(6),
        .highs .table tbody td:nth-child(9) {
            border-right: 3px solid #d0dd30;
            border-left: 3px solid #d0dd30;
        }

    .highs .table td {
        font-size: 14px;
    }

        .highs .table td:first-child,
        .highs .table th:first-child {
            text-align: left;
        }

    .highs .table tr:nth-child(7) td {
        border-right: none;
        border-left: none;
        font-family: 'ClanBook', sans-serif;
        ;
        border-top: none;
        padding-top: 4%;
        border-bottom: 3px solid #d0dd30;
    }

    .highs .table tr:nth-child(8) td, .highs .table tr:nth-child(10) td, .highs .table tr:nth-child(11) td,
    .highs .table tr:nth-child(14) td, .highs .table tr:nth-child(15) td, .highs .table tr:nth-child(17) td,
    .highs .table tr:nth-child(18) td {
        border-bottom: 1px solid #d0dd30;
    }

    .highs .table tr:nth-child(15) td,
    .highs .table tr:nth-child(18) td {
        font-family: 'ClanBook', sans-serif;
        ;
        padding-top: 3%;
        padding-bottom: 3%;
        border-left: none;
        border-right: none;
    }

.btn-high a {
    background: #d0dd30;
    padding: 4%;
    text-align: center;
    margin-top: 3%;
    font-size: 14px;
    font-family: 'ClanBook', sans-serif;
    ;
    color: #636569;
    float: right;
}

.btn-high {
    margin-top: 3%;
}

    .btn-high a:hover {
        background: #636569;
        color: #fff;
        text-decoration: none;
    }

.time2 {
    margin-bottom: 10%;
}

    .time2 ul {
        display: -webkit-box;
        z-index: 100;
        position: absolute;
        width: 100%;
        overflow: auto;
        white-space: nowrap;
        background: #eeeeee;
        padding-bottom: 3%;
    }

        .time2 ul > li {
            list-style: none;
            text-align: center;
            color: #636570;
            font-family: 'ClanBook', sans-serif;
            font-size: 14px;
            margin-right: 6%;
            background: #fff;
            padding: 1%;
            cursor: pointer;
            padding-right: 2%;
            padding-left: 2%;
        }

.act {
    background: #d0dd2e !important;
}

.time2 hr {
    height: 35px;
    border-top: 2px solid rgb(208, 221, 46);
}



/*********** ASAMBLEA DE ACCIONISTAS *************/
.asamblea p {
    text-align: center;
    background: #d0dd30;
    font-size: 14px;
    font-family: 'ClanBook', sans-serif;
    ;
    padding: 6%;
}

.charo ul > li {
    list-style: none;
    font-size: 14px;
    margin-bottom: 4%;
}

    .charo ul > li > a {
        color: #636569;
    }

        .charo ul > li > a > i {
            font-size: 18px;
            margin-right: 10px;
        }

.calo {
    background: #fff;
    padding: 5%;
    margin-top: 4%;
    margin-bottom: 4%;
    padding-bottom: 2%;
}

    .calo .row {
        border-bottom: 1px solid #d1d1d1;
        padding-bottom: 3%;
        margin-bottom: 6%;
    }

.homeboxes-wrap {
    position: absolute;
    bottom: 20%;
    z-index: 2;
}

.homepab {
    padding-left: 0;
    padding-right: 5px;
    margin-top: 0;
}

.homepab2 {
    padding-left: 5px;
    padding-right: 0;
    margin-top: 0;
}

.homeflexc {
    justify-content: flex-end;
}

.homepabpr {
    padding-right: 3rem;
}

.viewland {
    display: flex;
}

.viewport {
    display: none;
}


/******************* MEDIAS QUERIES **********************/
@media only screen and (max-width: 1440px) {
    .try2 {
        left: 32%;
    }

    .try3 {
        left: 52%;
    }

    .try4 {
        left: 72.2%;
    }

    /*.item1,
    .item2,
    .item3{
    height: 80vh;}*/

    .omm {
        padding-top: 5%;
    }

    #demo .carousel-control-prev {
        top: 5%;
    }

    #demo .carousel-control-next,
    #demo .carousel-control-prev {
        left: 6.5%;
    }
}

@media only screen and (max-width: 1280px) {
    #loadingbar {
        margin: 5px auto 0;
    }

    .ovv {
        margin-left: 10%;
    }

    /*.item1,
    .item2,
    .item3{
    height: 67vh;}*/

}

@media only screen and (max-width: 1024px) {
    /*.item1,
    .item2,
    .item3{
    height: 66vh;}*/

    .item2 .container,
    .item3 .container {
        padding-right: 5%;
    }

    .ovv {
        margin-left: 13%;
    }

    .item1 h1,
    .item2 h1,
    .item3 h1 {
        font-size: 35px;
    }

    .item1 h3,
    .item2 h3,
    .item3 h3 {
        font-size: 18px;
    }

    .omm {
        padding-top: 7%;
    }

    /*.heak {
    padding-left: 15px;}*/

    .homeboxes-wrap {
        bottom: 38%;
    }
}


@media only screen and (max-width: 768px) {
    .item1,
    .item2,
    .item3 {
        height: 43vh;
    }

    .omm {
        padding-top: 9%;
    }

    .one_w p,
    .two_g img {
        font-size: 13px;
    }

    .item1 h3,
    .item2 h3,
    .item3 h3 {
        font-size: 18px;
    }

    .item1 h1,
    .item2 h1,
    .item3 h1 {
        font-size: 31px;
    }

    .margen {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
    }

    .inside a {
        font-size: 12px;
    }

    .intro1 {
        margin-top: 5%;
        margin-left: -9%;
    }

    .banners > div:first-child,
    .banner1 > div:first-child,
    .banner2 > div:first-child,
    .banner3 > div:first-child,
    .banner4 > div:first-child,
    .banner5 > div:first-child,
    .banner6 > div:first-child,
    .banner7 > div:first-child,
    .banner8 > div:first-child,
    .banner9 > div:first-child,
    .banner10 > div:first-child,
    .banner11 > div:first-child,
    .banner12 > div:first-child,
    .banner13 > div:first-child,
    .banner14 > div:first-child,
    .banner15 > div:first-child,
    .banner16 > div:first-child,
    .banner17 > div:first-child,
    .banner18 > div:first-child {
        min-height: 260px;
    }

    .banners,
    .banner1,
    .banner2,
    .banner3,
    .banner4,
    .banner5,
    .banner6,
    .banner7,
    .banner8,
    .banner9,
    .banner10,
    .banner11,
    .banner12,
    .banner13,
    .banner14,
    .banner15,
    .banner16,
    .banner17,
    .banner18 {
        padding-top: 9%;
    }

    .intro1 h1 {
        font-size: 30px;
    }

    .barra ul > li {
        width: 15%;
        margin-left: 7%;
    }

    .try1 {
        left: 10%;
    }

    .btn_pres {
        width: 100%;
    }

    .downs > i {
        font-size: 25px;
    }

    .btn_pres p {
        font-size: 11px;
    }

    .try3 {
        left: 53.5%;
    }

    .try4 {
        left: 75.2%;
    }

    .barra2 ul > li {
        margin-left: 5%;
    }

    .grizzly .table thead th {
        font-size: 12px;
    }

    .grizzly .table tbody {
        font-size: 12px;
    }

    .consejeros .table-fixed thead tr:first-child th:first-child {
        padding: 7px;
    }

    .consejeros .table-fixed thead tr th {
        font-size: 11px;
    }

    .table td, .table th {
        padding: 5px;
    }

    .consejeros .table td {
        font-size: 11px;
    }

    .consejeros .table-fixed thead tr:nth-child(2) th {
        padding-top: 6px;
    }

    .torn > img {
        width: 50%;
    }

    .ten {
        margin-left: 30%;
    }

    .valorr {
        text-align: center;
    }

    .valores img {
        width: 15%;
    }

    .ciff {
        font-size: 15px;
    }

    .info p {
        margin-bottom: 2px;
    }

    .read {
        margin-top: 4%;
    }

    .banner17 > div:first-child {
        min-height: 850px;
    }

    .vow {
        top: 15%;
    }

    .mali div:nth-child(2) {
        margin-top: -17%;
    }

    .pad {
        margin: auto;
    }

    .again {
        margin: auto;
    }

    .torn {
        padding-right: 8px;
    }

    .three_g {
        margin-top: 1%;
    }

    #carouselExample3 .carousel-control-prev {
        left: -5%;
    }

    #carouselExample3 .carousel-control-next {
        right: -5%;
    }

    #carouselExample3 .carousel-inner {
        height: 350px;
        max-height: 350px;
    }

    .years {
        font-size: 3rem;
    }

    #down,
    #up {
        display: none;
    }

    .item1 h1,
    .item2 h1,
    .item3 h1 {
        font-size: 27px;
        letter-spacing: 4.5px;
    }

    .item1 h3,
    .item2 h3,
    .item3 h3 {
        font-size: 16px;
    }

    #right,
    #left {
        display: block;
    }

    #demo .carousel-control-prev {
        top: 50%;
        left: 0;
    }

    #demo .carousel-control-next {
        top: 50%;
        right: 0;
        left: auto;
    }

    .homepabpr {
        margin: auto;
    }

    .one_w {
        height: auto;
        text-align: center;
    }

        .one_w div p {
            font-size: 12px;
        }

    .three_g > div:nth-child(5) p > span, .three_g > div:nth-child(6) p > span, .three_g > div:nth-child(7) p > span {
        font-size: 13px;
    }

    .three_g > div:nth-child(5) p, .three_g > div:nth-child(6) p, .three_g > div:nth-child(7) p {
        font-size: 13px;
    }

    .three_g > div {
        font-size: 13px;
    }

    .homeboxes-wrap {
        bottom: 53%;
    }
}


@media only screen and (max-width: 767px) {

    .jiraf {
        display: none;
    }

    .rainbow {
        display: block;
    }

    .second h3 {
        font-size: 15px;
        cursor: pointer;
    }

    .second ul > li {
        font-size: 12px;
    }

    #list1,
    #list2,
    #list3,
    #list4,
    #list5 {
        display: none;
    }

    .cumbio,
    .up {
        margin-top: 0px;
    }

    .nuts li {
        font-size: 12px !important;
    }

    .menu p {
        margin-bottom: 0px;
    }

    .intro1 {
        margin-top: 7%;
        margin-left: -21%;
    }

    .banners > div:first-child,
    .banner1 > div:first-child,
    .banner2 > div:first-child,
    .banner3 > div:first-child,
    .banner4 > div:first-child,
    .banner5 > div:first-child,
    .banner6 > div:first-child,
    .banner7 > div:first-child,
    .banner8 > div:first-child,
    .banner9 > div:first-child,
    .banner10 > div:first-child,
    .banner11 > div:first-child,
    .banner12 > div:first-child,
    .banner13 > div:first-child,
    .banner14 > div:first-child,
    .banner15 > div:first-child,
    .banner16 > div:first-child,
    .banner17 > div:first-child,
    .banner18 > div:first-child {
        min-height: 190px;
    }

    .titles {
        top: 10%;
    }

    .intro1 h1 {
        font-size: 25px;
    }

    .time ul {
        padding-left: 0px;
        display: block;
        height: 100px;
        overflow: scroll;
        margin-bottom: 0px;
    }

        .time ul > li {
            width: 90%;
            font-size: 12px;
            display: list-item;
            margin: auto;
            margin-bottom: 2%;
        }

    .yactive,
    .year {
        padding: 1%;
    }

    .line {
        display: none;
    }

    .time ul > li:first-child {
        display: none;
    }

    .barra {
        margin-top: 0%;
        font-size: 11px;
    }

        .barra ul {
            padding-left: 0px;
            margin-bottom: 0px;
        }

            .barra ul > li > div {
                border-left: 21px solid transparent;
                border-right: 21px solid transparent;
            }

            .barra ul > li {
                width: 15%;
                margin-left: 7%;
                padding: 2%;
            }

    .informe {
        font-size: 11px;
    }

        .informe ul {
            padding-left: 10px;
            margin-bottom: 0px;
            margin-top: 5%;
        }

    .back1 > a {
        font-size: 11px;
    }

    .social {
        margin-top: 2%;
    }

        .social ul {
            padding-left: 0px;
            margin-bottom: 0px;
        }

            .social ul > li {
                margin-right: 6%;
            }

                .social ul > li > a {
                    font-size: 13px;
                }

    .contact {
        margin-top: 2%;
        text-align: center;
    }

        .contact > p:first-child,
        .contact > p:nth-child(2) {
            font-size: 11px;
            margin-bottom: 0px;
        }

        .contact a {
            font-size: 11px;
        }

    .foot2 {
        font-size: 9px;
    }

    .btn_pres {
        width: auto;
        margin-top: 6%;
        position: initial;
    }

    .downs > i {
        font-size: 20px;
    }

    .downs {
        margin-top: 1%;
    }

    .btn_pres p {
        font-size: 10px;
    }

    .barra2 ul > li {
        margin-left: 0%;
        width: 100%;
        margin-bottom: 3%;
    }

    .barra2 {
        margin-top: 5%;
    }

    .consejeros {
        display: none;
    }

    .toggli {
        display: block;
    }

    .said {
        font-size: 13px;
    }

    .torn {
        padding-right: 10px;
        margin-top: 1%;
    }

        .torn > img {
            width: 70%;
        }

    .mimi {
        font-size: 13px;
        background: #626569;
        color: #fff;
        padding: 10px;
    }

        .mimi p {
            margin-bottom: 0px;
        }

    .lemon {
        margin-top: 3%;
        border-bottom: 1px solid #62656938;
        padding-bottom: 10px;
        text-align: center;
    }

        .lemon div {
            font-size: 12px;
            margin: auto;
        }

            .lemon div > p {
                margin-bottom: 0px;
            }

    .heak > p {
        font-size: 11px;
    }

    .huggie {
        font-size: 12px;
    }

    .camilo > .container {
        padding: 0px;
    }

    .camilo {
        margin-top: 3%;
    }

    .bios {
        text-align: left;
        margin-right: auto;
        background: #626569;
        color: #fff;
        font-size: 11px;
        padding-bottom: 3%;
        cursor: pointer;
    }

        .bios > p {
            margin-bottom: 0px;
        }

    .privi {
        margin-bottom: 3%;
    }

    .lemon img {
        width: 80%;
    }

    .jerry {
        margin-top: 9%;
        padding-bottom: 0%;
    }

    .ten > p:first-child,
    .seven > p:first-child {
        font-size: 18px;
    }

    .ten {
        margin-left: 0%;
    }

        .ten > p:nth-child(2),
        .seven > p:nth-child(2) {
            font-size: 13px;
        }

    .vision {
        padding-top: 8%;
    }

    .seven {
        margin-right: 0%;
    }

    .iss h3 {
        font-size: 20px;
    }

    .big {
        display: none;
    }

    #small {
        display: block;
    }

    #big {
        display: none;
    }

    .break {
        letter-spacing: 1.5px;
        color: #fff;
        font-size: 12px;
        text-align: center;
        margin-top: 3%;
        margin-bottom: 5%;
    }

    .road {
        padding: 0px;
    }

        .road div {
            position: absolute;
            bottom: 0;
            text-align: right;
            right: 0;
            background: #d0dd2e;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 3.5px;
            padding-right: 6%;
            padding-left: 6%;
            padding-top: 2%;
            padding-bottom: 2%;
        }

        .road p {
            margin-bottom: 0px;
        }

            .road p > span {
                font-family: 'ClanBook', sans-serif;
                ;
            }

    .ciff {
        font-size: 13px;
        letter-spacing: 2.5px;
        margin-top: 4%;
    }

    #carouselExample .carousel-inner {
        height: 200px;
        max-height: 200px;
    }

    .five img {
        width: 30%;
    }

    .five p {
        font-size: 13px;
    }

    .story {
        min-height: 400px;
        padding-top: 5%;
    }

    .grass {
        letter-spacing: 1.5px;
        color: #626569;
        font-size: 18px;
    }

    #carouselExample2 .carousel-inner {
        height: 350px;
        max-height: 350px;
    }

    .years {
        font-size: 38px;
    }

    .metro > p:first-child {
        font-size: 20px;
    }

    .solid ul {
        color: #626569;
        font-size: 13px;
    }

    .solid p {
        font-size: 18px;
        margin-bottom: 10px;
        color: #626569;
    }

    .puesto .table thead {
        font-size: 13px;
    }

    .puesto .table tbody {
        font-size: 12px;
    }

    .table td,
    .table th {
        padding: 6px;
    }

    .done > div {
        margin-bottom: 5%;
    }

    .shine {
        font-size: 13px;
    }

    .wake {
        font-size: 12px;
    }

    .box {
        margin: auto;
    }

    .box2 {
        display: none;
    }

    .read {
        margin-bottom: 4%;
    }

    .head {
        font-size: 13px;
    }

    .info {
        font-size: 12px;
    }

    .mich {
        margin-bottom: 8%;
    }

    .titleco {
        font-size: 13px;
    }

        .titleco i {
            font-size: 14px;
        }

    .executive {
        font-size: 13px;
    }

    .word {
        font-size: 13px;
    }

    .mean {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .mali div:nth-child(2) > p {
        font-size: 15px;
    }

    .contact2 .form-group label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .vow {
        top: 9%;
    }

    .banner17 > div:first-child {
        min-height: 700px;
    }

    .elephant {
        padding-left: 15px;
    }

        .elephant p {
            font-size: 13px;
            margin-bottom: 10px;
        }

    .again {
        margin-bottom: 5%;
    }

    .month {
        font-size: 13px;
    }

    .next-e {
        font-size: 13px;
    }

    .pad {
        padding-bottom: 8% !important;
    }

    .fc-left h2 {
        font-size: 13px !important;
    }

    .fc-button-primary:disabled {
        font-size: 12px !important;
    }

    .fc-button .fc-icon {
        font-size: 13px !important;
    }

    .fc-unthemed th,
    .fc-unthemed td,
    .fc-unthemed thead,
    .fc-unthemed tbody,
    .fc-unthemed .fc-divider,
    .fc-unthemed .fc-row,
    .fc-unthemed .fc-content,
    .fc-unthemed .fc-popover,
    .fc-unthemed .fc-list-view,
    .fc-unthemed .fc-list-heading td {
        font-size: 9px;
    }

    .present {
        font-size: 13px;
    }

    .one_w,
    .two_g {
        padding: 3%;
        margin: auto;
        background: #cdde00;
    }


        .one_w img,
        .two_g img {
            width: 60%;
        }

        .one_w p,
        .two_g p {
            font-size: 12px;
        }

    .three_g > div:first-child > p {
        font-size: 13px;
    }

    .three_g > div > p {
        margin-bottom: 7px;
    }

    .three_g > div {
        font-size: 13px;
    }

        .three_g > div:nth-child(5) p,
        .three_g > div:nth-child(6) p {
            font-size: 13px;
        }

            .three_g > div:nth-child(5) p > span,
            .three_g > div:nth-child(6) p > span {
                font-size: 14px;
            }

    .gotit {
        margin-left: auto;
        margin-right: auto;
    }

    #demo .carousel-control-prev {
        top: 50%;
        left: 0;
    }

    #demo .carousel-control-next {
        top: 50%;
        right: 0;
        left: auto;
    }

    .rode,
    .ovv {
        display: none !important;
    }

    .item1 h1,
    .item2 h1,
    .item3 h1 {
        font-size: 18px;
        letter-spacing: 2.5px;
    }

    .item1 h3,
    .item2 h3,
    .item3 h3 {
        font-size: 13px;
        letter-spacing: initial;
    }

    .item1 .container,
    .item2 .container,
    .item3 .container {
        padding-top: 8%;
    }

    .item1,
    .item2,
    .item3 {
        height: 25vh;
    }

    .less {
        margin-bottom: 0%;
    }

    .headerImg {
        margin-bottom: 12%;
    }

    .inside p {
        font-size: 10px;
    }

    .inf {
        font-size: 11px !important;
    }

    .inside img {
        width: 22%;
    }

    .three_g > div:nth-child(5) p,
    .three_g > div:nth-child(6) p,
    .three_g > div:nth-child(7) p {
        font-size: 12px;
    }

    .omm {
        padding-top: 13%;
    }

    .exce {
        padding-right: 12%;
    }

    .mision {
        margin-top: 3%;
        margin-bottom: 3%;
    }

        .mision p:nth-child(2) {
            font-size: 12px;
            letter-spacing: initial;
        }

    #carouselExample3 .carousel-inner {
        height: 250px;
        max-height: 250px;
    }

    .light ul {
        text-align: -webkit-center;
    }

        .light ul > li {
            width: 90%;
        }

    .parasite {
        margin-top: 3%;
    }

    .metro {
        margin-top: 1%;
        margin-bottom: 5%;
    }

    .drift {
        margin-bottom: 0%;
    }

    .banners,
    .banner1,
    .banner2,
    .banner3,
    .banner4,
    .banner5,
    .banner6,
    .banner7,
    .banner8,
    .banner9,
    .banner10,
    .banner11,
    .banner12,
    .banner13,
    .banner14,
    .banner15,
    .banner16,
    .banner17,
    .banner18 {
        padding-top: 13%;
    }

    .foal > div {
        margin: auto;
    }

    .soon {
        font-size: 15px;
        margin-bottom: 2%;
        margin-top: 5%;
    }

    .torna {
        margin-top: 0%;
    }

        .torna > li {
            margin-bottom: 3%;
            font-size: 12px;
        }

    .grey {
        padding-top: 6%;
    }

    .homeboxes-wrap {
        position: initial;
        padding-bottom: 10px;
    }

    .homepab {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 0.5rem;
    }

    .homepab2 {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 0.5rem;
    }

    .homepabpr {
        padding-right: 0;
    }

    .homeflexc {
        justify-content: center;
    }

    .planto {
        margin-top: 0px !important;
    }

    .three_g {
        margin-top: 3%;
    }

    .item1 .container, .item2 .container, .item3 .container {
        padding-top: 1%;
    }
}


@media only screen and (max-width: 375px) {
    .lemon img {
        width: 100%;
    }

    .overlay p {
        font-size: 13px;
    }

    .headerImg {
        margin-bottom: 19%;
    }

    .item1,
    .item2,
    .item3 {
        height: 21vh;
    }

    .headerImg {
        margin-bottom: 17%;
    }

    .homeboxes-wrap {
        position: absolute;
        bottom: 0;
        z-index: 2;
        padding-bottom: 20px;
    }

    .homepab {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 0.5rem;
    }

    .homepab2 {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 0.5rem;
    }

    .homepabpr {
        padding-right: 0;
    }

    .homeflexc {
        justify-content: center;
    }

    .contact {
        padding-left: 0px;
        padding-top: 6px;
        text-align: center;
    }
}

@media only screen and (max-width: 320px) {

    .banners > div:first-child,
    .banner1 > div:first-child,
    .banner2 > div:first-child,
    .banner3 > div:first-child,
    .banner4 > div:first-child,
    .banner5 > div:first-child,
    .banner6 > div:first-child,
    .banner7 > div:first-child,
    .banner8 > div:first-child,
    .banner9 > div:first-child,
    .banner10 > div:first-child,
    .banner11 > div:first-child,
    .banner12 > div:first-child,
    .banner13 > div:first-child,
    .banner14 > div:first-child,
    .banner15 > div:first-child,
    .banner16 > div:first-child,
    .banner17 > div:first-child,
    .banner18 > div:first-child {
        min-height: 160px;
    }

    .intro1 h1 {
        font-size: 20px;
    }

    .try1 {
        left: 11%;
    }

    .headerImg {
        margin-bottom: 29%;
    }

    .item1,
    .item2,
    .item3 {
        height: 18vh;
    }

    .omm {
        padding-top: 15%;
    }

    .titles {
        top: 8%;
    }

    .homeboxes-wrap {
        position: absolute;
        bottom: 0;
        z-index: 2;
        padding-bottom: 20px;
    }

    .homepab {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 0.5rem;
    }

    .homepab2 {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 0.5rem;
    }

    .contact {
        padding-left: 0;
        padding-top: 6px;
        text-align: center;
    }
}

@media (min-width: 200px ) and (max-width: 600px) {
    .viewland {
        display: none;
    }

    .viewport {
        display: block;
    }

    .one_w {
        height: auto;
        text-align: left;
    }

    #demo .carousel-control-prev {
        top: 50%;
        left: 0;
        display: none;
    }

    #demo .carousel-control-next {
        top: 50%;
        right: 0;
        left: auto;
        display: none;
    }
}


.btn-warning {
    background-color: #F1F1F1;
    border-color: #626569;
    color: #626569;
}

    .btn-warning.btn-outline {
        color: #626569;
    }

        .btn-warning.btn-outline:hover {
            background-color: #CDDE00;
            border-color: #626569;
            color: #626569;
        }

    .btn-warning:hover,
    .btn-warning:focus,
    .btn-warning:active,
    .btn-warning.active,
    .open .dropdown-toggle.btn-warning {
        background-color: #CDDE00;
        border-color: #626569;
        color: #626569;
    }

    .btn-warning:not(:disabled):not(.disabled).active, .btn-warning:not(:disabled):not(.disabled):active, .show > .btn-warning.dropdown-toggle {
        background-color: #CDDE00;
        border-color: #626569;
        color: #626569;
    }

