@charset "utf-8";

/*============================== 
        CSS RESET
================================= */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
:focus {
    outline: 0;
}
ins {
    text-decoration: none;
}
del {
    text-decoration: line-through;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
}
/* Hide from IE Mac \*/ 
.clearfix{
    display: block;
}
/* End hide from IE Mac */ 
.none {
    display: none;
}
/* End Clearfix */
/**
 * Swiper 4.2.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 1, 2018
 */
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
    float: left;
}
.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.swiper-container-toolbar{
    display: none;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}
.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}
.swiper-invisible-blank-slide {
    visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
    display: none;
}
.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: 300ms opacity;
    -o-transition: 300ms opacity;
    transition: 300ms opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
    position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
}
button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
    transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: 200ms top, 200ms -webkit-transform;
    transition: 200ms top, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms top;
    transition: 200ms transform, 200ms top;
    transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms left, 200ms -webkit-transform;
    transition: 200ms left, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms left;
    transition: 200ms transform, 200ms left;
    transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms right, 200ms -webkit-transform;
    transition: 200ms right, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #ff0000;
    position: absolute;
    left: 0;
    top: 70px;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000000;
}
.swiper-pagination-lock {
    display: none;
}
/* Scrollbar */
.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}
.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}
.swiper-scrollbar-cursor-drag {
    cursor: move;
}
.swiper-scrollbar-lock {
    display: none;
}
.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.swiper-slide-zoomed {
    cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* a11y */
.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-container-cube {
    overflow: visible;
}
.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}
.swiper-container-flip {
    overflow: visible;
}
.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
    /* Windows 8 IE 10 fix */
    -ms-perspective: 1200px;
}


/*!
 * FullCalendar v3.5.1 Stylesheet
 * Docs & License: https://fullcalendar.io/
 * (c) 2017 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;
    opacity: .3;
}

.fc-bgevent { /* default look for background events */
    background: rgb(143, 223, 130);
    opacity: .3;
}

.fc-nonbusiness { /* default look for non-business-hours areas */
    /* will inherit .fc-bgevent's styles */
    background: #d7d7d7;
}


/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/

.fc button {
    /* force height to include the border and padding */
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

    /* dimensions */
    margin: 0;
    height: 2.1em;
    padding: 0 .6em;

    /* text & cursor */
    font-size: 1em; /* normalize */
    white-space: nowrap;
    cursor: pointer;
}

/* Firefox has an annoying inner border */
.fc button::-moz-focus-inner { margin: 0; padding: 0; }

.fc-state-default { /* non-theme */
    border: 1px solid;
}

.fc-state-default.fc-corner-left { /* non-theme */
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.fc-state-default.fc-corner-right { /* non-theme */
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    float: right !important;
}

/* icons in buttons */

.fc button .fc-icon { /* non-theme */
    position: relative;
    top: -0.05em; /* seems to be a good adjustment across browsers */
    margin: 0 .2em;
    vertical-align: middle;
}

/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/

.fc-state-default {
    /* background-color: #f5f5f5;
     background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
     background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
     background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
     background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
     background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
     background-repeat: repeat-x;
     border-color: #e6e6e6 #e6e6e6 #bfbfbf;
     border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
     color: #333;
     text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
     box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);*/
    background: transparent;
    border: 0;
    color: #fff !important;
    font-size: 30px !important;
    width: 50px !important;
    height: 50px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
    /*color: #333333;
    background-color: #e6e6e6;*/
}

.fc-state-hover {
    color: #333333;
    text-decoration: none;
    background-position: 0 -15px;
    -webkit-transition: background-position 0.1s linear;
    -moz-transition: background-position 0.1s linear;
    -o-transition: background-position 0.1s linear;
    transition: background-position 0.1s linear;
}

.fc-state-down,
.fc-state-active {
    background-color: #cccccc;
    background-image: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-disabled {
    cursor: default;
    background-image: none;
    opacity: 0.65;
    box-shadow: none;
}


/* Buttons Groups
--------------------------------------------------------------------------------------------------*/

.fc-button-group {
    display: inline-block;
}

/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/

.fc .fc-button-group > * { /* extra precedence b/c buttons have margin set to zero */
    float: left;
    margin: 0 0 0 -1px;
}

.fc .fc-button-group > :first-child { /* same */
    margin-left: 0;
}


/* Popover
--------------------------------------------------------------------------------------------------*/

.fc-popover {
    position: absolute;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

.fc-popover .fc-header { /* TODO: be more consistent with fc-head/fc-body */
    padding: 2px 4px;
}

.fc-popover .fc-header .fc-title {
    margin: 0 2px;
}

.fc-popover .fc-header .fc-close {
    cursor: pointer;
}

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
    float: left;
}

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
    float: right;
}


/* 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-clear {
    clear: both;
}

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-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;
}

.fc th,
.fc td {
    border-style: solid;
    border-width: 1px;
    padding: 0;
    vertical-align: top;
    word-break: break-word;
}

.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 w/ .ui-widget-content 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 "helper" (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-helper-skeleton {
    z-index: 5;
}

.fc .fc-row .fc-content-skeleton table,
.fc .fc-row .fc-content-skeleton td,
.fc .fc-row .fc-helper-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-helper-skeleton td {
    /* don't put a border between events and/or the day number */
    border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td, /* cells with events inside (so NOT the day number cell) */
.fc-row .fc-helper-skeleton tbody td {
    /* don't put a border between event cells */
    border-top: 0;
}


/* Scrolling Container
--------------------------------------------------------------------------------------------------*/

.fc-scroller {
    -webkit-overflow-scrolling: touch;
    min-height: 400px;
    height: auto !important;
}

/* TODO: move to agenda/basic */
.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: inline-block; /* make the <a> tag block */
    padding: 0.25rem !important;
    font-size: .85em;
    line-height: 1.3;
    border-radius: 3px;
    color: #1a1a1a !important;
    border: 2px solid transparent; /* default BORDER color */
    background-color: transparent !important;
    cursor: pointer;
}

.fc-event-dot {
    background-color: #3a87ad; /* 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, /* causes a "warning" cursor. applied on body */
.fc-not-allowed .fc-event { /* to override an event's custom cursor */
    cursor: not-allowed;
}

.fc-event .fc-bg { /* the generic .fc-bg already does position */
    z-index: 1;
    background: #fff;
    opacity: .25;
}

.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.fc-dragging {
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}


/* 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-day-grid-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;
}

.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, /* for gutter border */
.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 .fc-popover .fc-header .fc-close {
    color: #666;
}

.fc-unthemed td.fc-today {
    background: #fcf8e3;
}

.fc-unthemed .fc-disabled-day {
    background: #d7d7d7;
    opacity: .3;
}


/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/

.fc-icon {
    display: inline-block;
    /*height: 1em;*/
    line-height: 1em;
    font-size: 1em;
    text-align: center;
    overflow: hidden;
    font-family: "Courier New", Courier, monospace;

    /* don't allow browser text-selection */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*
Acceptable font-family overrides for individual icons:
        "Arial", sans-serif
        "Times New Roman", serif

NOTE: use percentage font sizes or else old IE chokes
*/

.fc-icon:after {
    position: relative;
}

.fc-icon-left-single-arrow:after {
    content: "\02039";
    font-weight: bold;
    font-size: 200%;
    top: -7%;
}

.fc-icon-right-single-arrow:after {
    content: "\0203A";
    font-weight: bold;
    font-size: 200%;
    top: -7%;
}

.fc-icon-left-double-arrow:after {
    content: "\000AB";
    font-size: 160%;
    top: -7%;
}

.fc-icon-right-double-arrow:after {
    content: "\000BB";
    font-size: 160%;
    top: -7%;
}

.fc-icon-left-triangle:after {
    content: "\25C4";
    font-size: 125%;
    top: 3%;
}

.fc-icon-right-triangle:after {
    content: "\25BA";
    font-size: 125%;
    top: 3%;
}

.fc-icon-down-triangle:after {
    content: "\25BC";
    font-size: 125%;
    top: 2%;
}

.fc-icon-x:after {
    content: "\000D7";
    font-size: 200%;
    top: 6%;
}


/* Popover
--------------------------------------------------------------------------------------------------*/

.fc-unthemed .fc-popover {
    border-width: 1px;
    border-style: solid;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
    font-size: .9em;
    margin-top: 2px;
}


/* List View
--------------------------------------------------------------------------------------------------*/

.fc-unthemed .fc-list-item:hover td {
    background-color: #f5f5f5;
}



/* Colors
--------------------------------------------------------------------------------------------------*/

.ui-widget .fc-disabled-day {
    background-image: none;
}


/* Popover
--------------------------------------------------------------------------------------------------*/

.fc-popover > .ui-widget-header + .ui-widget-content {
    border-top: 0; /* where they meet, let the header have the border */
}


/* Global Event Styles
--------------------------------------------------------------------------------------------------*/

.ui-widget .fc-event {
    /* overpower jqui's styles on <a> tags. TODO: more DRY */
    color: #fff; /* default TEXT color */
    text-decoration: none; /* if <a> has an href */

    /* undo ui-widget-header bold */
    font-weight: normal;
}


/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/

.ui-widget td.fc-axis {
    font-weight: normal; /* overcome bold */
}


/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-slats .ui-widget-content { 
    background: none; /* see through to fc-bg */
}



.fc.fc-bootstrap3 a {
    text-decoration: none;
}

.fc.fc-bootstrap3 a[data-goto]:hover {
    text-decoration: underline;
}

.fc-bootstrap3 hr.fc-divider {
    border-color: inherit;
}

.fc-bootstrap3 .fc-today.alert {
    border-radius: 0;
}


/* Popover
--------------------------------------------------------------------------------------------------*/

.fc-bootstrap3 .fc-popover .panel-body {
    padding: 0; /* undo built-in padding */
}


/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/

.fc-bootstrap3 .fc-time-grid .fc-slats table {
    /* some themes have background color. see through to slats */
    background: none;
}



/* Toolbar
--------------------------------------------------------------------------------------------------*/

.fc-toolbar {
    text-align: center;
}

.fc-toolbar.fc-header-toolbar {
    margin-bottom: 1em;
}

.fc-toolbar.fc-footer-toolbar {
    margin-top: 1em;
}

.fc-toolbar .fc-left {
    display: block;
    float: none;
}

.fc-toolbar .fc-right {
    float: right;
    display: none;
}

.fc-toolbar .fc-right .fc-basicWeekOneDay-button{
    display: none !important;
}

.fc-toolbar .fc-center {
    display: block;
    line-height: 1;
    font-size: 18px;
    line-height: 18px;
}

/* the things within each left/right/center section */
.fc .fc-toolbar > * > * { /* extra precedence to override button border margins */
    float: left;
    margin-left: .75em;
}

/* the first thing within each left/center/right section */
.fc .fc-toolbar > * > :first-child { /* extra precedence to override button border margins */
    margin-left: 0;
    width: 100%;
    background: #a1d683;
}

/* title text */

.fc-toolbar h2 {
    margin: 0;
}


.fc .fc-toolbar h2{
    margin-top: -48px !important;
    display: block !important;
    margin: 0 0 0 0;
    padding: 0px;
    font-size: 18px;
    line-height: 42px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #fff;
}
/* button layering (for border precedence) */

.fc-toolbar button {
    position: relative;
}

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
    z-index: 2;
}

.fc-toolbar .fc-state-down {
    z-index: 3;
}

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
    z-index: 4;
}

.fc-toolbar button:focus {
    z-index: 5;
}


/* View Structure
--------------------------------------------------------------------------------------------------*/

/* 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, /* scope positioning and z-index's for everything within the view */
.fc-view > table { /* so dragged elements can be above the view's main element */
    position: relative;
    z-index: 1;
}



/* BasicView
--------------------------------------------------------------------------------------------------*/

/* day row structure */

.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
    /* there may be week numbers in these views, so no padding-top */
    padding-bottom: 1em; /* ensure a space at bottom of cell for user selecting/clicking */
}

.fc-basic-view .fc-body .fc-row {
    min-height: 4em; /* ensure that all rows are at least this tall */
}

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */

.fc-row.fc-rigid {
    overflow: hidden;
}

.fc-row.fc-rigid .fc-content-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

/* week and day number styling */

.fc-day-top.fc-other-month {
    opacity: 0.3;
}

.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
    padding: 2px;
}

.fc-basic-view th.fc-week-number,
.fc-basic-view th.fc-day-number {
    padding: 0 2px; /* column headers can't have as much v space */
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number { float: right; }
.fc-rtl .fc-basic-view .fc-day-top .fc-day-number { float: left; }

.fc-ltr .fc-basic-view .fc-day-top .fc-week-number { float: left; border-radius: 0 0 3px 0; }
.fc-rtl .fc-basic-view .fc-day-top .fc-week-number { float: right; border-radius: 0 0 0 3px; }

.fc-basic-view .fc-day-top .fc-week-number {
    min-width: 1.5em;
    text-align: center;
    background-color: #f2f2f2;
    color: #808080;
}

/* when week/day number have own column */

.fc-basic-view td.fc-week-number {
    text-align: center;
}

.fc-basic-view td.fc-week-number > * {
    /* work around the way we do column resizing and ensure a minimum width */
    display: inline-block;
    min-width: 1.25em;
}


/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/

.fc-agenda-view .fc-day-grid {
    position: relative;
    z-index: 2; /* so the "more.." popover will be over the time grid */
}

.fc-agenda-view .fc-day-grid .fc-row {
    min-height: 3em; /* all-day section will never get shorter than this */
}

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
    padding-bottom: 1em; /* give space underneath events for clicking/selecting days */
}


/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/

.fc .fc-axis { /* .fc to overcome default cell styles */
    vertical-align: middle;
    padding: 0 4px;
    white-space: nowrap;
}

.fc-ltr .fc-axis {
    text-align: right;
    width: 30px !important;
}

.fc-rtl .fc-axis {
    text-align: left;
}


/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/

.fc-time-grid-container, /* so scroll container's z-index is below all-day */
.fc-time-grid { /* so slats/bg/content/etc positions get scoped within here */
    position: relative;
    z-index: 1;
}

.fc-time-grid {
    min-height: 100%; /* so if height setting is 'auto', .fc-bg stretches to fill height */
}

.fc-time-grid table { /* don't put outer borders on slats/bg/content/etc */
    border: 0 hidden transparent;
}

.fc-time-grid > .fc-bg {
    z-index: 1;
}

.fc-time-grid .fc-slats,
.fc-time-grid > hr { /* the <hr> AgendaView injects when grid is shorter than scroller */
    position: relative;
    z-index: 2;
}

