

/* Helpers
------------------------------------------------------------ */

.bee-document-lock {
    overflow: hidden !important;
    -webkit-overflow-scrolling: touch;
}
.bee-document-lock body {
    overflow: hidden !important;
}

/* overlay */
.bee-overlay {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* video iframe */
.bee-video-iframe {
    position: relative;
    overflow: hidden;
}
.bee-video-iframe:before{
    content: "";
    display: block;
    padding-top: 60%; 	/* initial ratio of 1:1*/
}
.bee-video-iframe .bee-video-iframe-inner{
    position:  absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    right: 0px;
}
.bee-video-iframe .bee-video-iframe-inner iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.bee-video-iframe .bee-video-iframe-inner .fb-video {
    width: 100%;
    height: 100%;    
}
.bee-video-iframe .bee-video-iframe-inner .fb-video.fb_iframe_widget_fluid {
    display: block !important;
}
.bee-video-iframe .bee-video-iframe-inner .fb-video span{
    position:  absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    right: 0px;
    width: 100% !important;
    height: 100% !important;
}
.bee-video-iframe .bee-video-iframe-inner .fb-video span iframe{
    width: 100% !important;
    height: 100% !important;
}


/* Animate
 * -------------------------------------------------- */
[data-ani]{
    opacity: 0;
}
.bee-ani {
}

/* fade */
.bee-ani.bee-fade {
    opacity: 0;
    transition: opacity .6s ease;
}
.bee-ani.bee-fade.bee-ani-in{
    opacity: 1;
}

/* fade left/right */
.bee-ani.bee-fadeLeft {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.bee-ani.bee-fadeRight {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .6s ease, transform .6s ease;
}
.bee-ani.bee-fadeLeft.bee-ani-in,
.bee-ani.bee-fadeRight.bee-ani-in{
    opacity: 1;
    transform: translateX(0);
}

/* fade down/up */
.bee-ani.bee-fadeDown {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity .6s ease, transform .6s ease;
}
.bee-ani.bee-fadeUp {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.bee-ani.bee-fadeDown.bee-ani-in,
.bee-ani.bee-fadeUp.bee-ani-in{
    opacity: 1;
    transform: translateY(0);
}

/* scale down/up */
.bee-ani.bee-scaleDown {
    opacity: 0;
    transform: scale(1.1);
    transition: opacity .6s ease, transform .6s ease;
}
.bee-ani.bee-scaleUp {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity .6s ease, transform .6s ease;
}
.bee-ani.bee-scaleDown.bee-ani-in,
.bee-ani.bee-scaleUp.bee-ani-in{
    opacity: 1;
    transform: scale(1);
}


/* CAROUSEL
 * -------------------------------------------------- */

[data-carousel] .slick-slide,
[data-carousel] > * {
    display: none;
}
[data-carousel] .slick-slide:first-child,
[data-carousel] > *:first-child {
    display: block;
}
[data-carousel].slick-initialized .slick-slide {
    display: block;
}
.slick-slider .slick-list {
    position: relative;
    z-index: 10;
}
.slick-slider .slick-slide {
    position: relative;
    outline: none !important;
}
.slick-slider.slick-initialized .slick-slide {
    display: block !important;
}
.slick-slider .slick-arrow{
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -21px;
    outline: none !important;
    cursor: pointer;
    z-index: 20;
    border: none;
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 50%;
    background: #ffffff;
    text-align: center;
    color: #101010;
}
.slick-slider .slick-prev {
    left: 15px;
}
.slick-slider .slick-next {
    right: 15px;
}
.slick-slider .slick-arrow:before {
    font-family: Flaticon !important;
    font-size: 16px;
}
.slick-slider .slick-prev:before{
    content: '\f111';
}
.slick-slider .slick-next:before{
    content: '\f110';
}

/* slick dots */
.slick-slider .slick-dots {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 0;
    z-index: 30;
}
.slick-slider .slick-dots li {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    cursor: pointer;
}
.slick-slider .slick-dots li + li {
    margin-left: 4px;
}
.slick-slider .slick-dots li span {
    display: block;
    position: relative;
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 0;
    border: 0;
    background-color: #EEE;
    outline: none;
    border-radius: 50%;
}
.slick-slider .slick-dots li.slick-active span{
    background-color: #DDD;
}


/* Dialog
------------------------------------------------------------ */

.bee-dialog {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0);
    z-index: 9999;
    transition: background-color .6s ease;
}
.bee-dialog .bee-dialog-inner {
    display: block;
    position: relative;
    width: auto;
    max-width: 600px;
    margin: 60px auto;
    padding: 20px;
    border-radius: 12px;
    background-color: #FFF;
    box-shadow: 1px 2px 5px rgba(0,0,0,0.1);
    opacity: 0;
    transform: scale(0.98);
    transition: opacity .3s ease, transform .3s ease;
}
.bee-dialog.bee-dialog-np .bee-dialog-inner{
    padding: 0;
}
.bee-dialog.bee-dialog-size-xs .bee-dialog-inner{
    max-width: 300px;
}
.bee-dialog.bee-dialog-size-md .bee-dialog-inner{
    max-width: 900px;
}
.bee-dialog.bee-dialog-size-lg .bee-dialog-inner{
    max-width: 1200px;
}
.bee-dialog .bee-dialog-inner h1:first-child,
.bee-dialog .bee-dialog-inner h2:first-child,
.bee-dialog .bee-dialog-inner h3:first-child,
.bee-dialog .bee-dialog-inner h4:first-child,
.bee-dialog .bee-dialog-inner h5:first-child,
.bee-dialog .bee-dialog-inner h6:first-child {
    margin-top: 0;
}
.bee-dialog .bee-dialog-inner .bee-dialog-close {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;    
    height: 18px;
    background: none;
    border: none;
    outline: none !important;
    cursor: pointer;
}
.bee-dialog .bee-dialog-inner .bee-dialog-close:before,
.bee-dialog .bee-dialog-inner .bee-dialog-close:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #CCC;
}
.bee-dialog .bee-dialog-inner .bee-dialog-close:before {
    transform: rotate(-45deg);
}
.bee-dialog .bee-dialog-inner .bee-dialog-close:after {
    transform: rotate(45deg);
}
.bee-dialog .bee-dialog-inner .bee-dialog-foot {
    margin-top: 15px;
    border-top: 1px solid #EEE;
    padding-top: 15px;
    text-align: right;
}
.bee-dialog .bee-dialog-inner .bee-dialog-foot .btn {
    padding: 6px 20px;
}
.bee-dialog .bee-dialog-inner .bee-dialog-foot .btn + .btn {
    margin-left: 5px;
}
.bee-dialog.bee-dialog-in {
    background-color: rgba(0,0,0,0.2);
}
.bee-dialog.bee-dialog-in .bee-dialog-inner {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 767px){
    .bee-dialog .bee-dialog-inner {
        width: auto;
        max-width: 100%;
        margin: 15px;
        box-shadow: none;
    }
    .bee-dialog.bee-has-close .bee-dialog-inner{
        padding-top: 44px;
    }
    .bee-dialog .bee-dialog-inner .bee-dialog-close {
        width: 24px;
        height: 24px;
        font-size: 22px;
        line-height: 24px;
        top: 10px;
        right: 10px;
    }
}


/* GALERY
 * -------------------------------------------------- */

[data-gallery] {
    cursor: pointer;
}


/* INPUT IMAGE
 * -------------------------------------------------- */

.bee-inputimage .content{
    display: block;
    position: relative;
    text-align: center;
    overflow: hidden;
}
.bee-inputimage .content .image-wrapper{
    display: block;
    position: relative;

    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    overflow: hidden;
}
.bee-inputimage .content .image-wrapper img{
    display: block;
    width: 100%;
    z-index: 10;
}
.bee-inputimage .content .bee-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
}
.bee-inputimage .content .inner{
    text-align: center;
    -webkit-transition: opacity .1s ease;
    transition: opacity .1s ease;
    z-index: 20;
}
.bee-inputimage .content .inner button{
    display: inline-block;

    padding: 5px 10px;
    color: #FFF;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    margin: 5px;
    text-transform: uppercase;

    border: none !important;
    border-radius: 4px;
    outline: none !important;
    background-color: rgba(0,0,0,0.3);
    -webkit-transition: color .3s ease, background-color .3s ease;
    transition: color .3s ease, background-color .3s ease;
}
.bee-inputimage .content .inner button + button {
    margin-left: 5px;
}
html.no-touch .bee-inputimage .content .inner button:hover{
    background-color: rgba(0,0,0,0.7);
}
.bee-inputimage input[type="file"]{
    display: none;
}