.fc-time-grid .fc-content-col {
    position: relative; /* because now-indicator lives directly inside */
}

.fc-time-grid .fc-content-skeleton {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
}

/* divs within a cell within the fc-content-skeleton */

.fc-time-grid .fc-business-container {
    position: relative;
    z-index: 1;
}

.fc-time-grid .fc-bgevent-container {
    position: relative;
    z-index: 2;
}

.fc-time-grid .fc-highlight-container {
    position: relative;
    z-index: 3;
}

.fc-time-grid .fc-event-container {
    position: relative;
    z-index: 4;
}

.fc-time-grid .fc-now-indicator-line {
    z-index: 5;
}

.fc-time-grid .fc-helper-container { /* also is fc-event-container */
    position: relative;
    z-index: 6;
}


/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-slats td {
    height: 1.5em;
    border-bottom: 0; /* each cell is responsible for its top border */
}

.fc-time-grid .fc-slats .fc-minor td {
    border-top-style: dotted;
}


/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-highlight-container { /* a div within a cell within the fc-highlight-skeleton */
    position: relative; /* scopes the left/right of the fc-highlight to be in the column */
}

.fc-time-grid .fc-highlight {
    position: absolute;
    left: 0;
    right: 0;
    /* top and bottom will be in by JS */
}


/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/

.fc-ltr .fc-time-grid .fc-event-container { /* space on the sides of events for LTR (default) */
    margin: 0 2.5% 0 2px;
}

.fc-rtl .fc-time-grid .fc-event-container { /* space on the sides of events for RTL */
    margin: 0 2px 0 2.5%;
}

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
    position: absolute;
    z-index: 1; /* scope inner z-index's */
}

.fc-time-grid .fc-bgevent {
    /* background events always span full width */
    left: 0;
    right: 0;
}


/* Generic Vertical Event
--------------------------------------------------------------------------------------------------*/

.fc-v-event.fc-not-start { /* events that are continuing from another day */
    /* replace space made by the top border with padding */
    border-top-width: 0;
    padding-top: 1px;

    /* remove top rounded corners */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.fc-v-event.fc-not-end {
    /* replace space made by the top border with padding */
    border-bottom-width: 0;
    padding-bottom: 1px;

    /* remove bottom rounded corners */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}


/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/

.fc-time-grid-event {
    overflow: hidden; /* don't let the bg flow over rounded corners */
}

.fc-time-grid-event.fc-selected {
    /* need to allow touch resizers to extend outside event's bounding box */
    /* common fc-selected styles hide the fc-bg, so don't need this anyway */
    overflow: visible;
}

.fc-time-grid-event.fc-selected .fc-bg {
    display: none; /* hide semi-white background, to appear darker */
}

.fc-time-grid-event .fc-content {
    overflow: hidden; /* for when .fc-selected */
}

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
    padding: 0 1px;
}

.fc-time-grid-event .fc-time {
    font-size: .85em;
    white-space: nowrap;
}

/* short mode, where time and title are on the same line */

.fc-time-grid-event.fc-short .fc-content {
    /* don't wrap to second line (now that contents will be inline) */
    white-space: nowrap;
}

.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
    /* put the time and title on the same line */
    display: inline-block;
    vertical-align: top;
}

.fc-time-grid-event.fc-short .fc-time span {
    display: none; /* don't display the full time text... */
}

.fc-time-grid-event.fc-short .fc-time:before {
    content: attr(data-start); /* ...instead, display only the start time */
}

.fc-time-grid-event.fc-short .fc-time:after {
    content: "\000A0-\000A0"; /* seperate with a dash, wrapped in nbsp's */
}

.fc-time-grid-event.fc-short .fc-title {
    font-size: .85em; /* make the title text the same size as the time */
    padding: 0; /* undo padding from above */
}

/* resizer (cursor device) */

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    overflow: hidden;
    line-height: 8px;
    font-size: 11px;
    font-family: monospace;
    text-align: center;
    cursor: s-resize;
}

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
    content: "=";
}

/* resizer (touch device) */

.fc-time-grid-event.fc-selected .fc-resizer {
    /* 10x10 dot */
    border-radius: 5px;
    border-width: 1px;
    width: 8px;
    height: 8px;
    border-style: solid;
    border-color: inherit;
    background: #fff;
    /* horizontally center */
    left: 50%;
    margin-left: -5px;
    /* center on the bottom edge */
    bottom: -5px;
}


/* Now Indicator
--------------------------------------------------------------------------------------------------*/

.fc-time-grid .fc-now-indicator-line {
    border-top-width: 1px;
    left: 0;
    right: 0;
}

/* arrow on axis */

.fc-time-grid .fc-now-indicator-arrow {
    margin-top: -5px; /* vertically center on top coordinate */
}

.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
    left: 0;
    /* triangle pointing right... */
    border-width: 5px 0 5px 6px;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
    right: 0;
    /* triangle pointing left... */
    border-width: 5px 6px 5px 0;
    border-top-color: transparent;
    border-bottom-color: transparent;
}



/* List View
--------------------------------------------------------------------------------------------------*/

/* possibly reusable */

.fc-event-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 5px;
}

/* view wrapper */

.fc-rtl .fc-list-view {
    direction: rtl; /* unlike core views, leverage browser RTL */
}

.fc-list-view {
    border-width: 1px;
    border-style: solid;
}

/* table resets */

.fc .fc-list-table {
    table-layout: auto; /* for shrinkwrapping cell content */
}

.fc-list-table td {
    border-width: 1px 0 0;
    padding: 8px 14px;
    vertical-align: middle;
}

.fc-list-table tr:first-child td {
    border-top-width: 0;
}

/* day headings with the list */

.fc-list-heading {
    border-bottom-width: 1px;
}

.fc-list-heading td {
    font-weight: bold;
}

.fc-ltr .fc-list-heading-main { float: left; }
.fc-ltr .fc-list-heading-alt { float: right;     margin-right: 20px;}

.fc-rtl .fc-list-heading-main { float: right; }
.fc-rtl .fc-list-heading-alt { float: left; }

/* event list items */

.fc-list-item.fc-has-url {
    cursor: pointer; /* whole row will be clickable */
}

.fc-list-item-marker,
.fc-list-item-time {
    white-space: nowrap;
    width: 1px;
}

/* make the dot closer to the event title */
.fc-ltr .fc-list-item-marker { padding-right: 0; }
.fc-rtl .fc-list-item-marker { padding-left: 0; }

.fc-list-item-title a {
    /* every event title cell has an <a> tag */
    text-decoration: none;
    color: inherit;
}

.fc-list-item-title a[href]:hover {
    /* hover effect only on titles with hrefs */
    text-decoration: underline;
}

/* message when no events */

.fc-list-empty-wrap2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.fc-list-empty-wrap1 {
    width: 100%;
    height: 100%;
    display: table;
}