/* Light Box
------------------------------------------------------------ */

.bee-lightbox {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: background-color .6s ease;
    z-index: 6000;
}
.bee-lightbox.bee-lightbox-loading:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    margin-top: -24px;
    margin-left: -24px;
    background-image: url(images/loading.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0,0,0,0.8);
    border-radius: 10px;
}
.bee-lightbox .bee-lightbox-container {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    transition: transform .4s ease;
}
.bee-lightbox.bee-lightbox-swipe,
.bee-lightbox.bee-lightbox-swipe .bee-lightbox-container {
    transition: none;
}

/* item */
.bee-lightbox .bee-lightbox-item {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    align-content: center;
    justify-content: center;
    padding: 20px;
}
.bee-lightbox .bee-lightbox-item.bee-lightbox-item-current {
    z-index: 20;
}
.bee-lightbox .bee-lightbox-item.bee-lightbox-item-prev,
.bee-lightbox .bee-lightbox-item.bee-lightbox-item-next {
    z-index: 10;
}
.bee-lightbox .bee-lightbox-item .bee-lightbox-item-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity .6s ease, transform .6s ease;
}
.bee-lightbox .bee-lightbox-item .bee-lightbox-item-inner .bee-lightbox-item-content{
    display: flex;
    position: relative;
    flex: -1 1 100%;
    width: 100%;
    margin: 0;
    align-items: center;
    overflow: hidden;
}
.bee-lightbox .bee-lightbox-item .bee-lightbox-item-inner .bee-lightbox-item-content img {
    display: block;
    position: relative;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    z-index: 10;
    object-fit: contain;
}
.bee-lightbox .bee-lightbox-item .bee-lightbox-item-inner .bee-lightbox-item-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.bee-lightbox .bee-lightbox-item .bee-lightbox-item-inner .bee-lightbox-item-bar {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    color: #FFF;
    z-index: 5;
}
.bee-lightbox .bee-lightbox-item .bee-lightbox-item-inner .bee-lightbox-item-bar .bee-lightbox-item-page {
    text-align: right;
    flex: 1;
}
.bee-lightbox .bee-lightbox-item-control-prev,
.bee-lightbox .bee-lightbox-item-control-next {
    display: block;
    position: absolute;
    width: 30px;
    height: 50px;
    top: 50%;
    color: #FFF;
    font-size: 50px;
    line-height: 50px;
    margin-top: -20px;
    padding: 0;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    z-index: 200;
    opacity: 0;
    transition: opacity .6s ease;
}
.bee-lightbox .bee-lightbox-item-control-prev{
    left: 10px;
}
.bee-lightbox .bee-lightbox-item-control-next{
    right: 10px;
}

@media (max-width: 767px) {
    html.is-touch .bee-lightbox .bee-lightbox-item-control-prev,
    html.is-touch .bee-lightbox .bee-lightbox-item-control-next{
        display: none;
    }
}

.bee-lightbox .bee-lightbox-item-control-close {
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
    color: #FFF;
    font-size: 22px;
    line-height: 30px;
    padding: 0;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    z-index: 200;
    opacity: 0;
    transition: opacity .6s ease;
}

/* thumbs */
.bee-lightbox .bee-lightbox-thumbs{
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    overflow: hidden;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity .6s ease, transform .6s ease;
}
.bee-lightbox .bee-lightbox-thumbs .bee-lightbox-thumbs-inner {
    display: block;
    position: relative;
    margin: 10px 0;
}
.bee-lightbox .bee-lightbox-thumbs .bee-lightbox-thumbs-inner:before,
.bee-lightbox .bee-lightbox-thumbs .bee-lightbox-thumbs-inner:after {
    content: '';
    display: table;
    width: 100%;
    height: 0;
    clear: both;
}
.bee-lightbox .bee-lightbox-thumbs .bee-lightbox-thumbs-inner .bee-lightbox-thumb {
    display: block;
    float: left;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.6;
    cursor: pointer;
    transition: opacity .3s ease;
}
.bee-lightbox .bee-lightbox-thumbs .bee-lightbox-thumbs-inner .bee-lightbox-thumb.active,
html.no-touch .bee-lightbox .bee-lightbox-thumbs .bee-lightbox-thumbs-inner .bee-lightbox-thumb:hover {
    opacity: 1;
}
.bee-lightbox .bee-lightbox-thumbs .bee-lightbox-thumbs-inner .bee-lightbox-thumb + .bee-lightbox-thumb {
    margin-left: 5px;
}
.bee-lightbox .bee-lightbox-thumbs.bee-lightbox-thumbs-ready .bee-lightbox-thumbs-inner {
    transition: transform .3s ease;
}