.fc-list-empty {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.fc-unthemed .fc-list-empty { /* theme will provide own background */
    background-color: #eee;
}

/**
 * jQuery Timepicker - v1.3.5 - 2016-07-10
 * http://timepicker.co
 *
 * Enhances standard form input fields helping users to select (or type) times.
 *
 * Copyright (c) 2016 Willington Vega; Licensed MIT, GPL
 */

.ui-timepicker-container {
    position: absolute;
    overflow: hidden;
    box-sizing: border-box;
}

.ui-timepicker {
    box-sizing: content-box;
    display: block;
    height: 205px;
    list-style: none outside none;
    margin: 0;
    padding: 0 1px;
    text-align: center;
}

.ui-timepicker-viewport {
    box-sizing: content-box;
    display: block;
    height: 205px;
    margin: 0;
    padding: 0;
    overflow: auto;
    overflow-x: hidden; /* IE */
}

.ui-timepicker-standard {
    /* overwrites .ui-widget */
    font-family: Verdana,Arial,sans-serif;
    font-size: 1.1em;
    /* overwrites .ui-widget-content */
    background-color: #FFF;
    border: 0;
    color: #222;
    /* overwrites .ui-menu */
    margin: 0;
    padding: 2px;
}
.ui-timepicker-standard a {
    border: 1px solid transparent;
    color: #222;
    display: block;
    padding: 0.2em 0.4em;
    text-decoration: none;
}
.ui-timepicker-standard .ui-state-hover {
    /* overwrites .ui-state-hover */
    background-color: #DADADA;
    border: 1px solid #999;
    font-weight: normal;
    color: #212121;
}
.ui-timepicker-standard .ui-menu-item {
    /* overwrites .ui-menu and .ui-menu-item */
    /*clear: left;
    float: left;*/
    margin: 0;
    padding: 0;
}

.ui-timepicker-corners,
.ui-timepicker-corners .ui-corner-all {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.ui-timepicker-hidden {
    /* overwrites .ui-helper-hidden */
    display: none;
}

.ui-timepicker-no-scrollbar .ui-timepicker {
    border: none;
}
@media (max-width: 768px) {
    .fc-right .fc-button-group{
        display: none !important;
    }
    .fc-toolbar.fc-header-toolbar {
        margin-bottom: 1em;
        margin-top: 1em;
    }
    .fc-toolbar .fc-left {
        float: none;
    }
    .fc .fc-toolbar > * > * {
        float: none;
        margin-left: auto;
        display: inline-block
    }
    .fc-today-button{
        margin: auto;
        display: block;
    }
}


/*azul #003a5dverde #a1d683verde oscuro #3dae2b*/

html,
body {
    position: relative;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Lato", Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #232323;
    font-size: 16px;
    line-height: 1.4;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    overflow: hidden;
    overflow-y: scroll;
}

input,
textarea {
    color: #232323;
    font-size: 18px;
}

.clear {
    clear: both;
    display: block;
}

.clearleft {
    clear: both;
    float: left;
    display: block;
}

a {
    color: #003a5d;
    text-decoration: underline;
}

p {
    padding: 0px;
    margin: 0px;
    line-height: 20px;
}

blockquote {
    background: #f1f7f8;
    padding: 20px;
    margin: 0 0 20px 0;
    font-size: 22px;
    line-height: 30px;
    font-weight: 300;
}

blockquote span {
    display: block;
    color: #222222;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 30px;
}

.videocontainer {
    max-width: 100%;
    padding: 0;
    display: block;
    margin: 0;
}

#mobile_wrap {
    width: 100%;
    margin: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
b {
    color: #003a5d;
}

.info_popup {
    width: 90%;
    padding: 10px 2%;
    position: fixed;
    bottom: 30px;
    left: 3%;
    font-size: 12px;
    z-index: 999999;
    background-color: #000;
    color: #fff;
    font-weight: 300;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.info_popup:before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 45%;
    border-width: 15px 15px 0 15px;
    border-style: solid;
    border-color: #000 transparent;
    display: block;
    width: 0;
}

.info_popup h2 {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.2px;
    padding: 0;
    margin: 0px;
}

.info_popup h3 {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.2px;
    padding: 0 0 5px 0;
    margin: 0px;
}

.info_popup p {
    text-align: center;
    line-height: 16px;
}

.info_popup i {
    text-align: center;
    line-height: 16px;
    width: 100%;
    display: block;
    font-style: italic;
    padding: 0 0 10px 0;
    color: #ddd;
}

.info_popup span {
    font-weight: 700;
}

.close_info_popup {
    position: absolute;
    top: 0px;
    right: -30px;
    z-index: 9999999;
    cursor: pointer;
}

.close_info_popup img {
    display: block;
    width: 50%;
}


/*===============================================*/


/* 3. H TITLES		 						 */


/*===============================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
    letter-spacing: -0.5px;
    color: #003a5d;
    padding: 0 0 20px 0;
    margin: 0;
    font-family: "Roboto", Arial, sans-serif;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

h2.page_title {
    width: 94%;
    font-size: 20px;
    line-height: 25px;
    font-weight: 300;
    padding: 20px 0 15px 0;
    margin: 0px 3% 15px 3%;
    border-bottom: 1px #f0f0f0 solid;
    display: inline-block;
    letter-spacing: -0.5px;
}

h2.page_title span {
    font-weight: 700;
}

h2.blog_title {
    width: 90%;
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
    padding: 10px 0 15px 0;
    margin: 0px 5% 15px 5%;
    border-bottom: 1px #f0f0f0 solid;
    display: inline-block;
    letter-spacing: -0.5px;
}

h3.page_subtitle {
    width: 95%;
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
    padding: 10px 0 10px 5%;
    margin: 0px 0 15px 0;
    background-color: #86d7ec;
    display: inline-block;
    letter-spacing: -0.5px;
}


/*===============================================*/


/* 4. HEADER AND HEADER NAVIGATION */


/*===============================================*/

.navbar {
    width: 94%;
    padding: 0 3%;
    height: 70px;
    display: flex;
    align-items: center;
}

.navbar--bg {
    background-color: #003a5d;
}

bg-primary {
    background-color: #003a5d;
}

h3.title-liga {
    background: #003a5d;
    color: #fff;
    padding: 5px;
}

.navbar--fixed {
    position: fixed;
    left: 0;
    z-index: 999999;
}

.navbar--fixed-top {
    top: 0;
}

.navbar--fixed-bottom {
    bottom: 0;
}

.navbar__col {
    flex-grow: 1;
}

.navbar__col--title {
    font-size: 28px;
    font-weight: 900;
}

.navbar__col-subtitle {
    display: block;
    font-size: 10px;
    font-weight: 300;
}

.navbar__col--title-sm {
    font-size: 22px;
}

.navbar__col--title-centered {
    text-align: center;
}

.navbar__col--title a {
    color: #060043;
    display: block;
    margin-top: 6px;
}

.navbar__col--title a span {
    color: #060043;
}

.navbar__col--icon {
    width: 30px;
    flex-grow: 0;
    position: relative;
}

.navbar__col--icon img {
    display: block;
    max-width: 100%;
}

.navbar__col--icon-left {
    margin-right: 25px;
}

.navbar__col--icon-right {
    margin-left: 25px;
}

.navbar__icon-bullet {
    position: absolute;
    top: -7.5px;
    right: -7.5px;
    font-size: 10px;
    width: 15px;
    height: 15px;
    background-color: #003a5d;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    line-height: 15px;
    -webkit-box-shadow: 0px 0px 4px 0px #303030;
    -moz-box-shadow: 0px 0px 4px 0px #303030;
    box-shadow: 0px 0px 4px 0px #303030;
}


/*===============================================*/


/* 5. CUSTOM BUTTONS */


/*===============================================*/

.btn {
    display: inline-block;
    color: #fff;
    background-color: #ff0000;
    background: -webkit-linear-gradient(60deg, #ff0000, #cc0000);
    background: linear-gradient(60deg, #ff0000, #cc0000);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    padding: 12px 30px;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
}

.btn--full {
    width: 100%;
    padding: 12px 0px;
    text-align: center;
    margin: 0 0 40px 0;
}

.btn--cart {
    width: 50%;
    padding: 12px 0px;
    float: right;
    text-align: center;
}

a.button_small {
    background-color: #060043;
    display: inline-block;
    color: #222222;
    padding: 10px 20px;
    text-align: center;
    -webkit-appearance: none;
}

.button {
    border: none;
    color: #222222;
    text-decoration: none;
    text-align: center;
    display: block;
    border-radius: 0px 0px 0px 0px;
    line-height: 38px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background: none;
    padding: 0 10px;
    margin: 0;
    height: 40px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    background-color: #f7f7f7;
}

.button.active {
    background: #060043;
    color: #222222;
}

.buttons-row .button:first-child {
    border-radius: 0px 0px 0px 0px;
    border-left-width: 0px;
}

.buttons-row .button:last-child {
    border-radius: 0px 0px 0px 0px;
}

.btyellow {
    background-color: #060043;
    color: #fff;
}

.btmint {
    background-color: #61bb7e;
    color: #fff;
}


/*===============================================*/


/* 6. LEFT AND RIGHT SLIDE PANELS */


/*===============================================*/


/* === Panels === */

.panel-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
    z-index: 5999;
    display: none;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    margin-left: 0;
}

.panel-overlay.active {}

.panel {
    z-index: 100000;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position: absolute;
    width: 85%;
    top: 0;
    height: 100%;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    color: #222222;
}

.panel-left,
.pagepanel {
    background-color: #003a5d;
}

.panel-right {
    background-color: #fff;
}

.panel.panel-left.panel-reveal {
    left: -95%;
}
.panel-left .close-panel img{
    filter: brightness(2000%);
}

.panel.panel-left.panel-reveal.active {
    -moz-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, .5);
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, .5);
}

.panel.panel-right.panel-reveal {
    right: -85%;
}

body.with-panel-left-reveal .views,
body.with-panel-right-reveal .views {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
}

body.with-panel-left-reveal .panel-overlay,
body.with-panel-right-reveal .panel-overlay {
    display: block;
}

body.with-panel-left-reveal .views {
    -webkit-transform: translate3d(85%, 0, 0);
    transform: translate3d(85%, 0, 0);
}

body.with-panel-left-reveal .panel-overlay {
    opacity: 1;
    display: block;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
}

body.with-panel-left-reveal .panel-left {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
}

body.with-panel-right-reveal .views {
    -webkit-transform: translate3d(-85%, 0, 0);
    transform: translate3d(-85%, 0, 0);
}

body.with-panel-right-reveal .panel-overlay {
    margin-left: -85%;
}

body.with-panel-right-reveal .panel-right {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
}

body.panel-closing .views {
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
}


/* 6-1. USER ACCOUNT SIDEBAR RIGHT */

.user_login_info {
    padding: 0px;
}

.user_thumb {
    width: 100%;
    height: 450px;
    margin: auto;
    position: relative;
    background-color: #f1f7f8;
}

.user_details {
    position: absolute;
    bottom: 20px;
    left: 0px;
    width: 100%;
    z-index: 888;
}

.user_details p {
    padding: 0 0 0 10px;
    text-align: left;
    font-size: 14px;
    color: #060043;
}

.user_details p span {
    display: block;
    font-size: 18px;
    padding: 5px 0 0 0;
    color: #060043;
    font-weight: 400;
}

.user_avatar {
    z-index: 999;
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30%;
}

.user_avatar img {
    display: block;
    max-width: 100%;
    margin: 10px 0 0 0;
    border-radius: 50%;
}

.user-nav {
    padding: 20px 5% 0 5%;
    width: 90%;
}

.user-nav ul {
    width: 100%;
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: block;
}

.user-nav ul li {
    width: 90%;
    list-style: none;
    padding: 5px 0;
    margin: 0 0 0 5%;
    display: inline-block;
    text-align: left;

}

.user-nav ul li img {
    display: inline-block;
    max-width: 2%;
    float: left;
}

.user-nav ul li span {
    display: block;
    float: left;
    text-align: left;
    padding: 0 0 0 10px;
    font-weight: bold;
}

.user-nav ul li strong {
    display: block;
    float: right;
    text-align: left;
    margin: 0 5px 0 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #060043;
    color: #fff;
    font-size: 11px;
}

.user-nav ul li a {
    font-size: 23px;
    font-weight: 300;
    color: #060043;
}

.swiper-wrapper .logo{
    margin: 5px;
}
/* 6-2. MAIN NAVIGATION SIDEBAR LEFT */


/* NAVIGATION STYLE UNDERLINE */

.main_nav_underline {
    padding: 20px 3%;
    width: 94%;
    float: left;
    clear: both;
}

.main_nav_underline ul {
    width: 96%;
    list-style: none;
    /* padding: 0 0 60px 0;*/
    margin: 0 auto;
    display: block;
}

.main_nav_underline ul li {
    color: #060043;
    width: 96%;
    list-style: none;
    padding: 5px 0 2% 0;
    margin: 0;
    display: block;
    float: left;
    clear: both;
    text-align: left;
    box-shadow: 3px 3px 5px 1px rgba(0, 0, 0, .0);
    border-radius: 0px;
    text-transform: none;

}

.main_nav_underline ul li.subnav {
    background: url(images/subnav.png) no-repeat right 8px;
    cursor: pointer;
}

.main_nav_underline ul li img {
    display: inline-block;
    max-width: 20px;
    float: left;
    opacity: 0.8;
    margin: 5px 0 0 0;
}

.main_nav_underline ul li span {
    display: block;
    float: left;
    text-align: left;
    padding: 10px 0 10px 10px;
}

.main_nav_underline ul > li a {
    width: 96%;
    float: left;
    clear: both;
    display: block;
    font-size: 23px;
    font-weight: 300;
    color: #fff;
    line-height: 20px;
    border-bottom: solid 1px rgba(255,255,255,.1);
    position: relative;
    text-decoration: none;
}



/* NAVIGATION STYLE 2 ICONS ON ONE ROW WITH BORDER */

.mt20 {
    margin-top: 20px !important;
}

.main_nav_icons_inline_2 {
    padding: 0px;
    width: 100%;
}

.main_nav_icons_inline_2 ul {
    width: 90%;
    list-style: none;
    padding: 0px;
    margin: 5%;
    display: block;
    float: left;
    clear: both;
}

.main_nav_icons_inline_2 ul li {
    width: 44%;
    list-style: none;
    padding: 25px 2%;
    display: inline-block;
    float: left;
    text-align: center;
    border-bottom: 1px #7586fe solid;
    border-right: 1px #7586fe solid;
    color: #fff;
}

.main_nav_icons_inline_2 ul li:nth-child(2n) {
    border-right: none;
}

.main_nav_icons_inline_2 ul li:last-child,
.main_nav_icons_inline_2 ul li:nth-last-child(2) {
    border-bottom: none;
}

.main_nav_icons_inline_2 ul li img {
    display: inline-block;
    max-width: 25%;
}

.main_nav_icons_inline_2 ul li span {
    display: block;
    text-align: center;
    padding: 5px 0 0 0;
}

.main_nav_icons_inline_2 ul li a {
    font-size: 10px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main_nav_icons_inline_2 ul li.subnav {
    background: url(images/subnav_white.png) no-repeat right top;
}


/* NAVIGATION STYLE 2 ICONS ON ONE ROW WITH BORDER */

.main_nav_icons_inline_3 {
    padding: 0px;
    width: 100%;
}

.main_nav_icons_inline_3 ul {
    width: 90%;
    list-style: none;
    padding: 0px;
    margin: 5%;
    display: block;
    float: left;
    clear: both;
}

.main_nav_icons_inline_3 ul li {
    width: 33%;
    list-style: none;
    padding: 15px 0;
    display: inline-block;
    float: left;
    text-align: center;
    border-bottom: 1px #7586fe solid;
    border-right: 1px #7586fe solid;
}

.main_nav_icons_inline_3 ul li:nth-child(3n) {
    border-right: none;
}

.main_nav_icons_inline_3 ul li:last-child,
.main_nav_icons_inline_3 ul li:nth-last-child(2),
.main_nav_icons_inline_3 ul li:nth-last-child(3) {
    border-bottom: none;
}

.main_nav_icons_inline_3 ul li img {
    display: inline-block;
    max-width: 35%;
}

.main_nav_icons_inline_3 ul li span {
    display: block;
    text-align: center;
    padding: 0 0 0 0;
    letter-spacing: 0.5px;
}

.main_nav_icons_inline_3 ul li a {
    font-size: 8px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
}

.main_nav_icons_inline_3 ul li.subnav {
    background: url(images/subnav_white.png) no-repeat right top;
}

.subnav_header {
    width: 90%;
    margin: 0;
    float: left;
    clear: both;
    padding: 12px 5%;
    background-color: #f1f7f8;
    color: #060043;
    cursor: pointer;
}

.subnav_header img {
    display: inline-block;
    max-width: 8%;
    float: left;
    opacity: 0.8;
    margin: 5px 0 0 0;
}

.subnav_header span {
    display: block;
    float: left;
    text-align: left;
    padding: 5px 0 0 20px;
}

.tc {
    text-align: center;
}


/*===============================================*/


/* 7. PAGES LAYOUT GENERAL */


/*===============================================*/


/* === Views === */

.views,
.view {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 5000;
}

.views {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.view {
    overflow: hidden;
    box-sizing: border-box;
}


/* === Pages === */

.pages {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
}

.page {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: #fff;
}

.page-content {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    height: 100%;
    position: relative;
    z-index: 1;
}

body.panel-closing .views {
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
}

.homepage {
    /*background-color:#8ddaee;*/
}

.page--conversation {
    background-color: #f7f7f7;
}

#pages_maincontent {
    width: 100%;
    padding: 0 0 30px 0;
    margin: 0px;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0px;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
}

.titulos {
    position: absolute;
    background: #a1d683;
    height: 50px;
    display: block;
    width: 100%;
    z-index: 10;
    top: 74px;
    text-align: center;
    line-height: 50px;
    display: none;
}

.titulos h3 {
    color: #fff;
    padding: 0 15px;
    text-transform: uppercase;
    text-align: left;
    font-size: 18px;
}

.titulos h3 a {
    display: inline-block;
    width: 20px;
    float: right;
    margin-left: 10px;
}

.titulos h3 a img {
    width: 20px;
    margin-top: 13px;
}

.love.active {
    background: url(images/icons/white/love1.png) no-repeat left;
    background-size: 100%;
}

#pages_maincontent.pages_maincontent--conversation {
    bottom: 60px;
}

#pages_maincontent p {
    padding: 0 0 15px 0;
    margin: 0px;
    clear: both;
}

#pages_maincontent img {
    display: block;
    max-width: 100%;
}

.layout_fullwidth {
    width: 100%;
}

.layout_fullwidth_padding {
    width: 92%;
    margin: 0 4%;
}

.page_single ul.simple_list {
    padding: 0px 0 20px 10px;
    margin: 0px;
    list-style: none;
}

.page_single ul.simple_list li {
    margin: 0 0 10px 0;
    padding: 0 0 0 20px;
    background: url(images/bullet.png) no-repeat left;
}

.bottom_menu_open {
    position: fixed;
    bottom: 0px;
    right: 0px;
    overflow: hidden;
    z-index: 999999;
    height: 60px;
    background-color: #060043;
    width: 20%;
}

.bottom_menu_open a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0;
}

.bottom_menu_open a img {
    display: inline-block;
    max-width: 10%;
    padding: 10px 0 0 0;
}


/* 7-1. SWIPE SLIDER */

.swiper-container {
    height: 100%;
}

.swiper-container-subnav {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.swiper-container-pages {
    height: auto;
    margin: 0 auto 20px auto;
    position: relative;
    overflow: hidden;
    /* Fix of Webkit flickering */
    z-index: 1;
}

.swiper-container-team,
.swiper-container-teambigger {
    height: auto;
    margin: 0 auto 20px auto;
    position: relative;
    overflow: hidden;
    /* Fix of Webkit flickering */
    z-index: 1;
}

.swiper-container-toolbar {
    width: 96%;
    background-color: #fff;
    padding: 0;
    height: auto;
    margin: 0 2%;
    position: fixed;
    bottom: 1%;
    left: 0px;
    overflow: hidden;
    z-index: 999999;
    height: auto;
    border-top-left-radius: 10px;
    -webkit-border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    border-bottom-right-radius: 30px;
    -webkit-border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    -webkit-border-bottom-left-radius: 30px;
    border: solid 1px #ccc;
}

.swiper-slide {
    width: 100%;
    text-align: left;
    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    overflow: auto;
}

.toolbar-icon a {
    display: block;
    width: calc(33.333% - 1px);
    margin: 0;
    padding: 10px 0;
    float: left;
    height: auto;
    text-align: center;
    border-right: solid 1px #ccc;
}

.toolbar-icon a:last-child {
    width: 33.333%;
    border-right: none;
}

.toolbar-icon a.active {
    background: #ff0000;
    color: #fff;
}

.toolbar-icon a img {
    display: block;
    max-width: 30%;
    margin: 0 auto 0 auto;
    text-align: center;
}

.toolbar-icon a span {
    color: #8c8c8c;
    font-weight: 400;
    font-size: 9px;
    letter-spacing: 0.5px;
}

.slider_trans {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(images/trans_black.png) repeat;
}

.slider-caption {
    width: 94%;
    position: absolute;
    left: 3%;
    z-index: 99999;
    margin: 0;
}

.slidertoolbar .slider-caption {
    top: 120px;
}

.slider-caption h2 {
    width: 100%;
    display: block;
    margin: 0 0 0 0;
    padding: 0px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: #003a5d;
    color: #fff;
}

.slider-caption h2.title--white {
    color: #fff;
}

.slider-caption span.subtitle {
    width: 100%;
    margin: 0;
    font-size: 18px;
    padding: 0px;
    font-weight: 700;
    color: #003a5d;
    display: inline;
}

.slider-caption p {
    font-size: 16px;
    line-height: 20px;
    padding: 0 0 20px 0;
}

.slider-caption p.text--white {
    color: #fff;
}

.slider-caption__more {
    display: inline-block;
    color: #fff;
    background-color: #ff0000;
    background: -webkit-linear-gradient(60deg, #ff0000, #cc0000);
    background: linear-gradient(60deg, #ff0000, #cc0000);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    padding: 10px 30px;
    font-size: 11px;
}

.slidertoolbar>.swiper-pagination {
    bottom: 23%;
    left: 0%;
    width: 100%;
    text-align: left;
}

.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    display: inline-block;
    border: 1px solid #fff;
    background: none;
    opacity: 0.3;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.swiper-container-horizontal>.swiper-pagination .swiper-pagination-bullet {
    margin: 0 2px;
}

.swiper-container-pages>.swiper-pagination {
    bottom: 5%;
    left: 5%;
    width: 95%;
    text-align: left;
}

.swiper-container .swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-container-pages .swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-pagination-toolbar {
    position: absolute;
    bottom: 0px;
    left: 5%;
    width: 100%;
    text-align: center;
}

.swiper-pagination-toolbar {
    bottom: 0px !important;
}

.swiper-container-toolbar .swiper-pagination-bullet {
    width: 10px;
    height: 1px;
    display: inline-block;
    background: #82d4ea;
    opacity: 0.3;
    margin: 0 2px;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.swiper-pagination-toolbar .swiper-pagination-bullet {
    margin: 0 2px !important;
}

.swiper-container-toolbar .swiper-pagination-bullet-active {
    opacity: 1;
    background: #3479c0;
}

.swiper-pagination-team,
.swiper-pagination-teambigger {
    width: 100%;
    text-align: center;
}

.swiper-container-team .swiper-pagination-bullet,
.swiper-container-teambigger .swiper-pagination-bullet {
    width: 4px;
    height: 4px;
    display: inline-block;
    background: #000;
    opacity: 0.2;
    margin: 0 2px;
}

.swiper-container-team .swiper-pagination-bullet-active,
.swiper-container-teambigger .swiper-pagination-bullet-active {
    opacity: 1;
    background: #000;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: auto;
}

.swiper-button-next {
    background: url(images/nav-next.png) no-repeat center;
    width: 41px;
    height: 41px;
    top: 20%;
    right: 5%;
}

.swiper-button-prev {
    background: url(images/nav-prev.png) no-repeat center;
    width: 41px;
    height: 41px;
    top: 20%;
    right: auto;
    left: 5%;
}

.swiper-container-pages .swiper-button-next {
    bottom: 6%;
}

.swiper-container-pages .swiper-button-prev {
    bottom: 6%;
}


/* 7-2. FEATURED LISTS */

ul.features_list {
    padding: 0 0 20px 0;
    width: 100%;
    margin: 0px;
    list-style: none;
    float: left;
    clear: both;
}

ul.features_list li {
    border-bottom: 1px #e6e6e6 solid;
    padding: 0 2% 20px 2%;
    margin: 0 0 20px 0;
    display: block;
    width: 43%;
    float: left;
    font-size: 18px;
}

ul.features_list li:nth-child(even) {
    float: right;
}

ul.features_list li a {
    color: #000;
    padding: 0px;
    margin: 0px;
}

ul.features_list li img {
    display: inline-block;
    width: 10%;
    float: left;
    margin: 0px;
    padding: 0px;
}

ul.features_list li span {
    display: inline-block;
    max-width: 90%;
    padding: 2% 0 0 5%;
    font-weight: 400;
    float: left;
}

ul.features_list_detailed {
    padding: 0 0 20px 0;
    width: 100%;
    margin: 0px;
    list-style: none;
    float: left;
    clear: both;
}

ul.features_list_detailed li {
    padding: 20px 2%;
    margin: 0;
    display: block;
    width: 43%;
    float: left;
    border-bottom: 1px #ddd solid;
}

ul.features_list_detailed li:nth-child(even) {
    float: right;
}

ul.features_list_detailed li .feat_small_icon {
    width: 10%;
    float: left;
    margin: 2px 0 0 0;
}

ul.features_list_detailed li .feat_small_details {
    width: 85%;
    float: left;
    padding: 0 0 0 5%;
}

ul.features_list_detailed li .feat_small_details p {
    padding: 0 0 10px 0;
}

ul.features_list_detailed li .feat_small_details a {
    color: #232323;
}

ul.features_list_detailed li .feat_small_details h4 {
    font-weight: 700;
    font-size: 20px;
    padding: 0 0 5px 0;
    margin: 0px;
}


/* Messages */

.messages {
    padding: 0 0 5px 0;
    width: 100%;
    margin: 0px;
    list-style: none;
    float: left;
    clear: both;
}

.message__row a {
    padding: 0;
    margin: 0 0 10px 0;
    display: flex;
    width: 100%;
    color: #9b9b9b;
    border-bottom: 1px #ddd solid;
}

.message__row--undread a {
    color: #000;
}

.message__avatar {
    max-width: 50px;
    flex-grow: 1;
    position: relative;
}

.message__active-user {
    display: block;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #55c709;
    position: absolute;
    top: 40px;
    right: 5px;
    z-index: 555;
}

.message__avatar img {
    display: block;
    max-width: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.message__row--undread .message__avatar img {
    -moz-box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.1);
}

.message__details {
    padding: 0 10px;
    flex-grow: 1;
}

.message__user {
    font-weight: 700;
    padding: 0 0 5px 0;
}

.message__short-content {
    padding: 0px;
    margin: 0px;
    font-size: 12px;
    line-height: 16px;
}

.message__time {
    width: 100px;
    flex-grow: 1;
    text-align: right;
    font-size: 11px;
    font-weight: 700;
}


/* Conversation */

.conversation {
    padding: 20px 0;
    width: 100%;
    margin: 0px;
    list-style: none;
    clear: both;
}

.conversation__row {
    padding: 0;
    margin: 10px 0 5px 0;
    display: flex;
    width: 100%;
}

.conversation__content {
    flex-grow: 0;
    width: 100%;
    -moz-box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    padding: 10px 20px;
}

.conversation__content p {
    padding: 0px !important;
    line-height: 18px;
    font-size: 13px;
}

.conversation__content p a {
    color: #003a5d;
}

.conversation__row--received .conversation__content {
    margin-right: 5%;
    background-color: #fff;
    border-top-left-radius: 0px;
    -webkit-border-top-left-radius: 0px;
}

.conversation__row--sent .conversation__content {
    margin-left: 5%;
    background-color: #003a5d;
    color: #fff;
    border-bottom-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
}

.conversation__time {
    font-size: 10px;
    color: #747474;
}

.conversation__row--sent .conversation__time {
    color: #fff;
}

.conversation__avatar {
    max-width: 30px;
    flex-grow: 1;
    position: relative;
    margin-right: 10px;
}

.conversation__active-user {
    display: block;
    width: 6px;
    height: 6px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #55c709;
    position: absolute;
    top: 25px;
    right: 5px;
    z-index: 555;
}

.conversation__avatar img {
    display: block;
    max-width: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.conversation__row--sent .conversation__avatar {
    max-width: 30px;
    flex-grow: 1;
    align-self: flex-end;
    position: relative;
    margin-left: 10px;
}

.conversation__row--sent .conversation__active-user {
    left: 5px;
}

.conversation-submit {
    position: fixed;
    bottom: 10px;
    left: 4%;
    z-index: 9999;
    width: 92%;
    background-color: #fff;
    -moz-box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

.conversation-submit__form {
    display: flex;
    align-items: center;
    padding: 0 10px;
    height: 50px;
}

.conversation-submit__textarea {
    width: 100%;
    height: 20px;
    background-color: #fff;
    border: none;
    resize: none;
}

.conversation-submit__send {
    max-width: 20px;
    flex-grow: 1;
    margin-left: 20px;
}


/* 7-3. TEAM DESIGN LAYOUT */

.team-block {
    width: 46%;
    background-color: #f7f7f7;
    text-align: center;
    padding: 20px 0 0 0;
}

.team-block a img {
    display: block;
    width: 50%;
    border-radius: 50%;
    margin: auto;
}

.team-block strong {
    display: block;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 0;
}

.team-block span {
    display: block;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.5px;
    background-color: #87d8ed;
    padding: 10px 0;
}

ul.team_socials {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    margin: 0px;
    list-style: none;
}

ul.team_socials li {
    width: 15%;
    padding: 0px;
    margin: 0px;
    display: inline-block;
}

ul.team_socials li a img {
    display: block;
    max-width: 100%;
    text-align: center;
    border-radius: 0px;
    margin: auto;
}


/* 7-4. MUSIC LIST DESIGN LAYOUT */

.audiojs {
    width: 100%;
    margin: auto;
    box-shadow: none;
    background-image: none;
}

.audiojs .scrubber {
    position: relative;
    float: left;
    width: 45%;
}

.audiojs .time {
    float: left;
    width: 25%;
    height: 36px;
    line-height: 36px;
    margin: 0px;
}

ul.music_list {
    padding: 0 0 20px 0;
    width: 100%;
    margin: 0px;
    list-style: none;
    float: left;
    clear: both;
}

ul.music_list li {
    border-top: 1px #e6e6e6 solid;
    background-color: #f8f8f8;
    padding: 0 0 0 0;
    margin: 0 0 10px 0;
    display: block;
    width: 100%;
    float: left;
    font-size: 18px;
}

ul.music_list li h4 {
    font-size: 14px;
    padding: 0 0 0 10px;
    margin: 0px;
    font-weight: 300;
    line-height: 40px;
}

ul.music_list li h4 span {
    font-weight: 700;
    background-color: #86d7ec;
    display: inline-block;
    padding: 5px 10px;
    float: right;
    margin: 0px;
    line-height: 30px;
}


/*===============================================*/


/* 8. POPUPS */


/*===============================================*/

.popup {
    position: absolute;
    left: 0;
    top: 50px;
    padding-bottom: 52px;
    width: 100%;
    height: 100%;
    z-index: 11000;
    background: #fff;
    box-sizing: border-box;
    display: block;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -ms-transition-property: -ms-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    background-color: #FFFFFF;
    overflow-y: scroll;
    display: none;
}

.popup.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    display: block;
}

.popup h4 {
    color: #003a5d;
    font-size: 28px;
    /* font-weight:700;*/
    text-align: center;
    padding: 0 0 20px 0;
    margin: 0px;
    text-transform: uppercase;
}

.popup h5 {
    color: #222222;
    font-size: 14px;
    text-align: center;
    padding: 20px 0 10px 0;
    margin: 0px;
}

.popup p {
    text-align: left;
    padding: 0px 0 20px 0;
    margin: 0px;
    font-size: 16px;
}

.popup-login,
.popup-forgot {
    background: #fff url("images/logo.png") center 90% no-repeat;
    background-size: 200px;
    background-attachment: fixed;
}

.popup-login h4,
.popup-forgot h4 {
    color: #003a5d;
}

.content-block {
    padding: 75px 10% 0 10%;
    text-align: justify;
}
.popup-menus h2,
.popup-menus h3{
    margin: 0;
    padding: 0;
}

.popup-menus h3{
    margin-top: 5px;
    font-size: 18px;
}
.popup-menus h2{
    color:#a1d683;
    text-align: center;
}
.content-block.middle {
    margin-top: calc(50% - 140px);
    background-color: #fff;
}

ul.social_share {
    list-style: none;
    padding: 10px 0 0 0;
    margin: 0px;
}

ul.social_share li {
    width: 32%;
    text-align: center;
    display: inline-block;
    padding: 15px 0;
    margin: 0px;
}

ul.social_share li img {
    width: 50%;
    display: block;
    margin: auto auto 10px auto;
}

ul.social_share li a {
    color: #222222;
    font-size: 12px;
    font-weight: 900;
}

.close_popup_button {
    display: block;
}

.close_popup_button a {
    display: inline-block;
    width: 60px;
    height: 60px;
    margin: auto;
    padding: 0;
    text-align: center;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 9;
}

.close_popup_button a img {
    display: block;
    max-width: 60%;
    margin: auto;
}


/*===============================================*/


/* 9. SHOP LAYOUT */


/*===============================================*/

ul.shop_items {
    padding: 0;
    width: 100%;
    margin: 0px;
    list-style: none;
    float: left;
    clear: both;
}

ul.shop_items li {
    padding: 0 0 15px 0;
    margin: 0 0 15px 0;
    display: block;
    width: 100%;
    float: left;
    clear: both;
    border-bottom: 1px solid #e4e4e4;
    position: relative;
}

ul.shop_items li .shop_thumb {
    width: 30%;
    float: left;
    padding: 0;
    margin: 0;
}

ul.shop_items li .shop_thumb img {
    display: inline-block;
    max-width: 100%;
    margin: 0px;
}

.shop_item_details h3 {
    font-weight: 400;
    font-size: 16px;
    padding: 0;
    margin: 0px;
    width: 100%;
    clear: both;
    border-bottom: 1px #ddd solid;
    padding: 10px 0;
    margin: 0 0 15px 0;
}

ul.shop_items li .shop_item_details h4 {
    font-weight: 900;
    font-size: 16px;
    padding: 0;
    margin: 0px;
}

ul.shop_items li .shop_item_details h4 a {
    color: #2a3452;
}

ul.shop_items li .shop_item_details {
    width: 65%;
    float: left;
    padding: 0 0 0 5%;
}

ul.shop_items li .shop_item_details p {
    padding: 0 0 10px 0;
    margin: 0px;
}

ul.shop_items li .shop_item_price {
    font-size: 12px;
    font-weight: 900;
    padding: 5px 0 10px 0;
}

ul.shop_items li a.shopfav {
    position: absolute;
    top: 15px;
    right: 0px;
    z-index: 9999;
    width: 25px;
}

ul.shop_items li a.shopfav img {
    width: 100%;
    display: block;
}

.shop_pagination {
    width: 100%;
    clear: both;
    margin: 25px 0;
    float: left;
}

.shop_pagination a {
    display: block;
    padding: 10px 0;
    text-align: center;
    width: 40%;
    font-size: 12px;
    font-weight: 900;
}

.shop_pagination span.shop_pagenr {
    width: 18%;
    display: block;
    float: left;
    text-align: center;
    padding: 10px 0;
}

a.prev_shop {
    float: left;
}

a.next_shop {
    float: right;
}


/* 9-1. SHOP ITEM PAGE */

.shop_item {
    width: 100%;
}

.shop_item h4 {
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
    margin: 5px 0 20px 0;
    clear: both;
    font-weight: 400;
}

.shop_item .shop_thumb {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.shop_item a#addtocart {
    width: 100%;
    color: #fff;
    display: block;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
    clear: both;
}

.shop_item .shop_item_details {
    width: 100%;
    padding: 0;
}

.shop_item .shop_item_price {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #222222;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    padding: 0;
    background-color: #f1f7f8;
}

.shop_item a.shopfav {
    position: absolute;
    bottom: 10px;
    right: 20px;
    z-index: 9999;
    width: 10%;
}

.shop_item a.shopfriend {
    position: absolute;
    bottom: 10px;
    right: 25%;
    z-index: 9999;
    width: 10%;
}

.shop_item a.shopfav img,
.shop_item a.shopfriend img {
    width: 100%;
    display: block;
}

.size_selectors {
    width: 100%;
    margin: 0 0 20px 0;
    float: left;
    display: block;
}

.size_selectors label {
    display: inline-block;
    width: 18%;
    float: left;
    cursor: pointer;
    padding: 10px 0 10px 0;
    margin: 0 1% 0 0;
    font-size: 14px;
    text-align: center;
}

.size_selectors input[type=radio] {
    display: none;
}

.size_selectors input[type=radio]+label {
    display: block;
    border: 1px #ebebeb solid;
    color: #375a70;
}

.size_selectors input[type=radio]:checked+label {
    background-color: #f1f7f8;
}

.color_selectors {
    width: 100%;
    margin: 0 0 20px 0;
    float: left;
    display: block;
}

.color_selectors label {
    display: block;
    width: 14%;
    height: 25px;
    float: left;
    cursor: pointer;
    padding: 0;
    margin: 0 1% 0 0;
}

.color_selectors label.colorred {
    background-color: #ed434b;
}

.color_selectors label.colororange {
    background-color: #f2901d;
}

.color_selectors label.coloryellow {
    background-color: #e8d503;
}

.color_selectors label.colorgreen {
    background-color: #6fe803;
}

.color_selectors label.colorblue {
    background-color: #0394e8;
}

.color_selectors label.colormagenta {
    background-color: #b60cc5;
}

.color_selectors input[type=radio] {
    display: none;
}

.color_selectors input[type=radio]+label {
    border: 2px #fff solid;
}

.color_selectors input[type=radio]:checked+label {
    background-image: url(images/bullet.png);
    background-position: center center;
    background-repeat: no-repeat;
}


/* 9-2. SHOPPING CART - CECKOUT */

.cart_item {
    width: 100%;
    float: left;
    clear: both;
    border-bottom: 1px #3d3e50 solid;
    padding: 10px 0;
    margin: 0 0 10px 0;
}

.item_thumb {
    width: 30%;
    float: left;
    clear: both;
}

.item_thumb img {
    max-width: 80%;
    display: block;
}

.item_title {
    width: 80%;
    float: left;
    padding: 5px 0 15px 0;
}

.item_title span {
    font-weight: 900;
}

.item_price {
    width: 20%;
    text-align: center;
    padding: 5px 0;
    float: right;
    color: #222222;
    background-color: #f1f7f8;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

a.item_delete {
    width: 10%;
    float: right;
    text-align: right;
    padding: 5% 0 0 0;
}

a.item_delete img {
    max-width: 80%;
    display: block;
}

.item_qnty {
    width: 50%;
    float: left;
    margin: 0 0 10px 5%;
    border-right: 1px #3d3e50 solid;
}

.item_qnty_shop {
    width: 50%;
    float: left;
    margin: 0;
}

.item_qnty_shopitem {
    width: 50%;
    float: left;
    margin: 0 0 20px 0;
}

.item_qnty label {
    width: 60%;
    display: block;
    text-align: center;
    font-size: 14px;
    padding: 0 0 10px 0;
}

input.qntyminus,
input.qntyplus,
input.qntyminusshop,
input.qntyplusshop {
    width: 30px;
    float: left;
    background: none;
    border: none;
    height: 30px;
    border-radius: 15px;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    margin: 0px;
    padding: 0px 0 3px;
    cursor: pointer;
    line-height: 5px;
    -webkit-appearance: none;
}

input.qnty {
    width: 20%;
    height: 25px;
    float: left;
    margin: 0 2%;
    padding: 0px;
    color: #222222;
    background: none;
    border: none;
    text-align: center;
    font-size: 18px;
    -webkit-appearance: none;
}

input.qntyshop {
    width: 20%;
    height: 25px;
    float: left;
    margin: 0 1%;
    padding: 0px;
    color: #000;
    background: none;
    border: none;
    text-align: center;
    font-size: 18px;
    -webkit-appearance: none;
}

.shop_pagination a,
input.qntyminus,
input.qntyplus,
input.qntyminusshop,
input.qntyplusshop {
    border: 1px solid #222222;
    color: #222222;
}

h4.checkout_title {
    width: 93%;
    margin: 0 0 20px 0;
    padding: 10px 0 10px 5%;
    background-color: #f7f7f7;
    float: left;
    clear: both;
    font-size: 14px;
    font-weight: 700;
    border-left: 5px solid #060043;
}

.order_item {
    width: 100%;
    float: left;
    clear: both;
    border-bottom: 1px solid #d6d6d6;
    padding: 5px 0;
    margin: 0 0 10px 0;
}

.order_item_thumb {
    width: 20%;
    float: left;
    clear: both;
}

.order_item_thumb img {
    max-width: 80%;
    display: block;
}

.order_item_title {
    width: 60%;
    float: left;
    padding: 5px 0 15px 0;
}

.order_item_title span {
    font-weight: 900;
}

.order_item_price {
    width: 20%;
    text-align: center;
    padding: 5px 0;
    float: right;
    color: #1b1b25;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.checkout_select {
    padding: 10px 0 20px 5%;
}

.carttotal {
    width: 90%;
    float: right;
    clear: both;
    padding: 0 0 20px 0;
}

.carttotal_full {
    width: 100%;
    float: left;
    clear: both;
    padding: 0 0 20px 0;
}

.carttotal_row {
    width: 100%;
    float: left;
    clear: both;
    padding: 5px 0;
    border-bottom: 1px #3d3e50 solid;
}

.carttotal_row_full {
    width: 100%;
    float: left;
    clear: both;
    padding: 8px 0;
    border-bottom: 1px #d6d6d6 solid;
}

.carttotal_row_last {
    width: 100%;
    float: left;
    clear: both;
    padding: 5px 0;
    font-size: 17px;
    font-weight: 900;
}

.carttotal_left {
    width: 60%;
    float: left;
    text-align: left;
}

.carttotal_right {
    width: 40%;
    float: left;
    text-align: right;
}

a.checkout {
    width: 100%;
    clear: both;
    display: block;
    float: left;
    padding: 15px 0;
    margin: 15px 0;
    font-weight: normal;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    color: #FFFFFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
}


/* 9-3. SUCCESS PAGE */

.success_message {
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    color: #2d2e3e;
    padding: 20px 0 0 0;
}

.success_message img {
    text-align: center;
    display: inline-block;
    margin: 20px auto;
}

.success_message span {
    font-weight: 900;
    font-size: 40px;
    display: block;
}

.success_message p {
    line-height: 35px;
}


/*===============================================*/


/* 10. PHOTO GALLERY */


/*===============================================*/

.sl-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000 !important;
    opacity: 0.7;
    display: none;
    z-index: 8888 !important;
}

.sl-wrapper .sl-counter {
    top: 10px !important;
    left: 10px !important;
    z-index: 9999 !important;
    color: #fff !important;
    font-size: 16px !important;
}

.sl-wrapper .sl-close {
    right: 10px !important;
    top: 10px !important;
    color: #fff !important;
    font-size: 44px !important;
    z-index: 9999 !important;
}

.sl-wrapper .sl-navigation button {
    z-index: 9999 !important;
    color: #fff !important;
}

.bottombarpages {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    text-align: center;
    z-index: 999;
    background-color: #86d7ec;
}

.switch_button {
    display: block;
    float: left;
}

.switch_button a {
    display: block;
    width: 23px;
    height: 23px;
}

.switch13 {
    background: url(images/switch_13.png) no-repeat center;
}

.switch12 {
    background: url(images/switch_12.png) no-repeat center;
}

.switch11 {
    background: url(images/switch_11.png) no-repeat center;
}

.gallery_switch {
    width: 100%;
    text-align: center;
    padding: 10px 0 0 0;
}

.gallery_switch a {
    display: inline-block;
    padding: 0 5px;
    width: 5%;
}

.gallery_switch a img {
    display: inline-block;
    max-width: 70%;
}

ul.photo_gallery_13,
ul.photo_gallery_12,
ul.photo_gallery_11 {
    width: 100%;
    list-style: none;
    padding: 0px;
    margin: 0 0 70px 0;
    float: left;
    clear: both;
}

ul.photo_gallery_13 li {
    width: 33.3%;
    padding: 0;
    float: left;
    margin: 0;
}

ul.photo_gallery_13 li img {
    max-width: 100%;
    display: block;
}

ul.photo_gallery_12 li {
    width: 50%;
    padding: 0;
    float: left;
    margin: 0;
}

ul.photo_gallery_12 li img {
    max-width: 100%;
    display: block;
}

ul.photo_gallery_11 li {
    width: 100%;
    padding: 0;
    float: left;
    margin: 0;
}

ul.photo_gallery_11 li img {
    max-width: 100%;
    display: block;
}

.photo-categories {
    width: 90%;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    margin: 0 5% 0 5%;
    display: block;
}

.photo-categories a {
    width: 32%;
    margin: 0 1% 0 0;
    display: block;
    float: left;
    text-align: center;
    padding: 10px 0;
    color: #2d2e3e;
}

.photo-categories a.active {
    background-color: #060043;
}


/*===============================================*/


/* 11. BLOG LAYOUT */


/*===============================================*/

.posts {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.posts li {
    width: 100%;
    display: block;
    margin: 0px;
    padding: 10px 0 0 0;
    border-bottom: 1px #f0f0f0 solid;
}

.swipeout .swiper-wrapper {
    width: 100%;
    height: auto;
}

.swipeout .swiper-slide {
    width: 100%;
    height: auto;
}

.swipeout .swiper-slide.swipeout-actions-left a,
.swipeout .swiper-slide.swipeout-actions-right a {
    display: block;
    float: left;
    width: 33.333%;
    text-align: center;
}

.swipeout .swiper-slide.swipeout-actions-right a:nth-child(1) {
    background: #060043;
}

.swipeout .swiper-slide.swipeout-actions-right a:nth-child(2) {
    background: #21d3c5;
}

.swipeout .swiper-slide.swipeout-actions-right a:nth-child(3) {
    background: #705abc;
}

.swipeout .swiper-slide.swipeout-actions-left a img,
.swipeout .swiper-slide.swipeout-actions-right a img {
    display: inline-block !important;
    max-width: 30% !important;
    margin: 20px auto;
}

.post_thumb {
    width: 25%;
    float: left;
}

.post_thumb img {
    display: inline-block;
    max-width: 100%;
}

.post_details {
    width: 62%;
    float: left;
    margin: 0 0 0 4%;
}

.post_details h2 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin: 10px 0 10px 0;
    padding: 0px;
}

.post_category a {
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    display: inline-block;
}

.post_swipe {
    width: 6%;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    background-color: #f7f7f7;
}

.post_swipe img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
}

.post_details span,
.post_single span {
    display: inline-block;
    padding: 0 5px;
}

.post_single span.post_date {
    background: url(images/date.png) no-repeat left;
    padding: 10px 0 5px 25px;
    margin: 0 0 0 0;
}

.post_single span.post_author {
    background: url(images/author.png) no-repeat left;
    padding: 10px 0 5px 25px;
    margin: 0 0 0 10px;
}

.post_single span.post_comments {
    background: url(images/comments.png) no-repeat left;
    padding: 10px 0 5px 23px;
    margin: 0 0 0 10px;
}

#loadMore {
    margin: 10px 0;
    cursor: pointer;
}

#showLess {
    display: none;
    width: 100%;
    margin: 10px 0;
    padding: 10px 0;
    text-align: center;
    background-color: #f7f7f7;
    color: #ddd;
    font-size: 20px;
}

.post_single {
    border-bottom: 1px #f0f0f0 solid;
    padding: 10px 0 10px 0;
    margin: 0 0 20px 0;
}

.post_single img {
    display: block;
    max-width: 100%;
    margin: 0 0 20px 0;
}

a.backto {
    width: 10%;
    float: left;
    margin: 10px 0 0 5%;
}

a.backto img {
    width: 90%;
    display: block;
}

ul.comments {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

ul.comments li {
    list-style: none;
    float: left;
    clear: both;
    padding: 5% 5% 0 5%;
    margin: 0px 0 10px 0;
    background-color: #f0f0f0;
}

.comm_avatar {
    width: 15%;
    display: inline-block;
    float: left;
}

.comm_avatar img {
    display: inline-block;
    max-width: 100%;
}

.comm_content {
    width: 80%;
    float: left;
    display: inline-block;
    padding: 0 0 0 5%;
}

.comm_content p {
    padding: 0px;
    margin: 0px;
    font-style: italic;
}


/*===============================================*/


/* 12. FORMS */


/*===============================================*/


/* 12.1 LOGIN FORM */

.loginform {
    width: 90%;
    padding: 0 0 15px 5%;
}

.loginform label.error {
    padding: 0 0 20px 0;
    margin: 0px;
    line-height: 10px;
    width: 100%;
    text-align: left;
    font-size: 14px;
    color: #f65821;
    font-weight: 400;
    clear: both;
    float: left;
}

.loginform input.form_input {
    padding: 10px 3%;
    width: 93%;
    margin: 0 0 15px 0;
    border-bottom: 1px solid #003a5d;
    border-left: none;
    border-right: none;
    border-top: none;
    background-color: transparent;
    color: #003a5d;
    -webkit-appearance: none;
}

.loginform input.form_input:focus {
    /*background-color:#f5f5f5;*/
}

.loginform .form_select {
    padding: 2% 3%;
    width: 100%;
    margin: 20px 0 10px 0;
    border-bottom: 1px solid #d5d5d5;
    border-left: none;
    border-right: none;
    border-top: none;
    -webkit-appearance: none;
    color: #000000;
    background: url(images/dropdown.png) no-repeat right;
}

.loginform .form_select option {
    padding: 3px;
}

.loginform input.form_submit {
    width: 100%;
    margin: 10px 0 0 0;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 300;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    color: #fff;
    background-color: #a1d683;
    background: -webkit-linear-gradient(60deg, #a1d683, #84f245);
    background: linear-gradient(60deg, #a1d683, #84f245);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    padding: 10px 0px;
}

.forgot_pass {
    width: 100%;
    text-align: right;
    font-size: 12px;
}

.forgot_pass a {
    color: #a1d683;
    font-size: 18px;
}

.signup_bottom {
    width: 100%;
    text-align: center;
    padding: 30px 0 0 0;
}

.signup_bottom p {
    opacity: 1;
    padding: 0px 0 10px 0;
    font-size: 16px;
}

.signup_bottom a {
    background-color: #86d7ec;
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 15px;
}

.signup_social {
    width: 100%;
    text-align: center;
    padding: 20px 0 0 0;
}

a.signup_facebook {
    background-color: #38579a;
    width: 47%;
    display: inline-block;
    padding: 12px 0;
    margin: 0 4% 0 0;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
}

a.signup_twitter {
    background-color: #0cacea;
    width: 47%;
    padding: 12px 0;
    display: inline-block;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
}


/* 12.2 CONTACT FORM */

.contactform {
    width: 100%;
    padding: 0 0 15px 0;
}

.form_row {
    float: left;
    clear: both;
    width: 100%;
}

.contactform label {
    width: 100%;
    padding: 5px 0 3px 0;
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.contactform label.error {
    padding: 0 0 10px 0;
    width: 100%;
    text-align: left;
    font-size: 14px;
    color: #f65821;
    font-weight: 400;
}

.contactform input.form_input {
    padding: 3%;
    width: 93%;
    margin: 0 0 5px 0;
    border: 1px solid #ddd;
}


/* --------Custom select input----------- */

.selector_overlay {
    padding: 0;
    width: 100%;
    float: left;
    margin: 0 0 5px 0;
    overflow: hidden;
    background-color: #fff;
    background: url(images/dropdown.png) no-repeat top right;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.selector_overlay select {
    padding: 8px 0 8px 1%;
    width: 99.5%;
    margin: 0 0 5px 0;
    border: 1px solid #ddd;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom_select a label {
    color: #000;
}

.custom_select .item-after {
    padding: 8px 0 8px 2%;
    width: 97%;
    float: left;
    margin: 0 0 5px 0;
    overflow: hidden;
    background-color: #fff;
    background: url(images/dropdown.png) no-repeat top right;
    border: 1px solid #ddd;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.picker-modal .toolbar {
    position: relative;
    width: 100%;
    background: #003a5d;
}

.picker-modal .toolbar a {
    color: #fff;
}

.picker-modal.smart-select-picker .toolbar::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    height: 1px;
    width: 100%;
    background-color: #003a5d;
    display: block;
    z-index: 15;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}

.picker-modal .toolbar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: auto;
    right: auto;
    height: 1px;
    width: 100%;
    background-color: #003a5d;
    display: block;
    z-index: 15;
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
}

.picker-calendar-month-picker span,
.picker-calendar-year-picker span {
    color: #fff;
}

i.icon.icon-next,
i.icon.icon-prev {
    width: 21px;
    height: 21px;
}

i.icon.icon-prev {
    background-image: url(images/nav-prev.png);
}

i.icon.icon-next {
    background-image: url(images/nav-next.png);
}

i.icon.icon-back {
    width: 21px;
    height: 21px;
    background-image: url(images/nav-prev.png);
}

.contactform .item-content {
    padding: 2px 0 2px 0;
    margin: 0px;
}

.contactform .form_row_right {
    margin: 0 0 20px 5%;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #d6d6d6;
}

.contactform .form_row_right .item-title {
    font-size: 14px;
    font-weight: 400;
}

.contactform label .item-media {
    display: inline-block;
}

.contactform label .item-inner {
    display: inline-block;
}

.contactform label.switch {
    display: inline-block;
    position: relative;
    width: 70px;
    height: 25px;
    padding: 0px;
    margin: 20px 0;
    border-radius: 20px;
    background: #dfd9ea;
    transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    vertical-align: middle;
    cursor: pointer;
}

.contactform label.switch::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 2px;
    width: 22px;
    height: 22px;
    background: #fafafa;
    border-radius: 50%;
    transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.contactform label.switch:active::before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(128, 128, 128, 0.1);
}

.contactform input:checked+.switch {
    background: #72da67;
}

.contactform input:checked+.switch::before {
    left: 46px;
    background: #fff;
}

.contactform input:checked+.switch:active::before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 150, 136, 0.2);
}

.contactform textarea.form_textarea {
    padding: 3%;
    width: 93%;
    height: 50px;
    margin: 0 0 5px 0;
    border: 1px solid #ddd;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

.contactform input.form_submit {
    width: 100%;
    margin: 10px 0 0 0;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 300;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    color: #fff;
    background-color: #ff0000;
    background: -webkit-linear-gradient(60deg, #ff0000, #cc0000);
    background: linear-gradient(60deg, #ff0000, #cc0000);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    padding: 10px 0px;
}

h2#Note {
    display: none;
}


/*===============================================*/


/* 13. TABS & ACCORDION & TABLES */


/*===============================================*/


/* Tabs/*------------------------------------------*/

.tabs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.tabs--photos {
    width: 90%;
    margin: 0 5%;
}

.tabs label.tablabel {
    order: 1;
    display: block;
    padding: 10px 0;
    text-align: center;
    cursor: pointer;
    transition: background ease 0.2s;
    background-color: #f7f7f7;
}

.tabs label.tablabel--12 {
    width: 50%;
    -webkit-box-shadow: inset -1px 0px 0px 0px #fff;
    box-shadow: inset -1px 0px 0px 0px #fff;
    -moz-box-shadow: inset -1px 0px 0px 0px #fff;
}

.tabs label.tablabel--13 {
    width: 33.333%;
    -webkit-box-shadow: inset -1px 0px 0px 0px #fff;
    box-shadow: inset -1px 0px 0px 0px #fff;
    -moz-box-shadow: inset -1px 0px 0px 0px #fff;
}

.tabs label.tablabel--12:last-child(),
.tabs label.tablabel--13:last-child() {
    -webkit-box-shadow: none;
    box-shadow: inset none;
    -moz-box-shadow: none;
}

.tabs .tab {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    padding: 0;
    margin-top: 20px;
}

.tabs input[type="radio"].tabradio {
    display: none;
}

.tabs input[type="radio"].tabradio:checked+label.tablabel {
    background: #86d7ec;
}

.tabs input[type="radio"].tabradio:checked+label.tablabel+.tab {
    display: block;
}


/* ------Accordion---------- */

.accordion {
    width: 100%;
    margin: 0 auto 40px auto;
}

.accordion__item {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px #dadada solid;
}

.accordion__input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.accordion__label {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 6px 10px;
    font-size: 16px;
    font-weight: 300;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.accordion__content p {
    padding: 10px 0px !important;
}

.accordion__content a.no {
    display: none;
}

.accordion__input:checked~.accordion__content {
    max-height: 300px;
}

.accordion__input:checked~.accordion__label,
.accordion__label:hover {
    background-color: #003a5d;
    color: #fff;
}

.accordion__label:hover span {
    background: url(images/drop-down-faq-selected.png) no-repeat center;
}

.accordion__label span {
    position: absolute;
    right: 5%;
    top: 45%;
    display: block;
    width: 11px;
    height: 6px;
    text-align: center;
    background: url(images/drop-down-faq.png) no-repeat center;
    -webkit-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
}

.accordion__input[type=radio]:checked+.accordion__label span {
    transform: rotateX(180deg);
    background: url(images/drop-down-faq-selected.png) no-repeat center;
}


/* ------Toggle---------- */

.toggle {
    width: 100%;
    margin: 0 auto 40px auto;
}

.toggle__item {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px #dadada solid;
}

.toggle__input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.toggle__label {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 6px 10px;
    font-size: 16px;
    font-weight: 300;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.toggle__content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.logo {
    height: 45px;
}

.toggle__content p {
    padding: 10px 0px !important;
}

.toggle__input:checked~.toggle__content {
    max-height: 300px;
}

.toggle__input:checked~.toggle__label,
.toggle__label:hover {
    background-color: #003a5d;
    color: #fff;
}

.toggle__label:hover span {
    background: url(images/drop-down-faq-selected.png) no-repeat center;
}

.toggle__label span {
    position: absolute;
    right: 5%;
    top: 45%;
    display: block;
    width: 11px;
    height: 6px;
    text-align: center;
    background: url(images/drop-down-faq.png) no-repeat center;
    -webkit-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
}

.toggle__input[type=checkbox]:checked+.toggle__label span {
    transform: rotateX(180deg);
    background: url(images/drop-down-faq-selected.png) no-repeat center;
}


/* TABLES */

ul.responsive_table,
.responsive_table {
    width: 100%;
    float: left;
    clear: both;
    margin: 0 0 10px 0;
    padding: 0px;
    list-style: none;
}

li.table_row,
.table_row {
    width: 100%;
    float: left;
    clear: both;
    line-height: 30px;
    padding: 0px;
    list-style: none;
    margin: 0 0 1px 0;
    background-color: rgba(255, 255, 255, .6);
}

.table_section_small {
    width: 10%;
    float: left;
    padding: 0 0 0 2%;
}

.table_section {
    width: 42%;
    float: left;
    padding: 0 0 0 2%;
    max-width: 42%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table_section_14 {
    width: 23%;
    float: left;
    padding: 0 0 0 2%;
    text-align: center;
    display: block;
}

.text-right {
    text-align: right !important;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.table_section_14 img {
    display: inline-block;
    text-align: center;
    padding: 10px 0 0 0;
    margin: 0px;
    line-height: 10px;
}

.table_section_14 strong {
    font-size: 18px;
}

.table_section_14 a.buy_now {
    display: inline-block;
    text-align: center;
    padding: 0 5px;
    margin: 5px 0;
    background-color: #94cb01;
    color: #FFFFFF;
    font-size: 12px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

ul.responsive_table li:first-child {
    background-color: #86d7ec;
    color: #222222;
}

.message-sent .message-text {
    background-color: #86d7ec;
}


/*===============================================*/


/* 14. MEDIA QUERIES */


/*===============================================*/


/* -------------SMALL DESKTOP--------- */

@media screen and (max-width: 1200px) {
    .bottombarpages {
        height: 70px;
    }
    .gallery_switch a {
        width: 20px;
        padding: 0px;
    }
    .gallery_switch a img {
        max-width: 60%;
    }
    .bottom_menu_open a img {
        max-width: 20%;
    }
}

.main_nav_underline ul.submenu{
    display: none;
    margin-left: 10% !important;
    transition: all 0.2s ease-out;
    max-height: 1px;
    overflow:hidden;
}
.has-submenu > a:after{
    content: ' ';
    border: solid white;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    position: absolute;
    right: 10px;
    top: 15px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.has-submenu.active ul.submenu{
    display: block;
    max-height: initial;
}
/* -------------TABLET PORTRAIT--------- */

@media screen and (max-width: 780px) {
    .titulos {
        top: 50px;
    }
    .navbar {
        height: 50px;
    }
    .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        top: 50px;
    }
    .navbar__col--title {
        font-size: 22px;
    }
    .navbar__col--title-sm {
        font-size: 18px;
    }
    .navbar__col--icon {
        width: 20px;
    }
    .navbar__col--icon-left {
        margin-right: 15px;
    }
    .navbar__col--icon-right {
        margin-left: 15px;
    }
    #pages_maincontent {
        top: 50px;
    }
    blockquote {
        font-size: 15px;
        line-height: 22px;
    }
    blockquote span {
        font-size: 14px;
        line-height: 22px;
    }
    ul.features_list li {
        width: 96%;
        clear: both;
        font-size: 14px;
        padding: 0 2% 15px 2%;
        margin: 0 0 15px 0;
    }
    ul.features_list li:nth-child(even) {
        float: left;
    }
    ul.features_list li span {
        padding: 2% 0 0 5%;
        font-weight: 700;
    }
    ul.features_list_detailed li {
        width: 96%;
        clear: both;
        padding: 10px 2%;
    }
    ul.features_list_detailed li .feat_small_details h4 {
        font-size: 16px;
    }
    a.button_full {
        padding: 10px 0;
    }
    .bottombarpages {
        height: 60px;
    }
    .gallery_switch a {
        width: 8%;
        padding: 0px;
    }
    .gallery_switch a img {
        max-width: 60%;
    }
    .slidertoolbar>.swiper-pagination {
        bottom: 13%;
    }
    .swiper-button-next {
        top: 20%;
    }
    .swiper-button-prev {
        top: 20%;
    }
    .slidertoolbar .slider-caption {
        top: 60px;
    }
    .main_nav_underline ul li img {
        max-width: 20px;
    }
    .main_nav_underline ul li a {
        font-size: 18px;
    }
    .user-nav ul li img {
        max-width: 20px;
    }
    .user-nav ul li strong {
        width: 20px;
        height: 20px;
        line-height: 20px;
    }
    .user-nav ul li a {
        font-size: 14px;
        font-weight: bold;
    }
    .user_thumb {
        height: 150px;
    }
    ul.submenu li a, ul.submenu li{
        width: 94.5% !important;
        font-size: 16px;
        padding: 6px 0;
    }
    ul.submenu li span{
        padding: 6px 0 6px 5px !important;
    }
}


/* -----------------MOBILE---------------- */

@media screen and (max-width: 680px) {
    .panel {
        width:95%;
    }
    h2.page_title {
        font-size: 16px;
        line-height: 25px;
        font-weight: 400;
        padding: 5px 0;
    }
    .content-block {
        padding: 25px 5%;
    }
    .popup-login .content-block {
        padding: 25px 5% 0;
    }
    .bottombarpages {
        height: 50px;
    }
    .gallery_switch a {
        width: 10%;
        padding: 0px;
    }
    .gallery_switch a img {
        max-width: 60%;
    }
    .bottom_menu_open a img {
        max-width: 40%;
    }
}


/* -----------------SMALL MOBILE---------------- */

@media screen and (max-width: 470px) {
    .gallery_switch a {
        width: 8%;
        padding: 0px 5px;
    }
    .gallery_switch a img {
        max-width: 100%;
    }
    .bottom_menu_open a img {
        max-width: 45%;
        padding: 13px 0 0 0;
    }
}


/* -----------------SMALLER MOBILE---------------- */

@media screen and (max-width: 360px) {
    .gallery_switch a {
        width: 10%;
        padding: 0px 3px;
    }
    .bottom_menu_open a img {
        max-width: 50%;
        padding: 15px 0 0 0;
    }
}


/* * This combined file was created by the DataTables downloader builder: * https://datatables.net/download * * To rebuild or modify this file with the latest versions of the included * software please visit: * https://datatables.net/download/#dt/dt-1.10.18 * * Included libraries: * DataTables 1.10.18 */

table.dataTable {
    width: 100%;
    margin: 0 auto;
    clear: both;
    border-collapse: separate;
    border-spacing: 0
}

table.dataTable thead th,
table.dataTable tfoot th {
    font-weight: bold
}

table.dataTable thead th,
table.dataTable thead td {
    padding: 2px;
    border-bottom: 1px solid #111
}

table.dataTable thead th:active,
table.dataTable thead td:active {
    outline: none
}

table.dataTable tfoot th,
table.dataTable tfoot td {
    padding: 10px 18px 6px 18px;
    border-top: 1px solid #111
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
    cursor: pointer;
    *cursor: hand;
    background-repeat: no-repeat;
    background-position: center right
}

table.dataTable thead .sorting {
    background-image: url("DataTables-1.10.18/images/sort_both.png")
}

table.dataTable thead .sorting_asc {
    background-image: url("DataTables-1.10.18/images/sort_asc.png")
}

table.dataTable thead .sorting_desc {
    background-image: url("DataTables-1.10.18/images/sort_desc.png")
}

table.dataTable thead .sorting_asc_disabled {
    background-image: url("DataTables-1.10.18/images/sort_asc_disabled.png")
}

table.dataTable thead .sorting_desc_disabled {
    background-image: url("DataTables-1.10.18/images/sort_desc_disabled.png")
}

table.dataTable tbody tr {
    background-color: #ffffff
}

table.dataTable tbody tr.selected {
    background-color: #B0BED9
}

table.dataTable tbody th,
table.dataTable tbody td {
    padding: 3px 5px;
}

table.dataTable.row-border tbody th,
table.dataTable.row-border tbody td,
table.dataTable.display tbody th,
table.dataTable.display tbody td {
    border-top: 1px solid #ddd
}

table.dataTable.row-border tbody tr:first-child th,
table.dataTable.row-border tbody tr:first-child td,
table.dataTable.display tbody tr:first-child th,
table.dataTable.display tbody tr:first-child td {
    border-top: none
}

table.dataTable.cell-border tbody th,
table.dataTable.cell-border tbody td {
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd
}

table.dataTable.cell-border tbody tr th:first-child,
table.dataTable.cell-border tbody tr td:first-child {
    border-left: 1px solid #ddd
}

table.dataTable.cell-border tbody tr:first-child th,
table.dataTable.cell-border tbody tr:first-child td {
    border-top: none
}

table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd {
    background-color: #f9f9f9
}

table.dataTable.stripe tbody tr.odd.selected,
table.dataTable.display tbody tr.odd.selected {
    background-color: #acbad4
}

table.dataTable.hover tbody tr:hover,
table.dataTable.display tbody tr:hover {
    background-color: #f6f6f6
}

table.dataTable.hover tbody tr:hover.selected,
table.dataTable.display tbody tr:hover.selected {
    background-color: #aab7d1
}

table.dataTable.order-column tbody tr>.sorting_1,
table.dataTable.order-column tbody tr>.sorting_2,
table.dataTable.order-column tbody tr>.sorting_3,
table.dataTable.display tbody tr>.sorting_1,
table.dataTable.display tbody tr>.sorting_2,
table.dataTable.display tbody tr>.sorting_3 {
    background-color: #fafafa
}

table.dataTable.order-column tbody tr.selected>.sorting_1,
table.dataTable.order-column tbody tr.selected>.sorting_2,
table.dataTable.order-column tbody tr.selected>.sorting_3,
table.dataTable.display tbody tr.selected>.sorting_1,
table.dataTable.display tbody tr.selected>.sorting_2,
table.dataTable.display tbody tr.selected>.sorting_3 {
    background-color: #acbad5
}

table.dataTable.display tbody tr.odd>.sorting_1,
table.dataTable.order-column.stripe tbody tr.odd>.sorting_1 {
    background-color: #f1f1f1
}

table.dataTable.display tbody tr.odd>.sorting_2,
table.dataTable.order-column.stripe tbody tr.odd>.sorting_2 {
    background-color: #f3f3f3
}

table.dataTable.display tbody tr.odd>.sorting_3,
table.dataTable.order-column.stripe tbody tr.odd>.sorting_3 {
    background-color: whitesmoke
}

table.dataTable.display tbody tr.odd.selected>.sorting_1,
table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1 {
    background-color: #a6b4cd
}

table.dataTable.display tbody tr.odd.selected>.sorting_2,
table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2 {
    background-color: #a8b5cf
}

table.dataTable.display tbody tr.odd.selected>.sorting_3,
table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3 {
    background-color: #a9b7d1
}

table.dataTable.display tbody tr.even>.sorting_1,
table.dataTable.order-column.stripe tbody tr.even>.sorting_1 {
    background-color: #fafafa
}

table.dataTable.display tbody tr.even>.sorting_2,
table.dataTable.order-column.stripe tbody tr.even>.sorting_2 {
    background-color: #fcfcfc
}

table.dataTable.display tbody tr.even>.sorting_3,
table.dataTable.order-column.stripe tbody tr.even>.sorting_3 {
    background-color: #fefefe
}

table.dataTable.display tbody tr.even.selected>.sorting_1,
table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1 {
    background-color: #acbad5
}

table.dataTable.display tbody tr.even.selected>.sorting_2,
table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2 {
    background-color: #aebcd6
}

table.dataTable.display tbody tr.even.selected>.sorting_3,
table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3 {
    background-color: #afbdd8
}

table.dataTable.display tbody tr:hover>.sorting_1,
table.dataTable.order-column.hover tbody tr:hover>.sorting_1 {
    background-color: #eaeaea
}

table.dataTable.display tbody tr:hover>.sorting_2,
table.dataTable.order-column.hover tbody tr:hover>.sorting_2 {
    background-color: #ececec
}

table.dataTable.display tbody tr:hover>.sorting_3,
table.dataTable.order-column.hover tbody tr:hover>.sorting_3 {
    background-color: #efefef
}

table.dataTable.display tbody tr:hover.selected>.sorting_1,
table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1 {
    background-color: #a2aec7
}

table.dataTable.display tbody tr:hover.selected>.sorting_2,
table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2 {
    background-color: #a3b0c9
}

table.dataTable.display tbody tr:hover.selected>.sorting_3,
table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3 {
    background-color: #a5b2cb
}

table.dataTable.no-footer {
    border-bottom: 1px solid #111
}

table.dataTable.nowrap th,
table.dataTable.nowrap td {
    white-space: nowrap
}

table.dataTable.compact thead th,
table.dataTable.compact thead td {
    padding: 4px 17px 4px 4px
}

table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td {
    padding: 4px
}

table.dataTable.compact tbody th,
table.dataTable.compact tbody td {
    padding: 4px
}

table.dataTable th.dt-left,
table.dataTable td.dt-left {
    text-align: left
}

table.dataTable th.dt-center,
table.dataTable td.dt-center,
table.dataTable td.dataTables_empty {
    text-align: center
}

table.dataTable th.dt-right,
table.dataTable td.dt-right {
    text-align: right
}

table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
    text-align: justify
}

table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
    white-space: nowrap
}

table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
    text-align: left
}

table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
    text-align: center
}

table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
    text-align: right
}

table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
    text-align: justify
}

table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
    white-space: nowrap
}

table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
    text-align: left
}