/* in */
.bee-lightbox.bee-lightbox-in {
    background-color: rgba(0,0,0,0.3);
}

/* show */
.bee-lightbox.bee-lightbox-show {
    background-color: rgba(0,0,0,0.6);
}
.bee-lightbox.bee-lightbox-show .bee-lightbox-item-current .bee-lightbox-item-inner {
    opacity: 1;
}
.bee-lightbox.bee-lightbox-show .bee-lightbox-thumbs {
    opacity: 1;
    transform: translateY(0);
}
html.is-touch .bee-lightbox.bee-lightbox-show {
    background-color: rgba(0,0,0,0.9);
}
.bee-lightbox.bee-lightbox-show .bee-lightbox-item-control-prev,
.bee-lightbox.bee-lightbox-show .bee-lightbox-item-control-next,
.bee-lightbox.bee-lightbox-show .bee-lightbox-item-control-close {
	opacity: 1;
}


/* Loader
------------------------------------------------------------ */

.bee-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 100;
}
.bee-loader > div {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #FFF;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: beeloader 2.0s infinite ease-in-out;
    animation: beeloader 2.0s infinite ease-in-out;
}
.bee-loader  > div:last-child {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}
@-webkit-keyframes beeloader {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
}
@keyframes beeloader {
    0%, 100% { 
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 50% { 
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}


/* Notify
------------------------------------------------------------ */

.bee-notify-wrapper{
    display: block;
    position: fixed;
    left: 50px;
    bottom: 50px;
    width: 400px;
    max-width: 100%;
    z-index: 5100;
    /* pointer-events: none; */
}
.bee-notify-wrapper .alert {
    display: block;
    width: 100%;
    position: relative;
    margin: 15px auto 0;
    padding: 15px 36px 15px 15px;
    border: none !important;
    border-radius: 12px;
    box-shadow: 1px 2px 6px rgba(0,0,0,0.1);    
    color: #FFF;
    background-color: #F9F9F9;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity .3s ease, transform .3s ease;
}
.bee-notify-wrapper .alert + .alert {
    margin-top: 10px;
}
.bee-notify-wrapper .alert .bee-notify-close {
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 22px;
    height: 22px;
    margin-top: -11px;
    background: none;
    border: none;
    outline: none !important;
    cursor: pointer;
}
.bee-notify-wrapper .alert .bee-notify-close:before,
.bee-notify-wrapper .alert .bee-notify-close:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #CCC;
}
.bee-notify-wrapper .alert .bee-notify-close:before {
    transform: rotate(-45deg);
}
.bee-notify-wrapper .alert .bee-notify-close:after {
    transform: rotate(45deg);
}

.bee-notify-wrapper .alert.bee-notify-in{
    opacity:1;
    transform: scale(1);
}

@media (max-width: 767px){ 
    .bee-notify-wrapper{
        left: 15px;
        right: 15px;
        bottom: 30px;
        width: auto;
    }
}


/* OFFCANVAS
 * -------------------------------------------------- */

/* container */
.bee-offcanvas{
    display: none;

    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;

    padding: 0;
    margin: 0;

    background: rgba(0, 0, 0, 0.3);

    touch-action: none;

    z-index: 2000;
}
.bee-offcanvas .dropdown-backdrop {
    display: none;
}

/* bar */
.bee-offcanvas .bee-offcanvas-bar{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 70%;
    max-width: 100%;

    background: #FFF;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -ms-scroll-chaining: none;

}
.bee-offcanvas .bee-offcanvas-bar.bee-offcanvas-bar-rtl {
    left: initial;
    right: 0;
}
.bee-offcanvas .bee-offcanvas-bar.bee-offcanvas-active {
    box-shadow: 2px 0 6px rgba(0,0,0,0.15);
}
.bee-offcanvas .bee-offcanvas-bar.bee-offcanvas-active.bee-offcanvas-bar-rtl {
    box-shadow: -2px 0 6px rgba(0,0,0,0.15);
}

/* bar: head + content*/
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content{
    padding: 30px 0;
    overflow: auto;
}

/* bar: content nav */
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul {
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-main + ul {
    margin-top: 15px;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-main li{
    display: block;
    position: relative;
    padding: 0;
    margin: 0;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-main li .fa {
    margin-right: 10px;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-main li + li {
    border-top: 1px solid #F5F5F5;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-main li a{
    display: block;
    position: relative;
    padding: 5px 10px;
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 26px;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-main li a,
html.no-touch .bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-main li a:hover,
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-main li a:focus{
    text-decoration: none;
}

/* dropdown */
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-main li.dropdown > a{
    padding-right: 30px;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-main li.dropdown > a:after{
    content: '\f107';

    display: inline-block;
    position: relative;
    width: 10px;
    margin-right: -20px;
    
    font-family: bootstrap-icons !important;
    font-size: 14px;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-main li.dropdown.open > a:after{
    content: '\f106';
}

/* bar: content nav main */
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-main li a {
    font-weight: 600
}

/* bar: content nav back */
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-back {

}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-back li a {
    font-size: 11px;
    line-height: 22px;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-back li[data-accordion] [data-content] a {
    font-size: 11px;
    line-height: 22px;
}

/* bar: content nav social*/
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-social {
    border-top: 1px solid #DDD;
    margin: 0;
    padding: 15px 5px 0;
    float: none;
    text-align: center;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-social li {
    display: inline-block;
    float: none;
    margin: 0 5px;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-social li a {
    display: inline-block;
    float: none;
    margin: 0 5px;
    width: auto;
    text-align: center;
    font-size: 22px;
}

/* bar: content nav language*/
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-language {
    border-top: 1px solid #DDD;
    padding: 15px 5px 0;
    text-align: center;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-language li {
    display: inline-block;
    margin: 0 5px;
    border: none !important;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content ul.nav-language li a {
    font-size: 11px;
    line-height: 22px;
}


/* PARALLAX
 * -------------------------------------------------- */

.bee-parallax {
    position: relative;
    overflow: hidden;
}
.bee-parallax-bg {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: center no-repeat;
    background-size: cover;
    z-index: -1;
}


/* Scroll Top
------------------------------------------------------------ */

.bee-scroll-top{
    display: block;
    position: fixed;

    width: 48px;
    height: 48px;
    right: -50px;
    bottom: 30px;
    padding: 0;
    margin: 0;
    
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    
    border: none;
    border-radius: 50%;
    outline: none !important;
    
    background-color: #FFF;
    box-shadow: 1px 2px 3px rgba(0,0,0,0.1);
    
    overflow: hidden;
    cursor: pointer;
    z-index: 70;
    box-sizing: border-box;
    transition: right .5s ease;
}
.bee-scroll-top i {
    display: inline-block;
    text-align: center;
    font-size: 22px;
}
.bee-scroll-top.in{
    right: 15px;
}


/* Ui Form: Image Input
------------------------------------------------------------ */

.bee-uiform-imageinput {

}

/* control */
.bee-uiform-imageinput .bee-uiform-imageinput-control {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.bee-uiform-imageinput .bee-uiform-imageinput-control input[type="file"] {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

/* label */
.bee-uiform-imageinput .bee-uiform-imageinput-label-change {
    display: none;
    background: rgba(255,255,255,0.4);
    padding: 5px;
}

/* has image */
.bee-uiform-imageinput.bee-uiform-imageinput-hasimage .bee-uiform-imageinput-label-read {
    display: none;
}
.bee-uiform-imageinput.bee-uiform-imageinput-hasimage .bee-uiform-imageinput-label-change {
    display: initial;
}
html.no-touch .bee-uiform-imageinput.bee-uiform-imageinput-hasimage .bee-uiform-imageinput-label-change {
    opacity: 0;
    transition: opacity .6s ease;
}
html.no-touch .bee-uiform-imageinput.bee-uiform-imageinput-hasimage .bee-uiform-imageinput-control:hover .bee-uiform-imageinput-label-change {
    opacity: 1;
}


/* Toggle Input
------------------------------------------------------------ */

.bee-checkbox-input {
    display: inline-block;
    position: relative;
    margin: 0 10px 5px 0;
}
.bee-checkbox-input input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.bee-checkbox-input span {
    display: block;
    position: relative;
    padding: 8px 20px;
    font-size: .9em;
    line-height: 1.4;
    background-color: #F9F9F9;
    border: 1px solid #F9F9F9;
    border-radius: 24px;
    cursor: pointer;
    transition: border-color .3s ease, padding .3s ease;
}
.bee-checkbox-input span:before {
    content:"\F012C";
    display: block;
    position: absolute;
    top: 50%;
    left: 3px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    color: #f9f9f9;
    font-family: "Material Design Icons";
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity .3s ease, left .3s ease;
}
.bee-checkbox-input input:checked + span {
    padding-left: 30px;
    padding-right: 10px;
    border-color: #f9f9f9;
}
.bee-checkbox-input input:checked + span:before {
    opacity: 1;
    left: 7px
}
@media (max-width: 768px){
    .bee-checkbox-input {
        margin-right: 5px;
    }
    .bee-checkbox-input span {
        padding: 5px 16px;
        border-radius: 12px;
    }
    .bee-checkbox-input input:checked + span {
        padding-left: 26px;
        padding-right: 6px;
    }
    .bee-checkbox-input input:checked + span:before {
        left: 4;
    }
}


/* Toggle Input
------------------------------------------------------------ */

.bee-toggle-input {
    display: block;
    position: relative;
    width: 50px;
    height: 26px;
    margin: 0;
}
.bee-toggle-input input { 
    opacity: 0;
    width: 0;
    height: 0;
}
.bee-toggle-input .bee-toggle-input-slider {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 4px;
    background-color: #ced4da;
    transition: .2s;
    cursor: pointer;
}
.bee-toggle-input .bee-toggle-input-slider:before {
    content: "";
    display: block;
    position: relative;
    height: 18px;
    width: 18px;
    background-color: white;
    transition: .2s;
} 
.bee-toggle-input input:checked + .bee-toggle-input-slider {
    background-color: #f9f9f9;
} 
.bee-toggle-input input:focus + .bee-toggle-input-slider {
    box-shadow: 0 0 1px #f9f9f9;
}
.bee-toggle-input input:checked + .bee-toggle-input-slider:before {
    transform: translateX(24px);
}
  
/* Rounded sliders */
.bee-toggle-input.bee-toggle-input-round .bee-toggle-input-slider {
    border-radius: 34px;
}
  
.bee-toggle-input.bee-toggle-input-round .bee-toggle-input-slider:before {
    border-radius: 50%;
}


/* QUANTITY WIDGET
------------------------------------------------------------ */
.bee-qty-input{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
.bee-qty-input .form-control{
    flex: 0 0 50px !important;
    width: 50px !important;
    border: none;
    text-align: center;
}


/* Readmore
------------------------------------------------------------ */

.bee-readmore {

}
.bee-readmore .bee-readmore-content {
    display: block;
    position: relative;
    overflow: hidden;
}
.bee-readmore .bee-readmore-control {
    display: inline-block;
    font-weight: 600;
    cursor: pointer;
    margin-top: 5px;
}


/* Form Error
------------------------------------------------------------ */

.form-control.bee-error,
.select2.bee-error .select2-selection {
    border-color: #eb212e !important;
}
.bee-error-message,
.epp-ci .bee-error-message {
    display: block;
    position: absolute;
    padding: 6px 12px !important;
    color:#FFF;
    font-size: 12px !important;
    line-height: 1.2;
    background-color: #F00;
    z-index: 80;
}
.epp-ci .bee-error-message {
    right: 0;
}