table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
    text-align: center
}

table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
    text-align: right
}

table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
    text-align: justify
}

table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
    white-space: nowrap
}

table.dataTable,
table.dataTable th,
table.dataTable td {
    box-sizing: content-box
}

.dataTables_wrapper {
    position: relative;
    clear: both;
    *zoom: 1;
    zoom: 1
}

.dataTables_wrapper .dataTables_length {
    float: left
}

.dataTables_wrapper .dataTables_filter {
    float: right;
    text-align: right
}

.dataTables_wrapper .dataTables_filter input {
    margin-left: 0.5em
}

.dataTables_wrapper .dataTables_info {
    clear: both;
    float: left;
    padding-top: 0.755em
}

.dataTables_wrapper .dataTables_paginate {
    float: right;
    text-align: right;
    padding-top: 0.25em
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    padding: 0.5em 1em;
    margin-left: 2px;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    *cursor: hand;
    color: #333 !important;
    border: 1px solid transparent;
    border-radius: 2px
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: #333 !important;
    border: 1px solid #979797;
    background-color: white;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #dcdcdc));
    background: -webkit-linear-gradient(top, #fff 0%, #dcdcdc 100%);
    background: -moz-linear-gradient(top, #fff 0%, #dcdcdc 100%);
    background: -ms-linear-gradient(top, #fff 0%, #dcdcdc 100%);
    background: -o-linear-gradient(top, #fff 0%, #dcdcdc 100%);
    background: linear-gradient(to bottom, #fff 0%, #dcdcdc 100%)
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    cursor: default;
    color: #666 !important;
    border: 1px solid transparent;
    background: transparent;
    box-shadow: none
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: white !important;
    border: 1px solid #111;
    background-color: #585858;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
    background: -webkit-linear-gradient(top, #585858 0%, #111 100%);
    background: -moz-linear-gradient(top, #585858 0%, #111 100%);
    background: -ms-linear-gradient(top, #585858 0%, #111 100%);
    background: -o-linear-gradient(top, #585858 0%, #111 100%);
    background: linear-gradient(to bottom, #585858 0%, #111 100%)
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
    outline: none;
    background-color: #2b2b2b;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
    background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
    background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
    background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
    background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
    background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
    box-shadow: inset 0 0 3px #111
}

.dataTables_wrapper .dataTables_paginate .ellipsis {
    padding: 0 1em
}

.dataTables_wrapper .dataTables_processing {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 40px;
    margin-left: -50%;
    margin-top: -25px;
    padding-top: 20px;
    text-align: center;
    font-size: 1.2em;
    background-color: white;
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
    background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%)
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    color: #333
}

.dataTables_wrapper .dataTables_scroll {
    clear: both
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
    *margin-top: -1px;
    -webkit-overflow-scrolling: touch
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td {
    vertical-align: middle
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing {
    height: 0;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: 1px solid #111
}

.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
.dataTables_wrapper.no-footer div.dataTables_scrollBody>table {
    border-bottom: none
}

.dataTables_wrapper:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0
}

@media screen and (max-width: 767px) {
    .dataTables_wrapper .dataTables_info,
    .dataTables_wrapper .dataTables_paginate {
        float: none;
        text-align: center
    }
    .dataTables_wrapper .dataTables_paginate {
        margin-top: 0.5em
    }
}

@media screen and (max-width: 640px) {
    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter {
        float: none;
        text-align: center
    }
    .dataTables_wrapper .dataTables_filter {
        margin-top: 0.5em
    }
}

.table-bordered>tbody>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border: 1px solid #ddd;
    text-align: center;
}

.table-striped tbody tr:nth-of-type(2n+1) {
    background-color: rgba(134, 214, 237, 0.2);
}

.accordion__content a {
    display: block;
    text-transform: uppercase;
    padding: 6px 12px;
}

.overlay-swipe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .8);
    z-index: 5999;
    display: none;
}

.overlay-swipe img {
    width: 100%;
    top: 120px;
    position: absolute;
}


/* Personalizados */

button {
    width: 80%;
    border-radius: 5px;
    border: none;
    padding: 5px;
    color: white;
    font-size: 14px;
}

.btn-noti-desactivadas,
.btn-noti-activadas {
    background-color: #003a5d;
    font-family: Roboto;
    visibility: visible;
    line-height: 50px;
    letter-spacing: 0px;
    font-weight: 500;
    font-size: 20px;
    border-color: rgba(255, 255, 255, 0);
    margin: 0px;
    border-radius: 0;
    padding: 0px 20px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    white-space: nowrap;
    width: auto;
    height: auto;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
    transform-origin: 50% 50% 0px;
    border-width: 0px;
}

.oculto {
    display: none !important;
}

.alert {
    padding: 20px;
    background-color: #f44336;
    /* Red */
    color: white;
    margin-bottom: 15px;
}

#no-notification {
    display: none;
}

.mapa {
    width: 100%;
    height: 300px;
    background: #ccc;
}

.msgholder {
    border: 0;
    border-radius: 0px;
    margin-bottom: 20px;
    display: none;
}

.error.message {
    background: #cc0000;
    color: #fff;
    padding: 20px 10px;
}

.message.success {
    background: #a1d683;
    color: #fff;
    padding: 20px 10px;
}

.header {
    font-size: 20px;
    font-weight: bold;
}

.loading {
    position: relative
}

.loading:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3) url(images/preloader.gif) no-repeat 50% 50%;
    visibility: visible;
    z-index: 99999;
}

.text-upper {
    text-transform: uppercase;
}

.version {
    margin-top: 0;
    background: #b0aaaa;
    color: #fff;
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 0;
}

#acuerdos img {
    vertical-align: middle;
    width: 20px;
    margin-bottom: 5px;
}

#acuerdos small {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 80%;
    color: #666;
    font-weight: bold;
    text-align: right;
}

.box {
    width: 100%;
    float: left;
    margin: 1em 0;
    border: solid 1px #ece4e4;
    background: #f8f8f8;
}


/* Boxes */

.box {
    width: 100%;
    float: left;
    margin: 1em 0;
    border: 0;
}

#msgholder .box {
    border: solid 1px #aaa;
    border-radius: 4px;
    box-shadow: 0px 1px 15px rgba(0, 0, 0, .5);
}

.box .box-header {
    text-align: center;
    font-weight: 400;
}

.box .box-body {
    position: relative;
    padding: 10px;
    text-align: center;
}

.text-white {
    color: #fff !important;
}

.box-header h2 {
    padding: 0 !important;
}

.box select {
    width: 120px;
    margin: 10px auto 0 auto;
    display: block;
    font-size: 16px;
}

.box-large .box-body {
    padding-top: 2em;
    height: 120px;
}

.box-orange .box-header {
    background-color: #edb867;
    color: white;
}

.box-orange .box-body {
    background-color: white;
    border: 2px solid #f5d8ab;
    border-top: 0;
}

.box-green .box-header {
    background-color: #50e3c2;
    color: white;
}

.box-green .box-body {
    background-color: white;
    border: 2px solid #92eed9;
    border-top: 0;
}

.box-blue .box-header {
    background-color: #4278f5;
    color: white;
}

.box-blue .box-body {
    background-color: white;
    border: 2px solid #8bacf9;
    border-top: 0;
}

.red-400 {
    border-color: #ff4141;
    color: rgba(0, 0, 0, 0.87);
    background: #ff0000;
}

.green-400 {
    background-color: #3dae2b;
    color: rgba(0, 0, 0, 0.87);
}

.blue-400 {
    background-color: #42a5f5;
    color: rgba(0, 0, 0, 0.87);
}

.orange-400 {
    background-color: #ffa726;
    color: rgba(0, 0, 0, 0.87);
}

.bg-green {
    background: #a1d683;
}

@media all and (orientation:landscape) {
    .content-block.middle {
        margin-top: 10%;
    }
    .popup-login {
        background: #fff url("images/logo.png") center 5% no-repeat;
        background-size: 200px;
        background-attachment: fixed;
    }
}

.menu {
    width: 100%;
    padding: 0px;
    margin: 0px 0 15px 0;
    border-bottom: solid 1px #e4e2e2;
    padding-bottom: 15px;
}

.menu ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    width: 100%;
}

.menu ul li {
    list-style: none;
    margin: 3%;
    width: 43.5%;
    padding: 5.5% 0;
    height: auto;
    float: left;
    display: block;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 3px 3px 5px 1px rgba(0, 0, 0, .5);
    position: relative;
}
.hidden{
    display: none;
}
.menu ul li a {
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
}

.menu ul li img {
    display: inline-block;
    max-width: 50%;
}

.menu ul li a span {
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 25px;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.green {
    background-color: #009999;
}

.red {
    background-color: #33cccc;
}

.blue {
    background-color: #ccecff;
}

.orange {
    background-color: #ffd966;
}

.purple {
    background-color: #ffff66;
}

.yellow {
    background-color: #ff9999;
}

.pink {
    background-color: #f4b183;
}

.bluegreen {
    background-color: #ffcccc;
}

.img-rounded {
    max-height: 150px;
    border-radius: 50%;
    padding: 3px;
    border: solid 1px #e4e2e2;
}

.user-data {
    /* border-bottom: solid 1px #e4e2e2;*/
    -moz-box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.4);
}

h3.hgreen {
    color: #a1d683;
}

.text-error {
    color: #CC0000;
}

.control-data {
    display: block;
    padding: 0;
}

.bgrey {
    border-bottom: solid 1px #e4e2e2;
}

.control-data h1 {
    font-size: 60px;
    color: #a1d683;
    margin: 0;
    padding: 0;
}

.control-data h3 {
    color: #a1d683;
    font-size: 16px;
    padding: 0 0 10px;
    margin-top: 14px;
    font-weight: bold;
}

table.table {
    padding: 0.2rem;
    width: 100%;
}

.control-data .table td {
    width: 25%;
    padding: 0.2rem;
}

.control-data .table th {
    font-size: 16px;
}

.control-data .table td {
    width: 25%;
    padding: 0.2rem;
    font-size: 18px;
}

.control-data .table i {
    font-size: 50px;
}

.py15 {
    margin-bottom: 15px;
    padding-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6,
b {
    color: #003a5d;
}

h5.post-title {
    z-index: 9;
    font-family: Roboto;
    visibility: visible;
    text-align: center;
    line-height: 30px;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 30px;
    border-color: rgb(44, 62, 80);
    margin: 0px;
    border-radius: 0px;
    padding: 0px;
    color: #003a5d;
    text-decoration: none;
    white-space: nowrap;
    width: auto;
    height: auto;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
    transform-origin: 50% 50% 0px;
    border-bottom: 2px solid #a1d683;
}

.blog-details-post-thumbnail {
    position: relative;
    z-index: 1;
    margin-bottom: -40px;
    background: #c00;
}

.product-description {
    position: relative;
    z-index: 1;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.product-title-meta-data {
    position: relative;
    z-index: 1;
}

.product-title-meta-data {
    border-top-left-radius: 3rem;
    padding-left: .5rem;
    padding-top: 1.5rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.pt-3,
.py-3 {
    padding-top: .55rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.bg-white {
    background-color: #fff !important;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

img {
    max-width: 100%;
    height: auto;
}

.pagtit {
    background-image: url(../images/Favicon_CJA.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: 24px;
    font-size: 18px;
    padding-left: 30px;
    line-height: 30px;
    color: #003a5d;
    border-bottom: 2px solid #a1d683;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.product-title-meta-data::after {
    position: absolute;
    content: "";
    background-image: url(../images/curve.png);
    top: -121px;
    width: 142px;
    height: 121px;
    background-repeat: no-repeat;
    right: 0;
    z-index: auto;
}


/*.popup .product-description h4, .popup-recomendaciones-detalles h4{    color: #003a5d;    font-size: 16px;    font-weight: 700;    text-align: left;    padding: 0 0 20px 0;    margin: 0px;}*/

ul,
ol {
    margin-bottom: 2.5em;
    list-style-position: inside;
}

ul {
    list-style-type: none;
}

ul li {
    background: url('../images/Favicon_CJA.png') no-repeat 0 2px;
    padding-left: 25px;
    background-size: 25px;
    text-align: justify;
}

ol {
    list-style: decimal-leading-zero outside;
}

li {
    margin-bottom: 1.2em;
}

ul li.not-image,
ul li ul li {
    background: none !important;
    padding:0 ;
    list-style: circle;
    padding-left: 0px;
    margin-left: 0px;
}

img.icon {
    height: 25px;
}

.recomendaciones-block {
    width: 94%;
    font-size: 16px;
    text-align: center;
    float: left;
    margin: 3% 0;
    min-height: 175px;
    line-height: 1;
    box-shadow: 3px 3px 5px 1px rgba(0, 0, 0, .5);
    border-radius: 10px;
    padding: 3%;
    text-align: center;
    font-size: 14px;
    line-height: 25px;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;/*
    width: 45%;
    font-size: 16px;
    text-align: center;
    float: left;
    margin: 2.5%;
    min-height: 175px;
    line-height: 1;*/
}

.post-content img {
    margin-bottom: 10px;
}

.popup-recomendaciones-detalles p {
    font-size: 18px;
}

.ico-control {
    width: 80%;
    margin: auto;
}

.container-notas {
    position: relative;
    display: block;
    width: 60px;
    margin: auto;
}

.badge-notificacion {
    width: 20px;
    height: 20px;
    background-color: #cc0000;
    color: #fff;
    position: absolute;
    left: -6px;
    top: -6px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

pwa-install {
    position: absolute;
    left: 50%;
    top: 8px;
    margin-left: -20px;
    z-index: 999999;
}

iframe {
    width: 100% !important;
    height: auto !important;
}

.circulo {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: solid 2px #0c79bc;
    /*#2179c0*/
    border-radius: 50%;
    font-size: 12px;
    text-align: center;
}

.circulo:after {
    content: ' ';
    display: block;
    width: 55px;
    height: 55px;
    border: solid 8px #1fc2c8 ;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    left: -6px;
    opacity: 1;
}

.circulo-270:after {
    border-color: #FFB347;
    border-right-color: transparent;
}

.circulo-180:after {
    border-color: #FF6961;
    border-right-color: transparent;

    border-top-color: transparent;
}

.circulo-vacio:after {
    border-color: transparent;
}

.bloque-valoraciones {
    display: block;
    padding-bottom: 20px;
    border-bottom: solid 1px #ddd;
}

.bloque-valoraciones h3 {
    margin-bottom: 0;
    font-size: 16px;
    margin-top: 10px;
}

#recomendaciones-list.menu ul li {
    margin: 3% 0;
    width: 94%;
    padding: 3%;
}

.title-agenda h3 {
    padding: 0;
}

#recomendaciones-list .recomendaciones-block, .recomendaciones-block {
    min-height: 1px;
}
#recomendaciones-list.menu img{
    max-width: 100%;
}
#recomendaciones-list td, .recomendaciones-block td{
    vertical-align: middle;
}
#recomendaciones-detalles .post-content img {
    margin-bottom: 0px;
}
.popup-alimentacion{
    z-index: 11001;
}

.popup-notas {
    z-index: 11002;
}
.table.controles-d th{
    width: 57px;
    text-align: right;
    border-bottom: solid 1px #ddd;
}
.table.controles-d th img{
    width: 47px;
}
.table.controles-d td{
    vertical-align: middle;
    text-align: left;
    width: 100%;
    padding-left: 15px;
    font-size: 14px;
    color: #003a5d;
    border-bottom: solid 1px #ddd;
}
.controles-d span.regular{
    color:#ce944d !important;
    text-align: left !important;
}
.controles-d span.mal{
    color:#fa6663 !important;
    text-align: left !important;
}
.table.controles-d td h3{
    margin: 0;
    font-size: 14px;
    color: #003a5d;
    padding: 0;
}
.fc-list-item-title .badge-notificacion {
    position: relative; 
    float: right;
}
#calendarusuarios{
    position: relative;
    margin-top: 40px;
}
#calendarusuarios .fc-toolbar .fc-right {
    position: absolute;
    top: -25px;
}
#calendarusuarios .fc-right .fc-state-default.fc-corner-left {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
#calendarusuarios .fc-right .fc-state-default {
    background: transparent;
    border: 0;
    color: #fff !important;
    font-size: 14px !important;
    width: 100px !important;
    height: 25px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0;
}
#calendarusuarios down, #calendarusuarios .fc-right .fc-state-active {
    background-color: #a1d683;
    background-image: none;
    box-shadow: none;
}
#calendarusuarios .fc-right .fc-button-group{
    margin-left: 0;
    width: 100%;
    background:#003a5d;
}
#calendarusuarios .fc-right .fc-button-group {
    display: inline-block !important;
}
#calendarusuarios .fc-toolbar .fc-right {
    display: block;
}
#calendarusuarios .fc-time-grid-event {
    overflow: hidden;
    min-height: 50px;
    border-style: dotted;
}
#openButton{
    color: red;
}
#content-calendar a.fc-list-heading-main, #content-calendar a.fc-list-heading-alt{
    text-decoration: none;
}
.user-data a{
    text-decoration: none;
    color:#a1d683;
}
.mt-15{
    margin-top: 15px;
}

#lasnotificaciones{
    position: absolute;
    width: 100%;
    bottom: 0;
    background: #eee;
    z-index: 999;
    padding: 10px 0;
    display: none;
}
#lasnotificaciones p{
    padding: 0 20px 20px 20px;
    text-align: justify;
}
@media (max-width: 359px) {
    body {
        font-size: 13px;
    }
    .menu ul li a span, .content-block span {
        display: block;
        text-align: center;
        font-size: 11px;
        line-height: 18px;
        color: rgba(0, 0, 0, 0.5);
        text-transform: uppercase;
    }
    .popup p {
        font-size: 14px;
    }
}
footer{
    background-color: #003a5d;
    color: #fff;
    margin-top: 20px;
    padding: 5px 10px;
}

/* Chat containers */
.contiene{
    padding-left: 0%;
    padding-right: 0%;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: flex-start;
}
.contiene.rtl{
    align-items: flex-end;
}
.container-chat {
    border: 0;
    background-color: #e4f9e6;
    border-radius: 5px;
    padding: 0px 10px;
    margin: 5px 0;
    width: auto;
    max-width: 80%;
    text-align: right;
    flex: none;
}
.contiene:before, .contiene:after {
    content:"";
    display:table;
}

/* Darker chat container */
.darker {
    border-color: 0;
    background-color: #f7f4f4;
    text-align: left;
}

/* Clear floats */
.container-chat::after {
    content: "";
    clear: both;
    display: table;
}

/* Style images */
.container-chat img {
    float: left;
    max-width: 60px;
    width: 100%;
    margin-right: 20px;
    border-radius: 50%;
}

/* Style the right image */
.container-chat img.right {
    float: right;
    margin-left: 20px;
    margin-right:0;
}

/* Style time text */
.container-chat span.time  {
    float: right;
    color: #aaa;
    font-size: 85%;
}

/* Style time text */
.darker span.time {
    float: left;
    color: #999;
} 
.container-chat p{
    margin: 5px 0 5px;
    line-height: 1;
    padding: 0;
}
#chat-body{
    padding: 10px;
    border: solid 1px #95d5b5;
    border-radius: 10px;
    margin-bottom: 5px;
    max-height: 400px;
    overflow-y: scroll;
    background: lightblue url("../images/fondo.jpg") repeat fixed center; 
}
#msn{
    width: 94%;
    margin: 3%;
    border: solid 1px #6cae8d;
    font-size: 14px;
    min-height: 50px;
    display: inline-block;
}

.mensajeria.hidden{
    display: none !important;
}

/**
 * jQuery toast plugin created by Kamran Ahmed copyright MIT license 2014
 */
.jq-toast-wrap { display: block; position: fixed; width: 250px;  pointer-events: none !important; margin: 0; padding: 0; letter-spacing: normal; z-index: 9000 !important; }
.jq-toast-wrap * { margin: 0; padding: 0; }

.jq-toast-wrap.bottom-left { bottom: 20px; left: 20px; }
.jq-toast-wrap.bottom-right { bottom: 20px; right: 40px; }
.jq-toast-wrap.top-left { top: 20px; left: 20px; }
.jq-toast-wrap.top-right { top: 20px; right: 40px; }

.jq-toast-single { display: block; width: 100%; padding: 10px; margin: 0px 0px 5px; border-radius: 4px; font-size: 14px; font-family: arial, sans-serif; line-height: 17px; position: relative;  pointer-events: all !important; background-color: #444444; color: white; }

.jq-toast-single h2 { font-family: arial, sans-serif; font-size: 18px; margin: 0px 0px 7px; background: none; color: inherit; line-height: inherit; letter-spacing: normal; }
.jq-toast-single a { color: #eee; text-decoration: none; font-weight: bold; border-bottom: 1px solid white; padding-bottom: 3px; font-size: 12px; }

.jq-toast-single ul { margin: 0px 0px 0px 15px; background: none; padding:0px; }
.jq-toast-single ul li { list-style-type: disc !important; line-height: 17px; background: none; margin: 0; padding: 0; letter-spacing: normal; }

.close-jq-toast-single { position: absolute; top: 3px; right: 7px; font-size: 14px; cursor: pointer; }

.jq-toast-loader { display: block; position: absolute; top: -2px; height: 5px; width: 0%; left: 0; border-radius: 5px; background: red; }
.jq-toast-loaded { width: 100%; }
.jq-has-icon { padding: 10px 10px 10px 50px; background-repeat: no-repeat; background-position: 10px; }
.jq-icon-info { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII='); background-color: #31708f; color: #d9edf7; border-color: #bce8f1; }
.jq-icon-warning { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII='); background-color: #8a6d3b; color: #fcf8e3; border-color: #faebcc; }
.jq-icon-error { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII='); background-color: #a94442; color: #f2dede; border-color: #ebccd1; }
.jq-icon-success { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg=='); color: #dff0d8; background-color: #3c763d; border-color: #d6e9c6; }